summaryrefslogtreecommitdiffstats
path: root/block/blk-iolatency.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2023-02-03 16:03:55 +0100
committerJens Axboe <axboe@kernel.dk>2023-02-03 08:20:05 -0700
commit3963d84df7974b6687cb34bce3b9e0b2686f839c (patch)
tree04447fb9346c93da45ac5e0d5265c45e70f987a4 /block/blk-iolatency.c
parentce57b558604e68277d31ca5ce49ec4579a8618c5 (diff)
downloadlinux-stable-3963d84df7974b6687cb34bce3b9e0b2686f839c.tar.gz
linux-stable-3963d84df7974b6687cb34bce3b9e0b2686f839c.tar.bz2
linux-stable-3963d84df7974b6687cb34bce3b9e0b2686f839c.zip
blk-rq-qos: constify rq_qos_ops
These op vectors are constant, so mark them const. 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/20230203150400.3199230-15-hch@lst.de Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-iolatency.c')
-rw-r--r--block/blk-iolatency.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-iolatency.c b/block/blk-iolatency.c
index 1c394bd77aa0..f6aeb3d3fdae 100644
--- a/block/blk-iolatency.c
+++ b/block/blk-iolatency.c
@@ -650,7 +650,7 @@ static void blkcg_iolatency_exit(struct rq_qos *rqos)
kfree(blkiolat);
}
-static struct rq_qos_ops blkcg_iolatency_ops = {
+static const struct rq_qos_ops blkcg_iolatency_ops = {
.throttle = blkcg_iolatency_throttle,
.done_bio = blkcg_iolatency_done_bio,
.exit = blkcg_iolatency_exit,