aboutsummaryrefslogtreecommitdiffstats
path: root/fs/jffs2/symlink.c
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruenba@redhat.com>2016-09-29 11:48:31 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2016-10-06 22:17:38 -0400
commit6966f842c044bc602ecc06712ee5891328fde10e (patch)
tree2bab55f9d22c9139f030d87389fd0f076cbdbfb2 /fs/jffs2/symlink.c
parent5d18cbf16cfb0ad65368fe2ead19237305f4b822 (diff)
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/symlink.c')
-rw-r--r--fs/jffs2/symlink.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/jffs2/symlink.c b/fs/jffs2/symlink.c
index 2cabd649d4fb..afe2d75ae395 100644
--- a/fs/jffs2/symlink.c
+++ b/fs/jffs2/symlink.c
@@ -16,8 +16,8 @@ const struct inode_operations jffs2_symlink_inode_operations =
16 .readlink = generic_readlink, 16 .readlink = generic_readlink,
17 .get_link = simple_get_link, 17 .get_link = simple_get_link,
18 .setattr = jffs2_setattr, 18 .setattr = jffs2_setattr,
19 .setxattr = jffs2_setxattr, 19 .setxattr = generic_setxattr,
20 .getxattr = jffs2_getxattr, 20 .getxattr = generic_getxattr,
21 .listxattr = jffs2_listxattr, 21 .listxattr = jffs2_listxattr,
22 .removexattr = jffs2_removexattr 22 .removexattr = generic_removexattr
23}; 23};