diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-10 20:11:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-10 20:11:50 -0400 |
commit | 97d2116708ca0fd6ad8b00811ee4349b7e19e96f (patch) | |
tree | 81f73fc1a6daee60737b591cf1be73cc4f79de37 /fs/gfs2/inode.c | |
parent | 30066ce675d3af350bc5a53858991c0b518dda00 (diff) | |
parent | fd50ecaddf8372a1d96e0daeaac0f93cf04e4d42 (diff) |
Merge branch 'work.xattr' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull vfs xattr updates from Al Viro:
"xattr stuff from Andreas
This completes the switch to xattr_handler ->get()/->set() from
->getxattr/->setxattr/->removexattr"
* 'work.xattr' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
vfs: Remove {get,set,remove}xattr inode operations
xattr: Stop calling {get,set,remove}xattr inode operations
vfs: Check for the IOP_XATTR flag in listxattr
xattr: Add __vfs_{get,set,remove}xattr helpers
libfs: Use IOP_XATTR flag for empty directory handling
vfs: Use IOP_XATTR flag for bad-inode handling
vfs: Add IOP_XATTR inode operations flag
vfs: Move xattr_resolve_name to the front of fs/xattr.c
ecryptfs: Switch to generic xattr handlers
sockfs: Get rid of getxattr iop
sockfs: getxattr: Fail with -EOPNOTSUPP for invalid attribute names
kernfs: Switch to generic xattr handlers
hfs: Switch to generic xattr handlers
jffs2: Remove jffs2_{get,set,remove}xattr macros
xattr: Remove unnecessary NULL attribute name check
Diffstat (limited to 'fs/gfs2/inode.c')
-rw-r--r-- | fs/gfs2/inode.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c index 7efd1d19d325..f6c4f0058899 100644 --- a/fs/gfs2/inode.c +++ b/fs/gfs2/inode.c | |||
@@ -2040,10 +2040,7 @@ const struct inode_operations gfs2_file_iops = { | |||
2040 | .permission = gfs2_permission, | 2040 | .permission = gfs2_permission, |
2041 | .setattr = gfs2_setattr, | 2041 | .setattr = gfs2_setattr, |
2042 | .getattr = gfs2_getattr, | 2042 | .getattr = gfs2_getattr, |
2043 | .setxattr = generic_setxattr, | ||
2044 | .getxattr = generic_getxattr, | ||
2045 | .listxattr = gfs2_listxattr, | 2043 | .listxattr = gfs2_listxattr, |
2046 | .removexattr = generic_removexattr, | ||
2047 | .fiemap = gfs2_fiemap, | 2044 | .fiemap = gfs2_fiemap, |
2048 | .get_acl = gfs2_get_acl, | 2045 | .get_acl = gfs2_get_acl, |
2049 | .set_acl = gfs2_set_acl, | 2046 | .set_acl = gfs2_set_acl, |
@@ -2062,10 +2059,7 @@ const struct inode_operations gfs2_dir_iops = { | |||
2062 | .permission = gfs2_permission, | 2059 | .permission = gfs2_permission, |
2063 | .setattr = gfs2_setattr, | 2060 | .setattr = gfs2_setattr, |
2064 | .getattr = gfs2_getattr, | 2061 | .getattr = gfs2_getattr, |
2065 | .setxattr = generic_setxattr, | ||
2066 | .getxattr = generic_getxattr, | ||
2067 | .listxattr = gfs2_listxattr, | 2062 | .listxattr = gfs2_listxattr, |
2068 | .removexattr = generic_removexattr, | ||
2069 | .fiemap = gfs2_fiemap, | 2063 | .fiemap = gfs2_fiemap, |
2070 | .get_acl = gfs2_get_acl, | 2064 | .get_acl = gfs2_get_acl, |
2071 | .set_acl = gfs2_set_acl, | 2065 | .set_acl = gfs2_set_acl, |
@@ -2078,10 +2072,7 @@ const struct inode_operations gfs2_symlink_iops = { | |||
2078 | .permission = gfs2_permission, | 2072 | .permission = gfs2_permission, |
2079 | .setattr = gfs2_setattr, | 2073 | .setattr = gfs2_setattr, |
2080 | .getattr = gfs2_getattr, | 2074 | .getattr = gfs2_getattr, |
2081 | .setxattr = generic_setxattr, | ||
2082 | .getxattr = generic_getxattr, | ||
2083 | .listxattr = gfs2_listxattr, | 2075 | .listxattr = gfs2_listxattr, |
2084 | .removexattr = generic_removexattr, | ||
2085 | .fiemap = gfs2_fiemap, | 2076 | .fiemap = gfs2_fiemap, |
2086 | }; | 2077 | }; |
2087 | 2078 | ||