* Improved bfs_inode command.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31943 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2009-07-29 21:34:57 +00:00
parent d829579dc0
commit 529c716df3
@@ -292,6 +292,10 @@ dump_inode(int argc, char** argv)
Inode* inode = (Inode*)address;
kprintf("INODE %p\n", inode);
kprintf(" rw lock: %p\n", &inode->Lock());
BPlusTree* tree = NULL;
inode->GetTree(&tree);
kprintf(" tree: %p\n", tree);
kprintf(" file cache: %p\n", inode->FileCache());
kprintf(" file map: %p\n", inode->Map());
kprintf(" old size: %Ld\n", inode->OldSize());