X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=fs%2Fxfs%2Fxfs_xattr.c;fp=fs%2Fxfs%2Fxfs_xattr.c;h=839b35ca21c69320c736ac636ef681b1362402ce;hb=5d2eb548b309be34ecf3b91f0b7300a2b9d09b8c;hp=8294f86441bfcdc108eb28ec57b7a449f31dd675;hpb=2870f6c4d136e093e22159b8916918ff42c92218;p=sagit-ice-cold%2Fkernel_xiaomi_msm8998.git diff --git a/fs/xfs/xfs_xattr.c b/fs/xfs/xfs_xattr.c index 8294f86441bf..839b35ca21c6 100644 --- a/fs/xfs/xfs_xattr.c +++ b/fs/xfs/xfs_xattr.c @@ -32,9 +32,10 @@ static int -xfs_xattr_get(struct dentry *dentry, const char *name, - void *value, size_t size, int xflags) +xfs_xattr_get(const struct xattr_handler *handler, struct dentry *dentry, + const char *name, void *value, size_t size) { + int xflags = handler->flags; struct xfs_inode *ip = XFS_I(d_inode(dentry)); int error, asize = size; @@ -76,9 +77,10 @@ xfs_forget_acl( } static int -xfs_xattr_set(struct dentry *dentry, const char *name, const void *value, - size_t size, int flags, int xflags) +xfs_xattr_set(const struct xattr_handler *handler, struct dentry *dentry, + const char *name, const void *value, size_t size, int flags) { + int xflags = handler->flags; struct xfs_inode *ip = XFS_I(d_inode(dentry)); int error;