summaryrefslogtreecommitdiffstats
path: root/fs/hfsplus/xattr_user.c
diff options
context:
space:
mode:
authorAl Viro2016-05-27 16:19:30 +0200
committerAl Viro2016-05-27 21:39:43 +0200
commit5930122683dff58f0846b0f0405b4bd598a3ba6a (patch)
treee7823a7eefaafb7b6ddc61a7ccc1a1892998310f /fs/hfsplus/xattr_user.c
parentrestore killability of old mutex_lock_killable(&inode->i_mutex) users (diff)
downloadkernel-qcow2-linux-5930122683dff58f0846b0f0405b4bd598a3ba6a.tar.gz
kernel-qcow2-linux-5930122683dff58f0846b0f0405b4bd598a3ba6a.tar.xz
kernel-qcow2-linux-5930122683dff58f0846b0f0405b4bd598a3ba6a.zip
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/hfsplus/xattr_user.c')
-rw-r--r--fs/hfsplus/xattr_user.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/hfsplus/xattr_user.c b/fs/hfsplus/xattr_user.c
index 3c9eec3e4c7b..fae6c0ea0030 100644
--- a/fs/hfsplus/xattr_user.c
+++ b/fs/hfsplus/xattr_user.c
@@ -21,10 +21,11 @@ static int hfsplus_user_getxattr(const struct xattr_handler *handler,
}
static int hfsplus_user_setxattr(const struct xattr_handler *handler,
- struct dentry *dentry, const char *name,
- const void *buffer, size_t size, int flags)
+ struct dentry *unused, struct inode *inode,
+ const char *name, const void *buffer,
+ size_t size, int flags)
{
- return hfsplus_setxattr(dentry, name, buffer, size, flags,
+ return hfsplus_setxattr(inode, name, buffer, size, flags,
XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN);
}