diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-05-27 10:19:30 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-05-27 15:39:43 -0400 |
commit | 5930122683dff58f0846b0f0405b4bd598a3ba6a (patch) | |
tree | e7823a7eefaafb7b6ddc61a7ccc1a1892998310f /fs/jfs/xattr.c | |
parent | 002354112f1e3cc7400ef48b853aefb90e801588 (diff) |
switch xattr_handler->set() to passing dentry and inode separately
preparation for similar switch in ->setxattr() (see the next commit for
rationale).
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/jfs/xattr.c')
-rw-r--r-- | fs/jfs/xattr.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/fs/jfs/xattr.c b/fs/jfs/xattr.c index beb182b503b3..0bf3c33aedff 100644 --- a/fs/jfs/xattr.c +++ b/fs/jfs/xattr.c | |||
@@ -943,11 +943,10 @@ static int jfs_xattr_get(const struct xattr_handler *handler, | |||
943 | } | 943 | } |
944 | 944 | ||
945 | static int jfs_xattr_set(const struct xattr_handler *handler, | 945 | static int jfs_xattr_set(const struct xattr_handler *handler, |
946 | struct dentry *dentry, const char *name, | 946 | struct dentry *unused, struct inode *inode, |
947 | const void *value, size_t size, int flags) | 947 | const char *name, const void *value, |
948 | size_t size, int flags) | ||
948 | { | 949 | { |
949 | struct inode *inode = d_inode(dentry); | ||
950 | |||
951 | name = xattr_full_name(handler, name); | 950 | name = xattr_full_name(handler, name); |
952 | return __jfs_xattr_set(inode, name, value, size, flags); | 951 | return __jfs_xattr_set(inode, name, value, size, flags); |
953 | } | 952 | } |
@@ -962,11 +961,10 @@ static int jfs_xattr_get_os2(const struct xattr_handler *handler, | |||
962 | } | 961 | } |
963 | 962 | ||
964 | static int jfs_xattr_set_os2(const struct xattr_handler *handler, | 963 | static int jfs_xattr_set_os2(const struct xattr_handler *handler, |
965 | struct dentry *dentry, const char *name, | 964 | struct dentry *unused, struct inode *inode, |
966 | const void *value, size_t size, int flags) | 965 | const char *name, const void *value, |
966 | size_t size, int flags) | ||
967 | { | 967 | { |
968 | struct inode *inode = d_inode(dentry); | ||
969 | |||
970 | if (is_known_namespace(name)) | 968 | if (is_known_namespace(name)) |
971 | return -EOPNOTSUPP; | 969 | return -EOPNOTSUPP; |
972 | return __jfs_xattr_set(inode, name, value, size, flags); | 970 | return __jfs_xattr_set(inode, name, value, size, flags); |