]> git.baikalelectronics.ru Git - kernel.git/commit
block: fix bio_clone_blkg_association() to associate with proper blkcg_gq
authorJan Kara <jack@suse.cz>
Thu, 2 Jun 2022 08:12:42 +0000 (10:12 +0200)
committerJens Axboe <axboe@kernel.dk>
Thu, 2 Jun 2022 08:15:05 +0000 (02:15 -0600)
commit45dceee6a0930d97d99f93026b1a00a427d75b16
tree6233c7ff7b1655ea6f22c730b708ee9f44359474
parent4bc0766ea7cbddf1186dd22b3e5d270762648f5b
block: fix bio_clone_blkg_association() to associate with proper blkcg_gq

Commit 0ebfbb78152a ("block: really clone the block cgroup in
bio_clone_blkg_association") changed bio_clone_blkg_association() to
just clone bio->bi_blkg reference from source to destination bio. This
is however wrong if the source and destination bios are against
different block devices because struct blkcg_gq is different for each
bdev-blkcg pair. This will result in IOs being accounted (and throttled
as a result) multiple times against the same device (src bdev) while
throttling of the other device (dst bdev) is ignored. In case of BFQ the
inconsistency can even result in crashes in bfq_bic_update_cgroup().
Fix the problem by looking up correct blkcg_gq for the cloned bio.

Reported-by: Logan Gunthorpe <logang@deltatee.com>
Reported-and-tested-by: Donald Buczek <buczek@molgen.mpg.de>
Fixes: 0ebfbb78152a ("block: really clone the block cgroup in bio_clone_blkg_association")
CC: stable@vger.kernel.org
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jan Kara <jack@suse.cz>
Link: https://lore.kernel.org/r/20220602081242.7731-1-jack@suse.cz
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-cgroup.c