diff options
author | Christoph Hellwig <hch@lst.de> | 2023-02-03 16:03:55 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2023-02-03 16:20:05 +0100 |
commit | 3963d84df7974b6687cb34bce3b9e0b2686f839c (patch) | |
tree | 04447fb9346c93da45ac5e0d5265c45e70f987a4 /block/blk-iocost.c | |
parent | blk-rq-qos: make rq_qos_add and rq_qos_del more useful (diff) | |
download | linux-3963d84df7974b6687cb34bce3b9e0b2686f839c.tar.xz linux-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-iocost.c')
-rw-r--r-- | block/blk-iocost.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-iocost.c b/block/blk-iocost.c index 5f28463cba0a..6f1da7883905 100644 --- a/block/blk-iocost.c +++ b/block/blk-iocost.c @@ -2832,7 +2832,7 @@ static void ioc_rqos_exit(struct rq_qos *rqos) kfree(ioc); } -static struct rq_qos_ops ioc_rqos_ops = { +static const struct rq_qos_ops ioc_rqos_ops = { .throttle = ioc_rqos_throttle, .merge = ioc_rqos_merge, .done_bio = ioc_rqos_done_bio, |