mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 11:26:02 +09:00
blk-cgroup: Fix memleak on error path
[ Upstream commit 52abfcbd57 ]
If new_blkg allocation raced with blk_policy change and
blkg_lookup_check fails, new_blkg is leaked.
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b8f922aa95
commit
6dba51828d
@@ -882,6 +882,7 @@ int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
|
||||
blkg = blkg_lookup_check(pos, pol, q);
|
||||
if (IS_ERR(blkg)) {
|
||||
ret = PTR_ERR(blkg);
|
||||
blkg_free(new_blkg);
|
||||
goto fail_unlock;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user