]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
dm: use bio_clone_blkg_association
authorMikulas Patocka <mpatocka@redhat.com>
Mon, 26 Jan 2026 14:36:22 +0000 (15:36 +0100)
committerMikulas Patocka <mpatocka@redhat.com>
Mon, 26 Jan 2026 14:36:22 +0000 (15:36 +0100)
The origin bio carries blk-cgroup information which could be set from
foreground(task_css(css) - wbc->wb->blkcg_css), so the blkcg won't
control buffer io since commit ca522482e3eaf ("dm: pass NULL bdev to
bio_alloc_clone"). The synchronous io is still under control by blkcg,
because 'bio->bi_blkg' is set by io submitting task which has been added
into 'cgroup.procs'.

Fix it by using bio_clone_blkg_association when submitting a cloned bio.

Link: https://bugzilla.kernel.org/show_bug.cgi?id=220985
Fixes: ca522482e3eaf ("dm: pass NULL bdev to bio_alloc_clone")
Reported-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Tested-by: Zhihao Cheng <chengzhihao1@huawei.com>
drivers/md/dm.c

index ea2c43cddde1f140a6359def2a1f547313293554..e178fe19973ea380abc0d3586fde7e7ff66b2fa9 100644 (file)
@@ -1364,6 +1364,8 @@ void dm_submit_bio_remap(struct bio *clone, struct bio *tgt_clone)
        if (!tgt_clone)
                tgt_clone = clone;
 
+       bio_clone_blkg_association(tgt_clone, io->orig_bio);
+
        /*
         * Account io->origin_bio to DM dev on behalf of target
         * that took ownership of IO with DM_MAPIO_SUBMITTED.