aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruenba@redhat.com>2016-09-29 11:48:45 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2016-10-07 21:48:36 -0400
commitfd50ecaddf8372a1d96e0daeaac0f93cf04e4d42 (patch)
tree2a7d258793534d8b67d6369d0659e5c5aac9cbb7 /fs/ocfs2
parent41fefa36be0b3356b95ca665042fc54c2646a833 (diff)
vfs: Remove {get,set,remove}xattr inode operations
These inode operations are no longer used; remove them. Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r--fs/ocfs2/file.c3
-rw-r--r--fs/ocfs2/namei.c3
-rw-r--r--fs/ocfs2/symlink.c3
3 files changed, 0 insertions, 9 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c
index 0b055bfb8e86..63316db763da 100644
--- a/fs/ocfs2/file.c
+++ b/fs/ocfs2/file.c
@@ -2474,10 +2474,7 @@ const struct inode_operations ocfs2_file_iops = {
2474 .setattr = ocfs2_setattr, 2474 .setattr = ocfs2_setattr,
2475 .getattr = ocfs2_getattr, 2475 .getattr = ocfs2_getattr,
2476 .permission = ocfs2_permission, 2476 .permission = ocfs2_permission,
2477 .setxattr = generic_setxattr,
2478 .getxattr = generic_getxattr,
2479 .listxattr = ocfs2_listxattr, 2477 .listxattr = ocfs2_listxattr,
2480 .removexattr = generic_removexattr,
2481 .fiemap = ocfs2_fiemap, 2478 .fiemap = ocfs2_fiemap,
2482 .get_acl = ocfs2_iop_get_acl, 2479 .get_acl = ocfs2_iop_get_acl,
2483 .set_acl = ocfs2_iop_set_acl, 2480 .set_acl = ocfs2_iop_set_acl,
diff --git a/fs/ocfs2/namei.c b/fs/ocfs2/namei.c
index a8f1225e6d9b..6cc043ebb9fa 100644
--- a/fs/ocfs2/namei.c
+++ b/fs/ocfs2/namei.c
@@ -2913,10 +2913,7 @@ const struct inode_operations ocfs2_dir_iops = {
2913 .setattr = ocfs2_setattr, 2913 .setattr = ocfs2_setattr,
2914 .getattr = ocfs2_getattr, 2914 .getattr = ocfs2_getattr,
2915 .permission = ocfs2_permission, 2915 .permission = ocfs2_permission,
2916 .setxattr = generic_setxattr,
2917 .getxattr = generic_getxattr,
2918 .listxattr = ocfs2_listxattr, 2916 .listxattr = ocfs2_listxattr,
2919 .removexattr = generic_removexattr,
2920 .fiemap = ocfs2_fiemap, 2917 .fiemap = ocfs2_fiemap,
2921 .get_acl = ocfs2_iop_get_acl, 2918 .get_acl = ocfs2_iop_get_acl,
2922 .set_acl = ocfs2_iop_set_acl, 2919 .set_acl = ocfs2_iop_set_acl,
diff --git a/fs/ocfs2/symlink.c b/fs/ocfs2/symlink.c
index 6c2a3e3c521c..6ad8eecefe21 100644
--- a/fs/ocfs2/symlink.c
+++ b/fs/ocfs2/symlink.c
@@ -91,9 +91,6 @@ const struct inode_operations ocfs2_symlink_inode_operations = {
91 .get_link = page_get_link, 91 .get_link = page_get_link,
92 .getattr = ocfs2_getattr, 92 .getattr = ocfs2_getattr,
93 .setattr = ocfs2_setattr, 93 .setattr = ocfs2_setattr,
94 .setxattr = generic_setxattr,
95 .getxattr = generic_getxattr,
96 .listxattr = ocfs2_listxattr, 94 .listxattr = ocfs2_listxattr,
97 .removexattr = generic_removexattr,
98 .fiemap = ocfs2_fiemap, 95 .fiemap = ocfs2_fiemap,
99}; 96};