OSDN Git Service

f2fs: fix wrong return value of f2fs_acl_create
authorTiezhu Yang <kernelpatch@126.com>
Tue, 20 Nov 2018 23:21:38 +0000 (07:21 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Feb 2019 09:13:06 +0000 (10:13 +0100)
commitd67dec906b7a9069c5541fce2b50118178133a1a
tree9665d70dd0301e942c07c5a47ebb9cab98260959
parent262871e633994cd2fd5b68a2a8c3984081576511
f2fs: fix wrong return value of f2fs_acl_create

[ Upstream commit f6176473a0c7472380eef72ebeb330cf9485bf0a ]

When call f2fs_acl_create_masq() failed, the caller f2fs_acl_create()
should return -EIO instead of -ENOMEM, this patch makes it consistent
with posix_acl_create() which has been fixed in commit beaf226b863a
("posix_acl: don't ignore return value of posix_acl_create_masq()").

Fixes: 83dfe53c185e ("f2fs: fix reference leaks in f2fs_acl_create")
Signed-off-by: Tiezhu Yang <kernelpatch@126.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/f2fs/acl.c