aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChengguang Xu <cgxu519@gmx.com>2018-06-27 00:16:37 -0400
committerDavid Sterba <dsterba@suse.com>2018-08-06 07:12:40 -0400
commitdc7789ef8785ea996ecf302a89415439ccf10faa (patch)
treeb86b925e8678202c3323c174566618693f650de0
parent5ee552da503961e6df785b8495bcfc98eb30eb2a (diff)
btrfs: avoid error code override in btrfs_get_acl
It's not good to override the error code when failing from btrfs_getxattr() in btrfs_get_acl() because it hides the real reason of the failure. 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>
-rw-r--r--fs/btrfs/acl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/acl.c b/fs/btrfs/acl.c
index a1d7211c8884..7d673ec9e54a 100644
--- a/fs/btrfs/acl.c
+++ b/fs/btrfs/acl.c
@@ -45,7 +45,7 @@ struct posix_acl *btrfs_get_acl(struct inode *inode, int type)
45 } else if (size == -ENODATA || size == 0) { 45 } else if (size == -ENODATA || size == 0) {
46 acl = NULL; 46 acl = NULL;
47 } else { 47 } else {
48 acl = ERR_PTR(-EIO); 48 acl = ERR_PTR(size);
49 } 49 }
50 kfree(value); 50 kfree(value);
51 51