From: Gabriel Krisman Bertazi Date: Thu, 22 Oct 2020 20:58:41 +0000 (-0400) Subject: blk-cgroup: Fix memleak on error path X-Git-Tag: v4.19.156~23 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=6dba51828dfd31e326e6642727ede24c054a86fe;p=users%2Fdwmw2%2Flinux.git blk-cgroup: Fix memleak on error path [ Upstream commit 52abfcbd57eefdd54737fc8c2dc79d8f46d4a3e5 ] If new_blkg allocation raced with blk_policy change and blkg_lookup_check fails, new_blkg is leaked. Acked-by: Tejun Heo Signed-off-by: Gabriel Krisman Bertazi Signed-off-by: Jens Axboe Signed-off-by: Sasha Levin --- diff --git a/block/blk-cgroup.c b/block/blk-cgroup.c index a06547fe6f6b4..51fc803c999d7 100644 --- a/block/blk-cgroup.c +++ b/block/blk-cgroup.c @@ -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; }