summaryrefslogtreecommitdiffstats
path: root/fs/jffs2/file.c
diff options
context:
space:
mode:
authorAndreas Gruenbacher2016-09-29 17:48:31 +0200
committerAl Viro2016-10-07 04:17:38 +0200
commit6966f842c044bc602ecc06712ee5891328fde10e (patch)
tree2bab55f9d22c9139f030d87389fd0f076cbdbfb2 /fs/jffs2/file.c
parentxattr: Remove unnecessary NULL attribute name check (diff)
downloadkernel-qcow2-linux-6966f842c044bc602ecc06712ee5891328fde10e.tar.gz
kernel-qcow2-linux-6966f842c044bc602ecc06712ee5891328fde10e.tar.xz
kernel-qcow2-linux-6966f842c044bc602ecc06712ee5891328fde10e.zip
jffs2: Remove jffs2_{get,set,remove}xattr macros
When CONFIG_JFFS2_FS_XATTR is off, jffs2_xattr_handlers is defined as NULL. With sb->s_xattr == NULL, the generic_{get,set,remove}xattr functions produce the same result as setting the {get,set,remove}xattr inode operations to NULL, so there is no need for these macros. Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/jffs2/file.c')
-rw-r--r--fs/jffs2/file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/jffs2/file.c b/fs/jffs2/file.c
index 0e62dec3effc..fdf9e1cb2e48 100644
--- a/fs/jffs2/file.c
+++ b/fs/jffs2/file.c
@@ -66,10 +66,10 @@ const struct inode_operations jffs2_file_inode_operations =
.get_acl = jffs2_get_acl,
.set_acl = jffs2_set_acl,
.setattr = jffs2_setattr,
- .setxattr = jffs2_setxattr,
- .getxattr = jffs2_getxattr,
+ .setxattr = generic_setxattr,
+ .getxattr = generic_getxattr,
.listxattr = jffs2_listxattr,
- .removexattr = jffs2_removexattr
+ .removexattr = generic_removexattr
};
const struct address_space_operations jffs2_file_address_operations =