search for: i_default_acl

Displaying 1 result from an estimated 1 matches for "i_default_acl".

Did you mean: default_acl
2008 Jun 24
1
[RFC][PATCH] btrfs orphan code
...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; + u64 ordered_trans; /* * transid of the trans_handle that last modified this inode diff -r 99b12e2db0f8 ctree.h --- a/ctree.h Wed Jun 18 20:50:41 2008 -0400 +++ b/ctree.h Tue Jun 24 21:04:39 2008 -0400 @@ -103,7 +1...