From: Chengguang Xu Date: Wed, 27 Jun 2018 04:16:37 +0000 (+0800) Subject: btrfs: avoid error code override in btrfs_get_acl X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=dc7789ef8785ea996ecf302a89415439ccf10faa;p=openwrt%2Fstaging%2Fblogic.git 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 Reviewed-by: Nikolay Borisov Reviewed-by: David Sterba Signed-off-by: David Sterba --- 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) } else if (size == -ENODATA || size == 0) { acl = NULL; } else { - acl = ERR_PTR(-EIO); + acl = ERR_PTR(size); } kfree(value);