Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

btrfs: remove unnecessary -ERANGE check in btrfs_get_acl

There is no chance to get into -ERANGE error condition because we first
call btrfs_getxattr to get the length of the attribute, then we do a
subsequent call with the size from the first call. Between the 2 calls
the size shouldn't change. So remove the unnecessary -ERANGE error
check.

Signed-off-by: Chengguang Xu <cgxu519@gmx.com>
Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>

authored by

Chengguang Xu and committed by
David Sterba
5ee552da 7e35eab9

+1 -1
+1 -1
fs/btrfs/acl.c
··· 42 42 } 43 43 if (size > 0) { 44 44 acl = posix_acl_from_xattr(&init_user_ns, value, size); 45 - } else if (size == -ERANGE || size == -ENODATA || size == 0) { 45 + } else if (size == -ENODATA || size == 0) { 46 46 acl = NULL; 47 47 } else { 48 48 acl = ERR_PTR(-EIO);