summaryrefslogtreecommitdiffstats
path: root/fs/gfs2/acl.c
diff options
context:
space:
mode:
authorJie Liu2014-03-04 04:28:39 +0100
committerSteven Whitehouse2014-03-06 11:39:32 +0100
commitf2113eb8a4ede4016199492f3e10f5a165b04fcd (patch)
tree262e21fa5d70775d4d72755ccd824b3c906bd4ed /fs/gfs2/acl.c
parentGFS2: Clean up journal extent mapping (diff)
downloadkernel-qcow2-linux-f2113eb8a4ede4016199492f3e10f5a165b04fcd.tar.gz
kernel-qcow2-linux-f2113eb8a4ede4016199492f3e10f5a165b04fcd.tar.xz
kernel-qcow2-linux-f2113eb8a4ede4016199492f3e10f5a165b04fcd.zip
GFS2: return -E2BIG if hit the maximum limits of ACLs
Return -E2BIG rather than -EINVAL if hit the maximum size limits of ACLs, as the former errno is consistent with VFS xattr syscalls. This is pointed out by Dave Chinner in previous discussion thread: http://www.spinics.net/lists/linux-fsdevel/msg71125.html Signed-off-by: Jie Liu <jeff.liu@oracle.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/acl.c')
-rw-r--r--fs/gfs2/acl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/acl.c b/fs/gfs2/acl.c
index ba9456685f47..9c59ebe790b6 100644
--- a/fs/gfs2/acl.c
+++ b/fs/gfs2/acl.c
@@ -86,7 +86,7 @@ int gfs2_set_acl(struct inode *inode, struct posix_acl *acl, int type)
BUG_ON(name == NULL);
if (acl->a_count > GFS2_ACL_MAX_ENTRIES)
- return -EINVAL;
+ return -E2BIG;
if (type == ACL_TYPE_ACCESS) {
umode_t mode = inode->i_mode;