Commit 28474d94 authored by Nathan Scott's avatar Nathan Scott Committed by Christoph Hellwig

[XFS] Return the right error code on an ACL xattr version mismatch.

SGI Modid: xfs-linux:xfs-kern:169622a
parent a3b924e3
......@@ -111,7 +111,7 @@ posix_acl_xattr_to_xfs(
return EINVAL;
if (src->a_version != cpu_to_le32(POSIX_ACL_XATTR_VERSION))
return EINVAL;
return EOPNOTSUPP;
memset(dest, 0, sizeof(xfs_acl_t));
dest->acl_cnt = posix_acl_xattr_count(size);
......
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