diff options
author | Christoph Hellwig <hch@infradead.org> | 2013-12-20 08:16:51 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-01-25 23:58:22 -0500 |
commit | 2cc6a5a01cdbeb0e46f3aa144819d5d7cee458a1 (patch) | |
tree | d97137eadb3a11dfd12c7bc7bb552ce21e8e4688 /fs/jfs/namei.c | |
parent | 2401dc2975fc5a33021dc8347ea82984c4707a08 (diff) |
jfs: use generic posix ACL infrastructure
Copy the scheme I introduced to btrfs many years ago to only use the
xattr handler for ACLs, but pass plain attrs straight through.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Kleikamp <dave.kleikamp@oracle.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/jfs/namei.c')
-rw-r--r-- | fs/jfs/namei.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/jfs/namei.c b/fs/jfs/namei.c index aa8a3370631b..d59c7defb1ef 100644 --- a/fs/jfs/namei.c +++ b/fs/jfs/namei.c | |||
@@ -1524,6 +1524,7 @@ const struct inode_operations jfs_dir_inode_operations = { | |||
1524 | .setattr = jfs_setattr, | 1524 | .setattr = jfs_setattr, |
1525 | #ifdef CONFIG_JFS_POSIX_ACL | 1525 | #ifdef CONFIG_JFS_POSIX_ACL |
1526 | .get_acl = jfs_get_acl, | 1526 | .get_acl = jfs_get_acl, |
1527 | .set_acl = jfs_set_acl, | ||
1527 | #endif | 1528 | #endif |
1528 | }; | 1529 | }; |
1529 | 1530 | ||