summaryrefslogtreecommitdiffstats
path: root/fs/ext4/namei.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2013-12-20 08:16:44 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2014-01-25 23:58:19 -0500
commit64e178a7118b1cf7648391755e44dcc209091003 (patch)
treef06ee5408a04ee86c7a79dfd885aaab3c5f3f070 /fs/ext4/namei.c
parent996a710d46418cacb5b4a519ab9341a74066551d (diff)
ext2/3/4: use generic posix ACL infrastructure
Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Jan Kara <jack@suse.cz> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ext4/namei.c')
-rw-r--r--fs/ext4/namei.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index 5a0408d7b114..e77c1ba6c8af 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -3225,6 +3225,7 @@ const struct inode_operations ext4_dir_inode_operations = {
3225 .listxattr = ext4_listxattr, 3225 .listxattr = ext4_listxattr,
3226 .removexattr = generic_removexattr, 3226 .removexattr = generic_removexattr,
3227 .get_acl = ext4_get_acl, 3227 .get_acl = ext4_get_acl,
3228 .set_acl = ext4_set_acl,
3228 .fiemap = ext4_fiemap, 3229 .fiemap = ext4_fiemap,
3229}; 3230};
3230 3231
@@ -3235,4 +3236,5 @@ const struct inode_operations ext4_special_inode_operations = {
3235 .listxattr = ext4_listxattr, 3236 .listxattr = ext4_listxattr,
3236 .removexattr = generic_removexattr, 3237 .removexattr = generic_removexattr,
3237 .get_acl = ext4_get_acl, 3238 .get_acl = ext4_get_acl,
3239 .set_acl = ext4_set_acl,
3238}; 3240};