Commit a5a14de2 authored by Dave Chinner's avatar Dave Chinner Committed by Dave Chinner

xfs: fix wrong errno from xfs_initxattrs

Signed-off-by: default avatarDave Chinner <dchinner@redhat.com>
Reviewed-by: default avatarJie Liu <jeff.liu@oracle.com>
Signed-off-by: default avatarDave Chinner <david@fromorbit.com>
parent 65149e3f
...@@ -72,8 +72,8 @@ xfs_initxattrs( ...@@ -72,8 +72,8 @@ xfs_initxattrs(
int error = 0; int error = 0;
for (xattr = xattr_array; xattr->name != NULL; xattr++) { for (xattr = xattr_array; xattr->name != NULL; xattr++) {
error = xfs_attr_set(ip, xattr->name, xattr->value, error = -xfs_attr_set(ip, xattr->name, xattr->value,
xattr->value_len, ATTR_SECURE); xattr->value_len, ATTR_SECURE);
if (error < 0) if (error < 0)
break; break;
} }
...@@ -93,8 +93,8 @@ xfs_init_security( ...@@ -93,8 +93,8 @@ xfs_init_security(
struct inode *dir, struct inode *dir,
const struct qstr *qstr) const struct qstr *qstr)
{ {
return security_inode_init_security(inode, dir, qstr, return -security_inode_init_security(inode, dir, qstr,
&xfs_initxattrs, NULL); &xfs_initxattrs, NULL);
} }
static void static void
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment