summaryrefslogtreecommitdiffstats
path: root/block/blk-mq-sched.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2017-06-16 18:15:20 +0200
committerJens Axboe <axboe@kernel.dk>2017-06-18 10:08:55 -0600
commitea511e3c28c892f689173c91662437c4ddb2ab38 (patch)
tree0b473ed37ae7f9baed22b4d2f89731bf8c35e4ee /block/blk-mq-sched.c
parentd2c0d3832469b947ca158e8977e66e8e2e64d8dd (diff)
downloadlinux-0-day-ea511e3c28c892f689173c91662437c4ddb2ab38.tar.gz
linux-0-day-ea511e3c28c892f689173c91662437c4ddb2ab38.tar.xz
blk-mq: remove blk_mq_sched_{get,put}_rq_priv
Having these as separate helpers in a header really does not help readability, or my chances to refactor this code sanely. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-mq-sched.c')
-rw-r--r--block/blk-mq-sched.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/block/blk-mq-sched.c b/block/blk-mq-sched.c
index 62db188595dc1..22601e5c6f198 100644
--- a/block/blk-mq-sched.c
+++ b/block/blk-mq-sched.c
@@ -36,6 +36,7 @@ static void __blk_mq_sched_assign_ioc(struct request_queue *q,
struct bio *bio,
struct io_context *ioc)
{
+ struct elevator_queue *e = q->elevator;
struct io_cq *icq;
spin_lock_irq(q->queue_lock);
@@ -49,13 +50,14 @@ static void __blk_mq_sched_assign_ioc(struct request_queue *q,
}
rq->elv.icq = icq;
- if (!blk_mq_sched_get_rq_priv(q, rq, bio)) {
- rq->rq_flags |= RQF_ELVPRIV;
- get_io_context(icq->ioc);
+ if (e && e->type->ops.mq.get_rq_priv &&
+ e->type->ops.mq.get_rq_priv(q, rq, bio)) {
+ rq->elv.icq = NULL;
return;
}
- rq->elv.icq = NULL;
+ rq->rq_flags |= RQF_ELVPRIV;
+ get_io_context(icq->ioc);
}
void blk_mq_sched_assign_ioc(struct request_queue *q, struct request *rq,