]> exis.tech > repos - linux.git/commit
blk-cgroup: fix leaks and online flag on radix_tree_insert failure
authorTao Cui <cuitao@kylinos.cn>
Wed, 15 Jul 2026 13:24:07 +0000 (21:24 +0800)
committerJens Axboe <axboe@kernel.dk>
Wed, 15 Jul 2026 22:31:43 +0000 (16:31 -0600)
commitdbbca20764382b4d411ec2918f4e278ffe547acc
tree75bf75431aa203c7ec16c213accf0f39c4f5fcdd
parentc4f4c0fc551cbcdccbbbc2d874d7d6440c7b4983
blk-cgroup: fix leaks and online flag on radix_tree_insert failure

When radix_tree_insert() fails in blkg_create(), the error path has two
issues:

1. blkg->online is set to true unconditionally, even when the blkg was
   never fully inserted.  Move the assignment inside the success block.

2. The error path calls blkg_put() without first calling
   percpu_ref_kill().  Because the refcount is still in percpu mode,
   percpu_ref_put() only does this_cpu_sub() without checking for zero,
   so blkg_release() is never triggered.  This permanently leaks the
   blkg memory, its percpu iostat, policy data, the parent blkg
   reference, and the cgroup css reference — the latter preventing the
   cgroup from ever being destroyed.

Fix by replacing blkg_put() with percpu_ref_kill(), matching the pattern
used in blkg_destroy().

Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Tao Cui <cuitao@kylinos.cn>
Link: https://patch.msgid.link/20260715132407.1469777-1-cui.tao@linux.dev
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-cgroup.c