aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/acl.c
diff options
context:
space:
mode:
authorJie Liu <jeff.liu@oracle.com>2014-03-04 11:28:39 +0800
committerSteven Whitehouse <swhiteho@redhat.com>2014-03-06 10:39:32 +0000
commitf2113eb8a4ede4016199492f3e10f5a165b04fcd (patch)
tree262e21fa5d70775d4d72755ccd824b3c906bd4ed /fs/gfs2/acl.c
parentb50f227bddf110ae4ea2df1ebdf7e282ad481803 (diff)
downloadlinux-f2113eb8a4ede4016199492f3e10f5a165b04fcd.tar.gz
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 ba9456685f47d..9c59ebe790b6a 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;