search for: 99b12e2db0f8

Displaying 1 result from an estimated 1 matches for "99b12e2db0f8".

2008 Jun 24
1
[RFC][PATCH] btrfs orphan code
.../creation on lookup of a subvolume root. I also changed btrfs_insert_dir_item to take an index flag to indicate whether or not we want to add a DIR_INDEX item along with the dir item. Let me know if there are any glaring design problems with what I''ve done. Thanks much, Josef diff -r 99b12e2db0f8 btrfs_inode.h --- a/btrfs_inode.h Wed Jun 18 20:50:41 2008 -0400 +++ b/btrfs_inode.h Tue Jun 24 21:04:39 2008 -0400 @@ -36,6 +36,9 @@ struct btrfs_inode { struct posix_acl *i_acl; struct posix_acl *i_default_acl; + /* for keeping track of orphaned inodes */ + struct list_head i_orphan; + u6...