summaryrefslogtreecommitdiffstats
path: root/fs/hfsplus/xattr_user.c
diff options
context:
space:
mode:
authorAl Viro2016-04-11 02:48:24 +0200
committerAl Viro2016-04-11 02:48:24 +0200
commitb296821a7c42fa58baa17513b2b7b30ae66f3336 (patch)
tree5cb6593218b793ff77df1c21ea74b756af9c8540 /fs/hfsplus/xattr_user.c
parentreiserfs: switch to generic_{get,set,remove}xattr() (diff)
downloadkernel-qcow2-linux-b296821a7c42fa58baa17513b2b7b30ae66f3336.tar.gz
kernel-qcow2-linux-b296821a7c42fa58baa17513b2b7b30ae66f3336.tar.xz
kernel-qcow2-linux-b296821a7c42fa58baa17513b2b7b30ae66f3336.zip
xattr_handler: pass dentry and inode as separate arguments of ->get()
... and do not assume they are already attached to each other 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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/hfsplus/xattr_user.c b/fs/hfsplus/xattr_user.c
index 6fc269baf959..3c9eec3e4c7b 100644
--- a/fs/hfsplus/xattr_user.c
+++ b/fs/hfsplus/xattr_user.c
@@ -12,11 +12,11 @@
#include "xattr.h"
static int hfsplus_user_getxattr(const struct xattr_handler *handler,
- struct dentry *dentry, const char *name,
- void *buffer, size_t size)
+ struct dentry *unused, struct inode *inode,
+ const char *name, void *buffer, size_t size)
{
- return hfsplus_getxattr(dentry, name, buffer, size,
+ return hfsplus_getxattr(inode, name, buffer, size,
XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN);
}