blob: b29e7dc7b309e4cf939cd2c011b26b38dfd4df73 [file] [log] [blame]
Jens Axboe75bb4622014-05-28 10:15:41 -06001/*
2 * Block multiqueue core code
3 *
4 * Copyright (C) 2013-2014 Jens Axboe
5 * Copyright (C) 2013-2014 Christoph Hellwig
6 */
Jens Axboe320ae512013-10-24 09:20:05 +01007#include <linux/kernel.h>
8#include <linux/module.h>
9#include <linux/backing-dev.h>
10#include <linux/bio.h>
11#include <linux/blkdev.h>
Catalin Marinasf75782e2015-09-14 18:16:02 +010012#include <linux/kmemleak.h>
Jens Axboe320ae512013-10-24 09:20:05 +010013#include <linux/mm.h>
14#include <linux/init.h>
15#include <linux/slab.h>
16#include <linux/workqueue.h>
17#include <linux/smp.h>
18#include <linux/llist.h>
19#include <linux/list_sort.h>
20#include <linux/cpu.h>
21#include <linux/cache.h>
22#include <linux/sched/sysctl.h>
23#include <linux/delay.h>
Jens Axboeaedcd722014-09-17 08:27:03 -060024#include <linux/crash_dump.h>
Jens Axboe88c7b2b2016-08-25 08:07:30 -060025#include <linux/prefetch.h>
Jens Axboe320ae512013-10-24 09:20:05 +010026
27#include <trace/events/block.h>
28
29#include <linux/blk-mq.h>
30#include "blk.h"
31#include "blk-mq.h"
32#include "blk-mq-tag.h"
Jens Axboecf43e6b2016-11-07 21:32:37 -070033#include "blk-stat.h"
Jens Axboe87760e52016-11-09 12:38:14 -070034#include "blk-wbt.h"
Jens Axboebd166ef2017-01-17 06:03:22 -070035#include "blk-mq-sched.h"
Jens Axboe320ae512013-10-24 09:20:05 +010036
37static DEFINE_MUTEX(all_q_mutex);
38static LIST_HEAD(all_q_list);
39
Jens Axboe320ae512013-10-24 09:20:05 +010040/*
41 * Check if any of the ctx's have pending work in this hardware queue
42 */
Jens Axboe50e1dab2017-01-26 14:42:34 -070043bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
Jens Axboe320ae512013-10-24 09:20:05 +010044{
Jens Axboebd166ef2017-01-17 06:03:22 -070045 return sbitmap_any_bit_set(&hctx->ctx_map) ||
46 !list_empty_careful(&hctx->dispatch) ||
47 blk_mq_sched_has_work(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +010048}
49
50/*
51 * Mark this ctx as having pending work in this hardware queue
52 */
53static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
54 struct blk_mq_ctx *ctx)
55{
Omar Sandoval88459642016-09-17 08:38:44 -060056 if (!sbitmap_test_bit(&hctx->ctx_map, ctx->index_hw))
57 sbitmap_set_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe1429d7c2014-05-19 09:23:55 -060058}
59
60static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
61 struct blk_mq_ctx *ctx)
62{
Omar Sandoval88459642016-09-17 08:38:44 -060063 sbitmap_clear_bit(&hctx->ctx_map, ctx->index_hw);
Jens Axboe320ae512013-10-24 09:20:05 +010064}
65
Keith Buschb4c6a022014-12-19 17:54:14 -070066void blk_mq_freeze_queue_start(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +080067{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020068 int freeze_depth;
Tejun Heocddd5d12014-08-16 08:02:24 -040069
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +020070 freeze_depth = atomic_inc_return(&q->mq_freeze_depth);
71 if (freeze_depth == 1) {
Dan Williams3ef28e82015-10-21 13:20:12 -040072 percpu_ref_kill(&q->q_usage_counter);
Mike Snitzerb94ec292015-03-11 23:56:38 -040073 blk_mq_run_hw_queues(q, false);
Tejun Heocddd5d12014-08-16 08:02:24 -040074 }
Tejun Heof3af0202014-11-04 13:52:27 -050075}
Keith Buschb4c6a022014-12-19 17:54:14 -070076EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_start);
Tejun Heof3af0202014-11-04 13:52:27 -050077
78static void blk_mq_freeze_queue_wait(struct request_queue *q)
79{
Dan Williams3ef28e82015-10-21 13:20:12 -040080 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +080081}
82
Tejun Heof3af0202014-11-04 13:52:27 -050083/*
84 * Guarantee no request is in use, so we can change any data structure of
85 * the queue afterward.
86 */
Dan Williams3ef28e82015-10-21 13:20:12 -040087void blk_freeze_queue(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -050088{
Dan Williams3ef28e82015-10-21 13:20:12 -040089 /*
90 * In the !blk_mq case we are only calling this to kill the
91 * q_usage_counter, otherwise this increases the freeze depth
92 * and waits for it to return to zero. For this reason there is
93 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
94 * exported to drivers as the only user for unfreeze is blk_mq.
95 */
Tejun Heof3af0202014-11-04 13:52:27 -050096 blk_mq_freeze_queue_start(q);
97 blk_mq_freeze_queue_wait(q);
98}
Dan Williams3ef28e82015-10-21 13:20:12 -040099
100void blk_mq_freeze_queue(struct request_queue *q)
101{
102 /*
103 * ...just an alias to keep freeze and unfreeze actions balanced
104 * in the blk_mq_* namespace
105 */
106 blk_freeze_queue(q);
107}
Jens Axboec761d962015-01-02 15:05:12 -0700108EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
Tejun Heof3af0202014-11-04 13:52:27 -0500109
Keith Buschb4c6a022014-12-19 17:54:14 -0700110void blk_mq_unfreeze_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +0100111{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200112 int freeze_depth;
Jens Axboe320ae512013-10-24 09:20:05 +0100113
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200114 freeze_depth = atomic_dec_return(&q->mq_freeze_depth);
115 WARN_ON_ONCE(freeze_depth < 0);
116 if (!freeze_depth) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400117 percpu_ref_reinit(&q->q_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100118 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600119 }
Jens Axboe320ae512013-10-24 09:20:05 +0100120}
Keith Buschb4c6a022014-12-19 17:54:14 -0700121EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
Jens Axboe320ae512013-10-24 09:20:05 +0100122
Bart Van Assche6a83e742016-11-02 10:09:51 -0600123/**
124 * blk_mq_quiesce_queue() - wait until all ongoing queue_rq calls have finished
125 * @q: request queue.
126 *
127 * Note: this function does not prevent that the struct request end_io()
128 * callback function is invoked. Additionally, it is not prevented that
129 * new queue_rq() calls occur unless the queue has been stopped first.
130 */
131void blk_mq_quiesce_queue(struct request_queue *q)
132{
133 struct blk_mq_hw_ctx *hctx;
134 unsigned int i;
135 bool rcu = false;
136
137 blk_mq_stop_hw_queues(q);
138
139 queue_for_each_hw_ctx(q, hctx, i) {
140 if (hctx->flags & BLK_MQ_F_BLOCKING)
141 synchronize_srcu(&hctx->queue_rq_srcu);
142 else
143 rcu = true;
144 }
145 if (rcu)
146 synchronize_rcu();
147}
148EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue);
149
Jens Axboeaed3ea92014-12-22 14:04:42 -0700150void blk_mq_wake_waiters(struct request_queue *q)
151{
152 struct blk_mq_hw_ctx *hctx;
153 unsigned int i;
154
155 queue_for_each_hw_ctx(q, hctx, i)
156 if (blk_mq_hw_queue_mapped(hctx))
157 blk_mq_tag_wakeup_all(hctx->tags, true);
Keith Busch3fd59402015-01-08 08:53:56 -0700158
159 /*
160 * If we are called because the queue has now been marked as
161 * dying, we need to ensure that processes currently waiting on
162 * the queue are notified as well.
163 */
164 wake_up_all(&q->mq_freeze_wq);
Jens Axboeaed3ea92014-12-22 14:04:42 -0700165}
166
Jens Axboe320ae512013-10-24 09:20:05 +0100167bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
168{
169 return blk_mq_has_free_tags(hctx->tags);
170}
171EXPORT_SYMBOL(blk_mq_can_queue);
172
Jens Axboe2c3ad662016-12-14 14:34:47 -0700173void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
174 struct request *rq, unsigned int op)
Jens Axboe320ae512013-10-24 09:20:05 +0100175{
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200176 INIT_LIST_HEAD(&rq->queuelist);
177 /* csd/requeue_work/fifo_time is initialized before use */
178 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100179 rq->mq_ctx = ctx;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600180 rq->cmd_flags = op;
Christoph Hellwige8064022016-10-20 15:12:13 +0200181 if (blk_queue_io_stat(q))
182 rq->rq_flags |= RQF_IO_STAT;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200183 /* do not touch atomic flags, it needs atomic ops against the timer */
184 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200185 INIT_HLIST_NODE(&rq->hash);
186 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200187 rq->rq_disk = NULL;
188 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600189 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200190#ifdef CONFIG_BLK_CGROUP
191 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700192 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200193 rq->io_start_time_ns = 0;
194#endif
195 rq->nr_phys_segments = 0;
196#if defined(CONFIG_BLK_DEV_INTEGRITY)
197 rq->nr_integrity_segments = 0;
198#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200199 rq->special = NULL;
200 /* tag was already set */
201 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200202 rq->extra_len = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200203
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200204 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600205 rq->timeout = 0;
206
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200207 rq->end_io = NULL;
208 rq->end_io_data = NULL;
209 rq->next_rq = NULL;
210
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600211 ctx->rq_dispatched[op_is_sync(op)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100212}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700213EXPORT_SYMBOL_GPL(blk_mq_rq_ctx_init);
Jens Axboe320ae512013-10-24 09:20:05 +0100214
Jens Axboe2c3ad662016-12-14 14:34:47 -0700215struct request *__blk_mq_alloc_request(struct blk_mq_alloc_data *data,
216 unsigned int op)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200217{
218 struct request *rq;
219 unsigned int tag;
220
Ming Leicb96a422014-06-01 00:43:37 +0800221 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200222 if (tag != BLK_MQ_TAG_FAIL) {
Jens Axboebd166ef2017-01-17 06:03:22 -0700223 struct blk_mq_tags *tags = blk_mq_tags_from_data(data);
224
225 rq = tags->static_rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200226
Jens Axboebd166ef2017-01-17 06:03:22 -0700227 if (data->flags & BLK_MQ_REQ_INTERNAL) {
228 rq->tag = -1;
229 rq->internal_tag = tag;
230 } else {
Jens Axboe200e86b2017-01-25 08:11:38 -0700231 if (blk_mq_tag_busy(data->hctx)) {
232 rq->rq_flags = RQF_MQ_INFLIGHT;
233 atomic_inc(&data->hctx->nr_active);
234 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700235 rq->tag = tag;
236 rq->internal_tag = -1;
237 }
238
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600239 blk_mq_rq_ctx_init(data->q, data->ctx, rq, op);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200240 return rq;
241 }
242
243 return NULL;
244}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700245EXPORT_SYMBOL_GPL(__blk_mq_alloc_request);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200246
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100247struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
248 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100249{
Jens Axboe5a797e02017-01-26 12:22:11 -0700250 struct blk_mq_alloc_data alloc_data = { .flags = flags };
Jens Axboebd166ef2017-01-17 06:03:22 -0700251 struct request *rq;
Joe Lawrencea492f072014-08-28 08:15:21 -0600252 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100253
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100254 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600255 if (ret)
256 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100257
Jens Axboebd166ef2017-01-17 06:03:22 -0700258 rq = blk_mq_sched_get_request(q, NULL, rw, &alloc_data);
Jens Axboe841bac22016-09-21 10:08:43 -0600259
Jens Axboebd166ef2017-01-17 06:03:22 -0700260 blk_mq_put_ctx(alloc_data.ctx);
261 blk_queue_exit(q);
262
263 if (!rq)
Joe Lawrencea492f072014-08-28 08:15:21 -0600264 return ERR_PTR(-EWOULDBLOCK);
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200265
266 rq->__data_len = 0;
267 rq->__sector = (sector_t) -1;
268 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100269 return rq;
270}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600271EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100272
Ming Lin1f5bd332016-06-13 16:45:21 +0200273struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
274 unsigned int flags, unsigned int hctx_idx)
275{
276 struct blk_mq_hw_ctx *hctx;
277 struct blk_mq_ctx *ctx;
278 struct request *rq;
279 struct blk_mq_alloc_data alloc_data;
280 int ret;
281
282 /*
283 * If the tag allocator sleeps we could get an allocation for a
284 * different hardware context. No need to complicate the low level
285 * allocator for this for the rare use case of a command tied to
286 * a specific queue.
287 */
288 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
289 return ERR_PTR(-EINVAL);
290
291 if (hctx_idx >= q->nr_hw_queues)
292 return ERR_PTR(-EIO);
293
294 ret = blk_queue_enter(q, true);
295 if (ret)
296 return ERR_PTR(ret);
297
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600298 /*
299 * Check if the hardware context is actually mapped to anything.
300 * If not tell the caller that it should skip this queue.
301 */
Ming Lin1f5bd332016-06-13 16:45:21 +0200302 hctx = q->queue_hw_ctx[hctx_idx];
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600303 if (!blk_mq_hw_queue_mapped(hctx)) {
304 ret = -EXDEV;
305 goto out_queue_exit;
306 }
Ming Lin1f5bd332016-06-13 16:45:21 +0200307 ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask));
308
309 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600310 rq = __blk_mq_alloc_request(&alloc_data, rw);
Ming Lin1f5bd332016-06-13 16:45:21 +0200311 if (!rq) {
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600312 ret = -EWOULDBLOCK;
313 goto out_queue_exit;
Ming Lin1f5bd332016-06-13 16:45:21 +0200314 }
315
316 return rq;
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600317
318out_queue_exit:
319 blk_queue_exit(q);
320 return ERR_PTR(ret);
Ming Lin1f5bd332016-06-13 16:45:21 +0200321}
322EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
323
Jens Axboebd166ef2017-01-17 06:03:22 -0700324void __blk_mq_finish_request(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
325 struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100326{
Jens Axboebd166ef2017-01-17 06:03:22 -0700327 const int sched_tag = rq->internal_tag;
Jens Axboe320ae512013-10-24 09:20:05 +0100328 struct request_queue *q = rq->q;
329
Christoph Hellwige8064022016-10-20 15:12:13 +0200330 if (rq->rq_flags & RQF_MQ_INFLIGHT)
Jens Axboe0d2602c2014-05-13 15:10:52 -0600331 atomic_dec(&hctx->nr_active);
Jens Axboe87760e52016-11-09 12:38:14 -0700332
333 wbt_done(q->rq_wb, &rq->issue_stat);
Christoph Hellwige8064022016-10-20 15:12:13 +0200334 rq->rq_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600335
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200336 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe06426ad2016-11-14 13:01:59 -0700337 clear_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
Jens Axboebd166ef2017-01-17 06:03:22 -0700338 if (rq->tag != -1)
339 blk_mq_put_tag(hctx, hctx->tags, ctx, rq->tag);
340 if (sched_tag != -1)
341 blk_mq_sched_completed_request(hctx, rq);
Jens Axboe50e1dab2017-01-26 14:42:34 -0700342 blk_mq_sched_restart_queues(hctx);
Dan Williams3ef28e82015-10-21 13:20:12 -0400343 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100344}
345
Jens Axboebd166ef2017-01-17 06:03:22 -0700346static void blk_mq_finish_hctx_request(struct blk_mq_hw_ctx *hctx,
Jens Axboe16a3c2a2016-12-15 14:27:46 -0700347 struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100348{
349 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700350
351 ctx->rq_completed[rq_is_sync(rq)]++;
Jens Axboebd166ef2017-01-17 06:03:22 -0700352 __blk_mq_finish_request(hctx, ctx, rq);
353}
354
355void blk_mq_finish_request(struct request *rq)
356{
357 blk_mq_finish_hctx_request(blk_mq_map_queue(rq->q, rq->mq_ctx->cpu), rq);
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700358}
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700359
360void blk_mq_free_request(struct request *rq)
361{
Jens Axboebd166ef2017-01-17 06:03:22 -0700362 blk_mq_sched_put_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100363}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700364EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100365
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700366inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100367{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700368 blk_account_io_done(rq);
369
Christoph Hellwig91b63632014-04-16 09:44:53 +0200370 if (rq->end_io) {
Jens Axboe87760e52016-11-09 12:38:14 -0700371 wbt_done(rq->q->rq_wb, &rq->issue_stat);
Jens Axboe320ae512013-10-24 09:20:05 +0100372 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200373 } else {
374 if (unlikely(blk_bidi_rq(rq)))
375 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100376 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200377 }
Jens Axboe320ae512013-10-24 09:20:05 +0100378}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700379EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200380
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700381void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200382{
383 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
384 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700385 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200386}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700387EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100388
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800389static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100390{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800391 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100392
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800393 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100394}
395
Jens Axboeed851862014-05-30 21:20:50 -0600396static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100397{
398 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700399 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100400 int cpu;
401
Christoph Hellwig38535202014-04-25 02:32:53 -0700402 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800403 rq->q->softirq_done_fn(rq);
404 return;
405 }
Jens Axboe320ae512013-10-24 09:20:05 +0100406
407 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700408 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
409 shared = cpus_share_cache(cpu, ctx->cpu);
410
411 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800412 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800413 rq->csd.info = rq;
414 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100415 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800416 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800417 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800418 }
Jens Axboe320ae512013-10-24 09:20:05 +0100419 put_cpu();
420}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800421
Jens Axboecf43e6b2016-11-07 21:32:37 -0700422static void blk_mq_stat_add(struct request *rq)
423{
424 if (rq->rq_flags & RQF_STATS) {
425 /*
426 * We could rq->mq_ctx here, but there's less of a risk
427 * of races if we have the completion event add the stats
428 * to the local software queue.
429 */
430 struct blk_mq_ctx *ctx;
431
432 ctx = __blk_mq_get_ctx(rq->q, raw_smp_processor_id());
433 blk_stat_add(&ctx->stat[rq_data_dir(rq)], rq);
434 }
435}
436
Jens Axboe1fa8cc52015-11-05 14:32:55 -0700437static void __blk_mq_complete_request(struct request *rq)
Jens Axboeed851862014-05-30 21:20:50 -0600438{
439 struct request_queue *q = rq->q;
440
Jens Axboecf43e6b2016-11-07 21:32:37 -0700441 blk_mq_stat_add(rq);
442
Jens Axboeed851862014-05-30 21:20:50 -0600443 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700444 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600445 else
446 blk_mq_ipi_complete_request(rq);
447}
448
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800449/**
450 * blk_mq_complete_request - end I/O on a request
451 * @rq: the request being processed
452 *
453 * Description:
454 * Ends all I/O on a request. It does not handle partial completions.
455 * The actual completion happens out-of-order, through a IPI handler.
456 **/
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200457void blk_mq_complete_request(struct request *rq, int error)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800458{
Jens Axboe95f09682014-05-27 17:46:48 -0600459 struct request_queue *q = rq->q;
460
461 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800462 return;
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200463 if (!blk_mark_rq_complete(rq)) {
464 rq->errors = error;
Jens Axboeed851862014-05-30 21:20:50 -0600465 __blk_mq_complete_request(rq);
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200466 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800467}
468EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100469
Keith Busch973c0192015-01-07 18:55:43 -0700470int blk_mq_request_started(struct request *rq)
471{
472 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
473}
474EXPORT_SYMBOL_GPL(blk_mq_request_started);
475
Christoph Hellwige2490072014-09-13 16:40:09 -0700476void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100477{
478 struct request_queue *q = rq->q;
479
Jens Axboebd166ef2017-01-17 06:03:22 -0700480 blk_mq_sched_started_request(rq);
481
Jens Axboe320ae512013-10-24 09:20:05 +0100482 trace_block_rq_issue(q, rq);
483
Jens Axboecf43e6b2016-11-07 21:32:37 -0700484 if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) {
485 blk_stat_set_issue_time(&rq->issue_stat);
486 rq->rq_flags |= RQF_STATS;
Jens Axboe87760e52016-11-09 12:38:14 -0700487 wbt_issue(q->rq_wb, &rq->issue_stat);
Jens Axboecf43e6b2016-11-07 21:32:37 -0700488 }
489
Ming Lei2b8393b2014-06-10 00:16:41 +0800490 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600491
492 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600493 * Ensure that ->deadline is visible before set the started
494 * flag and clear the completed flag.
495 */
496 smp_mb__before_atomic();
497
498 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600499 * Mark us as started and clear complete. Complete might have been
500 * set if requeue raced with timeout, which then marked it as
501 * complete. So be sure to clear complete again when we start
502 * the request, otherwise we'll ignore the completion event.
503 */
Jens Axboe4b570522014-05-29 11:00:11 -0600504 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
505 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
506 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
507 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800508
509 if (q->dma_drain_size && blk_rq_bytes(rq)) {
510 /*
511 * Make sure space for the drain appears. We know we can do
512 * this because max_hw_segments has been adjusted to be one
513 * fewer than the device can handle.
514 */
515 rq->nr_phys_segments++;
516 }
Jens Axboe320ae512013-10-24 09:20:05 +0100517}
Christoph Hellwige2490072014-09-13 16:40:09 -0700518EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100519
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200520static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100521{
522 struct request_queue *q = rq->q;
523
524 trace_block_rq_requeue(q, rq);
Jens Axboe87760e52016-11-09 12:38:14 -0700525 wbt_requeue(q->rq_wb, &rq->issue_stat);
Jens Axboebd166ef2017-01-17 06:03:22 -0700526 blk_mq_sched_requeue_request(rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800527
Christoph Hellwige2490072014-09-13 16:40:09 -0700528 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
529 if (q->dma_drain_size && blk_rq_bytes(rq))
530 rq->nr_phys_segments--;
531 }
Jens Axboe320ae512013-10-24 09:20:05 +0100532}
533
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700534void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200535{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200536 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200537
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200538 BUG_ON(blk_queued_rq(rq));
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700539 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200540}
541EXPORT_SYMBOL(blk_mq_requeue_request);
542
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600543static void blk_mq_requeue_work(struct work_struct *work)
544{
545 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400546 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600547 LIST_HEAD(rq_list);
548 struct request *rq, *next;
549 unsigned long flags;
550
551 spin_lock_irqsave(&q->requeue_lock, flags);
552 list_splice_init(&q->requeue_list, &rq_list);
553 spin_unlock_irqrestore(&q->requeue_lock, flags);
554
555 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200556 if (!(rq->rq_flags & RQF_SOFTBARRIER))
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600557 continue;
558
Christoph Hellwige8064022016-10-20 15:12:13 +0200559 rq->rq_flags &= ~RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600560 list_del_init(&rq->queuelist);
Jens Axboebd6737f2017-01-27 01:00:47 -0700561 blk_mq_sched_insert_request(rq, true, false, false, true);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600562 }
563
564 while (!list_empty(&rq_list)) {
565 rq = list_entry(rq_list.next, struct request, queuelist);
566 list_del_init(&rq->queuelist);
Jens Axboebd6737f2017-01-27 01:00:47 -0700567 blk_mq_sched_insert_request(rq, false, false, false, true);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600568 }
569
Bart Van Assche52d7f1b2016-10-28 17:20:32 -0700570 blk_mq_run_hw_queues(q, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600571}
572
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700573void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
574 bool kick_requeue_list)
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600575{
576 struct request_queue *q = rq->q;
577 unsigned long flags;
578
579 /*
580 * We abuse this flag that is otherwise used by the I/O scheduler to
581 * request head insertation from the workqueue.
582 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200583 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600584
585 spin_lock_irqsave(&q->requeue_lock, flags);
586 if (at_head) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200587 rq->rq_flags |= RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600588 list_add(&rq->queuelist, &q->requeue_list);
589 } else {
590 list_add_tail(&rq->queuelist, &q->requeue_list);
591 }
592 spin_unlock_irqrestore(&q->requeue_lock, flags);
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700593
594 if (kick_requeue_list)
595 blk_mq_kick_requeue_list(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600596}
597EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
598
599void blk_mq_kick_requeue_list(struct request_queue *q)
600{
Mike Snitzer28494502016-09-14 13:28:30 -0400601 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600602}
603EXPORT_SYMBOL(blk_mq_kick_requeue_list);
604
Mike Snitzer28494502016-09-14 13:28:30 -0400605void blk_mq_delay_kick_requeue_list(struct request_queue *q,
606 unsigned long msecs)
607{
608 kblockd_schedule_delayed_work(&q->requeue_work,
609 msecs_to_jiffies(msecs));
610}
611EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
612
Jens Axboe1885b242015-01-07 18:55:45 -0700613void blk_mq_abort_requeue_list(struct request_queue *q)
614{
615 unsigned long flags;
616 LIST_HEAD(rq_list);
617
618 spin_lock_irqsave(&q->requeue_lock, flags);
619 list_splice_init(&q->requeue_list, &rq_list);
620 spin_unlock_irqrestore(&q->requeue_lock, flags);
621
622 while (!list_empty(&rq_list)) {
623 struct request *rq;
624
625 rq = list_first_entry(&rq_list, struct request, queuelist);
626 list_del_init(&rq->queuelist);
627 rq->errors = -EIO;
628 blk_mq_end_request(rq, rq->errors);
629 }
630}
631EXPORT_SYMBOL(blk_mq_abort_requeue_list);
632
Jens Axboe0e62f512014-06-04 10:23:49 -0600633struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
634{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600635 if (tag < tags->nr_tags) {
636 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700637 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600638 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700639
640 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600641}
642EXPORT_SYMBOL(blk_mq_tag_to_rq);
643
Jens Axboe320ae512013-10-24 09:20:05 +0100644struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700645 unsigned long next;
646 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100647};
648
Christoph Hellwig90415832014-09-22 10:21:48 -0600649void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100650{
Jens Axboef8a5b122016-12-13 09:24:51 -0700651 const struct blk_mq_ops *ops = req->q->mq_ops;
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700652 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600653
654 /*
655 * We know that complete is set at this point. If STARTED isn't set
656 * anymore, then the request isn't active and the "timeout" should
657 * just be ignored. This can happen due to the bitflag ordering.
658 * Timeout first checks if STARTED is set, and if it is, assumes
659 * the request is active. But if we race with completion, then
660 * we both flags will get cleared. So check here again, and ignore
661 * a timeout event with a request that isn't active.
662 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700663 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
664 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600665
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700666 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700667 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600668
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700669 switch (ret) {
670 case BLK_EH_HANDLED:
671 __blk_mq_complete_request(req);
672 break;
673 case BLK_EH_RESET_TIMER:
674 blk_add_timer(req);
675 blk_clear_rq_complete(req);
676 break;
677 case BLK_EH_NOT_HANDLED:
678 break;
679 default:
680 printk(KERN_ERR "block: bad eh return: %d\n", ret);
681 break;
682 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600683}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700684
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700685static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
686 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100687{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700688 struct blk_mq_timeout_data *data = priv;
689
Keith Buscheb130db2015-01-08 08:59:53 -0700690 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
691 /*
692 * If a request wasn't started before the queue was
693 * marked dying, kill it here or it'll go unnoticed.
694 */
Keith Buscha59e0f52016-02-11 13:05:38 -0700695 if (unlikely(blk_queue_dying(rq->q))) {
696 rq->errors = -EIO;
697 blk_mq_end_request(rq, rq->errors);
698 }
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700699 return;
Keith Buscheb130db2015-01-08 08:59:53 -0700700 }
Jens Axboe320ae512013-10-24 09:20:05 +0100701
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700702 if (time_after_eq(jiffies, rq->deadline)) {
703 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700704 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700705 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
706 data->next = rq->deadline;
707 data->next_set = 1;
708 }
Jens Axboe320ae512013-10-24 09:20:05 +0100709}
710
Christoph Hellwig287922eb2015-10-30 20:57:30 +0800711static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100712{
Christoph Hellwig287922eb2015-10-30 20:57:30 +0800713 struct request_queue *q =
714 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700715 struct blk_mq_timeout_data data = {
716 .next = 0,
717 .next_set = 0,
718 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700719 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100720
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600721 /* A deadlock might occur if a request is stuck requiring a
722 * timeout at the same time a queue freeze is waiting
723 * completion, since the timeout code would not be able to
724 * acquire the queue reference here.
725 *
726 * That's why we don't use blk_queue_enter here; instead, we use
727 * percpu_ref_tryget directly, because we need to be able to
728 * obtain a reference even in the short window between the queue
729 * starting to freeze, by dropping the first reference in
730 * blk_mq_freeze_queue_start, and the moment the last request is
731 * consumed, marked by the instant q_usage_counter reaches
732 * zero.
733 */
734 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922eb2015-10-30 20:57:30 +0800735 return;
736
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200737 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100738
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700739 if (data.next_set) {
740 data.next = blk_rq_timeout(round_jiffies_up(data.next));
741 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600742 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200743 struct blk_mq_hw_ctx *hctx;
744
Ming Leif054b562015-04-21 10:00:19 +0800745 queue_for_each_hw_ctx(q, hctx, i) {
746 /* the hctx may be unmapped, so check it here */
747 if (blk_mq_hw_queue_mapped(hctx))
748 blk_mq_tag_idle(hctx);
749 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600750 }
Christoph Hellwig287922eb2015-10-30 20:57:30 +0800751 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100752}
753
754/*
755 * Reverse check our software queue for entries that we could potentially
756 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
757 * too much time checking for merges.
758 */
759static bool blk_mq_attempt_merge(struct request_queue *q,
760 struct blk_mq_ctx *ctx, struct bio *bio)
761{
762 struct request *rq;
763 int checked = 8;
764
765 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100766 bool merged = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100767
768 if (!checked--)
769 break;
770
771 if (!blk_rq_merge_ok(rq, bio))
772 continue;
773
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100774 switch (blk_try_merge(rq, bio)) {
775 case ELEVATOR_BACK_MERGE:
776 if (blk_mq_sched_allow_merge(q, rq, bio))
777 merged = bio_attempt_back_merge(q, rq, bio);
778 break;
779 case ELEVATOR_FRONT_MERGE:
780 if (blk_mq_sched_allow_merge(q, rq, bio))
781 merged = bio_attempt_front_merge(q, rq, bio);
782 break;
Christoph Hellwig1e739732017-02-08 14:46:49 +0100783 case ELEVATOR_DISCARD_MERGE:
784 merged = bio_attempt_discard_merge(q, rq, bio);
785 break;
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100786 default:
Jens Axboebd166ef2017-01-17 06:03:22 -0700787 continue;
Jens Axboe320ae512013-10-24 09:20:05 +0100788 }
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100789
790 if (merged)
791 ctx->rq_merged++;
792 return merged;
Jens Axboe320ae512013-10-24 09:20:05 +0100793 }
794
795 return false;
796}
797
Omar Sandoval88459642016-09-17 08:38:44 -0600798struct flush_busy_ctx_data {
799 struct blk_mq_hw_ctx *hctx;
800 struct list_head *list;
801};
802
803static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
804{
805 struct flush_busy_ctx_data *flush_data = data;
806 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
807 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
808
809 sbitmap_clear_bit(sb, bitnr);
810 spin_lock(&ctx->lock);
811 list_splice_tail_init(&ctx->rq_list, flush_data->list);
812 spin_unlock(&ctx->lock);
813 return true;
814}
815
Jens Axboe320ae512013-10-24 09:20:05 +0100816/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600817 * Process software queues that have been marked busy, splicing them
818 * to the for-dispatch
819 */
Jens Axboe2c3ad662016-12-14 14:34:47 -0700820void blk_mq_flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
Jens Axboe1429d7c2014-05-19 09:23:55 -0600821{
Omar Sandoval88459642016-09-17 08:38:44 -0600822 struct flush_busy_ctx_data data = {
823 .hctx = hctx,
824 .list = list,
825 };
Jens Axboe1429d7c2014-05-19 09:23:55 -0600826
Omar Sandoval88459642016-09-17 08:38:44 -0600827 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600828}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700829EXPORT_SYMBOL_GPL(blk_mq_flush_busy_ctxs);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600830
Jens Axboe703fd1c2016-09-16 13:59:14 -0600831static inline unsigned int queued_to_index(unsigned int queued)
832{
833 if (!queued)
834 return 0;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600835
Jens Axboe703fd1c2016-09-16 13:59:14 -0600836 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600837}
838
Jens Axboebd6737f2017-01-27 01:00:47 -0700839bool blk_mq_get_driver_tag(struct request *rq, struct blk_mq_hw_ctx **hctx,
840 bool wait)
Jens Axboebd166ef2017-01-17 06:03:22 -0700841{
842 struct blk_mq_alloc_data data = {
843 .q = rq->q,
Jens Axboebd166ef2017-01-17 06:03:22 -0700844 .hctx = blk_mq_map_queue(rq->q, rq->mq_ctx->cpu),
845 .flags = wait ? 0 : BLK_MQ_REQ_NOWAIT,
846 };
847
Jens Axboebd166ef2017-01-17 06:03:22 -0700848 if (rq->tag != -1) {
849done:
850 if (hctx)
851 *hctx = data.hctx;
852 return true;
853 }
854
855 rq->tag = blk_mq_get_tag(&data);
856 if (rq->tag >= 0) {
Jens Axboe200e86b2017-01-25 08:11:38 -0700857 if (blk_mq_tag_busy(data.hctx)) {
858 rq->rq_flags |= RQF_MQ_INFLIGHT;
859 atomic_inc(&data.hctx->nr_active);
860 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700861 data.hctx->tags->rqs[rq->tag] = rq;
862 goto done;
863 }
864
865 return false;
866}
867
Jens Axboe99cf1dc2017-01-26 12:32:32 -0700868static void blk_mq_put_driver_tag(struct blk_mq_hw_ctx *hctx,
869 struct request *rq)
870{
871 if (rq->tag == -1 || rq->internal_tag == -1)
872 return;
873
874 blk_mq_put_tag(hctx, hctx->tags, rq->mq_ctx, rq->tag);
875 rq->tag = -1;
876
877 if (rq->rq_flags & RQF_MQ_INFLIGHT) {
878 rq->rq_flags &= ~RQF_MQ_INFLIGHT;
879 atomic_dec(&hctx->nr_active);
880 }
881}
882
Jens Axboebd166ef2017-01-17 06:03:22 -0700883/*
884 * If we fail getting a driver tag because all the driver tags are already
885 * assigned and on the dispatch list, BUT the first entry does not have a
886 * tag, then we could deadlock. For that case, move entries with assigned
887 * driver tags to the front, leaving the set of tagged requests in the
888 * same order, and the untagged set in the same order.
889 */
890static bool reorder_tags_to_front(struct list_head *list)
891{
892 struct request *rq, *tmp, *first = NULL;
893
894 list_for_each_entry_safe_reverse(rq, tmp, list, queuelist) {
895 if (rq == first)
896 break;
897 if (rq->tag != -1) {
898 list_move(&rq->queuelist, list);
899 if (!first)
900 first = rq;
901 }
902 }
903
904 return first != NULL;
905}
906
Jens Axboef04c3df2016-12-07 08:41:17 -0700907bool blk_mq_dispatch_rq_list(struct blk_mq_hw_ctx *hctx, struct list_head *list)
908{
909 struct request_queue *q = hctx->queue;
910 struct request *rq;
911 LIST_HEAD(driver_list);
912 struct list_head *dptr;
913 int queued, ret = BLK_MQ_RQ_QUEUE_OK;
914
915 /*
916 * Start off with dptr being NULL, so we start the first request
917 * immediately, even if we have more pending.
918 */
919 dptr = NULL;
920
921 /*
922 * Now process all the entries, sending them to the driver.
923 */
924 queued = 0;
925 while (!list_empty(list)) {
926 struct blk_mq_queue_data bd;
927
928 rq = list_first_entry(list, struct request, queuelist);
Jens Axboebd166ef2017-01-17 06:03:22 -0700929 if (!blk_mq_get_driver_tag(rq, &hctx, false)) {
930 if (!queued && reorder_tags_to_front(list))
931 continue;
Jens Axboe3c782d62017-01-26 12:50:36 -0700932
933 /*
934 * We failed getting a driver tag. Mark the queue(s)
935 * as needing a restart. Retry getting a tag again,
936 * in case the needed IO completed right before we
937 * marked the queue as needing a restart.
938 */
Jens Axboebd166ef2017-01-17 06:03:22 -0700939 blk_mq_sched_mark_restart(hctx);
Jens Axboe3c782d62017-01-26 12:50:36 -0700940 if (!blk_mq_get_driver_tag(rq, &hctx, false))
941 break;
Jens Axboebd166ef2017-01-17 06:03:22 -0700942 }
Jens Axboef04c3df2016-12-07 08:41:17 -0700943 list_del_init(&rq->queuelist);
944
945 bd.rq = rq;
946 bd.list = dptr;
947 bd.last = list_empty(list);
948
949 ret = q->mq_ops->queue_rq(hctx, &bd);
950 switch (ret) {
951 case BLK_MQ_RQ_QUEUE_OK:
952 queued++;
953 break;
954 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe99cf1dc2017-01-26 12:32:32 -0700955 blk_mq_put_driver_tag(hctx, rq);
Jens Axboef04c3df2016-12-07 08:41:17 -0700956 list_add(&rq->queuelist, list);
957 __blk_mq_requeue_request(rq);
958 break;
959 default:
960 pr_err("blk-mq: bad return on queue: %d\n", ret);
961 case BLK_MQ_RQ_QUEUE_ERROR:
962 rq->errors = -EIO;
963 blk_mq_end_request(rq, rq->errors);
964 break;
965 }
966
967 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
968 break;
969
970 /*
971 * We've done the first request. If we have more than 1
972 * left in the list, set dptr to defer issue.
973 */
974 if (!dptr && list->next != list->prev)
975 dptr = &driver_list;
976 }
977
978 hctx->dispatched[queued_to_index(queued)]++;
979
980 /*
981 * Any items that need requeuing? Stuff them into hctx->dispatch,
982 * that is where we will continue on next queue run.
983 */
984 if (!list_empty(list)) {
985 spin_lock(&hctx->lock);
Jens Axboec13660a2017-01-26 12:40:07 -0700986 list_splice_init(list, &hctx->dispatch);
Jens Axboef04c3df2016-12-07 08:41:17 -0700987 spin_unlock(&hctx->lock);
988
989 /*
990 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
991 * it's possible the queue is stopped and restarted again
992 * before this. Queue restart will dispatch requests. And since
993 * requests in rq_list aren't added into hctx->dispatch yet,
994 * the requests in rq_list might get lost.
995 *
996 * blk_mq_run_hw_queue() already checks the STOPPED bit
Jens Axboebd166ef2017-01-17 06:03:22 -0700997 *
998 * If RESTART is set, then let completion restart the queue
999 * instead of potentially looping here.
1000 */
1001 if (!blk_mq_sched_needs_restart(hctx))
1002 blk_mq_run_hw_queue(hctx, true);
Jens Axboef04c3df2016-12-07 08:41:17 -07001003 }
1004
Jens Axboe2aa0f212017-02-17 11:35:35 -07001005 return queued != 0;
Jens Axboef04c3df2016-12-07 08:41:17 -07001006}
1007
Bart Van Assche6a83e742016-11-02 10:09:51 -06001008static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
1009{
1010 int srcu_idx;
1011
1012 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
1013 cpu_online(hctx->next_cpu));
1014
1015 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
1016 rcu_read_lock();
Jens Axboebd166ef2017-01-17 06:03:22 -07001017 blk_mq_sched_dispatch_requests(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001018 rcu_read_unlock();
1019 } else {
1020 srcu_idx = srcu_read_lock(&hctx->queue_rq_srcu);
Jens Axboebd166ef2017-01-17 06:03:22 -07001021 blk_mq_sched_dispatch_requests(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001022 srcu_read_unlock(&hctx->queue_rq_srcu, srcu_idx);
1023 }
1024}
1025
Jens Axboe506e9312014-05-07 10:26:44 -06001026/*
1027 * It'd be great if the workqueue API had a way to pass
1028 * in a mask and had some smarts for more clever placement.
1029 * For now we just round-robin here, switching for every
1030 * BLK_MQ_CPU_WORK_BATCH queued items.
1031 */
1032static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
1033{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001034 if (hctx->queue->nr_hw_queues == 1)
1035 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -06001036
1037 if (--hctx->next_cpu_batch <= 0) {
Gabriel Krisman Bertazic02ebfd2016-09-28 00:24:24 -03001038 int next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06001039
1040 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
1041 if (next_cpu >= nr_cpu_ids)
1042 next_cpu = cpumask_first(hctx->cpumask);
1043
1044 hctx->next_cpu = next_cpu;
1045 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1046 }
1047
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001048 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06001049}
1050
Jens Axboe320ae512013-10-24 09:20:05 +01001051void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1052{
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001053 if (unlikely(blk_mq_hctx_stopped(hctx) ||
1054 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +01001055 return;
1056
Jens Axboe1b792f22016-09-21 10:12:13 -06001057 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001058 int cpu = get_cpu();
1059 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +01001060 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001061 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +01001062 return;
1063 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001064
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001065 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -06001066 }
Paolo Bonzini398205b2014-11-07 23:03:59 +01001067
Jens Axboe27489a32016-08-24 15:54:25 -06001068 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
Jens Axboe320ae512013-10-24 09:20:05 +01001069}
1070
Mike Snitzerb94ec292015-03-11 23:56:38 -04001071void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001072{
1073 struct blk_mq_hw_ctx *hctx;
1074 int i;
1075
1076 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001077 if (!blk_mq_hctx_has_pending(hctx) ||
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001078 blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01001079 continue;
1080
Mike Snitzerb94ec292015-03-11 23:56:38 -04001081 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001082 }
1083}
Mike Snitzerb94ec292015-03-11 23:56:38 -04001084EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001085
Bart Van Asschefd001442016-10-28 17:19:37 -07001086/**
1087 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
1088 * @q: request queue.
1089 *
1090 * The caller is responsible for serializing this function against
1091 * blk_mq_{start,stop}_hw_queue().
1092 */
1093bool blk_mq_queue_stopped(struct request_queue *q)
1094{
1095 struct blk_mq_hw_ctx *hctx;
1096 int i;
1097
1098 queue_for_each_hw_ctx(q, hctx, i)
1099 if (blk_mq_hctx_stopped(hctx))
1100 return true;
1101
1102 return false;
1103}
1104EXPORT_SYMBOL(blk_mq_queue_stopped);
1105
Jens Axboe320ae512013-10-24 09:20:05 +01001106void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
1107{
Jens Axboe27489a32016-08-24 15:54:25 -06001108 cancel_work(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001109 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +01001110 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
1111}
1112EXPORT_SYMBOL(blk_mq_stop_hw_queue);
1113
Christoph Hellwig280d45f2013-10-25 14:45:58 +01001114void blk_mq_stop_hw_queues(struct request_queue *q)
1115{
1116 struct blk_mq_hw_ctx *hctx;
1117 int i;
1118
1119 queue_for_each_hw_ctx(q, hctx, i)
1120 blk_mq_stop_hw_queue(hctx);
1121}
1122EXPORT_SYMBOL(blk_mq_stop_hw_queues);
1123
Jens Axboe320ae512013-10-24 09:20:05 +01001124void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
1125{
1126 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -06001127
Jens Axboe0ffbce82014-06-25 08:22:34 -06001128 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001129}
1130EXPORT_SYMBOL(blk_mq_start_hw_queue);
1131
Christoph Hellwig2f268552014-04-16 09:44:56 +02001132void blk_mq_start_hw_queues(struct request_queue *q)
1133{
1134 struct blk_mq_hw_ctx *hctx;
1135 int i;
1136
1137 queue_for_each_hw_ctx(q, hctx, i)
1138 blk_mq_start_hw_queue(hctx);
1139}
1140EXPORT_SYMBOL(blk_mq_start_hw_queues);
1141
Jens Axboeae911c52016-12-08 13:19:30 -07001142void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1143{
1144 if (!blk_mq_hctx_stopped(hctx))
1145 return;
1146
1147 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
1148 blk_mq_run_hw_queue(hctx, async);
1149}
1150EXPORT_SYMBOL_GPL(blk_mq_start_stopped_hw_queue);
1151
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001152void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001153{
1154 struct blk_mq_hw_ctx *hctx;
1155 int i;
1156
Jens Axboeae911c52016-12-08 13:19:30 -07001157 queue_for_each_hw_ctx(q, hctx, i)
1158 blk_mq_start_stopped_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001159}
1160EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1161
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001162static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001163{
1164 struct blk_mq_hw_ctx *hctx;
1165
Jens Axboe27489a32016-08-24 15:54:25 -06001166 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
Jens Axboee4043dc2014-04-09 10:18:23 -06001167
Jens Axboe320ae512013-10-24 09:20:05 +01001168 __blk_mq_run_hw_queue(hctx);
1169}
1170
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001171static void blk_mq_delay_work_fn(struct work_struct *work)
1172{
1173 struct blk_mq_hw_ctx *hctx;
1174
1175 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1176
1177 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1178 __blk_mq_run_hw_queue(hctx);
1179}
1180
1181void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1182{
Ming Lei19c66e52014-12-03 19:38:04 +08001183 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1184 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001185
Jens Axboe7e79dad2017-01-19 07:58:59 -07001186 blk_mq_stop_hw_queue(hctx);
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001187 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1188 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001189}
1190EXPORT_SYMBOL(blk_mq_delay_queue);
1191
Ming Leicfd0c552015-10-20 23:13:57 +08001192static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001193 struct request *rq,
1194 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001195{
Jens Axboee57690f2016-08-24 15:34:35 -06001196 struct blk_mq_ctx *ctx = rq->mq_ctx;
1197
Jens Axboe01b983c2013-11-19 18:59:10 -07001198 trace_block_rq_insert(hctx->queue, rq);
1199
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001200 if (at_head)
1201 list_add(&rq->queuelist, &ctx->rq_list);
1202 else
1203 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001204}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001205
Jens Axboe2c3ad662016-12-14 14:34:47 -07001206void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq,
1207 bool at_head)
Ming Leicfd0c552015-10-20 23:13:57 +08001208{
1209 struct blk_mq_ctx *ctx = rq->mq_ctx;
1210
Jens Axboee57690f2016-08-24 15:34:35 -06001211 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001212 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001213}
1214
Jens Axboebd166ef2017-01-17 06:03:22 -07001215void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
1216 struct list_head *list)
Jens Axboe320ae512013-10-24 09:20:05 +01001217
1218{
Jens Axboe320ae512013-10-24 09:20:05 +01001219 /*
1220 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1221 * offline now
1222 */
1223 spin_lock(&ctx->lock);
1224 while (!list_empty(list)) {
1225 struct request *rq;
1226
1227 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001228 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001229 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001230 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001231 }
Ming Leicfd0c552015-10-20 23:13:57 +08001232 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001233 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001234}
1235
1236static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1237{
1238 struct request *rqa = container_of(a, struct request, queuelist);
1239 struct request *rqb = container_of(b, struct request, queuelist);
1240
1241 return !(rqa->mq_ctx < rqb->mq_ctx ||
1242 (rqa->mq_ctx == rqb->mq_ctx &&
1243 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1244}
1245
1246void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1247{
1248 struct blk_mq_ctx *this_ctx;
1249 struct request_queue *this_q;
1250 struct request *rq;
1251 LIST_HEAD(list);
1252 LIST_HEAD(ctx_list);
1253 unsigned int depth;
1254
1255 list_splice_init(&plug->mq_list, &list);
1256
1257 list_sort(NULL, &list, plug_ctx_cmp);
1258
1259 this_q = NULL;
1260 this_ctx = NULL;
1261 depth = 0;
1262
1263 while (!list_empty(&list)) {
1264 rq = list_entry_rq(list.next);
1265 list_del_init(&rq->queuelist);
1266 BUG_ON(!rq->q);
1267 if (rq->mq_ctx != this_ctx) {
1268 if (this_ctx) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001269 trace_block_unplug(this_q, depth, from_schedule);
1270 blk_mq_sched_insert_requests(this_q, this_ctx,
1271 &ctx_list,
1272 from_schedule);
Jens Axboe320ae512013-10-24 09:20:05 +01001273 }
1274
1275 this_ctx = rq->mq_ctx;
1276 this_q = rq->q;
1277 depth = 0;
1278 }
1279
1280 depth++;
1281 list_add_tail(&rq->queuelist, &ctx_list);
1282 }
1283
1284 /*
1285 * If 'this_ctx' is set, we know we have entries to complete
1286 * on 'ctx_list'. Do those.
1287 */
1288 if (this_ctx) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001289 trace_block_unplug(this_q, depth, from_schedule);
1290 blk_mq_sched_insert_requests(this_q, this_ctx, &ctx_list,
1291 from_schedule);
Jens Axboe320ae512013-10-24 09:20:05 +01001292 }
1293}
1294
1295static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1296{
1297 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001298
Jens Axboe6e85eaf2016-12-02 20:00:14 -07001299 blk_account_io_start(rq, true);
Jens Axboe320ae512013-10-24 09:20:05 +01001300}
1301
Jens Axboe274a5842014-08-15 12:44:08 -06001302static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1303{
1304 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1305 !blk_queue_nomerges(hctx->queue);
1306}
1307
Jens Axboe07068d52014-05-22 10:40:51 -06001308static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1309 struct blk_mq_ctx *ctx,
1310 struct request *rq, struct bio *bio)
1311{
Ming Leie18378a2015-10-20 23:13:54 +08001312 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001313 blk_mq_bio_to_request(rq, bio);
1314 spin_lock(&ctx->lock);
1315insert_rq:
1316 __blk_mq_insert_request(hctx, rq, false);
1317 spin_unlock(&ctx->lock);
1318 return false;
1319 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001320 struct request_queue *q = hctx->queue;
1321
Jens Axboe07068d52014-05-22 10:40:51 -06001322 spin_lock(&ctx->lock);
1323 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1324 blk_mq_bio_to_request(rq, bio);
1325 goto insert_rq;
1326 }
1327
1328 spin_unlock(&ctx->lock);
Jens Axboebd166ef2017-01-17 06:03:22 -07001329 __blk_mq_finish_request(hctx, ctx, rq);
Jens Axboe07068d52014-05-22 10:40:51 -06001330 return true;
1331 }
1332}
1333
Jens Axboefd2d3322017-01-12 10:04:45 -07001334static blk_qc_t request_to_qc_t(struct blk_mq_hw_ctx *hctx, struct request *rq)
1335{
Jens Axboebd166ef2017-01-17 06:03:22 -07001336 if (rq->tag != -1)
1337 return blk_tag_to_qc_t(rq->tag, hctx->queue_num, false);
1338
1339 return blk_tag_to_qc_t(rq->internal_tag, hctx->queue_num, true);
Jens Axboefd2d3322017-01-12 10:04:45 -07001340}
1341
Jens Axboe066a4a72016-11-11 12:24:46 -07001342static void blk_mq_try_issue_directly(struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001343{
Shaohua Lif984df12015-05-08 10:51:32 -07001344 struct request_queue *q = rq->q;
Shaohua Lif984df12015-05-08 10:51:32 -07001345 struct blk_mq_queue_data bd = {
1346 .rq = rq,
1347 .list = NULL,
1348 .last = 1
1349 };
Jens Axboebd166ef2017-01-17 06:03:22 -07001350 struct blk_mq_hw_ctx *hctx;
1351 blk_qc_t new_cookie;
1352 int ret;
Shaohua Lif984df12015-05-08 10:51:32 -07001353
Jens Axboebd166ef2017-01-17 06:03:22 -07001354 if (q->elevator)
Bart Van Assche2253efc2016-10-28 17:20:02 -07001355 goto insert;
1356
Jens Axboebd166ef2017-01-17 06:03:22 -07001357 if (!blk_mq_get_driver_tag(rq, &hctx, false))
1358 goto insert;
1359
1360 new_cookie = request_to_qc_t(hctx, rq);
1361
Shaohua Lif984df12015-05-08 10:51:32 -07001362 /*
1363 * For OK queue, we are done. For error, kill it. Any other
1364 * error (busy), just add it to our list as we previously
1365 * would have done
1366 */
1367 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001368 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1369 *cookie = new_cookie;
Bart Van Assche2253efc2016-10-28 17:20:02 -07001370 return;
Shaohua Lif984df12015-05-08 10:51:32 -07001371 }
Jens Axboe7b371632015-11-05 10:41:40 -07001372
1373 __blk_mq_requeue_request(rq);
1374
1375 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1376 *cookie = BLK_QC_T_NONE;
1377 rq->errors = -EIO;
1378 blk_mq_end_request(rq, rq->errors);
Bart Van Assche2253efc2016-10-28 17:20:02 -07001379 return;
Jens Axboe7b371632015-11-05 10:41:40 -07001380 }
1381
Bart Van Assche2253efc2016-10-28 17:20:02 -07001382insert:
Jens Axboebd6737f2017-01-27 01:00:47 -07001383 blk_mq_sched_insert_request(rq, false, true, true, false);
Shaohua Lif984df12015-05-08 10:51:32 -07001384}
1385
Jens Axboe07068d52014-05-22 10:40:51 -06001386/*
1387 * Multiple hardware queue variant. This will not use per-process plugs,
1388 * but will attempt to bypass the hctx queueing if we can go straight to
1389 * hardware for SYNC IO.
1390 */
Jens Axboedece1632015-11-05 10:41:16 -07001391static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001392{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001393 const int is_sync = op_is_sync(bio->bi_opf);
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07001394 const int is_flush_fua = op_is_flush(bio->bi_opf);
Jens Axboe5a797e02017-01-26 12:22:11 -07001395 struct blk_mq_alloc_data data = { .flags = 0 };
Jens Axboe07068d52014-05-22 10:40:51 -06001396 struct request *rq;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001397 unsigned int request_count = 0, srcu_idx;
Shaohua Lif984df12015-05-08 10:51:32 -07001398 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001399 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001400 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001401 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001402
1403 blk_queue_bounce(q, &bio);
1404
1405 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001406 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001407 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001408 }
1409
Kent Overstreet54efd502015-04-23 22:37:18 -07001410 blk_queue_split(q, &bio, q->bio_split);
1411
Omar Sandoval87c279e2016-06-01 22:18:48 -07001412 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1413 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1414 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001415
Jens Axboebd166ef2017-01-17 06:03:22 -07001416 if (blk_mq_sched_bio_merge(q, bio))
1417 return BLK_QC_T_NONE;
1418
Jens Axboe87760e52016-11-09 12:38:14 -07001419 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1420
Jens Axboebd166ef2017-01-17 06:03:22 -07001421 trace_block_getrq(q, bio, bio->bi_opf);
1422
1423 rq = blk_mq_sched_get_request(q, bio, bio->bi_opf, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001424 if (unlikely(!rq)) {
1425 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001426 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001427 }
1428
1429 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe07068d52014-05-22 10:40:51 -06001430
Jens Axboefd2d3322017-01-12 10:04:45 -07001431 cookie = request_to_qc_t(data.hctx, rq);
Jens Axboe07068d52014-05-22 10:40:51 -06001432
1433 if (unlikely(is_flush_fua)) {
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001434 if (q->elevator)
1435 goto elv_insert;
Jens Axboe07068d52014-05-22 10:40:51 -06001436 blk_mq_bio_to_request(rq, bio);
1437 blk_insert_flush(rq);
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001438 goto run_queue;
Jens Axboe07068d52014-05-22 10:40:51 -06001439 }
1440
Shaohua Lif984df12015-05-08 10:51:32 -07001441 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001442 /*
1443 * If the driver supports defer issued based on 'last', then
1444 * queue it up like normal since we can potentially save some
1445 * CPU this way.
1446 */
Shaohua Lif984df12015-05-08 10:51:32 -07001447 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1448 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1449 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001450
1451 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001452
1453 /*
Bart Van Assche6a83e742016-11-02 10:09:51 -06001454 * We do limited plugging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001455 * Otherwise the existing request in the plug list will be
1456 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001457 */
Shaohua Lif984df12015-05-08 10:51:32 -07001458 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001459 /*
1460 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001461 * happens, same_queue_rq is invalid and plug list is
1462 * empty
1463 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001464 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1465 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001466 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001467 }
Shaohua Lif984df12015-05-08 10:51:32 -07001468 list_add_tail(&rq->queuelist, &plug->mq_list);
1469 } else /* is_sync */
1470 old_rq = rq;
1471 blk_mq_put_ctx(data.ctx);
1472 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001473 goto done;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001474
1475 if (!(data.hctx->flags & BLK_MQ_F_BLOCKING)) {
1476 rcu_read_lock();
Jens Axboe066a4a72016-11-11 12:24:46 -07001477 blk_mq_try_issue_directly(old_rq, &cookie);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001478 rcu_read_unlock();
1479 } else {
1480 srcu_idx = srcu_read_lock(&data.hctx->queue_rq_srcu);
Jens Axboe066a4a72016-11-11 12:24:46 -07001481 blk_mq_try_issue_directly(old_rq, &cookie);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001482 srcu_read_unlock(&data.hctx->queue_rq_srcu, srcu_idx);
1483 }
Jens Axboe7b371632015-11-05 10:41:40 -07001484 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001485 }
1486
Jens Axboebd166ef2017-01-17 06:03:22 -07001487 if (q->elevator) {
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001488elv_insert:
Jens Axboebd166ef2017-01-17 06:03:22 -07001489 blk_mq_put_ctx(data.ctx);
1490 blk_mq_bio_to_request(rq, bio);
Jens Axboe0abad772017-01-26 12:28:10 -07001491 blk_mq_sched_insert_request(rq, false, true,
Jens Axboebd6737f2017-01-27 01:00:47 -07001492 !is_sync || is_flush_fua, true);
Jens Axboebd166ef2017-01-17 06:03:22 -07001493 goto done;
1494 }
Jens Axboe07068d52014-05-22 10:40:51 -06001495 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1496 /*
1497 * For a SYNC request, send it to the hardware immediately. For
1498 * an ASYNC request, just ensure that we run it later on. The
1499 * latter allows for merging opportunities and more efficient
1500 * dispatching.
1501 */
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001502run_queue:
Jens Axboe07068d52014-05-22 10:40:51 -06001503 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1504 }
Jens Axboe07068d52014-05-22 10:40:51 -06001505 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001506done:
1507 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001508}
1509
1510/*
1511 * Single hardware queue variant. This will attempt to use any per-process
1512 * plug for merging and IO deferral.
1513 */
Jens Axboedece1632015-11-05 10:41:16 -07001514static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001515{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001516 const int is_sync = op_is_sync(bio->bi_opf);
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07001517 const int is_flush_fua = op_is_flush(bio->bi_opf);
Jeff Moyere6c44382015-05-08 10:51:30 -07001518 struct blk_plug *plug;
1519 unsigned int request_count = 0;
Jens Axboe5a797e02017-01-26 12:22:11 -07001520 struct blk_mq_alloc_data data = { .flags = 0 };
Jens Axboe07068d52014-05-22 10:40:51 -06001521 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001522 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001523 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001524
Jens Axboe07068d52014-05-22 10:40:51 -06001525 blk_queue_bounce(q, &bio);
1526
1527 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001528 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001529 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001530 }
1531
Kent Overstreet54efd502015-04-23 22:37:18 -07001532 blk_queue_split(q, &bio, q->bio_split);
1533
Omar Sandoval87c279e2016-06-01 22:18:48 -07001534 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1535 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1536 return BLK_QC_T_NONE;
1537 } else
1538 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001539
Jens Axboebd166ef2017-01-17 06:03:22 -07001540 if (blk_mq_sched_bio_merge(q, bio))
1541 return BLK_QC_T_NONE;
1542
Jens Axboe87760e52016-11-09 12:38:14 -07001543 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1544
Jens Axboebd166ef2017-01-17 06:03:22 -07001545 trace_block_getrq(q, bio, bio->bi_opf);
1546
1547 rq = blk_mq_sched_get_request(q, bio, bio->bi_opf, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001548 if (unlikely(!rq)) {
1549 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001550 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001551 }
1552
1553 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe320ae512013-10-24 09:20:05 +01001554
Jens Axboefd2d3322017-01-12 10:04:45 -07001555 cookie = request_to_qc_t(data.hctx, rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001556
1557 if (unlikely(is_flush_fua)) {
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001558 if (q->elevator)
1559 goto elv_insert;
Jens Axboe320ae512013-10-24 09:20:05 +01001560 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001561 blk_insert_flush(rq);
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001562 goto run_queue;
Jens Axboe320ae512013-10-24 09:20:05 +01001563 }
1564
1565 /*
1566 * A task plug currently exists. Since this is completely lockless,
1567 * utilize that to temporarily store requests until the task is
1568 * either done or scheduled away.
1569 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001570 plug = current->plug;
1571 if (plug) {
Shaohua Li600271d2016-11-03 17:03:54 -07001572 struct request *last = NULL;
1573
Jeff Moyere6c44382015-05-08 10:51:30 -07001574 blk_mq_bio_to_request(rq, bio);
Ming Lei0a6219a2016-11-16 18:07:05 +08001575
1576 /*
1577 * @request_count may become stale because of schedule
1578 * out, so check the list again.
1579 */
1580 if (list_empty(&plug->mq_list))
1581 request_count = 0;
Ming Lei676d0602015-10-20 23:13:56 +08001582 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001583 trace_block_plug(q);
Shaohua Li600271d2016-11-03 17:03:54 -07001584 else
1585 last = list_entry_rq(plug->mq_list.prev);
Jens Axboeb094f892015-11-20 20:29:45 -07001586
1587 blk_mq_put_ctx(data.ctx);
1588
Shaohua Li600271d2016-11-03 17:03:54 -07001589 if (request_count >= BLK_MAX_REQUEST_COUNT || (last &&
1590 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001591 blk_flush_plug_list(plug, false);
1592 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001593 }
Jens Axboeb094f892015-11-20 20:29:45 -07001594
Jeff Moyere6c44382015-05-08 10:51:30 -07001595 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001596 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001597 }
1598
Jens Axboebd166ef2017-01-17 06:03:22 -07001599 if (q->elevator) {
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001600elv_insert:
Jens Axboebd166ef2017-01-17 06:03:22 -07001601 blk_mq_put_ctx(data.ctx);
1602 blk_mq_bio_to_request(rq, bio);
Jens Axboe0abad772017-01-26 12:28:10 -07001603 blk_mq_sched_insert_request(rq, false, true,
Jens Axboebd6737f2017-01-27 01:00:47 -07001604 !is_sync || is_flush_fua, true);
Jens Axboebd166ef2017-01-17 06:03:22 -07001605 goto done;
1606 }
Jens Axboe07068d52014-05-22 10:40:51 -06001607 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1608 /*
1609 * For a SYNC request, send it to the hardware immediately. For
1610 * an ASYNC request, just ensure that we run it later on. The
1611 * latter allows for merging opportunities and more efficient
1612 * dispatching.
1613 */
Jens Axboe0c2a6fe2017-02-17 11:38:36 -07001614run_queue:
Jens Axboe07068d52014-05-22 10:40:51 -06001615 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001616 }
1617
Jens Axboe07068d52014-05-22 10:40:51 -06001618 blk_mq_put_ctx(data.ctx);
Jens Axboebd166ef2017-01-17 06:03:22 -07001619done:
Jens Axboe7b371632015-11-05 10:41:40 -07001620 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001621}
1622
Jens Axboecc71a6f2017-01-11 14:29:56 -07001623void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
1624 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001625{
1626 struct page *page;
1627
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001628 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001629 int i;
1630
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001631 for (i = 0; i < tags->nr_tags; i++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001632 struct request *rq = tags->static_rqs[i];
1633
1634 if (!rq)
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001635 continue;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001636 set->ops->exit_request(set->driver_data, rq,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001637 hctx_idx, i);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001638 tags->static_rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001639 }
1640 }
1641
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001642 while (!list_empty(&tags->page_list)) {
1643 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001644 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001645 /*
1646 * Remove kmemleak object previously allocated in
1647 * blk_mq_init_rq_map().
1648 */
1649 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001650 __free_pages(page, page->private);
1651 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001652}
Jens Axboe320ae512013-10-24 09:20:05 +01001653
Jens Axboecc71a6f2017-01-11 14:29:56 -07001654void blk_mq_free_rq_map(struct blk_mq_tags *tags)
1655{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001656 kfree(tags->rqs);
Jens Axboecc71a6f2017-01-11 14:29:56 -07001657 tags->rqs = NULL;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001658 kfree(tags->static_rqs);
1659 tags->static_rqs = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001660
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001661 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001662}
1663
Jens Axboecc71a6f2017-01-11 14:29:56 -07001664struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
1665 unsigned int hctx_idx,
1666 unsigned int nr_tags,
1667 unsigned int reserved_tags)
Jens Axboe320ae512013-10-24 09:20:05 +01001668{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001669 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001670
Jens Axboecc71a6f2017-01-11 14:29:56 -07001671 tags = blk_mq_init_tags(nr_tags, reserved_tags,
Shaohua Li24391c02015-01-23 14:18:00 -07001672 set->numa_node,
1673 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001674 if (!tags)
1675 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001676
Jens Axboecc71a6f2017-01-11 14:29:56 -07001677 tags->rqs = kzalloc_node(nr_tags * sizeof(struct request *),
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001678 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
Jens Axboea5164402014-09-10 09:02:03 -06001679 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001680 if (!tags->rqs) {
1681 blk_mq_free_tags(tags);
1682 return NULL;
1683 }
Jens Axboe320ae512013-10-24 09:20:05 +01001684
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001685 tags->static_rqs = kzalloc_node(nr_tags * sizeof(struct request *),
1686 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
1687 set->numa_node);
1688 if (!tags->static_rqs) {
1689 kfree(tags->rqs);
1690 blk_mq_free_tags(tags);
1691 return NULL;
1692 }
1693
Jens Axboecc71a6f2017-01-11 14:29:56 -07001694 return tags;
1695}
1696
1697static size_t order_to_size(unsigned int order)
1698{
1699 return (size_t)PAGE_SIZE << order;
1700}
1701
1702int blk_mq_alloc_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
1703 unsigned int hctx_idx, unsigned int depth)
1704{
1705 unsigned int i, j, entries_per_page, max_order = 4;
1706 size_t rq_size, left;
1707
1708 INIT_LIST_HEAD(&tags->page_list);
1709
Jens Axboe320ae512013-10-24 09:20:05 +01001710 /*
1711 * rq_size is the size of the request plus driver payload, rounded
1712 * to the cacheline size
1713 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001714 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001715 cache_line_size());
Jens Axboecc71a6f2017-01-11 14:29:56 -07001716 left = rq_size * depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001717
Jens Axboecc71a6f2017-01-11 14:29:56 -07001718 for (i = 0; i < depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001719 int this_order = max_order;
1720 struct page *page;
1721 int to_do;
1722 void *p;
1723
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001724 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001725 this_order--;
1726
1727 do {
Jens Axboea5164402014-09-10 09:02:03 -06001728 page = alloc_pages_node(set->numa_node,
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001729 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001730 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001731 if (page)
1732 break;
1733 if (!this_order--)
1734 break;
1735 if (order_to_size(this_order) < rq_size)
1736 break;
1737 } while (1);
1738
1739 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001740 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001741
1742 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001743 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001744
1745 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001746 /*
1747 * Allow kmemleak to scan these pages as they contain pointers
1748 * to additional allocations like via ops->init_request().
1749 */
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001750 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
Jens Axboe320ae512013-10-24 09:20:05 +01001751 entries_per_page = order_to_size(this_order) / rq_size;
Jens Axboecc71a6f2017-01-11 14:29:56 -07001752 to_do = min(entries_per_page, depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001753 left -= to_do * rq_size;
1754 for (j = 0; j < to_do; j++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001755 struct request *rq = p;
1756
1757 tags->static_rqs[i] = rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001758 if (set->ops->init_request) {
1759 if (set->ops->init_request(set->driver_data,
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001760 rq, hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001761 set->numa_node)) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001762 tags->static_rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001763 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001764 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001765 }
1766
Jens Axboe320ae512013-10-24 09:20:05 +01001767 p += rq_size;
1768 i++;
1769 }
1770 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001771 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01001772
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001773fail:
Jens Axboecc71a6f2017-01-11 14:29:56 -07001774 blk_mq_free_rqs(set, tags, hctx_idx);
1775 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01001776}
1777
Jens Axboee57690f2016-08-24 15:34:35 -06001778/*
1779 * 'cpu' is going away. splice any existing rq_list entries from this
1780 * software queue to the hw queue dispatch list, and ensure that it
1781 * gets run.
1782 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06001783static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06001784{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001785 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06001786 struct blk_mq_ctx *ctx;
1787 LIST_HEAD(tmp);
1788
Thomas Gleixner9467f852016-09-22 08:05:17 -06001789 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Jens Axboee57690f2016-08-24 15:34:35 -06001790 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001791
1792 spin_lock(&ctx->lock);
1793 if (!list_empty(&ctx->rq_list)) {
1794 list_splice_init(&ctx->rq_list, &tmp);
1795 blk_mq_hctx_clear_pending(hctx, ctx);
1796 }
1797 spin_unlock(&ctx->lock);
1798
1799 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06001800 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001801
Jens Axboee57690f2016-08-24 15:34:35 -06001802 spin_lock(&hctx->lock);
1803 list_splice_tail_init(&tmp, &hctx->dispatch);
1804 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001805
1806 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06001807 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001808}
1809
Thomas Gleixner9467f852016-09-22 08:05:17 -06001810static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06001811{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001812 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
1813 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06001814}
1815
Ming Leic3b4afc2015-06-04 22:25:04 +08001816/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001817static void blk_mq_exit_hctx(struct request_queue *q,
1818 struct blk_mq_tag_set *set,
1819 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1820{
Ming Leif70ced02014-09-25 23:23:47 +08001821 unsigned flush_start_tag = set->queue_depth;
1822
Ming Lei08e98fc2014-09-25 23:23:38 +08001823 blk_mq_tag_idle(hctx);
1824
Ming Leif70ced02014-09-25 23:23:47 +08001825 if (set->ops->exit_request)
1826 set->ops->exit_request(set->driver_data,
1827 hctx->fq->flush_rq, hctx_idx,
1828 flush_start_tag + hctx_idx);
1829
Ming Lei08e98fc2014-09-25 23:23:38 +08001830 if (set->ops->exit_hctx)
1831 set->ops->exit_hctx(hctx, hctx_idx);
1832
Bart Van Assche6a83e742016-11-02 10:09:51 -06001833 if (hctx->flags & BLK_MQ_F_BLOCKING)
1834 cleanup_srcu_struct(&hctx->queue_rq_srcu);
1835
Thomas Gleixner9467f852016-09-22 08:05:17 -06001836 blk_mq_remove_cpuhp(hctx);
Ming Leif70ced02014-09-25 23:23:47 +08001837 blk_free_flush_queue(hctx->fq);
Omar Sandoval88459642016-09-17 08:38:44 -06001838 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001839}
1840
Ming Lei624dbe42014-05-27 23:35:13 +08001841static void blk_mq_exit_hw_queues(struct request_queue *q,
1842 struct blk_mq_tag_set *set, int nr_queue)
1843{
1844 struct blk_mq_hw_ctx *hctx;
1845 unsigned int i;
1846
1847 queue_for_each_hw_ctx(q, hctx, i) {
1848 if (i == nr_queue)
1849 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001850 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001851 }
Ming Lei624dbe42014-05-27 23:35:13 +08001852}
1853
1854static void blk_mq_free_hw_queues(struct request_queue *q,
1855 struct blk_mq_tag_set *set)
1856{
1857 struct blk_mq_hw_ctx *hctx;
1858 unsigned int i;
1859
Ming Leie09aae72015-01-29 20:17:27 +08001860 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001861 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001862}
1863
Ming Lei08e98fc2014-09-25 23:23:38 +08001864static int blk_mq_init_hctx(struct request_queue *q,
1865 struct blk_mq_tag_set *set,
1866 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1867{
1868 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001869 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001870
1871 node = hctx->numa_node;
1872 if (node == NUMA_NO_NODE)
1873 node = hctx->numa_node = set->numa_node;
1874
Jens Axboe27489a32016-08-24 15:54:25 -06001875 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001876 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1877 spin_lock_init(&hctx->lock);
1878 INIT_LIST_HEAD(&hctx->dispatch);
1879 hctx->queue = q;
1880 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001881 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001882
Thomas Gleixner9467f852016-09-22 08:05:17 -06001883 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
Ming Lei08e98fc2014-09-25 23:23:38 +08001884
1885 hctx->tags = set->tags[hctx_idx];
1886
1887 /*
1888 * Allocate space for all possible cpus to avoid allocation at
1889 * runtime
1890 */
1891 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1892 GFP_KERNEL, node);
1893 if (!hctx->ctxs)
1894 goto unregister_cpu_notifier;
1895
Omar Sandoval88459642016-09-17 08:38:44 -06001896 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1897 node))
Ming Lei08e98fc2014-09-25 23:23:38 +08001898 goto free_ctxs;
1899
1900 hctx->nr_ctx = 0;
1901
1902 if (set->ops->init_hctx &&
1903 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1904 goto free_bitmap;
1905
Ming Leif70ced02014-09-25 23:23:47 +08001906 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1907 if (!hctx->fq)
1908 goto exit_hctx;
1909
1910 if (set->ops->init_request &&
1911 set->ops->init_request(set->driver_data,
1912 hctx->fq->flush_rq, hctx_idx,
1913 flush_start_tag + hctx_idx, node))
1914 goto free_fq;
1915
Bart Van Assche6a83e742016-11-02 10:09:51 -06001916 if (hctx->flags & BLK_MQ_F_BLOCKING)
1917 init_srcu_struct(&hctx->queue_rq_srcu);
1918
Ming Lei08e98fc2014-09-25 23:23:38 +08001919 return 0;
1920
Ming Leif70ced02014-09-25 23:23:47 +08001921 free_fq:
1922 kfree(hctx->fq);
1923 exit_hctx:
1924 if (set->ops->exit_hctx)
1925 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001926 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06001927 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001928 free_ctxs:
1929 kfree(hctx->ctxs);
1930 unregister_cpu_notifier:
Thomas Gleixner9467f852016-09-22 08:05:17 -06001931 blk_mq_remove_cpuhp(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001932 return -1;
1933}
1934
Jens Axboe320ae512013-10-24 09:20:05 +01001935static void blk_mq_init_cpu_queues(struct request_queue *q,
1936 unsigned int nr_hw_queues)
1937{
1938 unsigned int i;
1939
1940 for_each_possible_cpu(i) {
1941 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1942 struct blk_mq_hw_ctx *hctx;
1943
1944 memset(__ctx, 0, sizeof(*__ctx));
1945 __ctx->cpu = i;
1946 spin_lock_init(&__ctx->lock);
1947 INIT_LIST_HEAD(&__ctx->rq_list);
1948 __ctx->queue = q;
Jens Axboecf43e6b2016-11-07 21:32:37 -07001949 blk_stat_init(&__ctx->stat[BLK_STAT_READ]);
1950 blk_stat_init(&__ctx->stat[BLK_STAT_WRITE]);
Jens Axboe320ae512013-10-24 09:20:05 +01001951
1952 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001953 if (!cpu_online(i))
1954 continue;
1955
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001956 hctx = blk_mq_map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001957
Jens Axboe320ae512013-10-24 09:20:05 +01001958 /*
1959 * Set local node, IFF we have more than one hw queue. If
1960 * not, we remain on the home node of the device
1961 */
1962 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301963 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001964 }
1965}
1966
Jens Axboecc71a6f2017-01-11 14:29:56 -07001967static bool __blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, int hctx_idx)
1968{
1969 int ret = 0;
1970
1971 set->tags[hctx_idx] = blk_mq_alloc_rq_map(set, hctx_idx,
1972 set->queue_depth, set->reserved_tags);
1973 if (!set->tags[hctx_idx])
1974 return false;
1975
1976 ret = blk_mq_alloc_rqs(set, set->tags[hctx_idx], hctx_idx,
1977 set->queue_depth);
1978 if (!ret)
1979 return true;
1980
1981 blk_mq_free_rq_map(set->tags[hctx_idx]);
1982 set->tags[hctx_idx] = NULL;
1983 return false;
1984}
1985
1986static void blk_mq_free_map_and_requests(struct blk_mq_tag_set *set,
1987 unsigned int hctx_idx)
1988{
Jens Axboebd166ef2017-01-17 06:03:22 -07001989 if (set->tags[hctx_idx]) {
1990 blk_mq_free_rqs(set, set->tags[hctx_idx], hctx_idx);
1991 blk_mq_free_rq_map(set->tags[hctx_idx]);
1992 set->tags[hctx_idx] = NULL;
1993 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001994}
1995
Akinobu Mita57783222015-09-27 02:09:23 +09001996static void blk_mq_map_swqueue(struct request_queue *q,
1997 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01001998{
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02001999 unsigned int i, hctx_idx;
Jens Axboe320ae512013-10-24 09:20:05 +01002000 struct blk_mq_hw_ctx *hctx;
2001 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08002002 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002003
Akinobu Mita60de0742015-09-27 02:09:25 +09002004 /*
2005 * Avoid others reading imcomplete hctx->cpumask through sysfs
2006 */
2007 mutex_lock(&q->sysfs_lock);
2008
Jens Axboe320ae512013-10-24 09:20:05 +01002009 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06002010 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01002011 hctx->nr_ctx = 0;
2012 }
2013
2014 /*
2015 * Map software to hardware queues
2016 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01002017 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01002018 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09002019 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06002020 continue;
2021
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002022 hctx_idx = q->mq_map[i];
2023 /* unmapped hw queue can be remapped after CPU topo changed */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002024 if (!set->tags[hctx_idx] &&
2025 !__blk_mq_alloc_rq_map(set, hctx_idx)) {
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002026 /*
2027 * If tags initialization fail for some hctx,
2028 * that hctx won't be brought online. In this
2029 * case, remap the current ctx to hctx[0] which
2030 * is guaranteed to always have tags allocated
2031 */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002032 q->mq_map[i] = 0;
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002033 }
2034
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01002035 ctx = per_cpu_ptr(q->queue_ctx, i);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002036 hctx = blk_mq_map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07002037
Jens Axboee4043dc2014-04-09 10:18:23 -06002038 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01002039 ctx->index_hw = hctx->nr_ctx;
2040 hctx->ctxs[hctx->nr_ctx++] = ctx;
2041 }
Jens Axboe506e9312014-05-07 10:26:44 -06002042
Akinobu Mita60de0742015-09-27 02:09:25 +09002043 mutex_unlock(&q->sysfs_lock);
2044
Jens Axboe506e9312014-05-07 10:26:44 -06002045 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06002046 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06002047 * If no software queues are mapped to this hardware queue,
2048 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06002049 */
2050 if (!hctx->nr_ctx) {
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002051 /* Never unmap queue 0. We need it as a
2052 * fallback in case of a new remap fails
2053 * allocation
2054 */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002055 if (i && set->tags[i])
2056 blk_mq_free_map_and_requests(set, i);
2057
Ming Lei2a34c082015-04-21 10:00:20 +08002058 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06002059 continue;
2060 }
2061
Ming Lei2a34c082015-04-21 10:00:20 +08002062 hctx->tags = set->tags[i];
2063 WARN_ON(!hctx->tags);
2064
Jens Axboe484b4062014-05-21 14:01:15 -06002065 /*
Chong Yuan889fa312015-04-15 11:39:29 -06002066 * Set the map size to the number of mapped software queues.
2067 * This is more accurate and more efficient than looping
2068 * over all possibly mapped software queues.
2069 */
Omar Sandoval88459642016-09-17 08:38:44 -06002070 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06002071
2072 /*
Jens Axboe484b4062014-05-21 14:01:15 -06002073 * Initialize batch roundrobin counts
2074 */
Jens Axboe506e9312014-05-07 10:26:44 -06002075 hctx->next_cpu = cpumask_first(hctx->cpumask);
2076 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
2077 }
Jens Axboe320ae512013-10-24 09:20:05 +01002078}
2079
Jeff Moyer2404e602015-11-03 10:40:06 -05002080static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06002081{
2082 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06002083 int i;
2084
Jeff Moyer2404e602015-11-03 10:40:06 -05002085 queue_for_each_hw_ctx(q, hctx, i) {
2086 if (shared)
2087 hctx->flags |= BLK_MQ_F_TAG_SHARED;
2088 else
2089 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
2090 }
2091}
2092
2093static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
2094{
2095 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06002096
2097 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2098 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05002099 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002100 blk_mq_unfreeze_queue(q);
2101 }
2102}
2103
2104static void blk_mq_del_queue_tag_set(struct request_queue *q)
2105{
2106 struct blk_mq_tag_set *set = q->tag_set;
2107
Jens Axboe0d2602c2014-05-13 15:10:52 -06002108 mutex_lock(&set->tag_list_lock);
2109 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05002110 if (list_is_singular(&set->tag_list)) {
2111 /* just transitioned to unshared */
2112 set->flags &= ~BLK_MQ_F_TAG_SHARED;
2113 /* update existing queue */
2114 blk_mq_update_tag_set_depth(set, false);
2115 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06002116 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002117}
2118
2119static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
2120 struct request_queue *q)
2121{
2122 q->tag_set = set;
2123
2124 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05002125
2126 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
2127 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
2128 set->flags |= BLK_MQ_F_TAG_SHARED;
2129 /* update existing queue */
2130 blk_mq_update_tag_set_depth(set, true);
2131 }
2132 if (set->flags & BLK_MQ_F_TAG_SHARED)
2133 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002134 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05002135
Jens Axboe0d2602c2014-05-13 15:10:52 -06002136 mutex_unlock(&set->tag_list_lock);
2137}
2138
Ming Leie09aae72015-01-29 20:17:27 +08002139/*
2140 * It is the actual release handler for mq, but we do it from
2141 * request queue's release handler for avoiding use-after-free
2142 * and headache because q->mq_kobj shouldn't have been introduced,
2143 * but we can't group ctx/kctx kobj without it.
2144 */
2145void blk_mq_release(struct request_queue *q)
2146{
2147 struct blk_mq_hw_ctx *hctx;
2148 unsigned int i;
2149
Jens Axboebd166ef2017-01-17 06:03:22 -07002150 blk_mq_sched_teardown(q);
2151
Ming Leie09aae72015-01-29 20:17:27 +08002152 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08002153 queue_for_each_hw_ctx(q, hctx, i) {
2154 if (!hctx)
2155 continue;
2156 kfree(hctx->ctxs);
Ming Leie09aae72015-01-29 20:17:27 +08002157 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08002158 }
Ming Leie09aae72015-01-29 20:17:27 +08002159
Akinobu Mitaa723bab2015-09-27 02:09:21 +09002160 q->mq_map = NULL;
2161
Ming Leie09aae72015-01-29 20:17:27 +08002162 kfree(q->queue_hw_ctx);
2163
2164 /* ctx kobj stays in queue_ctx */
2165 free_percpu(q->queue_ctx);
2166}
2167
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002168struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01002169{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002170 struct request_queue *uninit_q, *q;
2171
2172 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
2173 if (!uninit_q)
2174 return ERR_PTR(-ENOMEM);
2175
2176 q = blk_mq_init_allocated_queue(set, uninit_q);
2177 if (IS_ERR(q))
2178 blk_cleanup_queue(uninit_q);
2179
2180 return q;
2181}
2182EXPORT_SYMBOL(blk_mq_init_queue);
2183
Keith Busch868f2f02015-12-17 17:08:14 -07002184static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
2185 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002186{
Keith Busch868f2f02015-12-17 17:08:14 -07002187 int i, j;
2188 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01002189
Keith Busch868f2f02015-12-17 17:08:14 -07002190 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002191 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07002192 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06002193
Keith Busch868f2f02015-12-17 17:08:14 -07002194 if (hctxs[i])
2195 continue;
2196
2197 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002198 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
2199 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01002200 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07002201 break;
Jens Axboe320ae512013-10-24 09:20:05 +01002202
Jens Axboea86073e2014-10-13 15:41:54 -06002203 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07002204 node)) {
2205 kfree(hctxs[i]);
2206 hctxs[i] = NULL;
2207 break;
2208 }
Jens Axboee4043dc2014-04-09 10:18:23 -06002209
Jens Axboe0d2602c2014-05-13 15:10:52 -06002210 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06002211 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01002212 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07002213
2214 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
2215 free_cpumask_var(hctxs[i]->cpumask);
2216 kfree(hctxs[i]);
2217 hctxs[i] = NULL;
2218 break;
2219 }
2220 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01002221 }
Keith Busch868f2f02015-12-17 17:08:14 -07002222 for (j = i; j < q->nr_hw_queues; j++) {
2223 struct blk_mq_hw_ctx *hctx = hctxs[j];
2224
2225 if (hctx) {
Jens Axboecc71a6f2017-01-11 14:29:56 -07002226 if (hctx->tags)
2227 blk_mq_free_map_and_requests(set, j);
Keith Busch868f2f02015-12-17 17:08:14 -07002228 blk_mq_exit_hctx(q, set, hctx, j);
2229 free_cpumask_var(hctx->cpumask);
2230 kobject_put(&hctx->kobj);
2231 kfree(hctx->ctxs);
2232 kfree(hctx);
2233 hctxs[j] = NULL;
2234
2235 }
2236 }
2237 q->nr_hw_queues = i;
2238 blk_mq_sysfs_register(q);
2239}
2240
2241struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2242 struct request_queue *q)
2243{
Ming Lei66841672016-02-12 15:27:00 +08002244 /* mark the queue as mq asap */
2245 q->mq_ops = set->ops;
2246
Keith Busch868f2f02015-12-17 17:08:14 -07002247 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2248 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002249 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002250
2251 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2252 GFP_KERNEL, set->numa_node);
2253 if (!q->queue_hw_ctx)
2254 goto err_percpu;
2255
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002256 q->mq_map = set->mq_map;
Keith Busch868f2f02015-12-17 17:08:14 -07002257
2258 blk_mq_realloc_hw_ctxs(set, q);
2259 if (!q->nr_hw_queues)
2260 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002261
Christoph Hellwig287922eb2015-10-30 20:57:30 +08002262 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002263 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002264
2265 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002266
Jens Axboe94eddfb2013-11-19 09:25:07 -07002267 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002268
Jens Axboe05f1dd52014-05-29 09:53:32 -06002269 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2270 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2271
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002272 q->sg_reserved_size = INT_MAX;
2273
Mike Snitzer28494502016-09-14 13:28:30 -04002274 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002275 INIT_LIST_HEAD(&q->requeue_list);
2276 spin_lock_init(&q->requeue_lock);
2277
Jens Axboe07068d52014-05-22 10:40:51 -06002278 if (q->nr_hw_queues > 1)
2279 blk_queue_make_request(q, blk_mq_make_request);
2280 else
2281 blk_queue_make_request(q, blk_sq_make_request);
2282
Jens Axboeeba71762014-05-20 15:17:27 -06002283 /*
2284 * Do this after blk_queue_make_request() overrides it...
2285 */
2286 q->nr_requests = set->queue_depth;
2287
Jens Axboe64f1c212016-11-14 13:03:03 -07002288 /*
2289 * Default to classic polling
2290 */
2291 q->poll_nsec = -1;
2292
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002293 if (set->ops->complete)
2294 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002295
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002296 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002297
Akinobu Mita57783222015-09-27 02:09:23 +09002298 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002299 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002300
Jens Axboe320ae512013-10-24 09:20:05 +01002301 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002302 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002303 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002304
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002305 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002306 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002307
Jens Axboed3484992017-01-13 14:43:58 -07002308 if (!(set->flags & BLK_MQ_F_NO_SCHED)) {
2309 int ret;
2310
2311 ret = blk_mq_sched_init(q);
2312 if (ret)
2313 return ERR_PTR(ret);
2314 }
2315
Jens Axboe320ae512013-10-24 09:20:05 +01002316 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002317
Jens Axboe320ae512013-10-24 09:20:05 +01002318err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002319 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002320err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002321 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002322err_exit:
2323 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002324 return ERR_PTR(-ENOMEM);
2325}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002326EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002327
2328void blk_mq_free_queue(struct request_queue *q)
2329{
Ming Lei624dbe42014-05-27 23:35:13 +08002330 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002331
Akinobu Mita0e626362015-09-27 02:09:22 +09002332 mutex_lock(&all_q_mutex);
2333 list_del_init(&q->all_q_node);
2334 mutex_unlock(&all_q_mutex);
2335
Jens Axboe87760e52016-11-09 12:38:14 -07002336 wbt_exit(q);
2337
Jens Axboe0d2602c2014-05-13 15:10:52 -06002338 blk_mq_del_queue_tag_set(q);
2339
Ming Lei624dbe42014-05-27 23:35:13 +08002340 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2341 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002342}
Jens Axboe320ae512013-10-24 09:20:05 +01002343
2344/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002345static void blk_mq_queue_reinit(struct request_queue *q,
2346 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002347{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002348 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002349
Jens Axboe67aec142014-05-30 08:25:36 -06002350 blk_mq_sysfs_unregister(q);
2351
Jens Axboe320ae512013-10-24 09:20:05 +01002352 /*
2353 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2354 * we should change hctx numa_node according to new topology (this
2355 * involves free and re-allocate memory, worthy doing?)
2356 */
2357
Akinobu Mita57783222015-09-27 02:09:23 +09002358 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002359
Jens Axboe67aec142014-05-30 08:25:36 -06002360 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002361}
2362
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002363/*
2364 * New online cpumask which is going to be set in this hotplug event.
2365 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2366 * one-by-one and dynamically allocating this could result in a failure.
2367 */
2368static struct cpumask cpuhp_online_new;
2369
2370static void blk_mq_queue_reinit_work(void)
Jens Axboe320ae512013-10-24 09:20:05 +01002371{
2372 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +01002373
2374 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002375 /*
2376 * We need to freeze and reinit all existing queues. Freezing
2377 * involves synchronous wait for an RCU grace period and doing it
2378 * one by one may take a long time. Start freezing all queues in
2379 * one swoop and then wait for the completions so that freezing can
2380 * take place in parallel.
2381 */
2382 list_for_each_entry(q, &all_q_list, all_q_node)
2383 blk_mq_freeze_queue_start(q);
Gabriel Krisman Bertazi415d3da2016-11-28 15:01:48 -02002384 list_for_each_entry(q, &all_q_list, all_q_node)
Tejun Heof3af0202014-11-04 13:52:27 -05002385 blk_mq_freeze_queue_wait(q);
2386
Jens Axboe320ae512013-10-24 09:20:05 +01002387 list_for_each_entry(q, &all_q_list, all_q_node)
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002388 blk_mq_queue_reinit(q, &cpuhp_online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002389
2390 list_for_each_entry(q, &all_q_list, all_q_node)
2391 blk_mq_unfreeze_queue(q);
2392
Jens Axboe320ae512013-10-24 09:20:05 +01002393 mutex_unlock(&all_q_mutex);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002394}
2395
2396static int blk_mq_queue_reinit_dead(unsigned int cpu)
2397{
Sebastian Andrzej Siewior97a32862016-09-23 15:02:38 +02002398 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002399 blk_mq_queue_reinit_work();
2400 return 0;
2401}
2402
2403/*
2404 * Before hotadded cpu starts handling requests, new mappings must be
2405 * established. Otherwise, these requests in hw queue might never be
2406 * dispatched.
2407 *
2408 * For example, there is a single hw queue (hctx) and two CPU queues (ctx0
2409 * for CPU0, and ctx1 for CPU1).
2410 *
2411 * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list
2412 * and set bit0 in pending bitmap as ctx1->index_hw is still zero.
2413 *
Jens Axboe2c3ad662016-12-14 14:34:47 -07002414 * And then while running hw queue, blk_mq_flush_busy_ctxs() finds bit0 is set
2415 * in pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list.
2416 * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list is
2417 * ignored.
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002418 */
2419static int blk_mq_queue_reinit_prepare(unsigned int cpu)
2420{
2421 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
2422 cpumask_set_cpu(cpu, &cpuhp_online_new);
2423 blk_mq_queue_reinit_work();
2424 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002425}
2426
Jens Axboea5164402014-09-10 09:02:03 -06002427static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2428{
2429 int i;
2430
Jens Axboecc71a6f2017-01-11 14:29:56 -07002431 for (i = 0; i < set->nr_hw_queues; i++)
2432 if (!__blk_mq_alloc_rq_map(set, i))
Jens Axboea5164402014-09-10 09:02:03 -06002433 goto out_unwind;
Jens Axboea5164402014-09-10 09:02:03 -06002434
2435 return 0;
2436
2437out_unwind:
2438 while (--i >= 0)
Jens Axboecc71a6f2017-01-11 14:29:56 -07002439 blk_mq_free_rq_map(set->tags[i]);
Jens Axboea5164402014-09-10 09:02:03 -06002440
Jens Axboea5164402014-09-10 09:02:03 -06002441 return -ENOMEM;
2442}
2443
2444/*
2445 * Allocate the request maps associated with this tag_set. Note that this
2446 * may reduce the depth asked for, if memory is tight. set->queue_depth
2447 * will be updated to reflect the allocated depth.
2448 */
2449static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2450{
2451 unsigned int depth;
2452 int err;
2453
2454 depth = set->queue_depth;
2455 do {
2456 err = __blk_mq_alloc_rq_maps(set);
2457 if (!err)
2458 break;
2459
2460 set->queue_depth >>= 1;
2461 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2462 err = -ENOMEM;
2463 break;
2464 }
2465 } while (set->queue_depth);
2466
2467 if (!set->queue_depth || err) {
2468 pr_err("blk-mq: failed to allocate request map\n");
2469 return -ENOMEM;
2470 }
2471
2472 if (depth != set->queue_depth)
2473 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2474 depth, set->queue_depth);
2475
2476 return 0;
2477}
2478
Jens Axboea4391c62014-06-05 15:21:56 -06002479/*
2480 * Alloc a tag set to be associated with one or more request queues.
2481 * May fail with EINVAL for various error conditions. May adjust the
2482 * requested depth down, if if it too large. In that case, the set
2483 * value will be stored in set->queue_depth.
2484 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002485int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2486{
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002487 int ret;
2488
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002489 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2490
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002491 if (!set->nr_hw_queues)
2492 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002493 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002494 return -EINVAL;
2495 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2496 return -EINVAL;
2497
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002498 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002499 return -EINVAL;
2500
Jens Axboea4391c62014-06-05 15:21:56 -06002501 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2502 pr_info("blk-mq: reduced tag depth to %u\n",
2503 BLK_MQ_MAX_DEPTH);
2504 set->queue_depth = BLK_MQ_MAX_DEPTH;
2505 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002506
Shaohua Li6637fad2014-11-30 16:00:58 -08002507 /*
2508 * If a crashdump is active, then we are potentially in a very
2509 * memory constrained environment. Limit us to 1 queue and
2510 * 64 tags to prevent using too much memory.
2511 */
2512 if (is_kdump_kernel()) {
2513 set->nr_hw_queues = 1;
2514 set->queue_depth = min(64U, set->queue_depth);
2515 }
Keith Busch868f2f02015-12-17 17:08:14 -07002516 /*
2517 * There is no use for more h/w queues than cpus.
2518 */
2519 if (set->nr_hw_queues > nr_cpu_ids)
2520 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002521
Keith Busch868f2f02015-12-17 17:08:14 -07002522 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002523 GFP_KERNEL, set->numa_node);
2524 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002525 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002526
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002527 ret = -ENOMEM;
2528 set->mq_map = kzalloc_node(sizeof(*set->mq_map) * nr_cpu_ids,
2529 GFP_KERNEL, set->numa_node);
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002530 if (!set->mq_map)
2531 goto out_free_tags;
2532
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002533 if (set->ops->map_queues)
2534 ret = set->ops->map_queues(set);
2535 else
2536 ret = blk_mq_map_queues(set);
2537 if (ret)
2538 goto out_free_mq_map;
2539
2540 ret = blk_mq_alloc_rq_maps(set);
2541 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002542 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002543
Jens Axboe0d2602c2014-05-13 15:10:52 -06002544 mutex_init(&set->tag_list_lock);
2545 INIT_LIST_HEAD(&set->tag_list);
2546
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002547 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002548
2549out_free_mq_map:
2550 kfree(set->mq_map);
2551 set->mq_map = NULL;
2552out_free_tags:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002553 kfree(set->tags);
2554 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002555 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002556}
2557EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2558
2559void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2560{
2561 int i;
2562
Jens Axboecc71a6f2017-01-11 14:29:56 -07002563 for (i = 0; i < nr_cpu_ids; i++)
2564 blk_mq_free_map_and_requests(set, i);
Jens Axboe484b4062014-05-21 14:01:15 -06002565
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002566 kfree(set->mq_map);
2567 set->mq_map = NULL;
2568
Ming Lei981bd182014-04-24 00:07:34 +08002569 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002570 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002571}
2572EXPORT_SYMBOL(blk_mq_free_tag_set);
2573
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002574int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2575{
2576 struct blk_mq_tag_set *set = q->tag_set;
2577 struct blk_mq_hw_ctx *hctx;
2578 int i, ret;
2579
Jens Axboebd166ef2017-01-17 06:03:22 -07002580 if (!set)
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002581 return -EINVAL;
2582
Jens Axboe70f36b62017-01-19 10:59:07 -07002583 blk_mq_freeze_queue(q);
2584 blk_mq_quiesce_queue(q);
2585
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002586 ret = 0;
2587 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002588 if (!hctx->tags)
2589 continue;
Jens Axboebd166ef2017-01-17 06:03:22 -07002590 /*
2591 * If we're using an MQ scheduler, just update the scheduler
2592 * queue depth. This is similar to what the old code would do.
2593 */
Jens Axboe70f36b62017-01-19 10:59:07 -07002594 if (!hctx->sched_tags) {
2595 ret = blk_mq_tag_update_depth(hctx, &hctx->tags,
2596 min(nr, set->queue_depth),
2597 false);
2598 } else {
2599 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
2600 nr, true);
2601 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002602 if (ret)
2603 break;
2604 }
2605
2606 if (!ret)
2607 q->nr_requests = nr;
2608
Jens Axboe70f36b62017-01-19 10:59:07 -07002609 blk_mq_unfreeze_queue(q);
2610 blk_mq_start_stopped_hw_queues(q, true);
2611
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002612 return ret;
2613}
2614
Keith Busch868f2f02015-12-17 17:08:14 -07002615void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2616{
2617 struct request_queue *q;
2618
2619 if (nr_hw_queues > nr_cpu_ids)
2620 nr_hw_queues = nr_cpu_ids;
2621 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2622 return;
2623
2624 list_for_each_entry(q, &set->tag_list, tag_set_list)
2625 blk_mq_freeze_queue(q);
2626
2627 set->nr_hw_queues = nr_hw_queues;
2628 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2629 blk_mq_realloc_hw_ctxs(set, q);
2630
Josef Bacikf6f94302017-02-10 13:03:33 -05002631 /*
2632 * Manually set the make_request_fn as blk_queue_make_request
2633 * resets a lot of the queue settings.
2634 */
Keith Busch868f2f02015-12-17 17:08:14 -07002635 if (q->nr_hw_queues > 1)
Josef Bacikf6f94302017-02-10 13:03:33 -05002636 q->make_request_fn = blk_mq_make_request;
Keith Busch868f2f02015-12-17 17:08:14 -07002637 else
Josef Bacikf6f94302017-02-10 13:03:33 -05002638 q->make_request_fn = blk_sq_make_request;
Keith Busch868f2f02015-12-17 17:08:14 -07002639
2640 blk_mq_queue_reinit(q, cpu_online_mask);
2641 }
2642
2643 list_for_each_entry(q, &set->tag_list, tag_set_list)
2644 blk_mq_unfreeze_queue(q);
2645}
2646EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2647
Jens Axboe64f1c212016-11-14 13:03:03 -07002648static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
2649 struct blk_mq_hw_ctx *hctx,
2650 struct request *rq)
2651{
2652 struct blk_rq_stat stat[2];
2653 unsigned long ret = 0;
2654
2655 /*
2656 * If stats collection isn't on, don't sleep but turn it on for
2657 * future users
2658 */
2659 if (!blk_stat_enable(q))
2660 return 0;
2661
2662 /*
2663 * We don't have to do this once per IO, should optimize this
2664 * to just use the current window of stats until it changes
2665 */
2666 memset(&stat, 0, sizeof(stat));
2667 blk_hctx_stat_get(hctx, stat);
2668
2669 /*
2670 * As an optimistic guess, use half of the mean service time
2671 * for this type of request. We can (and should) make this smarter.
2672 * For instance, if the completion latencies are tight, we can
2673 * get closer than just half the mean. This is especially
2674 * important on devices where the completion latencies are longer
2675 * than ~10 usec.
2676 */
2677 if (req_op(rq) == REQ_OP_READ && stat[BLK_STAT_READ].nr_samples)
2678 ret = (stat[BLK_STAT_READ].mean + 1) / 2;
2679 else if (req_op(rq) == REQ_OP_WRITE && stat[BLK_STAT_WRITE].nr_samples)
2680 ret = (stat[BLK_STAT_WRITE].mean + 1) / 2;
2681
2682 return ret;
2683}
2684
Jens Axboe06426ad2016-11-14 13:01:59 -07002685static bool blk_mq_poll_hybrid_sleep(struct request_queue *q,
Jens Axboe64f1c212016-11-14 13:03:03 -07002686 struct blk_mq_hw_ctx *hctx,
Jens Axboe06426ad2016-11-14 13:01:59 -07002687 struct request *rq)
2688{
2689 struct hrtimer_sleeper hs;
2690 enum hrtimer_mode mode;
Jens Axboe64f1c212016-11-14 13:03:03 -07002691 unsigned int nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002692 ktime_t kt;
2693
Jens Axboe64f1c212016-11-14 13:03:03 -07002694 if (test_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags))
2695 return false;
2696
2697 /*
2698 * poll_nsec can be:
2699 *
2700 * -1: don't ever hybrid sleep
2701 * 0: use half of prev avg
2702 * >0: use this specific value
2703 */
2704 if (q->poll_nsec == -1)
2705 return false;
2706 else if (q->poll_nsec > 0)
2707 nsecs = q->poll_nsec;
2708 else
2709 nsecs = blk_mq_poll_nsecs(q, hctx, rq);
2710
2711 if (!nsecs)
Jens Axboe06426ad2016-11-14 13:01:59 -07002712 return false;
2713
2714 set_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
2715
2716 /*
2717 * This will be replaced with the stats tracking code, using
2718 * 'avg_completion_time / 2' as the pre-sleep target.
2719 */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002720 kt = nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002721
2722 mode = HRTIMER_MODE_REL;
2723 hrtimer_init_on_stack(&hs.timer, CLOCK_MONOTONIC, mode);
2724 hrtimer_set_expires(&hs.timer, kt);
2725
2726 hrtimer_init_sleeper(&hs, current);
2727 do {
2728 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
2729 break;
2730 set_current_state(TASK_UNINTERRUPTIBLE);
2731 hrtimer_start_expires(&hs.timer, mode);
2732 if (hs.task)
2733 io_schedule();
2734 hrtimer_cancel(&hs.timer);
2735 mode = HRTIMER_MODE_ABS;
2736 } while (hs.task && !signal_pending(current));
2737
2738 __set_current_state(TASK_RUNNING);
2739 destroy_hrtimer_on_stack(&hs.timer);
2740 return true;
2741}
2742
Jens Axboebbd7bb72016-11-04 09:34:34 -06002743static bool __blk_mq_poll(struct blk_mq_hw_ctx *hctx, struct request *rq)
2744{
2745 struct request_queue *q = hctx->queue;
2746 long state;
2747
Jens Axboe06426ad2016-11-14 13:01:59 -07002748 /*
2749 * If we sleep, have the caller restart the poll loop to reset
2750 * the state. Like for the other success return cases, the
2751 * caller is responsible for checking if the IO completed. If
2752 * the IO isn't complete, we'll get called again and will go
2753 * straight to the busy poll loop.
2754 */
Jens Axboe64f1c212016-11-14 13:03:03 -07002755 if (blk_mq_poll_hybrid_sleep(q, hctx, rq))
Jens Axboe06426ad2016-11-14 13:01:59 -07002756 return true;
2757
Jens Axboebbd7bb72016-11-04 09:34:34 -06002758 hctx->poll_considered++;
2759
2760 state = current->state;
2761 while (!need_resched()) {
2762 int ret;
2763
2764 hctx->poll_invoked++;
2765
2766 ret = q->mq_ops->poll(hctx, rq->tag);
2767 if (ret > 0) {
2768 hctx->poll_success++;
2769 set_current_state(TASK_RUNNING);
2770 return true;
2771 }
2772
2773 if (signal_pending_state(state, current))
2774 set_current_state(TASK_RUNNING);
2775
2776 if (current->state == TASK_RUNNING)
2777 return true;
2778 if (ret < 0)
2779 break;
2780 cpu_relax();
2781 }
2782
2783 return false;
2784}
2785
2786bool blk_mq_poll(struct request_queue *q, blk_qc_t cookie)
2787{
2788 struct blk_mq_hw_ctx *hctx;
2789 struct blk_plug *plug;
2790 struct request *rq;
2791
2792 if (!q->mq_ops || !q->mq_ops->poll || !blk_qc_t_valid(cookie) ||
2793 !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
2794 return false;
2795
2796 plug = current->plug;
2797 if (plug)
2798 blk_flush_plug_list(plug, false);
2799
2800 hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
Jens Axboebd166ef2017-01-17 06:03:22 -07002801 if (!blk_qc_t_is_internal(cookie))
2802 rq = blk_mq_tag_to_rq(hctx->tags, blk_qc_t_to_tag(cookie));
2803 else
2804 rq = blk_mq_tag_to_rq(hctx->sched_tags, blk_qc_t_to_tag(cookie));
Jens Axboebbd7bb72016-11-04 09:34:34 -06002805
2806 return __blk_mq_poll(hctx, rq);
2807}
2808EXPORT_SYMBOL_GPL(blk_mq_poll);
2809
Jens Axboe676141e2014-03-20 13:29:18 -06002810void blk_mq_disable_hotplug(void)
2811{
2812 mutex_lock(&all_q_mutex);
2813}
2814
2815void blk_mq_enable_hotplug(void)
2816{
2817 mutex_unlock(&all_q_mutex);
2818}
2819
Jens Axboe320ae512013-10-24 09:20:05 +01002820static int __init blk_mq_init(void)
2821{
Thomas Gleixner9467f852016-09-22 08:05:17 -06002822 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
2823 blk_mq_hctx_notify_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002824
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002825 cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare",
2826 blk_mq_queue_reinit_prepare,
2827 blk_mq_queue_reinit_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002828 return 0;
2829}
2830subsys_initcall(blk_mq_init);