diff options
author | Eric Biggers <ebiggers@google.com> | 2017-03-30 13:39:16 -0700 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2017-03-31 08:28:58 -0600 |
commit | f363b089be0a39fe4282c688118a51d21f952bc7 (patch) | |
tree | 67ef76e6c2f43898be5f8ff9caaf692132236f86 /drivers/md | |
parent | db5bcf87bb9e856e90c131d6e636a5550c2bbcd3 (diff) |
blk-mq: constify struct blk_mq_ops
Constify all instances of blk_mq_ops, as they are never modified.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/dm-rq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-rq.c b/drivers/md/dm-rq.c index 28955b94d2b2..6886bf160fb2 100644 --- a/drivers/md/dm-rq.c +++ b/drivers/md/dm-rq.c @@ -761,7 +761,7 @@ static int dm_mq_queue_rq(struct blk_mq_hw_ctx *hctx, return BLK_MQ_RQ_QUEUE_OK; } -static struct blk_mq_ops dm_mq_ops = { +static const struct blk_mq_ops dm_mq_ops = { .queue_rq = dm_mq_queue_rq, .complete = dm_softirq_done, .init_request = dm_mq_init_request, |