switch ext4 to inode->i_acl
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -666,10 +666,6 @@ static struct inode *ext4_alloc_inode(struct super_block *sb)
|
||||
if (!ei)
|
||||
return NULL;
|
||||
|
||||
#ifdef CONFIG_EXT4_FS_POSIX_ACL
|
||||
ei->i_acl = EXT4_ACL_NOT_CACHED;
|
||||
ei->i_default_acl = EXT4_ACL_NOT_CACHED;
|
||||
#endif
|
||||
ei->vfs_inode.i_version = 1;
|
||||
ei->vfs_inode.i_data.writeback_index = 0;
|
||||
memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
|
||||
@@ -735,18 +731,6 @@ static void destroy_inodecache(void)
|
||||
|
||||
static void ext4_clear_inode(struct inode *inode)
|
||||
{
|
||||
#ifdef CONFIG_EXT4_FS_POSIX_ACL
|
||||
if (EXT4_I(inode)->i_acl &&
|
||||
EXT4_I(inode)->i_acl != EXT4_ACL_NOT_CACHED) {
|
||||
posix_acl_release(EXT4_I(inode)->i_acl);
|
||||
EXT4_I(inode)->i_acl = EXT4_ACL_NOT_CACHED;
|
||||
}
|
||||
if (EXT4_I(inode)->i_default_acl &&
|
||||
EXT4_I(inode)->i_default_acl != EXT4_ACL_NOT_CACHED) {
|
||||
posix_acl_release(EXT4_I(inode)->i_default_acl);
|
||||
EXT4_I(inode)->i_default_acl = EXT4_ACL_NOT_CACHED;
|
||||
}
|
||||
#endif
|
||||
ext4_discard_preallocations(inode);
|
||||
if (EXT4_JOURNAL(inode))
|
||||
jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
|
||||
|
Reference in New Issue
Block a user