]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
blk-mq: make mq_ops a const pointer
authorJens Axboe <axboe@fb.com>
Tue, 13 Dec 2016 16:24:51 +0000 (09:24 -0700)
committerJens Axboe <axboe@fb.com>
Thu, 12 Jan 2017 03:47:44 +0000 (20:47 -0700)
We never change it, make that clear.

Signed-off-by: Jens Axboe <axboe@fb.com>
Reviewed-by: Bart Van Assche <bart.vanassche@sandisk.com>
block/blk-mq.c
include/linux/blk-mq.h
include/linux/blkdev.h

index a8e67a155d04f6d937e890473b1647fbe95d210f..79e1cb0f7b15243dc2d51712f38155ca2fe4afcb 100644 (file)
@@ -639,7 +639,7 @@ struct blk_mq_timeout_data {
 
 void blk_mq_rq_timed_out(struct request *req, bool reserved)
 {
-       struct blk_mq_ops *ops = req->q->mq_ops;
+       const struct blk_mq_ops *ops = req->q->mq_ops;
        enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
 
        /*
index 4a2ab5d99ff7ed8a64baa99ae708b30edca00e4d..afc81d77e4713c3ef13c7b040a1949b5929cd2d4 100644 (file)
@@ -60,7 +60,7 @@ struct blk_mq_hw_ctx {
 
 struct blk_mq_tag_set {
        unsigned int            *mq_map;
-       struct blk_mq_ops       *ops;
+       const struct blk_mq_ops *ops;
        unsigned int            nr_hw_queues;
        unsigned int            queue_depth;    /* max hw supported */
        unsigned int            reserved_tags;
index b20da8dfa7ecc1dfbf2f0bf0e083231e07c41108..2e99d659b0f16786dd64ed489b79bb0431caa0bf 100644 (file)
@@ -407,7 +407,7 @@ struct request_queue {
        dma_drain_needed_fn     *dma_drain_needed;
        lld_busy_fn             *lld_busy_fn;
 
-       struct blk_mq_ops       *mq_ops;
+       const struct blk_mq_ops *mq_ops;
 
        unsigned int            *mq_map;