summaryrefslogtreecommitdiffstats
path: root/block/blk-cgroup.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2022-09-21 20:04:51 +0200
committerJens Axboe <axboe@kernel.dk>2022-09-26 19:09:31 -0600
commitb0dde3f5d628f76f461fb650e2cebfac3460cff6 (patch)
tree465e4f474099a31291db0533b44fd2dfaf16a6c4 /block/blk-cgroup.c
parent9823538fb7efe66ce987a1e4c0e0f3dc882623c4 (diff)
downloadlinux-b0dde3f5d628f76f461fb650e2cebfac3460cff6.tar.bz2
blk-ioprio: pass a gendisk to blk_ioprio_init and blk_ioprio_exit
Pass the gendisk to blk_ioprio_init and blk_ioprio_exit as part of moving the blk-cgroup infrastructure to be gendisk based. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Andreas Herrmann <aherrmann@suse.de> Acked-by: Tejun Heo <tj@kernel.org> Link: https://lore.kernel.org/r/20220921180501.1539876-8-hch@lst.de Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-cgroup.c')
-rw-r--r--block/blk-cgroup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/block/blk-cgroup.c b/block/blk-cgroup.c
index 4ca6933a7c3f..89974fd0db3d 100644
--- a/block/blk-cgroup.c
+++ b/block/blk-cgroup.c
@@ -1257,7 +1257,7 @@ int blkcg_init_disk(struct gendisk *disk)
if (preloaded)
radix_tree_preload_end();
- ret = blk_ioprio_init(q);
+ ret = blk_ioprio_init(disk);
if (ret)
goto err_destroy_all;
@@ -1274,7 +1274,7 @@ int blkcg_init_disk(struct gendisk *disk)
err_throtl_exit:
blk_throtl_exit(q);
err_ioprio_exit:
- blk_ioprio_exit(q);
+ blk_ioprio_exit(disk);
err_destroy_all:
blkg_destroy_all(q);
return ret;