projects
/
wrapfs-2.6.38.y.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
914fc55
)
blk-cgroup: Fix memleak on error path
author
Gabriel Krisman Bertazi
<krisman@collabora.com>
Thu, 22 Oct 2020 20:58:41 +0000
(16:58 -0400)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 10 Nov 2020 11:37:29 +0000
(12:37 +0100)
[ 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 <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>
block/blk-cgroup.c
patch
|
blob
|
history
diff --git
a/block/blk-cgroup.c
b/block/blk-cgroup.c
index 0c7addcd198592e8a09fb852c1d852ed09546e04..a4793cfb68f28e5a8eafb9d387771b5c7825cd04 100644
(file)
--- a/
block/blk-cgroup.c
+++ b/
block/blk-cgroup.c
@@
-861,6
+861,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;
}