summaryrefslogtreecommitdiffstats
path: root/fs/hfsplus/dir.c
diff options
context:
space:
mode:
authorChristoph Hellwig2014-01-30 08:59:19 +0100
committerAl Viro2014-01-31 20:44:39 +0100
commitb168fff72109a3627686578e31e745f778832f98 (patch)
treec8ab8ef8d5e0e0c47bba1f348713cd6486e63ab5 /fs/hfsplus/dir.c
parentTypo in compat_sys_lseek() declaration (diff)
downloadkernel-qcow2-linux-b168fff72109a3627686578e31e745f778832f98.tar.gz
kernel-qcow2-linux-b168fff72109a3627686578e31e745f778832f98.tar.xz
kernel-qcow2-linux-b168fff72109a3627686578e31e745f778832f98.zip
hfsplus: use xattr handlers for removexattr
hfsplus was already using the handlers for get and set operations, and with the removal of can_set_xattr we've now allow operations that wouldn't otherwise be allowed. With this we can also centralize the special-casing of the osx. attrs that don't have prefixes on disk in the osx xattr handlers. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/hfsplus/dir.c')
-rw-r--r--fs/hfsplus/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hfsplus/dir.c b/fs/hfsplus/dir.c
index 9ee62985e739..bdec66522de3 100644
--- a/fs/hfsplus/dir.c
+++ b/fs/hfsplus/dir.c
@@ -529,7 +529,7 @@ const struct inode_operations hfsplus_dir_inode_operations = {
.setxattr = generic_setxattr,
.getxattr = generic_getxattr,
.listxattr = hfsplus_listxattr,
- .removexattr = hfsplus_removexattr,
+ .removexattr = generic_removexattr,
#ifdef CONFIG_HFSPLUS_FS_POSIX_ACL
.get_acl = hfsplus_get_posix_acl,
.set_acl = hfsplus_set_posix_acl,