blob: ee69e5e8976954958a93190b7b1b83d13d52413c [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 */
43static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
44{
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
Tony Battersby6f4a16262014-08-22 15:53:39 -0400203 rq->cmd = rq->__cmd;
204
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200205 rq->extra_len = 0;
206 rq->sense_len = 0;
207 rq->resid_len = 0;
208 rq->sense = NULL;
209
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200210 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600211 rq->timeout = 0;
212
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200213 rq->end_io = NULL;
214 rq->end_io_data = NULL;
215 rq->next_rq = NULL;
216
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600217 ctx->rq_dispatched[op_is_sync(op)]++;
Jens Axboe320ae512013-10-24 09:20:05 +0100218}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700219EXPORT_SYMBOL_GPL(blk_mq_rq_ctx_init);
Jens Axboe320ae512013-10-24 09:20:05 +0100220
Jens Axboe2c3ad662016-12-14 14:34:47 -0700221struct request *__blk_mq_alloc_request(struct blk_mq_alloc_data *data,
222 unsigned int op)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200223{
224 struct request *rq;
225 unsigned int tag;
226
Ming Leicb96a422014-06-01 00:43:37 +0800227 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200228 if (tag != BLK_MQ_TAG_FAIL) {
Jens Axboebd166ef2017-01-17 06:03:22 -0700229 struct blk_mq_tags *tags = blk_mq_tags_from_data(data);
230
231 rq = tags->static_rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200232
Ming Leicb96a422014-06-01 00:43:37 +0800233 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200234 rq->rq_flags = RQF_MQ_INFLIGHT;
Ming Leicb96a422014-06-01 00:43:37 +0800235 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200236 }
237
Jens Axboebd166ef2017-01-17 06:03:22 -0700238 if (data->flags & BLK_MQ_REQ_INTERNAL) {
239 rq->tag = -1;
240 rq->internal_tag = tag;
241 } else {
242 rq->tag = tag;
243 rq->internal_tag = -1;
244 }
245
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600246 blk_mq_rq_ctx_init(data->q, data->ctx, rq, op);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200247 return rq;
248 }
249
250 return NULL;
251}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700252EXPORT_SYMBOL_GPL(__blk_mq_alloc_request);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200253
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100254struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
255 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100256{
Ming Leicb96a422014-06-01 00:43:37 +0800257 struct blk_mq_alloc_data alloc_data;
Jens Axboebd166ef2017-01-17 06:03:22 -0700258 struct request *rq;
Joe Lawrencea492f072014-08-28 08:15:21 -0600259 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100260
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100261 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600262 if (ret)
263 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100264
Jens Axboebd166ef2017-01-17 06:03:22 -0700265 rq = blk_mq_sched_get_request(q, NULL, rw, &alloc_data);
Jens Axboe841bac22016-09-21 10:08:43 -0600266
Jens Axboebd166ef2017-01-17 06:03:22 -0700267 blk_mq_put_ctx(alloc_data.ctx);
268 blk_queue_exit(q);
269
270 if (!rq)
Joe Lawrencea492f072014-08-28 08:15:21 -0600271 return ERR_PTR(-EWOULDBLOCK);
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200272
273 rq->__data_len = 0;
274 rq->__sector = (sector_t) -1;
275 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100276 return rq;
277}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600278EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100279
Ming Lin1f5bd332016-06-13 16:45:21 +0200280struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
281 unsigned int flags, unsigned int hctx_idx)
282{
283 struct blk_mq_hw_ctx *hctx;
284 struct blk_mq_ctx *ctx;
285 struct request *rq;
286 struct blk_mq_alloc_data alloc_data;
287 int ret;
288
289 /*
290 * If the tag allocator sleeps we could get an allocation for a
291 * different hardware context. No need to complicate the low level
292 * allocator for this for the rare use case of a command tied to
293 * a specific queue.
294 */
295 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
296 return ERR_PTR(-EINVAL);
297
298 if (hctx_idx >= q->nr_hw_queues)
299 return ERR_PTR(-EIO);
300
301 ret = blk_queue_enter(q, true);
302 if (ret)
303 return ERR_PTR(ret);
304
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600305 /*
306 * Check if the hardware context is actually mapped to anything.
307 * If not tell the caller that it should skip this queue.
308 */
Ming Lin1f5bd332016-06-13 16:45:21 +0200309 hctx = q->queue_hw_ctx[hctx_idx];
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600310 if (!blk_mq_hw_queue_mapped(hctx)) {
311 ret = -EXDEV;
312 goto out_queue_exit;
313 }
Ming Lin1f5bd332016-06-13 16:45:21 +0200314 ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask));
315
316 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600317 rq = __blk_mq_alloc_request(&alloc_data, rw);
Ming Lin1f5bd332016-06-13 16:45:21 +0200318 if (!rq) {
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600319 ret = -EWOULDBLOCK;
320 goto out_queue_exit;
Ming Lin1f5bd332016-06-13 16:45:21 +0200321 }
322
323 return rq;
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600324
325out_queue_exit:
326 blk_queue_exit(q);
327 return ERR_PTR(ret);
Ming Lin1f5bd332016-06-13 16:45:21 +0200328}
329EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
330
Jens Axboebd166ef2017-01-17 06:03:22 -0700331void __blk_mq_finish_request(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
332 struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100333{
Jens Axboebd166ef2017-01-17 06:03:22 -0700334 const int sched_tag = rq->internal_tag;
Jens Axboe320ae512013-10-24 09:20:05 +0100335 struct request_queue *q = rq->q;
336
Christoph Hellwige8064022016-10-20 15:12:13 +0200337 if (rq->rq_flags & RQF_MQ_INFLIGHT)
Jens Axboe0d2602c2014-05-13 15:10:52 -0600338 atomic_dec(&hctx->nr_active);
Jens Axboe87760e52016-11-09 12:38:14 -0700339
340 wbt_done(q->rq_wb, &rq->issue_stat);
Christoph Hellwige8064022016-10-20 15:12:13 +0200341 rq->rq_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600342
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200343 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe06426ad2016-11-14 13:01:59 -0700344 clear_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
Jens Axboebd166ef2017-01-17 06:03:22 -0700345 if (rq->tag != -1)
346 blk_mq_put_tag(hctx, hctx->tags, ctx, rq->tag);
347 if (sched_tag != -1)
348 blk_mq_sched_completed_request(hctx, rq);
Dan Williams3ef28e82015-10-21 13:20:12 -0400349 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100350}
351
Jens Axboebd166ef2017-01-17 06:03:22 -0700352static void blk_mq_finish_hctx_request(struct blk_mq_hw_ctx *hctx,
Jens Axboe16a3c2a2016-12-15 14:27:46 -0700353 struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100354{
355 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700356
357 ctx->rq_completed[rq_is_sync(rq)]++;
Jens Axboebd166ef2017-01-17 06:03:22 -0700358 __blk_mq_finish_request(hctx, ctx, rq);
359}
360
361void blk_mq_finish_request(struct request *rq)
362{
363 blk_mq_finish_hctx_request(blk_mq_map_queue(rq->q, rq->mq_ctx->cpu), rq);
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700364}
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700365
366void blk_mq_free_request(struct request *rq)
367{
Jens Axboebd166ef2017-01-17 06:03:22 -0700368 blk_mq_sched_put_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100369}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700370EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100371
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700372inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100373{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700374 blk_account_io_done(rq);
375
Christoph Hellwig91b63632014-04-16 09:44:53 +0200376 if (rq->end_io) {
Jens Axboe87760e52016-11-09 12:38:14 -0700377 wbt_done(rq->q->rq_wb, &rq->issue_stat);
Jens Axboe320ae512013-10-24 09:20:05 +0100378 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200379 } else {
380 if (unlikely(blk_bidi_rq(rq)))
381 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100382 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200383 }
Jens Axboe320ae512013-10-24 09:20:05 +0100384}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700385EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200386
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700387void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200388{
389 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
390 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700391 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200392}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700393EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100394
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800395static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100396{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800397 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100398
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800399 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100400}
401
Jens Axboeed851862014-05-30 21:20:50 -0600402static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100403{
404 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700405 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100406 int cpu;
407
Christoph Hellwig38535202014-04-25 02:32:53 -0700408 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800409 rq->q->softirq_done_fn(rq);
410 return;
411 }
Jens Axboe320ae512013-10-24 09:20:05 +0100412
413 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700414 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
415 shared = cpus_share_cache(cpu, ctx->cpu);
416
417 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800418 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800419 rq->csd.info = rq;
420 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100421 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800422 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800423 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800424 }
Jens Axboe320ae512013-10-24 09:20:05 +0100425 put_cpu();
426}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800427
Jens Axboecf43e6b2016-11-07 21:32:37 -0700428static void blk_mq_stat_add(struct request *rq)
429{
430 if (rq->rq_flags & RQF_STATS) {
431 /*
432 * We could rq->mq_ctx here, but there's less of a risk
433 * of races if we have the completion event add the stats
434 * to the local software queue.
435 */
436 struct blk_mq_ctx *ctx;
437
438 ctx = __blk_mq_get_ctx(rq->q, raw_smp_processor_id());
439 blk_stat_add(&ctx->stat[rq_data_dir(rq)], rq);
440 }
441}
442
Jens Axboe1fa8cc52015-11-05 14:32:55 -0700443static void __blk_mq_complete_request(struct request *rq)
Jens Axboeed851862014-05-30 21:20:50 -0600444{
445 struct request_queue *q = rq->q;
446
Jens Axboecf43e6b2016-11-07 21:32:37 -0700447 blk_mq_stat_add(rq);
448
Jens Axboeed851862014-05-30 21:20:50 -0600449 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700450 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600451 else
452 blk_mq_ipi_complete_request(rq);
453}
454
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800455/**
456 * blk_mq_complete_request - end I/O on a request
457 * @rq: the request being processed
458 *
459 * Description:
460 * Ends all I/O on a request. It does not handle partial completions.
461 * The actual completion happens out-of-order, through a IPI handler.
462 **/
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200463void blk_mq_complete_request(struct request *rq, int error)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800464{
Jens Axboe95f09682014-05-27 17:46:48 -0600465 struct request_queue *q = rq->q;
466
467 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800468 return;
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200469 if (!blk_mark_rq_complete(rq)) {
470 rq->errors = error;
Jens Axboeed851862014-05-30 21:20:50 -0600471 __blk_mq_complete_request(rq);
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200472 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800473}
474EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100475
Keith Busch973c0192015-01-07 18:55:43 -0700476int blk_mq_request_started(struct request *rq)
477{
478 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
479}
480EXPORT_SYMBOL_GPL(blk_mq_request_started);
481
Christoph Hellwige2490072014-09-13 16:40:09 -0700482void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100483{
484 struct request_queue *q = rq->q;
485
Jens Axboebd166ef2017-01-17 06:03:22 -0700486 blk_mq_sched_started_request(rq);
487
Jens Axboe320ae512013-10-24 09:20:05 +0100488 trace_block_rq_issue(q, rq);
489
Christoph Hellwig742ee692014-04-14 10:30:06 +0200490 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200491 if (unlikely(blk_bidi_rq(rq)))
492 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200493
Jens Axboecf43e6b2016-11-07 21:32:37 -0700494 if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) {
495 blk_stat_set_issue_time(&rq->issue_stat);
496 rq->rq_flags |= RQF_STATS;
Jens Axboe87760e52016-11-09 12:38:14 -0700497 wbt_issue(q->rq_wb, &rq->issue_stat);
Jens Axboecf43e6b2016-11-07 21:32:37 -0700498 }
499
Ming Lei2b8393b2014-06-10 00:16:41 +0800500 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600501
502 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600503 * Ensure that ->deadline is visible before set the started
504 * flag and clear the completed flag.
505 */
506 smp_mb__before_atomic();
507
508 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600509 * Mark us as started and clear complete. Complete might have been
510 * set if requeue raced with timeout, which then marked it as
511 * complete. So be sure to clear complete again when we start
512 * the request, otherwise we'll ignore the completion event.
513 */
Jens Axboe4b570522014-05-29 11:00:11 -0600514 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
515 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
516 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
517 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800518
519 if (q->dma_drain_size && blk_rq_bytes(rq)) {
520 /*
521 * Make sure space for the drain appears. We know we can do
522 * this because max_hw_segments has been adjusted to be one
523 * fewer than the device can handle.
524 */
525 rq->nr_phys_segments++;
526 }
Jens Axboe320ae512013-10-24 09:20:05 +0100527}
Christoph Hellwige2490072014-09-13 16:40:09 -0700528EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100529
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200530static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100531{
532 struct request_queue *q = rq->q;
533
534 trace_block_rq_requeue(q, rq);
Jens Axboe87760e52016-11-09 12:38:14 -0700535 wbt_requeue(q->rq_wb, &rq->issue_stat);
Jens Axboebd166ef2017-01-17 06:03:22 -0700536 blk_mq_sched_requeue_request(rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800537
Christoph Hellwige2490072014-09-13 16:40:09 -0700538 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
539 if (q->dma_drain_size && blk_rq_bytes(rq))
540 rq->nr_phys_segments--;
541 }
Jens Axboe320ae512013-10-24 09:20:05 +0100542}
543
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700544void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200545{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200546 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200547
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200548 BUG_ON(blk_queued_rq(rq));
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700549 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200550}
551EXPORT_SYMBOL(blk_mq_requeue_request);
552
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600553static void blk_mq_requeue_work(struct work_struct *work)
554{
555 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400556 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600557 LIST_HEAD(rq_list);
558 struct request *rq, *next;
559 unsigned long flags;
560
561 spin_lock_irqsave(&q->requeue_lock, flags);
562 list_splice_init(&q->requeue_list, &rq_list);
563 spin_unlock_irqrestore(&q->requeue_lock, flags);
564
565 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200566 if (!(rq->rq_flags & RQF_SOFTBARRIER))
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600567 continue;
568
Christoph Hellwige8064022016-10-20 15:12:13 +0200569 rq->rq_flags &= ~RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600570 list_del_init(&rq->queuelist);
Jens Axboebd166ef2017-01-17 06:03:22 -0700571 blk_mq_sched_insert_request(rq, true, false, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600572 }
573
574 while (!list_empty(&rq_list)) {
575 rq = list_entry(rq_list.next, struct request, queuelist);
576 list_del_init(&rq->queuelist);
Jens Axboebd166ef2017-01-17 06:03:22 -0700577 blk_mq_sched_insert_request(rq, false, false, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600578 }
579
Bart Van Assche52d7f1b2016-10-28 17:20:32 -0700580 blk_mq_run_hw_queues(q, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600581}
582
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700583void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
584 bool kick_requeue_list)
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600585{
586 struct request_queue *q = rq->q;
587 unsigned long flags;
588
589 /*
590 * We abuse this flag that is otherwise used by the I/O scheduler to
591 * request head insertation from the workqueue.
592 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200593 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600594
595 spin_lock_irqsave(&q->requeue_lock, flags);
596 if (at_head) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200597 rq->rq_flags |= RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600598 list_add(&rq->queuelist, &q->requeue_list);
599 } else {
600 list_add_tail(&rq->queuelist, &q->requeue_list);
601 }
602 spin_unlock_irqrestore(&q->requeue_lock, flags);
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700603
604 if (kick_requeue_list)
605 blk_mq_kick_requeue_list(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600606}
607EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
608
609void blk_mq_kick_requeue_list(struct request_queue *q)
610{
Mike Snitzer28494502016-09-14 13:28:30 -0400611 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600612}
613EXPORT_SYMBOL(blk_mq_kick_requeue_list);
614
Mike Snitzer28494502016-09-14 13:28:30 -0400615void blk_mq_delay_kick_requeue_list(struct request_queue *q,
616 unsigned long msecs)
617{
618 kblockd_schedule_delayed_work(&q->requeue_work,
619 msecs_to_jiffies(msecs));
620}
621EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
622
Jens Axboe1885b242015-01-07 18:55:45 -0700623void blk_mq_abort_requeue_list(struct request_queue *q)
624{
625 unsigned long flags;
626 LIST_HEAD(rq_list);
627
628 spin_lock_irqsave(&q->requeue_lock, flags);
629 list_splice_init(&q->requeue_list, &rq_list);
630 spin_unlock_irqrestore(&q->requeue_lock, flags);
631
632 while (!list_empty(&rq_list)) {
633 struct request *rq;
634
635 rq = list_first_entry(&rq_list, struct request, queuelist);
636 list_del_init(&rq->queuelist);
637 rq->errors = -EIO;
638 blk_mq_end_request(rq, rq->errors);
639 }
640}
641EXPORT_SYMBOL(blk_mq_abort_requeue_list);
642
Jens Axboe0e62f512014-06-04 10:23:49 -0600643struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
644{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600645 if (tag < tags->nr_tags) {
646 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700647 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600648 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700649
650 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600651}
652EXPORT_SYMBOL(blk_mq_tag_to_rq);
653
Jens Axboe320ae512013-10-24 09:20:05 +0100654struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700655 unsigned long next;
656 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100657};
658
Christoph Hellwig90415832014-09-22 10:21:48 -0600659void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100660{
Jens Axboef8a5b122016-12-13 09:24:51 -0700661 const struct blk_mq_ops *ops = req->q->mq_ops;
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700662 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600663
664 /*
665 * We know that complete is set at this point. If STARTED isn't set
666 * anymore, then the request isn't active and the "timeout" should
667 * just be ignored. This can happen due to the bitflag ordering.
668 * Timeout first checks if STARTED is set, and if it is, assumes
669 * the request is active. But if we race with completion, then
670 * we both flags will get cleared. So check here again, and ignore
671 * a timeout event with a request that isn't active.
672 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700673 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
674 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600675
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700676 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700677 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600678
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700679 switch (ret) {
680 case BLK_EH_HANDLED:
681 __blk_mq_complete_request(req);
682 break;
683 case BLK_EH_RESET_TIMER:
684 blk_add_timer(req);
685 blk_clear_rq_complete(req);
686 break;
687 case BLK_EH_NOT_HANDLED:
688 break;
689 default:
690 printk(KERN_ERR "block: bad eh return: %d\n", ret);
691 break;
692 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600693}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700694
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700695static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
696 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100697{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700698 struct blk_mq_timeout_data *data = priv;
699
Keith Buscheb130db2015-01-08 08:59:53 -0700700 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
701 /*
702 * If a request wasn't started before the queue was
703 * marked dying, kill it here or it'll go unnoticed.
704 */
Keith Buscha59e0f52016-02-11 13:05:38 -0700705 if (unlikely(blk_queue_dying(rq->q))) {
706 rq->errors = -EIO;
707 blk_mq_end_request(rq, rq->errors);
708 }
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700709 return;
Keith Buscheb130db2015-01-08 08:59:53 -0700710 }
Jens Axboe320ae512013-10-24 09:20:05 +0100711
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700712 if (time_after_eq(jiffies, rq->deadline)) {
713 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700714 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700715 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
716 data->next = rq->deadline;
717 data->next_set = 1;
718 }
Jens Axboe320ae512013-10-24 09:20:05 +0100719}
720
Christoph Hellwig287922e2015-10-30 20:57:30 +0800721static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100722{
Christoph Hellwig287922e2015-10-30 20:57:30 +0800723 struct request_queue *q =
724 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700725 struct blk_mq_timeout_data data = {
726 .next = 0,
727 .next_set = 0,
728 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700729 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100730
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600731 /* A deadlock might occur if a request is stuck requiring a
732 * timeout at the same time a queue freeze is waiting
733 * completion, since the timeout code would not be able to
734 * acquire the queue reference here.
735 *
736 * That's why we don't use blk_queue_enter here; instead, we use
737 * percpu_ref_tryget directly, because we need to be able to
738 * obtain a reference even in the short window between the queue
739 * starting to freeze, by dropping the first reference in
740 * blk_mq_freeze_queue_start, and the moment the last request is
741 * consumed, marked by the instant q_usage_counter reaches
742 * zero.
743 */
744 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +0800745 return;
746
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200747 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100748
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700749 if (data.next_set) {
750 data.next = blk_rq_timeout(round_jiffies_up(data.next));
751 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600752 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200753 struct blk_mq_hw_ctx *hctx;
754
Ming Leif054b562015-04-21 10:00:19 +0800755 queue_for_each_hw_ctx(q, hctx, i) {
756 /* the hctx may be unmapped, so check it here */
757 if (blk_mq_hw_queue_mapped(hctx))
758 blk_mq_tag_idle(hctx);
759 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600760 }
Christoph Hellwig287922e2015-10-30 20:57:30 +0800761 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100762}
763
764/*
765 * Reverse check our software queue for entries that we could potentially
766 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
767 * too much time checking for merges.
768 */
769static bool blk_mq_attempt_merge(struct request_queue *q,
770 struct blk_mq_ctx *ctx, struct bio *bio)
771{
772 struct request *rq;
773 int checked = 8;
774
775 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
776 int el_ret;
777
778 if (!checked--)
779 break;
780
781 if (!blk_rq_merge_ok(rq, bio))
782 continue;
783
784 el_ret = blk_try_merge(rq, bio);
Jens Axboebd166ef2017-01-17 06:03:22 -0700785 if (el_ret == ELEVATOR_NO_MERGE)
786 continue;
787
788 if (!blk_mq_sched_allow_merge(q, rq, bio))
789 break;
790
Jens Axboe320ae512013-10-24 09:20:05 +0100791 if (el_ret == ELEVATOR_BACK_MERGE) {
792 if (bio_attempt_back_merge(q, rq, bio)) {
793 ctx->rq_merged++;
794 return true;
795 }
796 break;
797 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
798 if (bio_attempt_front_merge(q, rq, bio)) {
799 ctx->rq_merged++;
800 return true;
801 }
802 break;
803 }
804 }
805
806 return false;
807}
808
Omar Sandoval88459642016-09-17 08:38:44 -0600809struct flush_busy_ctx_data {
810 struct blk_mq_hw_ctx *hctx;
811 struct list_head *list;
812};
813
814static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
815{
816 struct flush_busy_ctx_data *flush_data = data;
817 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
818 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
819
820 sbitmap_clear_bit(sb, bitnr);
821 spin_lock(&ctx->lock);
822 list_splice_tail_init(&ctx->rq_list, flush_data->list);
823 spin_unlock(&ctx->lock);
824 return true;
825}
826
Jens Axboe320ae512013-10-24 09:20:05 +0100827/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600828 * Process software queues that have been marked busy, splicing them
829 * to the for-dispatch
830 */
Jens Axboe2c3ad662016-12-14 14:34:47 -0700831void blk_mq_flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
Jens Axboe1429d7c2014-05-19 09:23:55 -0600832{
Omar Sandoval88459642016-09-17 08:38:44 -0600833 struct flush_busy_ctx_data data = {
834 .hctx = hctx,
835 .list = list,
836 };
Jens Axboe1429d7c2014-05-19 09:23:55 -0600837
Omar Sandoval88459642016-09-17 08:38:44 -0600838 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600839}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700840EXPORT_SYMBOL_GPL(blk_mq_flush_busy_ctxs);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600841
Jens Axboe703fd1c2016-09-16 13:59:14 -0600842static inline unsigned int queued_to_index(unsigned int queued)
843{
844 if (!queued)
845 return 0;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600846
Jens Axboe703fd1c2016-09-16 13:59:14 -0600847 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600848}
849
Jens Axboebd166ef2017-01-17 06:03:22 -0700850static bool blk_mq_get_driver_tag(struct request *rq,
851 struct blk_mq_hw_ctx **hctx, bool wait)
852{
853 struct blk_mq_alloc_data data = {
854 .q = rq->q,
855 .ctx = rq->mq_ctx,
856 .hctx = blk_mq_map_queue(rq->q, rq->mq_ctx->cpu),
857 .flags = wait ? 0 : BLK_MQ_REQ_NOWAIT,
858 };
859
860 if (blk_mq_hctx_stopped(data.hctx))
861 return false;
862
863 if (rq->tag != -1) {
864done:
865 if (hctx)
866 *hctx = data.hctx;
867 return true;
868 }
869
870 rq->tag = blk_mq_get_tag(&data);
871 if (rq->tag >= 0) {
872 data.hctx->tags->rqs[rq->tag] = rq;
873 goto done;
874 }
875
876 return false;
877}
878
879/*
880 * If we fail getting a driver tag because all the driver tags are already
881 * assigned and on the dispatch list, BUT the first entry does not have a
882 * tag, then we could deadlock. For that case, move entries with assigned
883 * driver tags to the front, leaving the set of tagged requests in the
884 * same order, and the untagged set in the same order.
885 */
886static bool reorder_tags_to_front(struct list_head *list)
887{
888 struct request *rq, *tmp, *first = NULL;
889
890 list_for_each_entry_safe_reverse(rq, tmp, list, queuelist) {
891 if (rq == first)
892 break;
893 if (rq->tag != -1) {
894 list_move(&rq->queuelist, list);
895 if (!first)
896 first = rq;
897 }
898 }
899
900 return first != NULL;
901}
902
Jens Axboef04c3df2016-12-07 08:41:17 -0700903bool blk_mq_dispatch_rq_list(struct blk_mq_hw_ctx *hctx, struct list_head *list)
904{
905 struct request_queue *q = hctx->queue;
906 struct request *rq;
907 LIST_HEAD(driver_list);
908 struct list_head *dptr;
909 int queued, ret = BLK_MQ_RQ_QUEUE_OK;
910
911 /*
912 * Start off with dptr being NULL, so we start the first request
913 * immediately, even if we have more pending.
914 */
915 dptr = NULL;
916
917 /*
918 * Now process all the entries, sending them to the driver.
919 */
920 queued = 0;
921 while (!list_empty(list)) {
922 struct blk_mq_queue_data bd;
923
924 rq = list_first_entry(list, struct request, queuelist);
Jens Axboebd166ef2017-01-17 06:03:22 -0700925 if (!blk_mq_get_driver_tag(rq, &hctx, false)) {
926 if (!queued && reorder_tags_to_front(list))
927 continue;
928 blk_mq_sched_mark_restart(hctx);
929 break;
930 }
Jens Axboef04c3df2016-12-07 08:41:17 -0700931 list_del_init(&rq->queuelist);
932
933 bd.rq = rq;
934 bd.list = dptr;
935 bd.last = list_empty(list);
936
937 ret = q->mq_ops->queue_rq(hctx, &bd);
938 switch (ret) {
939 case BLK_MQ_RQ_QUEUE_OK:
940 queued++;
941 break;
942 case BLK_MQ_RQ_QUEUE_BUSY:
943 list_add(&rq->queuelist, list);
944 __blk_mq_requeue_request(rq);
945 break;
946 default:
947 pr_err("blk-mq: bad return on queue: %d\n", ret);
948 case BLK_MQ_RQ_QUEUE_ERROR:
949 rq->errors = -EIO;
950 blk_mq_end_request(rq, rq->errors);
951 break;
952 }
953
954 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
955 break;
956
957 /*
958 * We've done the first request. If we have more than 1
959 * left in the list, set dptr to defer issue.
960 */
961 if (!dptr && list->next != list->prev)
962 dptr = &driver_list;
963 }
964
965 hctx->dispatched[queued_to_index(queued)]++;
966
967 /*
968 * Any items that need requeuing? Stuff them into hctx->dispatch,
969 * that is where we will continue on next queue run.
970 */
971 if (!list_empty(list)) {
972 spin_lock(&hctx->lock);
973 list_splice(list, &hctx->dispatch);
974 spin_unlock(&hctx->lock);
975
976 /*
977 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
978 * it's possible the queue is stopped and restarted again
979 * before this. Queue restart will dispatch requests. And since
980 * requests in rq_list aren't added into hctx->dispatch yet,
981 * the requests in rq_list might get lost.
982 *
983 * blk_mq_run_hw_queue() already checks the STOPPED bit
Jens Axboebd166ef2017-01-17 06:03:22 -0700984 *
985 * If RESTART is set, then let completion restart the queue
986 * instead of potentially looping here.
987 */
988 if (!blk_mq_sched_needs_restart(hctx))
989 blk_mq_run_hw_queue(hctx, true);
Jens Axboef04c3df2016-12-07 08:41:17 -0700990 }
991
992 return ret != BLK_MQ_RQ_QUEUE_BUSY;
993}
994
Bart Van Assche6a83e742016-11-02 10:09:51 -0600995static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
996{
997 int srcu_idx;
998
999 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
1000 cpu_online(hctx->next_cpu));
1001
1002 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
1003 rcu_read_lock();
Jens Axboebd166ef2017-01-17 06:03:22 -07001004 blk_mq_sched_dispatch_requests(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001005 rcu_read_unlock();
1006 } else {
1007 srcu_idx = srcu_read_lock(&hctx->queue_rq_srcu);
Jens Axboebd166ef2017-01-17 06:03:22 -07001008 blk_mq_sched_dispatch_requests(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001009 srcu_read_unlock(&hctx->queue_rq_srcu, srcu_idx);
1010 }
1011}
1012
Jens Axboe506e9312014-05-07 10:26:44 -06001013/*
1014 * It'd be great if the workqueue API had a way to pass
1015 * in a mask and had some smarts for more clever placement.
1016 * For now we just round-robin here, switching for every
1017 * BLK_MQ_CPU_WORK_BATCH queued items.
1018 */
1019static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
1020{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001021 if (hctx->queue->nr_hw_queues == 1)
1022 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -06001023
1024 if (--hctx->next_cpu_batch <= 0) {
Gabriel Krisman Bertazic02ebfd2016-09-28 00:24:24 -03001025 int next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06001026
1027 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
1028 if (next_cpu >= nr_cpu_ids)
1029 next_cpu = cpumask_first(hctx->cpumask);
1030
1031 hctx->next_cpu = next_cpu;
1032 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1033 }
1034
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001035 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06001036}
1037
Jens Axboe320ae512013-10-24 09:20:05 +01001038void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1039{
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001040 if (unlikely(blk_mq_hctx_stopped(hctx) ||
1041 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +01001042 return;
1043
Jens Axboe1b792f22016-09-21 10:12:13 -06001044 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001045 int cpu = get_cpu();
1046 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +01001047 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001048 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +01001049 return;
1050 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001051
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001052 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -06001053 }
Paolo Bonzini398205b2014-11-07 23:03:59 +01001054
Jens Axboe27489a32016-08-24 15:54:25 -06001055 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
Jens Axboe320ae512013-10-24 09:20:05 +01001056}
1057
Mike Snitzerb94ec292015-03-11 23:56:38 -04001058void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001059{
1060 struct blk_mq_hw_ctx *hctx;
1061 int i;
1062
1063 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001064 if (!blk_mq_hctx_has_pending(hctx) ||
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001065 blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01001066 continue;
1067
Mike Snitzerb94ec292015-03-11 23:56:38 -04001068 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001069 }
1070}
Mike Snitzerb94ec292015-03-11 23:56:38 -04001071EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001072
Bart Van Asschefd001442016-10-28 17:19:37 -07001073/**
1074 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
1075 * @q: request queue.
1076 *
1077 * The caller is responsible for serializing this function against
1078 * blk_mq_{start,stop}_hw_queue().
1079 */
1080bool blk_mq_queue_stopped(struct request_queue *q)
1081{
1082 struct blk_mq_hw_ctx *hctx;
1083 int i;
1084
1085 queue_for_each_hw_ctx(q, hctx, i)
1086 if (blk_mq_hctx_stopped(hctx))
1087 return true;
1088
1089 return false;
1090}
1091EXPORT_SYMBOL(blk_mq_queue_stopped);
1092
Jens Axboe320ae512013-10-24 09:20:05 +01001093void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
1094{
Jens Axboe27489a32016-08-24 15:54:25 -06001095 cancel_work(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001096 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +01001097 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
1098}
1099EXPORT_SYMBOL(blk_mq_stop_hw_queue);
1100
Christoph Hellwig280d45f2013-10-25 14:45:58 +01001101void blk_mq_stop_hw_queues(struct request_queue *q)
1102{
1103 struct blk_mq_hw_ctx *hctx;
1104 int i;
1105
1106 queue_for_each_hw_ctx(q, hctx, i)
1107 blk_mq_stop_hw_queue(hctx);
1108}
1109EXPORT_SYMBOL(blk_mq_stop_hw_queues);
1110
Jens Axboe320ae512013-10-24 09:20:05 +01001111void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
1112{
1113 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -06001114
Jens Axboe0ffbce82014-06-25 08:22:34 -06001115 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001116}
1117EXPORT_SYMBOL(blk_mq_start_hw_queue);
1118
Christoph Hellwig2f268552014-04-16 09:44:56 +02001119void blk_mq_start_hw_queues(struct request_queue *q)
1120{
1121 struct blk_mq_hw_ctx *hctx;
1122 int i;
1123
1124 queue_for_each_hw_ctx(q, hctx, i)
1125 blk_mq_start_hw_queue(hctx);
1126}
1127EXPORT_SYMBOL(blk_mq_start_hw_queues);
1128
Jens Axboeae911c52016-12-08 13:19:30 -07001129void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1130{
1131 if (!blk_mq_hctx_stopped(hctx))
1132 return;
1133
1134 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
1135 blk_mq_run_hw_queue(hctx, async);
1136}
1137EXPORT_SYMBOL_GPL(blk_mq_start_stopped_hw_queue);
1138
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001139void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001140{
1141 struct blk_mq_hw_ctx *hctx;
1142 int i;
1143
Jens Axboeae911c52016-12-08 13:19:30 -07001144 queue_for_each_hw_ctx(q, hctx, i)
1145 blk_mq_start_stopped_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001146}
1147EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1148
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001149static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001150{
1151 struct blk_mq_hw_ctx *hctx;
1152
Jens Axboe27489a32016-08-24 15:54:25 -06001153 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
Jens Axboee4043dc2014-04-09 10:18:23 -06001154
Jens Axboe320ae512013-10-24 09:20:05 +01001155 __blk_mq_run_hw_queue(hctx);
1156}
1157
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001158static void blk_mq_delay_work_fn(struct work_struct *work)
1159{
1160 struct blk_mq_hw_ctx *hctx;
1161
1162 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1163
1164 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1165 __blk_mq_run_hw_queue(hctx);
1166}
1167
1168void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1169{
Ming Lei19c66e52014-12-03 19:38:04 +08001170 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1171 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001172
Jens Axboe7e79dad2017-01-19 07:58:59 -07001173 blk_mq_stop_hw_queue(hctx);
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001174 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1175 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001176}
1177EXPORT_SYMBOL(blk_mq_delay_queue);
1178
Ming Leicfd0c552015-10-20 23:13:57 +08001179static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001180 struct request *rq,
1181 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001182{
Jens Axboee57690f2016-08-24 15:34:35 -06001183 struct blk_mq_ctx *ctx = rq->mq_ctx;
1184
Jens Axboe01b983c2013-11-19 18:59:10 -07001185 trace_block_rq_insert(hctx->queue, rq);
1186
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001187 if (at_head)
1188 list_add(&rq->queuelist, &ctx->rq_list);
1189 else
1190 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001191}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001192
Jens Axboe2c3ad662016-12-14 14:34:47 -07001193void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq,
1194 bool at_head)
Ming Leicfd0c552015-10-20 23:13:57 +08001195{
1196 struct blk_mq_ctx *ctx = rq->mq_ctx;
1197
Jens Axboee57690f2016-08-24 15:34:35 -06001198 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001199 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001200}
1201
Jens Axboebd166ef2017-01-17 06:03:22 -07001202void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
1203 struct list_head *list)
Jens Axboe320ae512013-10-24 09:20:05 +01001204
1205{
Jens Axboe320ae512013-10-24 09:20:05 +01001206 /*
1207 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1208 * offline now
1209 */
1210 spin_lock(&ctx->lock);
1211 while (!list_empty(list)) {
1212 struct request *rq;
1213
1214 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001215 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001216 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001217 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001218 }
Ming Leicfd0c552015-10-20 23:13:57 +08001219 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001220 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001221}
1222
1223static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1224{
1225 struct request *rqa = container_of(a, struct request, queuelist);
1226 struct request *rqb = container_of(b, struct request, queuelist);
1227
1228 return !(rqa->mq_ctx < rqb->mq_ctx ||
1229 (rqa->mq_ctx == rqb->mq_ctx &&
1230 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1231}
1232
1233void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1234{
1235 struct blk_mq_ctx *this_ctx;
1236 struct request_queue *this_q;
1237 struct request *rq;
1238 LIST_HEAD(list);
1239 LIST_HEAD(ctx_list);
1240 unsigned int depth;
1241
1242 list_splice_init(&plug->mq_list, &list);
1243
1244 list_sort(NULL, &list, plug_ctx_cmp);
1245
1246 this_q = NULL;
1247 this_ctx = NULL;
1248 depth = 0;
1249
1250 while (!list_empty(&list)) {
1251 rq = list_entry_rq(list.next);
1252 list_del_init(&rq->queuelist);
1253 BUG_ON(!rq->q);
1254 if (rq->mq_ctx != this_ctx) {
1255 if (this_ctx) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001256 trace_block_unplug(this_q, depth, from_schedule);
1257 blk_mq_sched_insert_requests(this_q, this_ctx,
1258 &ctx_list,
1259 from_schedule);
Jens Axboe320ae512013-10-24 09:20:05 +01001260 }
1261
1262 this_ctx = rq->mq_ctx;
1263 this_q = rq->q;
1264 depth = 0;
1265 }
1266
1267 depth++;
1268 list_add_tail(&rq->queuelist, &ctx_list);
1269 }
1270
1271 /*
1272 * If 'this_ctx' is set, we know we have entries to complete
1273 * on 'ctx_list'. Do those.
1274 */
1275 if (this_ctx) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001276 trace_block_unplug(this_q, depth, from_schedule);
1277 blk_mq_sched_insert_requests(this_q, this_ctx, &ctx_list,
1278 from_schedule);
Jens Axboe320ae512013-10-24 09:20:05 +01001279 }
1280}
1281
1282static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1283{
1284 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001285
Jens Axboe6e85eaf2016-12-02 20:00:14 -07001286 blk_account_io_start(rq, true);
Jens Axboe320ae512013-10-24 09:20:05 +01001287}
1288
Jens Axboe274a5842014-08-15 12:44:08 -06001289static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1290{
1291 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1292 !blk_queue_nomerges(hctx->queue);
1293}
1294
Jens Axboe07068d52014-05-22 10:40:51 -06001295static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1296 struct blk_mq_ctx *ctx,
1297 struct request *rq, struct bio *bio)
1298{
Ming Leie18378a2015-10-20 23:13:54 +08001299 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001300 blk_mq_bio_to_request(rq, bio);
1301 spin_lock(&ctx->lock);
1302insert_rq:
1303 __blk_mq_insert_request(hctx, rq, false);
1304 spin_unlock(&ctx->lock);
1305 return false;
1306 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001307 struct request_queue *q = hctx->queue;
1308
Jens Axboe07068d52014-05-22 10:40:51 -06001309 spin_lock(&ctx->lock);
1310 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1311 blk_mq_bio_to_request(rq, bio);
1312 goto insert_rq;
1313 }
1314
1315 spin_unlock(&ctx->lock);
Jens Axboebd166ef2017-01-17 06:03:22 -07001316 __blk_mq_finish_request(hctx, ctx, rq);
Jens Axboe07068d52014-05-22 10:40:51 -06001317 return true;
1318 }
1319}
1320
Jens Axboefd2d3322017-01-12 10:04:45 -07001321static blk_qc_t request_to_qc_t(struct blk_mq_hw_ctx *hctx, struct request *rq)
1322{
Jens Axboebd166ef2017-01-17 06:03:22 -07001323 if (rq->tag != -1)
1324 return blk_tag_to_qc_t(rq->tag, hctx->queue_num, false);
1325
1326 return blk_tag_to_qc_t(rq->internal_tag, hctx->queue_num, true);
Jens Axboefd2d3322017-01-12 10:04:45 -07001327}
1328
Jens Axboe066a4a72016-11-11 12:24:46 -07001329static void blk_mq_try_issue_directly(struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001330{
Shaohua Lif984df12015-05-08 10:51:32 -07001331 struct request_queue *q = rq->q;
Shaohua Lif984df12015-05-08 10:51:32 -07001332 struct blk_mq_queue_data bd = {
1333 .rq = rq,
1334 .list = NULL,
1335 .last = 1
1336 };
Jens Axboebd166ef2017-01-17 06:03:22 -07001337 struct blk_mq_hw_ctx *hctx;
1338 blk_qc_t new_cookie;
1339 int ret;
Shaohua Lif984df12015-05-08 10:51:32 -07001340
Jens Axboebd166ef2017-01-17 06:03:22 -07001341 if (q->elevator)
Bart Van Assche2253efc2016-10-28 17:20:02 -07001342 goto insert;
1343
Jens Axboebd166ef2017-01-17 06:03:22 -07001344 if (!blk_mq_get_driver_tag(rq, &hctx, false))
1345 goto insert;
1346
1347 new_cookie = request_to_qc_t(hctx, rq);
1348
Shaohua Lif984df12015-05-08 10:51:32 -07001349 /*
1350 * For OK queue, we are done. For error, kill it. Any other
1351 * error (busy), just add it to our list as we previously
1352 * would have done
1353 */
1354 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001355 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1356 *cookie = new_cookie;
Bart Van Assche2253efc2016-10-28 17:20:02 -07001357 return;
Shaohua Lif984df12015-05-08 10:51:32 -07001358 }
Jens Axboe7b371632015-11-05 10:41:40 -07001359
1360 __blk_mq_requeue_request(rq);
1361
1362 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1363 *cookie = BLK_QC_T_NONE;
1364 rq->errors = -EIO;
1365 blk_mq_end_request(rq, rq->errors);
Bart Van Assche2253efc2016-10-28 17:20:02 -07001366 return;
Jens Axboe7b371632015-11-05 10:41:40 -07001367 }
1368
Bart Van Assche2253efc2016-10-28 17:20:02 -07001369insert:
Jens Axboebd166ef2017-01-17 06:03:22 -07001370 blk_mq_sched_insert_request(rq, false, true, true);
Shaohua Lif984df12015-05-08 10:51:32 -07001371}
1372
Jens Axboe07068d52014-05-22 10:40:51 -06001373/*
1374 * Multiple hardware queue variant. This will not use per-process plugs,
1375 * but will attempt to bypass the hctx queueing if we can go straight to
1376 * hardware for SYNC IO.
1377 */
Jens Axboedece1632015-11-05 10:41:16 -07001378static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001379{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001380 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001381 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jens Axboe2552e3f2016-10-27 19:03:55 -06001382 struct blk_mq_alloc_data data;
Jens Axboe07068d52014-05-22 10:40:51 -06001383 struct request *rq;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001384 unsigned int request_count = 0, srcu_idx;
Shaohua Lif984df12015-05-08 10:51:32 -07001385 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001386 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001387 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001388 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001389
1390 blk_queue_bounce(q, &bio);
1391
1392 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001393 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001394 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001395 }
1396
Kent Overstreet54efd502015-04-23 22:37:18 -07001397 blk_queue_split(q, &bio, q->bio_split);
1398
Omar Sandoval87c279e2016-06-01 22:18:48 -07001399 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1400 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1401 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001402
Jens Axboebd166ef2017-01-17 06:03:22 -07001403 if (blk_mq_sched_bio_merge(q, bio))
1404 return BLK_QC_T_NONE;
1405
Jens Axboe87760e52016-11-09 12:38:14 -07001406 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1407
Jens Axboebd166ef2017-01-17 06:03:22 -07001408 trace_block_getrq(q, bio, bio->bi_opf);
1409
1410 rq = blk_mq_sched_get_request(q, bio, bio->bi_opf, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001411 if (unlikely(!rq)) {
1412 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001413 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001414 }
1415
1416 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe07068d52014-05-22 10:40:51 -06001417
Jens Axboefd2d3322017-01-12 10:04:45 -07001418 cookie = request_to_qc_t(data.hctx, rq);
Jens Axboe07068d52014-05-22 10:40:51 -06001419
1420 if (unlikely(is_flush_fua)) {
1421 blk_mq_bio_to_request(rq, bio);
Jens Axboebd166ef2017-01-17 06:03:22 -07001422 blk_mq_get_driver_tag(rq, NULL, true);
Jens Axboe07068d52014-05-22 10:40:51 -06001423 blk_insert_flush(rq);
1424 goto run_queue;
1425 }
1426
Shaohua Lif984df12015-05-08 10:51:32 -07001427 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001428 /*
1429 * If the driver supports defer issued based on 'last', then
1430 * queue it up like normal since we can potentially save some
1431 * CPU this way.
1432 */
Shaohua Lif984df12015-05-08 10:51:32 -07001433 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1434 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1435 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001436
1437 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001438
1439 /*
Bart Van Assche6a83e742016-11-02 10:09:51 -06001440 * We do limited plugging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001441 * Otherwise the existing request in the plug list will be
1442 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001443 */
Shaohua Lif984df12015-05-08 10:51:32 -07001444 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001445 /*
1446 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001447 * happens, same_queue_rq is invalid and plug list is
1448 * empty
1449 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001450 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1451 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001452 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001453 }
Shaohua Lif984df12015-05-08 10:51:32 -07001454 list_add_tail(&rq->queuelist, &plug->mq_list);
1455 } else /* is_sync */
1456 old_rq = rq;
1457 blk_mq_put_ctx(data.ctx);
1458 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001459 goto done;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001460
1461 if (!(data.hctx->flags & BLK_MQ_F_BLOCKING)) {
1462 rcu_read_lock();
Jens Axboe066a4a72016-11-11 12:24:46 -07001463 blk_mq_try_issue_directly(old_rq, &cookie);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001464 rcu_read_unlock();
1465 } else {
1466 srcu_idx = srcu_read_lock(&data.hctx->queue_rq_srcu);
Jens Axboe066a4a72016-11-11 12:24:46 -07001467 blk_mq_try_issue_directly(old_rq, &cookie);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001468 srcu_read_unlock(&data.hctx->queue_rq_srcu, srcu_idx);
1469 }
Jens Axboe7b371632015-11-05 10:41:40 -07001470 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001471 }
1472
Jens Axboebd166ef2017-01-17 06:03:22 -07001473 if (q->elevator) {
1474 blk_mq_put_ctx(data.ctx);
1475 blk_mq_bio_to_request(rq, bio);
1476 blk_mq_sched_insert_request(rq, false, true, true);
1477 goto done;
1478 }
Jens Axboe07068d52014-05-22 10:40:51 -06001479 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1480 /*
1481 * For a SYNC request, send it to the hardware immediately. For
1482 * an ASYNC request, just ensure that we run it later on. The
1483 * latter allows for merging opportunities and more efficient
1484 * dispatching.
1485 */
1486run_queue:
1487 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1488 }
Jens Axboe07068d52014-05-22 10:40:51 -06001489 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001490done:
1491 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001492}
1493
1494/*
1495 * Single hardware queue variant. This will attempt to use any per-process
1496 * plug for merging and IO deferral.
1497 */
Jens Axboedece1632015-11-05 10:41:16 -07001498static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001499{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001500 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001501 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jeff Moyere6c44382015-05-08 10:51:30 -07001502 struct blk_plug *plug;
1503 unsigned int request_count = 0;
Jens Axboe2552e3f2016-10-27 19:03:55 -06001504 struct blk_mq_alloc_data data;
Jens Axboe07068d52014-05-22 10:40:51 -06001505 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001506 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001507 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001508
Jens Axboe07068d52014-05-22 10:40:51 -06001509 blk_queue_bounce(q, &bio);
1510
1511 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001512 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001513 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001514 }
1515
Kent Overstreet54efd502015-04-23 22:37:18 -07001516 blk_queue_split(q, &bio, q->bio_split);
1517
Omar Sandoval87c279e2016-06-01 22:18:48 -07001518 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1519 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1520 return BLK_QC_T_NONE;
1521 } else
1522 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001523
Jens Axboebd166ef2017-01-17 06:03:22 -07001524 if (blk_mq_sched_bio_merge(q, bio))
1525 return BLK_QC_T_NONE;
1526
Jens Axboe87760e52016-11-09 12:38:14 -07001527 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1528
Jens Axboebd166ef2017-01-17 06:03:22 -07001529 trace_block_getrq(q, bio, bio->bi_opf);
1530
1531 rq = blk_mq_sched_get_request(q, bio, bio->bi_opf, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001532 if (unlikely(!rq)) {
1533 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001534 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001535 }
1536
1537 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe320ae512013-10-24 09:20:05 +01001538
Jens Axboefd2d3322017-01-12 10:04:45 -07001539 cookie = request_to_qc_t(data.hctx, rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001540
1541 if (unlikely(is_flush_fua)) {
1542 blk_mq_bio_to_request(rq, bio);
Jens Axboebd166ef2017-01-17 06:03:22 -07001543 blk_mq_get_driver_tag(rq, NULL, true);
Jens Axboe320ae512013-10-24 09:20:05 +01001544 blk_insert_flush(rq);
1545 goto run_queue;
1546 }
1547
1548 /*
1549 * A task plug currently exists. Since this is completely lockless,
1550 * utilize that to temporarily store requests until the task is
1551 * either done or scheduled away.
1552 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001553 plug = current->plug;
1554 if (plug) {
Shaohua Li600271d2016-11-03 17:03:54 -07001555 struct request *last = NULL;
1556
Jeff Moyere6c44382015-05-08 10:51:30 -07001557 blk_mq_bio_to_request(rq, bio);
Ming Lei0a6219a2016-11-16 18:07:05 +08001558
1559 /*
1560 * @request_count may become stale because of schedule
1561 * out, so check the list again.
1562 */
1563 if (list_empty(&plug->mq_list))
1564 request_count = 0;
Ming Lei676d0602015-10-20 23:13:56 +08001565 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001566 trace_block_plug(q);
Shaohua Li600271d2016-11-03 17:03:54 -07001567 else
1568 last = list_entry_rq(plug->mq_list.prev);
Jens Axboeb094f892015-11-20 20:29:45 -07001569
1570 blk_mq_put_ctx(data.ctx);
1571
Shaohua Li600271d2016-11-03 17:03:54 -07001572 if (request_count >= BLK_MAX_REQUEST_COUNT || (last &&
1573 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001574 blk_flush_plug_list(plug, false);
1575 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001576 }
Jens Axboeb094f892015-11-20 20:29:45 -07001577
Jeff Moyere6c44382015-05-08 10:51:30 -07001578 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001579 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001580 }
1581
Jens Axboebd166ef2017-01-17 06:03:22 -07001582 if (q->elevator) {
1583 blk_mq_put_ctx(data.ctx);
1584 blk_mq_bio_to_request(rq, bio);
1585 blk_mq_sched_insert_request(rq, false, true, true);
1586 goto done;
1587 }
Jens Axboe07068d52014-05-22 10:40:51 -06001588 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1589 /*
1590 * For a SYNC request, send it to the hardware immediately. For
1591 * an ASYNC request, just ensure that we run it later on. The
1592 * latter allows for merging opportunities and more efficient
1593 * dispatching.
1594 */
1595run_queue:
1596 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001597 }
1598
Jens Axboe07068d52014-05-22 10:40:51 -06001599 blk_mq_put_ctx(data.ctx);
Jens Axboebd166ef2017-01-17 06:03:22 -07001600done:
Jens Axboe7b371632015-11-05 10:41:40 -07001601 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001602}
1603
Jens Axboecc71a6f2017-01-11 14:29:56 -07001604void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
1605 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001606{
1607 struct page *page;
1608
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001609 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001610 int i;
1611
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001612 for (i = 0; i < tags->nr_tags; i++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001613 struct request *rq = tags->static_rqs[i];
1614
1615 if (!rq)
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001616 continue;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001617 set->ops->exit_request(set->driver_data, rq,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001618 hctx_idx, i);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001619 tags->static_rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001620 }
1621 }
1622
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001623 while (!list_empty(&tags->page_list)) {
1624 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001625 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001626 /*
1627 * Remove kmemleak object previously allocated in
1628 * blk_mq_init_rq_map().
1629 */
1630 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001631 __free_pages(page, page->private);
1632 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001633}
Jens Axboe320ae512013-10-24 09:20:05 +01001634
Jens Axboecc71a6f2017-01-11 14:29:56 -07001635void blk_mq_free_rq_map(struct blk_mq_tags *tags)
1636{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001637 kfree(tags->rqs);
Jens Axboecc71a6f2017-01-11 14:29:56 -07001638 tags->rqs = NULL;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001639 kfree(tags->static_rqs);
1640 tags->static_rqs = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001641
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001642 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001643}
1644
Jens Axboecc71a6f2017-01-11 14:29:56 -07001645struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
1646 unsigned int hctx_idx,
1647 unsigned int nr_tags,
1648 unsigned int reserved_tags)
Jens Axboe320ae512013-10-24 09:20:05 +01001649{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001650 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001651
Jens Axboecc71a6f2017-01-11 14:29:56 -07001652 tags = blk_mq_init_tags(nr_tags, reserved_tags,
Shaohua Li24391c02015-01-23 14:18:00 -07001653 set->numa_node,
1654 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001655 if (!tags)
1656 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001657
Jens Axboecc71a6f2017-01-11 14:29:56 -07001658 tags->rqs = kzalloc_node(nr_tags * sizeof(struct request *),
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001659 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
Jens Axboea5164402014-09-10 09:02:03 -06001660 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001661 if (!tags->rqs) {
1662 blk_mq_free_tags(tags);
1663 return NULL;
1664 }
Jens Axboe320ae512013-10-24 09:20:05 +01001665
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001666 tags->static_rqs = kzalloc_node(nr_tags * sizeof(struct request *),
1667 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
1668 set->numa_node);
1669 if (!tags->static_rqs) {
1670 kfree(tags->rqs);
1671 blk_mq_free_tags(tags);
1672 return NULL;
1673 }
1674
Jens Axboecc71a6f2017-01-11 14:29:56 -07001675 return tags;
1676}
1677
1678static size_t order_to_size(unsigned int order)
1679{
1680 return (size_t)PAGE_SIZE << order;
1681}
1682
1683int blk_mq_alloc_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
1684 unsigned int hctx_idx, unsigned int depth)
1685{
1686 unsigned int i, j, entries_per_page, max_order = 4;
1687 size_t rq_size, left;
1688
1689 INIT_LIST_HEAD(&tags->page_list);
1690
Jens Axboe320ae512013-10-24 09:20:05 +01001691 /*
1692 * rq_size is the size of the request plus driver payload, rounded
1693 * to the cacheline size
1694 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001695 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001696 cache_line_size());
Jens Axboecc71a6f2017-01-11 14:29:56 -07001697 left = rq_size * depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001698
Jens Axboecc71a6f2017-01-11 14:29:56 -07001699 for (i = 0; i < depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001700 int this_order = max_order;
1701 struct page *page;
1702 int to_do;
1703 void *p;
1704
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001705 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001706 this_order--;
1707
1708 do {
Jens Axboea5164402014-09-10 09:02:03 -06001709 page = alloc_pages_node(set->numa_node,
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001710 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001711 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001712 if (page)
1713 break;
1714 if (!this_order--)
1715 break;
1716 if (order_to_size(this_order) < rq_size)
1717 break;
1718 } while (1);
1719
1720 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001721 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001722
1723 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001724 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001725
1726 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001727 /*
1728 * Allow kmemleak to scan these pages as they contain pointers
1729 * to additional allocations like via ops->init_request().
1730 */
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001731 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
Jens Axboe320ae512013-10-24 09:20:05 +01001732 entries_per_page = order_to_size(this_order) / rq_size;
Jens Axboecc71a6f2017-01-11 14:29:56 -07001733 to_do = min(entries_per_page, depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001734 left -= to_do * rq_size;
1735 for (j = 0; j < to_do; j++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001736 struct request *rq = p;
1737
1738 tags->static_rqs[i] = rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001739 if (set->ops->init_request) {
1740 if (set->ops->init_request(set->driver_data,
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001741 rq, hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001742 set->numa_node)) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001743 tags->static_rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001744 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001745 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001746 }
1747
Jens Axboe320ae512013-10-24 09:20:05 +01001748 p += rq_size;
1749 i++;
1750 }
1751 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001752 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01001753
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001754fail:
Jens Axboecc71a6f2017-01-11 14:29:56 -07001755 blk_mq_free_rqs(set, tags, hctx_idx);
1756 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01001757}
1758
Jens Axboee57690f2016-08-24 15:34:35 -06001759/*
1760 * 'cpu' is going away. splice any existing rq_list entries from this
1761 * software queue to the hw queue dispatch list, and ensure that it
1762 * gets run.
1763 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06001764static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06001765{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001766 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06001767 struct blk_mq_ctx *ctx;
1768 LIST_HEAD(tmp);
1769
Thomas Gleixner9467f852016-09-22 08:05:17 -06001770 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Jens Axboee57690f2016-08-24 15:34:35 -06001771 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001772
1773 spin_lock(&ctx->lock);
1774 if (!list_empty(&ctx->rq_list)) {
1775 list_splice_init(&ctx->rq_list, &tmp);
1776 blk_mq_hctx_clear_pending(hctx, ctx);
1777 }
1778 spin_unlock(&ctx->lock);
1779
1780 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06001781 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001782
Jens Axboee57690f2016-08-24 15:34:35 -06001783 spin_lock(&hctx->lock);
1784 list_splice_tail_init(&tmp, &hctx->dispatch);
1785 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001786
1787 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06001788 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001789}
1790
Thomas Gleixner9467f852016-09-22 08:05:17 -06001791static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06001792{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001793 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
1794 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06001795}
1796
Ming Leic3b4afc2015-06-04 22:25:04 +08001797/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001798static void blk_mq_exit_hctx(struct request_queue *q,
1799 struct blk_mq_tag_set *set,
1800 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1801{
Ming Leif70ced02014-09-25 23:23:47 +08001802 unsigned flush_start_tag = set->queue_depth;
1803
Ming Lei08e98fc2014-09-25 23:23:38 +08001804 blk_mq_tag_idle(hctx);
1805
Ming Leif70ced02014-09-25 23:23:47 +08001806 if (set->ops->exit_request)
1807 set->ops->exit_request(set->driver_data,
1808 hctx->fq->flush_rq, hctx_idx,
1809 flush_start_tag + hctx_idx);
1810
Ming Lei08e98fc2014-09-25 23:23:38 +08001811 if (set->ops->exit_hctx)
1812 set->ops->exit_hctx(hctx, hctx_idx);
1813
Bart Van Assche6a83e742016-11-02 10:09:51 -06001814 if (hctx->flags & BLK_MQ_F_BLOCKING)
1815 cleanup_srcu_struct(&hctx->queue_rq_srcu);
1816
Thomas Gleixner9467f852016-09-22 08:05:17 -06001817 blk_mq_remove_cpuhp(hctx);
Ming Leif70ced02014-09-25 23:23:47 +08001818 blk_free_flush_queue(hctx->fq);
Omar Sandoval88459642016-09-17 08:38:44 -06001819 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001820}
1821
Ming Lei624dbe42014-05-27 23:35:13 +08001822static void blk_mq_exit_hw_queues(struct request_queue *q,
1823 struct blk_mq_tag_set *set, int nr_queue)
1824{
1825 struct blk_mq_hw_ctx *hctx;
1826 unsigned int i;
1827
1828 queue_for_each_hw_ctx(q, hctx, i) {
1829 if (i == nr_queue)
1830 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001831 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001832 }
Ming Lei624dbe42014-05-27 23:35:13 +08001833}
1834
1835static void blk_mq_free_hw_queues(struct request_queue *q,
1836 struct blk_mq_tag_set *set)
1837{
1838 struct blk_mq_hw_ctx *hctx;
1839 unsigned int i;
1840
Ming Leie09aae7e2015-01-29 20:17:27 +08001841 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001842 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001843}
1844
Ming Lei08e98fc2014-09-25 23:23:38 +08001845static int blk_mq_init_hctx(struct request_queue *q,
1846 struct blk_mq_tag_set *set,
1847 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1848{
1849 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001850 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001851
1852 node = hctx->numa_node;
1853 if (node == NUMA_NO_NODE)
1854 node = hctx->numa_node = set->numa_node;
1855
Jens Axboe27489a32016-08-24 15:54:25 -06001856 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001857 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1858 spin_lock_init(&hctx->lock);
1859 INIT_LIST_HEAD(&hctx->dispatch);
1860 hctx->queue = q;
1861 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001862 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001863
Thomas Gleixner9467f852016-09-22 08:05:17 -06001864 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
Ming Lei08e98fc2014-09-25 23:23:38 +08001865
1866 hctx->tags = set->tags[hctx_idx];
1867
1868 /*
1869 * Allocate space for all possible cpus to avoid allocation at
1870 * runtime
1871 */
1872 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1873 GFP_KERNEL, node);
1874 if (!hctx->ctxs)
1875 goto unregister_cpu_notifier;
1876
Omar Sandoval88459642016-09-17 08:38:44 -06001877 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1878 node))
Ming Lei08e98fc2014-09-25 23:23:38 +08001879 goto free_ctxs;
1880
1881 hctx->nr_ctx = 0;
1882
1883 if (set->ops->init_hctx &&
1884 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1885 goto free_bitmap;
1886
Ming Leif70ced02014-09-25 23:23:47 +08001887 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1888 if (!hctx->fq)
1889 goto exit_hctx;
1890
1891 if (set->ops->init_request &&
1892 set->ops->init_request(set->driver_data,
1893 hctx->fq->flush_rq, hctx_idx,
1894 flush_start_tag + hctx_idx, node))
1895 goto free_fq;
1896
Bart Van Assche6a83e742016-11-02 10:09:51 -06001897 if (hctx->flags & BLK_MQ_F_BLOCKING)
1898 init_srcu_struct(&hctx->queue_rq_srcu);
1899
Ming Lei08e98fc2014-09-25 23:23:38 +08001900 return 0;
1901
Ming Leif70ced02014-09-25 23:23:47 +08001902 free_fq:
1903 kfree(hctx->fq);
1904 exit_hctx:
1905 if (set->ops->exit_hctx)
1906 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001907 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06001908 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001909 free_ctxs:
1910 kfree(hctx->ctxs);
1911 unregister_cpu_notifier:
Thomas Gleixner9467f852016-09-22 08:05:17 -06001912 blk_mq_remove_cpuhp(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001913 return -1;
1914}
1915
Jens Axboe320ae512013-10-24 09:20:05 +01001916static void blk_mq_init_cpu_queues(struct request_queue *q,
1917 unsigned int nr_hw_queues)
1918{
1919 unsigned int i;
1920
1921 for_each_possible_cpu(i) {
1922 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1923 struct blk_mq_hw_ctx *hctx;
1924
1925 memset(__ctx, 0, sizeof(*__ctx));
1926 __ctx->cpu = i;
1927 spin_lock_init(&__ctx->lock);
1928 INIT_LIST_HEAD(&__ctx->rq_list);
1929 __ctx->queue = q;
Jens Axboecf43e6b2016-11-07 21:32:37 -07001930 blk_stat_init(&__ctx->stat[BLK_STAT_READ]);
1931 blk_stat_init(&__ctx->stat[BLK_STAT_WRITE]);
Jens Axboe320ae512013-10-24 09:20:05 +01001932
1933 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001934 if (!cpu_online(i))
1935 continue;
1936
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001937 hctx = blk_mq_map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001938
Jens Axboe320ae512013-10-24 09:20:05 +01001939 /*
1940 * Set local node, IFF we have more than one hw queue. If
1941 * not, we remain on the home node of the device
1942 */
1943 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301944 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001945 }
1946}
1947
Jens Axboecc71a6f2017-01-11 14:29:56 -07001948static bool __blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, int hctx_idx)
1949{
1950 int ret = 0;
1951
1952 set->tags[hctx_idx] = blk_mq_alloc_rq_map(set, hctx_idx,
1953 set->queue_depth, set->reserved_tags);
1954 if (!set->tags[hctx_idx])
1955 return false;
1956
1957 ret = blk_mq_alloc_rqs(set, set->tags[hctx_idx], hctx_idx,
1958 set->queue_depth);
1959 if (!ret)
1960 return true;
1961
1962 blk_mq_free_rq_map(set->tags[hctx_idx]);
1963 set->tags[hctx_idx] = NULL;
1964 return false;
1965}
1966
1967static void blk_mq_free_map_and_requests(struct blk_mq_tag_set *set,
1968 unsigned int hctx_idx)
1969{
Jens Axboebd166ef2017-01-17 06:03:22 -07001970 if (set->tags[hctx_idx]) {
1971 blk_mq_free_rqs(set, set->tags[hctx_idx], hctx_idx);
1972 blk_mq_free_rq_map(set->tags[hctx_idx]);
1973 set->tags[hctx_idx] = NULL;
1974 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001975}
1976
Akinobu Mita57783222015-09-27 02:09:23 +09001977static void blk_mq_map_swqueue(struct request_queue *q,
1978 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01001979{
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02001980 unsigned int i, hctx_idx;
Jens Axboe320ae512013-10-24 09:20:05 +01001981 struct blk_mq_hw_ctx *hctx;
1982 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08001983 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001984
Akinobu Mita60de0742015-09-27 02:09:25 +09001985 /*
1986 * Avoid others reading imcomplete hctx->cpumask through sysfs
1987 */
1988 mutex_lock(&q->sysfs_lock);
1989
Jens Axboe320ae512013-10-24 09:20:05 +01001990 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001991 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001992 hctx->nr_ctx = 0;
1993 }
1994
1995 /*
1996 * Map software to hardware queues
1997 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01001998 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001999 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09002000 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06002001 continue;
2002
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002003 hctx_idx = q->mq_map[i];
2004 /* unmapped hw queue can be remapped after CPU topo changed */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002005 if (!set->tags[hctx_idx] &&
2006 !__blk_mq_alloc_rq_map(set, hctx_idx)) {
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002007 /*
2008 * If tags initialization fail for some hctx,
2009 * that hctx won't be brought online. In this
2010 * case, remap the current ctx to hctx[0] which
2011 * is guaranteed to always have tags allocated
2012 */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002013 q->mq_map[i] = 0;
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002014 }
2015
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01002016 ctx = per_cpu_ptr(q->queue_ctx, i);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002017 hctx = blk_mq_map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07002018
Jens Axboee4043dc2014-04-09 10:18:23 -06002019 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01002020 ctx->index_hw = hctx->nr_ctx;
2021 hctx->ctxs[hctx->nr_ctx++] = ctx;
2022 }
Jens Axboe506e9312014-05-07 10:26:44 -06002023
Akinobu Mita60de0742015-09-27 02:09:25 +09002024 mutex_unlock(&q->sysfs_lock);
2025
Jens Axboe506e9312014-05-07 10:26:44 -06002026 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06002027 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06002028 * If no software queues are mapped to this hardware queue,
2029 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06002030 */
2031 if (!hctx->nr_ctx) {
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002032 /* Never unmap queue 0. We need it as a
2033 * fallback in case of a new remap fails
2034 * allocation
2035 */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002036 if (i && set->tags[i])
2037 blk_mq_free_map_and_requests(set, i);
2038
Ming Lei2a34c082015-04-21 10:00:20 +08002039 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06002040 continue;
2041 }
2042
Ming Lei2a34c082015-04-21 10:00:20 +08002043 hctx->tags = set->tags[i];
2044 WARN_ON(!hctx->tags);
2045
Jens Axboe484b4062014-05-21 14:01:15 -06002046 /*
Chong Yuan889fa312015-04-15 11:39:29 -06002047 * Set the map size to the number of mapped software queues.
2048 * This is more accurate and more efficient than looping
2049 * over all possibly mapped software queues.
2050 */
Omar Sandoval88459642016-09-17 08:38:44 -06002051 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06002052
2053 /*
Jens Axboe484b4062014-05-21 14:01:15 -06002054 * Initialize batch roundrobin counts
2055 */
Jens Axboe506e9312014-05-07 10:26:44 -06002056 hctx->next_cpu = cpumask_first(hctx->cpumask);
2057 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
2058 }
Jens Axboe320ae512013-10-24 09:20:05 +01002059}
2060
Jeff Moyer2404e602015-11-03 10:40:06 -05002061static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06002062{
2063 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06002064 int i;
2065
Jeff Moyer2404e602015-11-03 10:40:06 -05002066 queue_for_each_hw_ctx(q, hctx, i) {
2067 if (shared)
2068 hctx->flags |= BLK_MQ_F_TAG_SHARED;
2069 else
2070 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
2071 }
2072}
2073
2074static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
2075{
2076 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06002077
2078 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2079 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05002080 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002081 blk_mq_unfreeze_queue(q);
2082 }
2083}
2084
2085static void blk_mq_del_queue_tag_set(struct request_queue *q)
2086{
2087 struct blk_mq_tag_set *set = q->tag_set;
2088
Jens Axboe0d2602c2014-05-13 15:10:52 -06002089 mutex_lock(&set->tag_list_lock);
2090 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05002091 if (list_is_singular(&set->tag_list)) {
2092 /* just transitioned to unshared */
2093 set->flags &= ~BLK_MQ_F_TAG_SHARED;
2094 /* update existing queue */
2095 blk_mq_update_tag_set_depth(set, false);
2096 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06002097 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002098}
2099
2100static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
2101 struct request_queue *q)
2102{
2103 q->tag_set = set;
2104
2105 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05002106
2107 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
2108 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
2109 set->flags |= BLK_MQ_F_TAG_SHARED;
2110 /* update existing queue */
2111 blk_mq_update_tag_set_depth(set, true);
2112 }
2113 if (set->flags & BLK_MQ_F_TAG_SHARED)
2114 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002115 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05002116
Jens Axboe0d2602c2014-05-13 15:10:52 -06002117 mutex_unlock(&set->tag_list_lock);
2118}
2119
Ming Leie09aae7e2015-01-29 20:17:27 +08002120/*
2121 * It is the actual release handler for mq, but we do it from
2122 * request queue's release handler for avoiding use-after-free
2123 * and headache because q->mq_kobj shouldn't have been introduced,
2124 * but we can't group ctx/kctx kobj without it.
2125 */
2126void blk_mq_release(struct request_queue *q)
2127{
2128 struct blk_mq_hw_ctx *hctx;
2129 unsigned int i;
2130
Jens Axboebd166ef2017-01-17 06:03:22 -07002131 blk_mq_sched_teardown(q);
2132
Ming Leie09aae7e2015-01-29 20:17:27 +08002133 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08002134 queue_for_each_hw_ctx(q, hctx, i) {
2135 if (!hctx)
2136 continue;
2137 kfree(hctx->ctxs);
Ming Leie09aae7e2015-01-29 20:17:27 +08002138 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08002139 }
Ming Leie09aae7e2015-01-29 20:17:27 +08002140
Akinobu Mitaa723bab2015-09-27 02:09:21 +09002141 q->mq_map = NULL;
2142
Ming Leie09aae7e2015-01-29 20:17:27 +08002143 kfree(q->queue_hw_ctx);
2144
2145 /* ctx kobj stays in queue_ctx */
2146 free_percpu(q->queue_ctx);
2147}
2148
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002149struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01002150{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002151 struct request_queue *uninit_q, *q;
2152
2153 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
2154 if (!uninit_q)
2155 return ERR_PTR(-ENOMEM);
2156
2157 q = blk_mq_init_allocated_queue(set, uninit_q);
2158 if (IS_ERR(q))
2159 blk_cleanup_queue(uninit_q);
2160
2161 return q;
2162}
2163EXPORT_SYMBOL(blk_mq_init_queue);
2164
Keith Busch868f2f02015-12-17 17:08:14 -07002165static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
2166 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002167{
Keith Busch868f2f02015-12-17 17:08:14 -07002168 int i, j;
2169 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01002170
Keith Busch868f2f02015-12-17 17:08:14 -07002171 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002172 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07002173 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06002174
Keith Busch868f2f02015-12-17 17:08:14 -07002175 if (hctxs[i])
2176 continue;
2177
2178 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002179 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
2180 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01002181 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07002182 break;
Jens Axboe320ae512013-10-24 09:20:05 +01002183
Jens Axboea86073e2014-10-13 15:41:54 -06002184 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07002185 node)) {
2186 kfree(hctxs[i]);
2187 hctxs[i] = NULL;
2188 break;
2189 }
Jens Axboee4043dc2014-04-09 10:18:23 -06002190
Jens Axboe0d2602c2014-05-13 15:10:52 -06002191 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06002192 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01002193 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07002194
2195 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
2196 free_cpumask_var(hctxs[i]->cpumask);
2197 kfree(hctxs[i]);
2198 hctxs[i] = NULL;
2199 break;
2200 }
2201 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01002202 }
Keith Busch868f2f02015-12-17 17:08:14 -07002203 for (j = i; j < q->nr_hw_queues; j++) {
2204 struct blk_mq_hw_ctx *hctx = hctxs[j];
2205
2206 if (hctx) {
Jens Axboecc71a6f2017-01-11 14:29:56 -07002207 if (hctx->tags)
2208 blk_mq_free_map_and_requests(set, j);
Keith Busch868f2f02015-12-17 17:08:14 -07002209 blk_mq_exit_hctx(q, set, hctx, j);
2210 free_cpumask_var(hctx->cpumask);
2211 kobject_put(&hctx->kobj);
2212 kfree(hctx->ctxs);
2213 kfree(hctx);
2214 hctxs[j] = NULL;
2215
2216 }
2217 }
2218 q->nr_hw_queues = i;
2219 blk_mq_sysfs_register(q);
2220}
2221
2222struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2223 struct request_queue *q)
2224{
Ming Lei66841672016-02-12 15:27:00 +08002225 /* mark the queue as mq asap */
2226 q->mq_ops = set->ops;
2227
Keith Busch868f2f02015-12-17 17:08:14 -07002228 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2229 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002230 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002231
2232 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2233 GFP_KERNEL, set->numa_node);
2234 if (!q->queue_hw_ctx)
2235 goto err_percpu;
2236
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002237 q->mq_map = set->mq_map;
Keith Busch868f2f02015-12-17 17:08:14 -07002238
2239 blk_mq_realloc_hw_ctxs(set, q);
2240 if (!q->nr_hw_queues)
2241 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002242
Christoph Hellwig287922e2015-10-30 20:57:30 +08002243 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002244 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002245
2246 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002247
Jens Axboe94eddfb2013-11-19 09:25:07 -07002248 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002249
Jens Axboe05f1dd52014-05-29 09:53:32 -06002250 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2251 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2252
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002253 q->sg_reserved_size = INT_MAX;
2254
Mike Snitzer28494502016-09-14 13:28:30 -04002255 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002256 INIT_LIST_HEAD(&q->requeue_list);
2257 spin_lock_init(&q->requeue_lock);
2258
Jens Axboe07068d52014-05-22 10:40:51 -06002259 if (q->nr_hw_queues > 1)
2260 blk_queue_make_request(q, blk_mq_make_request);
2261 else
2262 blk_queue_make_request(q, blk_sq_make_request);
2263
Jens Axboeeba71762014-05-20 15:17:27 -06002264 /*
2265 * Do this after blk_queue_make_request() overrides it...
2266 */
2267 q->nr_requests = set->queue_depth;
2268
Jens Axboe64f1c212016-11-14 13:03:03 -07002269 /*
2270 * Default to classic polling
2271 */
2272 q->poll_nsec = -1;
2273
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002274 if (set->ops->complete)
2275 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002276
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002277 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002278
Akinobu Mita57783222015-09-27 02:09:23 +09002279 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002280 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002281
Jens Axboe320ae512013-10-24 09:20:05 +01002282 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002283 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002284 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002285
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002286 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002287 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002288
Jens Axboed3484992017-01-13 14:43:58 -07002289 if (!(set->flags & BLK_MQ_F_NO_SCHED)) {
2290 int ret;
2291
2292 ret = blk_mq_sched_init(q);
2293 if (ret)
2294 return ERR_PTR(ret);
2295 }
2296
Jens Axboe320ae512013-10-24 09:20:05 +01002297 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002298
Jens Axboe320ae512013-10-24 09:20:05 +01002299err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002300 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002301err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002302 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002303err_exit:
2304 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002305 return ERR_PTR(-ENOMEM);
2306}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002307EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002308
2309void blk_mq_free_queue(struct request_queue *q)
2310{
Ming Lei624dbe42014-05-27 23:35:13 +08002311 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002312
Akinobu Mita0e626362015-09-27 02:09:22 +09002313 mutex_lock(&all_q_mutex);
2314 list_del_init(&q->all_q_node);
2315 mutex_unlock(&all_q_mutex);
2316
Jens Axboe87760e52016-11-09 12:38:14 -07002317 wbt_exit(q);
2318
Jens Axboe0d2602c2014-05-13 15:10:52 -06002319 blk_mq_del_queue_tag_set(q);
2320
Ming Lei624dbe42014-05-27 23:35:13 +08002321 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2322 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002323}
Jens Axboe320ae512013-10-24 09:20:05 +01002324
2325/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002326static void blk_mq_queue_reinit(struct request_queue *q,
2327 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002328{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002329 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002330
Jens Axboe67aec142014-05-30 08:25:36 -06002331 blk_mq_sysfs_unregister(q);
2332
Jens Axboe320ae512013-10-24 09:20:05 +01002333 /*
2334 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2335 * we should change hctx numa_node according to new topology (this
2336 * involves free and re-allocate memory, worthy doing?)
2337 */
2338
Akinobu Mita57783222015-09-27 02:09:23 +09002339 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002340
Jens Axboe67aec142014-05-30 08:25:36 -06002341 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002342}
2343
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002344/*
2345 * New online cpumask which is going to be set in this hotplug event.
2346 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2347 * one-by-one and dynamically allocating this could result in a failure.
2348 */
2349static struct cpumask cpuhp_online_new;
2350
2351static void blk_mq_queue_reinit_work(void)
Jens Axboe320ae512013-10-24 09:20:05 +01002352{
2353 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +01002354
2355 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002356 /*
2357 * We need to freeze and reinit all existing queues. Freezing
2358 * involves synchronous wait for an RCU grace period and doing it
2359 * one by one may take a long time. Start freezing all queues in
2360 * one swoop and then wait for the completions so that freezing can
2361 * take place in parallel.
2362 */
2363 list_for_each_entry(q, &all_q_list, all_q_node)
2364 blk_mq_freeze_queue_start(q);
Gabriel Krisman Bertazi415d3da2016-11-28 15:01:48 -02002365 list_for_each_entry(q, &all_q_list, all_q_node)
Tejun Heof3af0202014-11-04 13:52:27 -05002366 blk_mq_freeze_queue_wait(q);
2367
Jens Axboe320ae512013-10-24 09:20:05 +01002368 list_for_each_entry(q, &all_q_list, all_q_node)
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002369 blk_mq_queue_reinit(q, &cpuhp_online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002370
2371 list_for_each_entry(q, &all_q_list, all_q_node)
2372 blk_mq_unfreeze_queue(q);
2373
Jens Axboe320ae512013-10-24 09:20:05 +01002374 mutex_unlock(&all_q_mutex);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002375}
2376
2377static int blk_mq_queue_reinit_dead(unsigned int cpu)
2378{
Sebastian Andrzej Siewior97a32862016-09-23 15:02:38 +02002379 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002380 blk_mq_queue_reinit_work();
2381 return 0;
2382}
2383
2384/*
2385 * Before hotadded cpu starts handling requests, new mappings must be
2386 * established. Otherwise, these requests in hw queue might never be
2387 * dispatched.
2388 *
2389 * For example, there is a single hw queue (hctx) and two CPU queues (ctx0
2390 * for CPU0, and ctx1 for CPU1).
2391 *
2392 * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list
2393 * and set bit0 in pending bitmap as ctx1->index_hw is still zero.
2394 *
Jens Axboe2c3ad662016-12-14 14:34:47 -07002395 * And then while running hw queue, blk_mq_flush_busy_ctxs() finds bit0 is set
2396 * in pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list.
2397 * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list is
2398 * ignored.
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002399 */
2400static int blk_mq_queue_reinit_prepare(unsigned int cpu)
2401{
2402 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
2403 cpumask_set_cpu(cpu, &cpuhp_online_new);
2404 blk_mq_queue_reinit_work();
2405 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002406}
2407
Jens Axboea5164402014-09-10 09:02:03 -06002408static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2409{
2410 int i;
2411
Jens Axboecc71a6f2017-01-11 14:29:56 -07002412 for (i = 0; i < set->nr_hw_queues; i++)
2413 if (!__blk_mq_alloc_rq_map(set, i))
Jens Axboea5164402014-09-10 09:02:03 -06002414 goto out_unwind;
Jens Axboea5164402014-09-10 09:02:03 -06002415
2416 return 0;
2417
2418out_unwind:
2419 while (--i >= 0)
Jens Axboecc71a6f2017-01-11 14:29:56 -07002420 blk_mq_free_rq_map(set->tags[i]);
Jens Axboea5164402014-09-10 09:02:03 -06002421
Jens Axboea5164402014-09-10 09:02:03 -06002422 return -ENOMEM;
2423}
2424
2425/*
2426 * Allocate the request maps associated with this tag_set. Note that this
2427 * may reduce the depth asked for, if memory is tight. set->queue_depth
2428 * will be updated to reflect the allocated depth.
2429 */
2430static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2431{
2432 unsigned int depth;
2433 int err;
2434
2435 depth = set->queue_depth;
2436 do {
2437 err = __blk_mq_alloc_rq_maps(set);
2438 if (!err)
2439 break;
2440
2441 set->queue_depth >>= 1;
2442 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2443 err = -ENOMEM;
2444 break;
2445 }
2446 } while (set->queue_depth);
2447
2448 if (!set->queue_depth || err) {
2449 pr_err("blk-mq: failed to allocate request map\n");
2450 return -ENOMEM;
2451 }
2452
2453 if (depth != set->queue_depth)
2454 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2455 depth, set->queue_depth);
2456
2457 return 0;
2458}
2459
Jens Axboea4391c62014-06-05 15:21:56 -06002460/*
2461 * Alloc a tag set to be associated with one or more request queues.
2462 * May fail with EINVAL for various error conditions. May adjust the
2463 * requested depth down, if if it too large. In that case, the set
2464 * value will be stored in set->queue_depth.
2465 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002466int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2467{
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002468 int ret;
2469
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002470 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2471
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002472 if (!set->nr_hw_queues)
2473 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002474 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002475 return -EINVAL;
2476 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2477 return -EINVAL;
2478
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002479 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002480 return -EINVAL;
2481
Jens Axboea4391c62014-06-05 15:21:56 -06002482 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2483 pr_info("blk-mq: reduced tag depth to %u\n",
2484 BLK_MQ_MAX_DEPTH);
2485 set->queue_depth = BLK_MQ_MAX_DEPTH;
2486 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002487
Shaohua Li6637fad2014-11-30 16:00:58 -08002488 /*
2489 * If a crashdump is active, then we are potentially in a very
2490 * memory constrained environment. Limit us to 1 queue and
2491 * 64 tags to prevent using too much memory.
2492 */
2493 if (is_kdump_kernel()) {
2494 set->nr_hw_queues = 1;
2495 set->queue_depth = min(64U, set->queue_depth);
2496 }
Keith Busch868f2f02015-12-17 17:08:14 -07002497 /*
2498 * There is no use for more h/w queues than cpus.
2499 */
2500 if (set->nr_hw_queues > nr_cpu_ids)
2501 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002502
Keith Busch868f2f02015-12-17 17:08:14 -07002503 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002504 GFP_KERNEL, set->numa_node);
2505 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002506 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002507
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002508 ret = -ENOMEM;
2509 set->mq_map = kzalloc_node(sizeof(*set->mq_map) * nr_cpu_ids,
2510 GFP_KERNEL, set->numa_node);
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002511 if (!set->mq_map)
2512 goto out_free_tags;
2513
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002514 if (set->ops->map_queues)
2515 ret = set->ops->map_queues(set);
2516 else
2517 ret = blk_mq_map_queues(set);
2518 if (ret)
2519 goto out_free_mq_map;
2520
2521 ret = blk_mq_alloc_rq_maps(set);
2522 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002523 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002524
Jens Axboe0d2602c2014-05-13 15:10:52 -06002525 mutex_init(&set->tag_list_lock);
2526 INIT_LIST_HEAD(&set->tag_list);
2527
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002528 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002529
2530out_free_mq_map:
2531 kfree(set->mq_map);
2532 set->mq_map = NULL;
2533out_free_tags:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002534 kfree(set->tags);
2535 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002536 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002537}
2538EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2539
2540void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2541{
2542 int i;
2543
Jens Axboecc71a6f2017-01-11 14:29:56 -07002544 for (i = 0; i < nr_cpu_ids; i++)
2545 blk_mq_free_map_and_requests(set, i);
Jens Axboe484b4062014-05-21 14:01:15 -06002546
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002547 kfree(set->mq_map);
2548 set->mq_map = NULL;
2549
Ming Lei981bd182014-04-24 00:07:34 +08002550 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002551 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002552}
2553EXPORT_SYMBOL(blk_mq_free_tag_set);
2554
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002555int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2556{
2557 struct blk_mq_tag_set *set = q->tag_set;
2558 struct blk_mq_hw_ctx *hctx;
2559 int i, ret;
2560
Jens Axboebd166ef2017-01-17 06:03:22 -07002561 if (!set)
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002562 return -EINVAL;
2563
Jens Axboe70f36b62017-01-19 10:59:07 -07002564 blk_mq_freeze_queue(q);
2565 blk_mq_quiesce_queue(q);
2566
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002567 ret = 0;
2568 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002569 if (!hctx->tags)
2570 continue;
Jens Axboebd166ef2017-01-17 06:03:22 -07002571 /*
2572 * If we're using an MQ scheduler, just update the scheduler
2573 * queue depth. This is similar to what the old code would do.
2574 */
Jens Axboe70f36b62017-01-19 10:59:07 -07002575 if (!hctx->sched_tags) {
2576 ret = blk_mq_tag_update_depth(hctx, &hctx->tags,
2577 min(nr, set->queue_depth),
2578 false);
2579 } else {
2580 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
2581 nr, true);
2582 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002583 if (ret)
2584 break;
2585 }
2586
2587 if (!ret)
2588 q->nr_requests = nr;
2589
Jens Axboe70f36b62017-01-19 10:59:07 -07002590 blk_mq_unfreeze_queue(q);
2591 blk_mq_start_stopped_hw_queues(q, true);
2592
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002593 return ret;
2594}
2595
Keith Busch868f2f02015-12-17 17:08:14 -07002596void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2597{
2598 struct request_queue *q;
2599
2600 if (nr_hw_queues > nr_cpu_ids)
2601 nr_hw_queues = nr_cpu_ids;
2602 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2603 return;
2604
2605 list_for_each_entry(q, &set->tag_list, tag_set_list)
2606 blk_mq_freeze_queue(q);
2607
2608 set->nr_hw_queues = nr_hw_queues;
2609 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2610 blk_mq_realloc_hw_ctxs(set, q);
2611
2612 if (q->nr_hw_queues > 1)
2613 blk_queue_make_request(q, blk_mq_make_request);
2614 else
2615 blk_queue_make_request(q, blk_sq_make_request);
2616
2617 blk_mq_queue_reinit(q, cpu_online_mask);
2618 }
2619
2620 list_for_each_entry(q, &set->tag_list, tag_set_list)
2621 blk_mq_unfreeze_queue(q);
2622}
2623EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2624
Jens Axboe64f1c212016-11-14 13:03:03 -07002625static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
2626 struct blk_mq_hw_ctx *hctx,
2627 struct request *rq)
2628{
2629 struct blk_rq_stat stat[2];
2630 unsigned long ret = 0;
2631
2632 /*
2633 * If stats collection isn't on, don't sleep but turn it on for
2634 * future users
2635 */
2636 if (!blk_stat_enable(q))
2637 return 0;
2638
2639 /*
2640 * We don't have to do this once per IO, should optimize this
2641 * to just use the current window of stats until it changes
2642 */
2643 memset(&stat, 0, sizeof(stat));
2644 blk_hctx_stat_get(hctx, stat);
2645
2646 /*
2647 * As an optimistic guess, use half of the mean service time
2648 * for this type of request. We can (and should) make this smarter.
2649 * For instance, if the completion latencies are tight, we can
2650 * get closer than just half the mean. This is especially
2651 * important on devices where the completion latencies are longer
2652 * than ~10 usec.
2653 */
2654 if (req_op(rq) == REQ_OP_READ && stat[BLK_STAT_READ].nr_samples)
2655 ret = (stat[BLK_STAT_READ].mean + 1) / 2;
2656 else if (req_op(rq) == REQ_OP_WRITE && stat[BLK_STAT_WRITE].nr_samples)
2657 ret = (stat[BLK_STAT_WRITE].mean + 1) / 2;
2658
2659 return ret;
2660}
2661
Jens Axboe06426ad2016-11-14 13:01:59 -07002662static bool blk_mq_poll_hybrid_sleep(struct request_queue *q,
Jens Axboe64f1c212016-11-14 13:03:03 -07002663 struct blk_mq_hw_ctx *hctx,
Jens Axboe06426ad2016-11-14 13:01:59 -07002664 struct request *rq)
2665{
2666 struct hrtimer_sleeper hs;
2667 enum hrtimer_mode mode;
Jens Axboe64f1c212016-11-14 13:03:03 -07002668 unsigned int nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002669 ktime_t kt;
2670
Jens Axboe64f1c212016-11-14 13:03:03 -07002671 if (test_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags))
2672 return false;
2673
2674 /*
2675 * poll_nsec can be:
2676 *
2677 * -1: don't ever hybrid sleep
2678 * 0: use half of prev avg
2679 * >0: use this specific value
2680 */
2681 if (q->poll_nsec == -1)
2682 return false;
2683 else if (q->poll_nsec > 0)
2684 nsecs = q->poll_nsec;
2685 else
2686 nsecs = blk_mq_poll_nsecs(q, hctx, rq);
2687
2688 if (!nsecs)
Jens Axboe06426ad2016-11-14 13:01:59 -07002689 return false;
2690
2691 set_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
2692
2693 /*
2694 * This will be replaced with the stats tracking code, using
2695 * 'avg_completion_time / 2' as the pre-sleep target.
2696 */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002697 kt = nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002698
2699 mode = HRTIMER_MODE_REL;
2700 hrtimer_init_on_stack(&hs.timer, CLOCK_MONOTONIC, mode);
2701 hrtimer_set_expires(&hs.timer, kt);
2702
2703 hrtimer_init_sleeper(&hs, current);
2704 do {
2705 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
2706 break;
2707 set_current_state(TASK_UNINTERRUPTIBLE);
2708 hrtimer_start_expires(&hs.timer, mode);
2709 if (hs.task)
2710 io_schedule();
2711 hrtimer_cancel(&hs.timer);
2712 mode = HRTIMER_MODE_ABS;
2713 } while (hs.task && !signal_pending(current));
2714
2715 __set_current_state(TASK_RUNNING);
2716 destroy_hrtimer_on_stack(&hs.timer);
2717 return true;
2718}
2719
Jens Axboebbd7bb72016-11-04 09:34:34 -06002720static bool __blk_mq_poll(struct blk_mq_hw_ctx *hctx, struct request *rq)
2721{
2722 struct request_queue *q = hctx->queue;
2723 long state;
2724
Jens Axboe06426ad2016-11-14 13:01:59 -07002725 /*
2726 * If we sleep, have the caller restart the poll loop to reset
2727 * the state. Like for the other success return cases, the
2728 * caller is responsible for checking if the IO completed. If
2729 * the IO isn't complete, we'll get called again and will go
2730 * straight to the busy poll loop.
2731 */
Jens Axboe64f1c212016-11-14 13:03:03 -07002732 if (blk_mq_poll_hybrid_sleep(q, hctx, rq))
Jens Axboe06426ad2016-11-14 13:01:59 -07002733 return true;
2734
Jens Axboebbd7bb72016-11-04 09:34:34 -06002735 hctx->poll_considered++;
2736
2737 state = current->state;
2738 while (!need_resched()) {
2739 int ret;
2740
2741 hctx->poll_invoked++;
2742
2743 ret = q->mq_ops->poll(hctx, rq->tag);
2744 if (ret > 0) {
2745 hctx->poll_success++;
2746 set_current_state(TASK_RUNNING);
2747 return true;
2748 }
2749
2750 if (signal_pending_state(state, current))
2751 set_current_state(TASK_RUNNING);
2752
2753 if (current->state == TASK_RUNNING)
2754 return true;
2755 if (ret < 0)
2756 break;
2757 cpu_relax();
2758 }
2759
2760 return false;
2761}
2762
2763bool blk_mq_poll(struct request_queue *q, blk_qc_t cookie)
2764{
2765 struct blk_mq_hw_ctx *hctx;
2766 struct blk_plug *plug;
2767 struct request *rq;
2768
2769 if (!q->mq_ops || !q->mq_ops->poll || !blk_qc_t_valid(cookie) ||
2770 !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
2771 return false;
2772
2773 plug = current->plug;
2774 if (plug)
2775 blk_flush_plug_list(plug, false);
2776
2777 hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
Jens Axboebd166ef2017-01-17 06:03:22 -07002778 if (!blk_qc_t_is_internal(cookie))
2779 rq = blk_mq_tag_to_rq(hctx->tags, blk_qc_t_to_tag(cookie));
2780 else
2781 rq = blk_mq_tag_to_rq(hctx->sched_tags, blk_qc_t_to_tag(cookie));
Jens Axboebbd7bb72016-11-04 09:34:34 -06002782
2783 return __blk_mq_poll(hctx, rq);
2784}
2785EXPORT_SYMBOL_GPL(blk_mq_poll);
2786
Jens Axboe676141e2014-03-20 13:29:18 -06002787void blk_mq_disable_hotplug(void)
2788{
2789 mutex_lock(&all_q_mutex);
2790}
2791
2792void blk_mq_enable_hotplug(void)
2793{
2794 mutex_unlock(&all_q_mutex);
2795}
2796
Jens Axboe320ae512013-10-24 09:20:05 +01002797static int __init blk_mq_init(void)
2798{
Thomas Gleixner9467f852016-09-22 08:05:17 -06002799 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
2800 blk_mq_hctx_notify_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002801
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002802 cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare",
2803 blk_mq_queue_reinit_prepare,
2804 blk_mq_queue_reinit_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002805 return 0;
2806}
2807subsys_initcall(blk_mq_init);