blob: fd80101c7591a2ae4642e2ce6f1dd979de3a3d91 [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 Leicb96a42c2014-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
Jens Axboebd166ef2017-01-17 06:03:22 -0700233 if (data->flags & BLK_MQ_REQ_INTERNAL) {
234 rq->tag = -1;
235 rq->internal_tag = tag;
236 } else {
Jens Axboe200e86b2017-01-25 08:11:38 -0700237 if (blk_mq_tag_busy(data->hctx)) {
238 rq->rq_flags = RQF_MQ_INFLIGHT;
239 atomic_inc(&data->hctx->nr_active);
240 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700241 rq->tag = tag;
242 rq->internal_tag = -1;
243 }
244
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600245 blk_mq_rq_ctx_init(data->q, data->ctx, rq, op);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200246 return rq;
247 }
248
249 return NULL;
250}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700251EXPORT_SYMBOL_GPL(__blk_mq_alloc_request);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200252
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100253struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
254 unsigned int flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100255{
Jens Axboe5a797e02017-01-26 12:22:11 -0700256 struct blk_mq_alloc_data alloc_data = { .flags = flags };
Jens Axboebd166ef2017-01-17 06:03:22 -0700257 struct request *rq;
Joe Lawrencea492f072014-08-28 08:15:21 -0600258 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100259
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100260 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
Joe Lawrencea492f072014-08-28 08:15:21 -0600261 if (ret)
262 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100263
Jens Axboebd166ef2017-01-17 06:03:22 -0700264 rq = blk_mq_sched_get_request(q, NULL, rw, &alloc_data);
Jens Axboe841bac22016-09-21 10:08:43 -0600265
Jens Axboebd166ef2017-01-17 06:03:22 -0700266 blk_mq_put_ctx(alloc_data.ctx);
267 blk_queue_exit(q);
268
269 if (!rq)
Joe Lawrencea492f072014-08-28 08:15:21 -0600270 return ERR_PTR(-EWOULDBLOCK);
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200271
272 rq->__data_len = 0;
273 rq->__sector = (sector_t) -1;
274 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100275 return rq;
276}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600277EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100278
Ming Lin1f5bd332016-06-13 16:45:21 +0200279struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
280 unsigned int flags, unsigned int hctx_idx)
281{
282 struct blk_mq_hw_ctx *hctx;
283 struct blk_mq_ctx *ctx;
284 struct request *rq;
285 struct blk_mq_alloc_data alloc_data;
286 int ret;
287
288 /*
289 * If the tag allocator sleeps we could get an allocation for a
290 * different hardware context. No need to complicate the low level
291 * allocator for this for the rare use case of a command tied to
292 * a specific queue.
293 */
294 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
295 return ERR_PTR(-EINVAL);
296
297 if (hctx_idx >= q->nr_hw_queues)
298 return ERR_PTR(-EIO);
299
300 ret = blk_queue_enter(q, true);
301 if (ret)
302 return ERR_PTR(ret);
303
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600304 /*
305 * Check if the hardware context is actually mapped to anything.
306 * If not tell the caller that it should skip this queue.
307 */
Ming Lin1f5bd332016-06-13 16:45:21 +0200308 hctx = q->queue_hw_ctx[hctx_idx];
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600309 if (!blk_mq_hw_queue_mapped(hctx)) {
310 ret = -EXDEV;
311 goto out_queue_exit;
312 }
Ming Lin1f5bd332016-06-13 16:45:21 +0200313 ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask));
314
315 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600316 rq = __blk_mq_alloc_request(&alloc_data, rw);
Ming Lin1f5bd332016-06-13 16:45:21 +0200317 if (!rq) {
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600318 ret = -EWOULDBLOCK;
319 goto out_queue_exit;
Ming Lin1f5bd332016-06-13 16:45:21 +0200320 }
321
322 return rq;
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600323
324out_queue_exit:
325 blk_queue_exit(q);
326 return ERR_PTR(ret);
Ming Lin1f5bd332016-06-13 16:45:21 +0200327}
328EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
329
Jens Axboebd166ef2017-01-17 06:03:22 -0700330void __blk_mq_finish_request(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
331 struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100332{
Jens Axboebd166ef2017-01-17 06:03:22 -0700333 const int sched_tag = rq->internal_tag;
Jens Axboe320ae512013-10-24 09:20:05 +0100334 struct request_queue *q = rq->q;
335
Christoph Hellwige8064022016-10-20 15:12:13 +0200336 if (rq->rq_flags & RQF_MQ_INFLIGHT)
Jens Axboe0d2602c2014-05-13 15:10:52 -0600337 atomic_dec(&hctx->nr_active);
Jens Axboe87760e52016-11-09 12:38:14 -0700338
339 wbt_done(q->rq_wb, &rq->issue_stat);
Christoph Hellwige8064022016-10-20 15:12:13 +0200340 rq->rq_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600341
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200342 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe06426ad2016-11-14 13:01:59 -0700343 clear_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
Jens Axboebd166ef2017-01-17 06:03:22 -0700344 if (rq->tag != -1)
345 blk_mq_put_tag(hctx, hctx->tags, ctx, rq->tag);
346 if (sched_tag != -1)
347 blk_mq_sched_completed_request(hctx, rq);
Dan Williams3ef28e82015-10-21 13:20:12 -0400348 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100349}
350
Jens Axboebd166ef2017-01-17 06:03:22 -0700351static void blk_mq_finish_hctx_request(struct blk_mq_hw_ctx *hctx,
Jens Axboe16a3c2a2016-12-15 14:27:46 -0700352 struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100353{
354 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700355
356 ctx->rq_completed[rq_is_sync(rq)]++;
Jens Axboebd166ef2017-01-17 06:03:22 -0700357 __blk_mq_finish_request(hctx, ctx, rq);
358}
359
360void blk_mq_finish_request(struct request *rq)
361{
362 blk_mq_finish_hctx_request(blk_mq_map_queue(rq->q, rq->mq_ctx->cpu), rq);
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700363}
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700364
365void blk_mq_free_request(struct request *rq)
366{
Jens Axboebd166ef2017-01-17 06:03:22 -0700367 blk_mq_sched_put_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100368}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700369EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100370
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700371inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100372{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700373 blk_account_io_done(rq);
374
Christoph Hellwig91b63632014-04-16 09:44:53 +0200375 if (rq->end_io) {
Jens Axboe87760e52016-11-09 12:38:14 -0700376 wbt_done(rq->q->rq_wb, &rq->issue_stat);
Jens Axboe320ae512013-10-24 09:20:05 +0100377 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200378 } else {
379 if (unlikely(blk_bidi_rq(rq)))
380 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100381 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200382 }
Jens Axboe320ae512013-10-24 09:20:05 +0100383}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700384EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200385
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700386void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200387{
388 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
389 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700390 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200391}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700392EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100393
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800394static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100395{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800396 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100397
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800398 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100399}
400
Jens Axboeed851862014-05-30 21:20:50 -0600401static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100402{
403 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700404 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100405 int cpu;
406
Christoph Hellwig38535202014-04-25 02:32:53 -0700407 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800408 rq->q->softirq_done_fn(rq);
409 return;
410 }
Jens Axboe320ae512013-10-24 09:20:05 +0100411
412 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700413 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
414 shared = cpus_share_cache(cpu, ctx->cpu);
415
416 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800417 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800418 rq->csd.info = rq;
419 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100420 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800421 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800422 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800423 }
Jens Axboe320ae512013-10-24 09:20:05 +0100424 put_cpu();
425}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800426
Jens Axboecf43e6b2016-11-07 21:32:37 -0700427static void blk_mq_stat_add(struct request *rq)
428{
429 if (rq->rq_flags & RQF_STATS) {
430 /*
431 * We could rq->mq_ctx here, but there's less of a risk
432 * of races if we have the completion event add the stats
433 * to the local software queue.
434 */
435 struct blk_mq_ctx *ctx;
436
437 ctx = __blk_mq_get_ctx(rq->q, raw_smp_processor_id());
438 blk_stat_add(&ctx->stat[rq_data_dir(rq)], rq);
439 }
440}
441
Jens Axboe1fa8cc52015-11-05 14:32:55 -0700442static void __blk_mq_complete_request(struct request *rq)
Jens Axboeed851862014-05-30 21:20:50 -0600443{
444 struct request_queue *q = rq->q;
445
Jens Axboecf43e6b2016-11-07 21:32:37 -0700446 blk_mq_stat_add(rq);
447
Jens Axboeed851862014-05-30 21:20:50 -0600448 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700449 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600450 else
451 blk_mq_ipi_complete_request(rq);
452}
453
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800454/**
455 * blk_mq_complete_request - end I/O on a request
456 * @rq: the request being processed
457 *
458 * Description:
459 * Ends all I/O on a request. It does not handle partial completions.
460 * The actual completion happens out-of-order, through a IPI handler.
461 **/
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200462void blk_mq_complete_request(struct request *rq, int error)
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800463{
Jens Axboe95f09682014-05-27 17:46:48 -0600464 struct request_queue *q = rq->q;
465
466 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800467 return;
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200468 if (!blk_mark_rq_complete(rq)) {
469 rq->errors = error;
Jens Axboeed851862014-05-30 21:20:50 -0600470 __blk_mq_complete_request(rq);
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200471 }
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800472}
473EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100474
Keith Busch973c0192015-01-07 18:55:43 -0700475int blk_mq_request_started(struct request *rq)
476{
477 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
478}
479EXPORT_SYMBOL_GPL(blk_mq_request_started);
480
Christoph Hellwige2490072014-09-13 16:40:09 -0700481void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100482{
483 struct request_queue *q = rq->q;
484
Jens Axboebd166ef2017-01-17 06:03:22 -0700485 blk_mq_sched_started_request(rq);
486
Jens Axboe320ae512013-10-24 09:20:05 +0100487 trace_block_rq_issue(q, rq);
488
Christoph Hellwig742ee692014-04-14 10:30:06 +0200489 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200490 if (unlikely(blk_bidi_rq(rq)))
491 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200492
Jens Axboecf43e6b2016-11-07 21:32:37 -0700493 if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) {
494 blk_stat_set_issue_time(&rq->issue_stat);
495 rq->rq_flags |= RQF_STATS;
Jens Axboe87760e52016-11-09 12:38:14 -0700496 wbt_issue(q->rq_wb, &rq->issue_stat);
Jens Axboecf43e6b2016-11-07 21:32:37 -0700497 }
498
Ming Lei2b8393b2014-06-10 00:16:41 +0800499 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600500
501 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600502 * Ensure that ->deadline is visible before set the started
503 * flag and clear the completed flag.
504 */
505 smp_mb__before_atomic();
506
507 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600508 * Mark us as started and clear complete. Complete might have been
509 * set if requeue raced with timeout, which then marked it as
510 * complete. So be sure to clear complete again when we start
511 * the request, otherwise we'll ignore the completion event.
512 */
Jens Axboe4b570522014-05-29 11:00:11 -0600513 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
514 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
515 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
516 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800517
518 if (q->dma_drain_size && blk_rq_bytes(rq)) {
519 /*
520 * Make sure space for the drain appears. We know we can do
521 * this because max_hw_segments has been adjusted to be one
522 * fewer than the device can handle.
523 */
524 rq->nr_phys_segments++;
525 }
Jens Axboe320ae512013-10-24 09:20:05 +0100526}
Christoph Hellwige2490072014-09-13 16:40:09 -0700527EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100528
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200529static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100530{
531 struct request_queue *q = rq->q;
532
533 trace_block_rq_requeue(q, rq);
Jens Axboe87760e52016-11-09 12:38:14 -0700534 wbt_requeue(q->rq_wb, &rq->issue_stat);
Jens Axboebd166ef2017-01-17 06:03:22 -0700535 blk_mq_sched_requeue_request(rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800536
Christoph Hellwige2490072014-09-13 16:40:09 -0700537 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
538 if (q->dma_drain_size && blk_rq_bytes(rq))
539 rq->nr_phys_segments--;
540 }
Jens Axboe320ae512013-10-24 09:20:05 +0100541}
542
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700543void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200544{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200545 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200546
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200547 BUG_ON(blk_queued_rq(rq));
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700548 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200549}
550EXPORT_SYMBOL(blk_mq_requeue_request);
551
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600552static void blk_mq_requeue_work(struct work_struct *work)
553{
554 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -0400555 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600556 LIST_HEAD(rq_list);
557 struct request *rq, *next;
558 unsigned long flags;
559
560 spin_lock_irqsave(&q->requeue_lock, flags);
561 list_splice_init(&q->requeue_list, &rq_list);
562 spin_unlock_irqrestore(&q->requeue_lock, flags);
563
564 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200565 if (!(rq->rq_flags & RQF_SOFTBARRIER))
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600566 continue;
567
Christoph Hellwige8064022016-10-20 15:12:13 +0200568 rq->rq_flags &= ~RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600569 list_del_init(&rq->queuelist);
Jens Axboebd166ef2017-01-17 06:03:22 -0700570 blk_mq_sched_insert_request(rq, true, false, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600571 }
572
573 while (!list_empty(&rq_list)) {
574 rq = list_entry(rq_list.next, struct request, queuelist);
575 list_del_init(&rq->queuelist);
Jens Axboebd166ef2017-01-17 06:03:22 -0700576 blk_mq_sched_insert_request(rq, false, false, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600577 }
578
Bart Van Assche52d7f1b2016-10-28 17:20:32 -0700579 blk_mq_run_hw_queues(q, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600580}
581
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700582void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
583 bool kick_requeue_list)
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600584{
585 struct request_queue *q = rq->q;
586 unsigned long flags;
587
588 /*
589 * We abuse this flag that is otherwise used by the I/O scheduler to
590 * request head insertation from the workqueue.
591 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200592 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600593
594 spin_lock_irqsave(&q->requeue_lock, flags);
595 if (at_head) {
Christoph Hellwige8064022016-10-20 15:12:13 +0200596 rq->rq_flags |= RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600597 list_add(&rq->queuelist, &q->requeue_list);
598 } else {
599 list_add_tail(&rq->queuelist, &q->requeue_list);
600 }
601 spin_unlock_irqrestore(&q->requeue_lock, flags);
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700602
603 if (kick_requeue_list)
604 blk_mq_kick_requeue_list(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600605}
606EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
607
608void blk_mq_kick_requeue_list(struct request_queue *q)
609{
Mike Snitzer28494502016-09-14 13:28:30 -0400610 kblockd_schedule_delayed_work(&q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600611}
612EXPORT_SYMBOL(blk_mq_kick_requeue_list);
613
Mike Snitzer28494502016-09-14 13:28:30 -0400614void blk_mq_delay_kick_requeue_list(struct request_queue *q,
615 unsigned long msecs)
616{
617 kblockd_schedule_delayed_work(&q->requeue_work,
618 msecs_to_jiffies(msecs));
619}
620EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
621
Jens Axboe1885b242015-01-07 18:55:45 -0700622void blk_mq_abort_requeue_list(struct request_queue *q)
623{
624 unsigned long flags;
625 LIST_HEAD(rq_list);
626
627 spin_lock_irqsave(&q->requeue_lock, flags);
628 list_splice_init(&q->requeue_list, &rq_list);
629 spin_unlock_irqrestore(&q->requeue_lock, flags);
630
631 while (!list_empty(&rq_list)) {
632 struct request *rq;
633
634 rq = list_first_entry(&rq_list, struct request, queuelist);
635 list_del_init(&rq->queuelist);
636 rq->errors = -EIO;
637 blk_mq_end_request(rq, rq->errors);
638 }
639}
640EXPORT_SYMBOL(blk_mq_abort_requeue_list);
641
Jens Axboe0e62f512014-06-04 10:23:49 -0600642struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
643{
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600644 if (tag < tags->nr_tags) {
645 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700646 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -0600647 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -0700648
649 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600650}
651EXPORT_SYMBOL(blk_mq_tag_to_rq);
652
Jens Axboe320ae512013-10-24 09:20:05 +0100653struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700654 unsigned long next;
655 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100656};
657
Christoph Hellwig90415832014-09-22 10:21:48 -0600658void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100659{
Jens Axboef8a5b122016-12-13 09:24:51 -0700660 const struct blk_mq_ops *ops = req->q->mq_ops;
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700661 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600662
663 /*
664 * We know that complete is set at this point. If STARTED isn't set
665 * anymore, then the request isn't active and the "timeout" should
666 * just be ignored. This can happen due to the bitflag ordering.
667 * Timeout first checks if STARTED is set, and if it is, assumes
668 * the request is active. But if we race with completion, then
669 * we both flags will get cleared. So check here again, and ignore
670 * a timeout event with a request that isn't active.
671 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700672 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
673 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600674
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700675 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700676 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600677
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700678 switch (ret) {
679 case BLK_EH_HANDLED:
680 __blk_mq_complete_request(req);
681 break;
682 case BLK_EH_RESET_TIMER:
683 blk_add_timer(req);
684 blk_clear_rq_complete(req);
685 break;
686 case BLK_EH_NOT_HANDLED:
687 break;
688 default:
689 printk(KERN_ERR "block: bad eh return: %d\n", ret);
690 break;
691 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600692}
Keith Busch5b3f25f2015-01-07 18:55:46 -0700693
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700694static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
695 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100696{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700697 struct blk_mq_timeout_data *data = priv;
698
Keith Buscheb130db2015-01-08 08:59:53 -0700699 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
700 /*
701 * If a request wasn't started before the queue was
702 * marked dying, kill it here or it'll go unnoticed.
703 */
Keith Buscha59e0f52016-02-11 13:05:38 -0700704 if (unlikely(blk_queue_dying(rq->q))) {
705 rq->errors = -EIO;
706 blk_mq_end_request(rq, rq->errors);
707 }
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700708 return;
Keith Buscheb130db2015-01-08 08:59:53 -0700709 }
Jens Axboe320ae512013-10-24 09:20:05 +0100710
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700711 if (time_after_eq(jiffies, rq->deadline)) {
712 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700713 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700714 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
715 data->next = rq->deadline;
716 data->next_set = 1;
717 }
Jens Axboe320ae512013-10-24 09:20:05 +0100718}
719
Christoph Hellwig287922e2015-10-30 20:57:30 +0800720static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100721{
Christoph Hellwig287922e2015-10-30 20:57:30 +0800722 struct request_queue *q =
723 container_of(work, struct request_queue, timeout_work);
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700724 struct blk_mq_timeout_data data = {
725 .next = 0,
726 .next_set = 0,
727 };
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700728 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100729
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -0600730 /* A deadlock might occur if a request is stuck requiring a
731 * timeout at the same time a queue freeze is waiting
732 * completion, since the timeout code would not be able to
733 * acquire the queue reference here.
734 *
735 * That's why we don't use blk_queue_enter here; instead, we use
736 * percpu_ref_tryget directly, because we need to be able to
737 * obtain a reference even in the short window between the queue
738 * starting to freeze, by dropping the first reference in
739 * blk_mq_freeze_queue_start, and the moment the last request is
740 * consumed, marked by the instant q_usage_counter reaches
741 * zero.
742 */
743 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +0800744 return;
745
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200746 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
Jens Axboe320ae512013-10-24 09:20:05 +0100747
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700748 if (data.next_set) {
749 data.next = blk_rq_timeout(round_jiffies_up(data.next));
750 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600751 } else {
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200752 struct blk_mq_hw_ctx *hctx;
753
Ming Leif054b562015-04-21 10:00:19 +0800754 queue_for_each_hw_ctx(q, hctx, i) {
755 /* the hctx may be unmapped, so check it here */
756 if (blk_mq_hw_queue_mapped(hctx))
757 blk_mq_tag_idle(hctx);
758 }
Jens Axboe0d2602c2014-05-13 15:10:52 -0600759 }
Christoph Hellwig287922e2015-10-30 20:57:30 +0800760 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100761}
762
763/*
764 * Reverse check our software queue for entries that we could potentially
765 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
766 * too much time checking for merges.
767 */
768static bool blk_mq_attempt_merge(struct request_queue *q,
769 struct blk_mq_ctx *ctx, struct bio *bio)
770{
771 struct request *rq;
772 int checked = 8;
773
774 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
775 int el_ret;
776
777 if (!checked--)
778 break;
779
780 if (!blk_rq_merge_ok(rq, bio))
781 continue;
782
783 el_ret = blk_try_merge(rq, bio);
Jens Axboebd166ef2017-01-17 06:03:22 -0700784 if (el_ret == ELEVATOR_NO_MERGE)
785 continue;
786
787 if (!blk_mq_sched_allow_merge(q, rq, bio))
788 break;
789
Jens Axboe320ae512013-10-24 09:20:05 +0100790 if (el_ret == ELEVATOR_BACK_MERGE) {
791 if (bio_attempt_back_merge(q, rq, bio)) {
792 ctx->rq_merged++;
793 return true;
794 }
795 break;
796 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
797 if (bio_attempt_front_merge(q, rq, bio)) {
798 ctx->rq_merged++;
799 return true;
800 }
801 break;
802 }
803 }
804
805 return false;
806}
807
Omar Sandoval88459642016-09-17 08:38:44 -0600808struct flush_busy_ctx_data {
809 struct blk_mq_hw_ctx *hctx;
810 struct list_head *list;
811};
812
813static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
814{
815 struct flush_busy_ctx_data *flush_data = data;
816 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
817 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
818
819 sbitmap_clear_bit(sb, bitnr);
820 spin_lock(&ctx->lock);
821 list_splice_tail_init(&ctx->rq_list, flush_data->list);
822 spin_unlock(&ctx->lock);
823 return true;
824}
825
Jens Axboe320ae512013-10-24 09:20:05 +0100826/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600827 * Process software queues that have been marked busy, splicing them
828 * to the for-dispatch
829 */
Jens Axboe2c3ad662016-12-14 14:34:47 -0700830void blk_mq_flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
Jens Axboe1429d7c2014-05-19 09:23:55 -0600831{
Omar Sandoval88459642016-09-17 08:38:44 -0600832 struct flush_busy_ctx_data data = {
833 .hctx = hctx,
834 .list = list,
835 };
Jens Axboe1429d7c2014-05-19 09:23:55 -0600836
Omar Sandoval88459642016-09-17 08:38:44 -0600837 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600838}
Jens Axboe2c3ad662016-12-14 14:34:47 -0700839EXPORT_SYMBOL_GPL(blk_mq_flush_busy_ctxs);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600840
Jens Axboe703fd1c2016-09-16 13:59:14 -0600841static inline unsigned int queued_to_index(unsigned int queued)
842{
843 if (!queued)
844 return 0;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600845
Jens Axboe703fd1c2016-09-16 13:59:14 -0600846 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600847}
848
Jens Axboebd166ef2017-01-17 06:03:22 -0700849static bool blk_mq_get_driver_tag(struct request *rq,
850 struct blk_mq_hw_ctx **hctx, bool wait)
851{
852 struct blk_mq_alloc_data data = {
853 .q = rq->q,
854 .ctx = rq->mq_ctx,
855 .hctx = blk_mq_map_queue(rq->q, rq->mq_ctx->cpu),
856 .flags = wait ? 0 : BLK_MQ_REQ_NOWAIT,
857 };
858
859 if (blk_mq_hctx_stopped(data.hctx))
860 return false;
861
862 if (rq->tag != -1) {
863done:
864 if (hctx)
865 *hctx = data.hctx;
866 return true;
867 }
868
869 rq->tag = blk_mq_get_tag(&data);
870 if (rq->tag >= 0) {
Jens Axboe200e86b2017-01-25 08:11:38 -0700871 if (blk_mq_tag_busy(data.hctx)) {
872 rq->rq_flags |= RQF_MQ_INFLIGHT;
873 atomic_inc(&data.hctx->nr_active);
874 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700875 data.hctx->tags->rqs[rq->tag] = rq;
876 goto done;
877 }
878
879 return false;
880}
881
882/*
883 * If we fail getting a driver tag because all the driver tags are already
884 * assigned and on the dispatch list, BUT the first entry does not have a
885 * tag, then we could deadlock. For that case, move entries with assigned
886 * driver tags to the front, leaving the set of tagged requests in the
887 * same order, and the untagged set in the same order.
888 */
889static bool reorder_tags_to_front(struct list_head *list)
890{
891 struct request *rq, *tmp, *first = NULL;
892
893 list_for_each_entry_safe_reverse(rq, tmp, list, queuelist) {
894 if (rq == first)
895 break;
896 if (rq->tag != -1) {
897 list_move(&rq->queuelist, list);
898 if (!first)
899 first = rq;
900 }
901 }
902
903 return first != NULL;
904}
905
Jens Axboef04c3df2016-12-07 08:41:17 -0700906bool blk_mq_dispatch_rq_list(struct blk_mq_hw_ctx *hctx, struct list_head *list)
907{
908 struct request_queue *q = hctx->queue;
909 struct request *rq;
910 LIST_HEAD(driver_list);
911 struct list_head *dptr;
912 int queued, ret = BLK_MQ_RQ_QUEUE_OK;
913
914 /*
915 * Start off with dptr being NULL, so we start the first request
916 * immediately, even if we have more pending.
917 */
918 dptr = NULL;
919
920 /*
921 * Now process all the entries, sending them to the driver.
922 */
923 queued = 0;
924 while (!list_empty(list)) {
925 struct blk_mq_queue_data bd;
926
927 rq = list_first_entry(list, struct request, queuelist);
Jens Axboebd166ef2017-01-17 06:03:22 -0700928 if (!blk_mq_get_driver_tag(rq, &hctx, false)) {
929 if (!queued && reorder_tags_to_front(list))
930 continue;
Jens Axboe3c782d62017-01-26 12:50:36 -0700931
932 /*
933 * We failed getting a driver tag. Mark the queue(s)
934 * as needing a restart. Retry getting a tag again,
935 * in case the needed IO completed right before we
936 * marked the queue as needing a restart.
937 */
Jens Axboebd166ef2017-01-17 06:03:22 -0700938 blk_mq_sched_mark_restart(hctx);
Jens Axboe3c782d62017-01-26 12:50:36 -0700939 if (!blk_mq_get_driver_tag(rq, &hctx, false))
940 break;
Jens Axboebd166ef2017-01-17 06:03:22 -0700941 }
Jens Axboef04c3df2016-12-07 08:41:17 -0700942 list_del_init(&rq->queuelist);
943
944 bd.rq = rq;
945 bd.list = dptr;
946 bd.last = list_empty(list);
947
948 ret = q->mq_ops->queue_rq(hctx, &bd);
949 switch (ret) {
950 case BLK_MQ_RQ_QUEUE_OK:
951 queued++;
952 break;
953 case BLK_MQ_RQ_QUEUE_BUSY:
954 list_add(&rq->queuelist, list);
955 __blk_mq_requeue_request(rq);
956 break;
957 default:
958 pr_err("blk-mq: bad return on queue: %d\n", ret);
959 case BLK_MQ_RQ_QUEUE_ERROR:
960 rq->errors = -EIO;
961 blk_mq_end_request(rq, rq->errors);
962 break;
963 }
964
965 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
966 break;
967
968 /*
969 * We've done the first request. If we have more than 1
970 * left in the list, set dptr to defer issue.
971 */
972 if (!dptr && list->next != list->prev)
973 dptr = &driver_list;
974 }
975
976 hctx->dispatched[queued_to_index(queued)]++;
977
978 /*
979 * Any items that need requeuing? Stuff them into hctx->dispatch,
980 * that is where we will continue on next queue run.
981 */
982 if (!list_empty(list)) {
983 spin_lock(&hctx->lock);
984 list_splice(list, &hctx->dispatch);
985 spin_unlock(&hctx->lock);
986
987 /*
988 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
989 * it's possible the queue is stopped and restarted again
990 * before this. Queue restart will dispatch requests. And since
991 * requests in rq_list aren't added into hctx->dispatch yet,
992 * the requests in rq_list might get lost.
993 *
994 * blk_mq_run_hw_queue() already checks the STOPPED bit
Jens Axboebd166ef2017-01-17 06:03:22 -0700995 *
996 * If RESTART is set, then let completion restart the queue
997 * instead of potentially looping here.
998 */
999 if (!blk_mq_sched_needs_restart(hctx))
1000 blk_mq_run_hw_queue(hctx, true);
Jens Axboef04c3df2016-12-07 08:41:17 -07001001 }
1002
1003 return ret != BLK_MQ_RQ_QUEUE_BUSY;
1004}
1005
Bart Van Assche6a83e742016-11-02 10:09:51 -06001006static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
1007{
1008 int srcu_idx;
1009
1010 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
1011 cpu_online(hctx->next_cpu));
1012
1013 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
1014 rcu_read_lock();
Jens Axboebd166ef2017-01-17 06:03:22 -07001015 blk_mq_sched_dispatch_requests(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001016 rcu_read_unlock();
1017 } else {
1018 srcu_idx = srcu_read_lock(&hctx->queue_rq_srcu);
Jens Axboebd166ef2017-01-17 06:03:22 -07001019 blk_mq_sched_dispatch_requests(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001020 srcu_read_unlock(&hctx->queue_rq_srcu, srcu_idx);
1021 }
1022}
1023
Jens Axboe506e9312014-05-07 10:26:44 -06001024/*
1025 * It'd be great if the workqueue API had a way to pass
1026 * in a mask and had some smarts for more clever placement.
1027 * For now we just round-robin here, switching for every
1028 * BLK_MQ_CPU_WORK_BATCH queued items.
1029 */
1030static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
1031{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001032 if (hctx->queue->nr_hw_queues == 1)
1033 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -06001034
1035 if (--hctx->next_cpu_batch <= 0) {
Gabriel Krisman Bertazic02ebfd2016-09-28 00:24:24 -03001036 int next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06001037
1038 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
1039 if (next_cpu >= nr_cpu_ids)
1040 next_cpu = cpumask_first(hctx->cpumask);
1041
1042 hctx->next_cpu = next_cpu;
1043 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1044 }
1045
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001046 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06001047}
1048
Jens Axboe320ae512013-10-24 09:20:05 +01001049void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1050{
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001051 if (unlikely(blk_mq_hctx_stopped(hctx) ||
1052 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +01001053 return;
1054
Jens Axboe1b792f22016-09-21 10:12:13 -06001055 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001056 int cpu = get_cpu();
1057 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +01001058 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001059 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +01001060 return;
1061 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001062
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001063 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -06001064 }
Paolo Bonzini398205b2014-11-07 23:03:59 +01001065
Jens Axboe27489a32016-08-24 15:54:25 -06001066 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
Jens Axboe320ae512013-10-24 09:20:05 +01001067}
1068
Mike Snitzerb94ec292015-03-11 23:56:38 -04001069void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001070{
1071 struct blk_mq_hw_ctx *hctx;
1072 int i;
1073
1074 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001075 if (!blk_mq_hctx_has_pending(hctx) ||
Bart Van Assche5d1b25c2016-10-28 17:19:15 -07001076 blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01001077 continue;
1078
Mike Snitzerb94ec292015-03-11 23:56:38 -04001079 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001080 }
1081}
Mike Snitzerb94ec292015-03-11 23:56:38 -04001082EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001083
Bart Van Asschefd001442016-10-28 17:19:37 -07001084/**
1085 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
1086 * @q: request queue.
1087 *
1088 * The caller is responsible for serializing this function against
1089 * blk_mq_{start,stop}_hw_queue().
1090 */
1091bool blk_mq_queue_stopped(struct request_queue *q)
1092{
1093 struct blk_mq_hw_ctx *hctx;
1094 int i;
1095
1096 queue_for_each_hw_ctx(q, hctx, i)
1097 if (blk_mq_hctx_stopped(hctx))
1098 return true;
1099
1100 return false;
1101}
1102EXPORT_SYMBOL(blk_mq_queue_stopped);
1103
Jens Axboe320ae512013-10-24 09:20:05 +01001104void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
1105{
Jens Axboe27489a32016-08-24 15:54:25 -06001106 cancel_work(&hctx->run_work);
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001107 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +01001108 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
1109}
1110EXPORT_SYMBOL(blk_mq_stop_hw_queue);
1111
Christoph Hellwig280d45f2013-10-25 14:45:58 +01001112void blk_mq_stop_hw_queues(struct request_queue *q)
1113{
1114 struct blk_mq_hw_ctx *hctx;
1115 int i;
1116
1117 queue_for_each_hw_ctx(q, hctx, i)
1118 blk_mq_stop_hw_queue(hctx);
1119}
1120EXPORT_SYMBOL(blk_mq_stop_hw_queues);
1121
Jens Axboe320ae512013-10-24 09:20:05 +01001122void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
1123{
1124 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -06001125
Jens Axboe0ffbce82014-06-25 08:22:34 -06001126 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001127}
1128EXPORT_SYMBOL(blk_mq_start_hw_queue);
1129
Christoph Hellwig2f268552014-04-16 09:44:56 +02001130void blk_mq_start_hw_queues(struct request_queue *q)
1131{
1132 struct blk_mq_hw_ctx *hctx;
1133 int i;
1134
1135 queue_for_each_hw_ctx(q, hctx, i)
1136 blk_mq_start_hw_queue(hctx);
1137}
1138EXPORT_SYMBOL(blk_mq_start_hw_queues);
1139
Jens Axboeae911c52016-12-08 13:19:30 -07001140void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1141{
1142 if (!blk_mq_hctx_stopped(hctx))
1143 return;
1144
1145 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
1146 blk_mq_run_hw_queue(hctx, async);
1147}
1148EXPORT_SYMBOL_GPL(blk_mq_start_stopped_hw_queue);
1149
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02001150void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001151{
1152 struct blk_mq_hw_ctx *hctx;
1153 int i;
1154
Jens Axboeae911c52016-12-08 13:19:30 -07001155 queue_for_each_hw_ctx(q, hctx, i)
1156 blk_mq_start_stopped_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001157}
1158EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1159
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001160static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001161{
1162 struct blk_mq_hw_ctx *hctx;
1163
Jens Axboe27489a32016-08-24 15:54:25 -06001164 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
Jens Axboee4043dc2014-04-09 10:18:23 -06001165
Jens Axboe320ae512013-10-24 09:20:05 +01001166 __blk_mq_run_hw_queue(hctx);
1167}
1168
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001169static void blk_mq_delay_work_fn(struct work_struct *work)
1170{
1171 struct blk_mq_hw_ctx *hctx;
1172
1173 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1174
1175 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1176 __blk_mq_run_hw_queue(hctx);
1177}
1178
1179void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1180{
Ming Lei19c66e52014-12-03 19:38:04 +08001181 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1182 return;
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001183
Jens Axboe7e79dad2017-01-19 07:58:59 -07001184 blk_mq_stop_hw_queue(hctx);
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001185 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1186 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001187}
1188EXPORT_SYMBOL(blk_mq_delay_queue);
1189
Ming Leicfd0c552015-10-20 23:13:57 +08001190static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08001191 struct request *rq,
1192 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01001193{
Jens Axboee57690f2016-08-24 15:34:35 -06001194 struct blk_mq_ctx *ctx = rq->mq_ctx;
1195
Jens Axboe01b983c2013-11-19 18:59:10 -07001196 trace_block_rq_insert(hctx->queue, rq);
1197
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001198 if (at_head)
1199 list_add(&rq->queuelist, &ctx->rq_list);
1200 else
1201 list_add_tail(&rq->queuelist, &ctx->rq_list);
Ming Leicfd0c552015-10-20 23:13:57 +08001202}
Jens Axboe4bb659b2014-05-09 09:36:49 -06001203
Jens Axboe2c3ad662016-12-14 14:34:47 -07001204void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq,
1205 bool at_head)
Ming Leicfd0c552015-10-20 23:13:57 +08001206{
1207 struct blk_mq_ctx *ctx = rq->mq_ctx;
1208
Jens Axboee57690f2016-08-24 15:34:35 -06001209 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01001210 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001211}
1212
Jens Axboebd166ef2017-01-17 06:03:22 -07001213void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
1214 struct list_head *list)
Jens Axboe320ae512013-10-24 09:20:05 +01001215
1216{
Jens Axboe320ae512013-10-24 09:20:05 +01001217 /*
1218 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1219 * offline now
1220 */
1221 spin_lock(&ctx->lock);
1222 while (!list_empty(list)) {
1223 struct request *rq;
1224
1225 rq = list_first_entry(list, struct request, queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001226 BUG_ON(rq->mq_ctx != ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001227 list_del_init(&rq->queuelist);
Jens Axboee57690f2016-08-24 15:34:35 -06001228 __blk_mq_insert_req_list(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001229 }
Ming Leicfd0c552015-10-20 23:13:57 +08001230 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001231 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01001232}
1233
1234static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1235{
1236 struct request *rqa = container_of(a, struct request, queuelist);
1237 struct request *rqb = container_of(b, struct request, queuelist);
1238
1239 return !(rqa->mq_ctx < rqb->mq_ctx ||
1240 (rqa->mq_ctx == rqb->mq_ctx &&
1241 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1242}
1243
1244void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1245{
1246 struct blk_mq_ctx *this_ctx;
1247 struct request_queue *this_q;
1248 struct request *rq;
1249 LIST_HEAD(list);
1250 LIST_HEAD(ctx_list);
1251 unsigned int depth;
1252
1253 list_splice_init(&plug->mq_list, &list);
1254
1255 list_sort(NULL, &list, plug_ctx_cmp);
1256
1257 this_q = NULL;
1258 this_ctx = NULL;
1259 depth = 0;
1260
1261 while (!list_empty(&list)) {
1262 rq = list_entry_rq(list.next);
1263 list_del_init(&rq->queuelist);
1264 BUG_ON(!rq->q);
1265 if (rq->mq_ctx != this_ctx) {
1266 if (this_ctx) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001267 trace_block_unplug(this_q, depth, from_schedule);
1268 blk_mq_sched_insert_requests(this_q, this_ctx,
1269 &ctx_list,
1270 from_schedule);
Jens Axboe320ae512013-10-24 09:20:05 +01001271 }
1272
1273 this_ctx = rq->mq_ctx;
1274 this_q = rq->q;
1275 depth = 0;
1276 }
1277
1278 depth++;
1279 list_add_tail(&rq->queuelist, &ctx_list);
1280 }
1281
1282 /*
1283 * If 'this_ctx' is set, we know we have entries to complete
1284 * on 'ctx_list'. Do those.
1285 */
1286 if (this_ctx) {
Jens Axboebd166ef2017-01-17 06:03:22 -07001287 trace_block_unplug(this_q, depth, from_schedule);
1288 blk_mq_sched_insert_requests(this_q, this_ctx, &ctx_list,
1289 from_schedule);
Jens Axboe320ae512013-10-24 09:20:05 +01001290 }
1291}
1292
1293static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1294{
1295 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001296
Jens Axboe6e85eaf2016-12-02 20:00:14 -07001297 blk_account_io_start(rq, true);
Jens Axboe320ae512013-10-24 09:20:05 +01001298}
1299
Jens Axboe274a5842014-08-15 12:44:08 -06001300static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1301{
1302 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1303 !blk_queue_nomerges(hctx->queue);
1304}
1305
Jens Axboe07068d52014-05-22 10:40:51 -06001306static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1307 struct blk_mq_ctx *ctx,
1308 struct request *rq, struct bio *bio)
1309{
Ming Leie18378a2015-10-20 23:13:54 +08001310 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001311 blk_mq_bio_to_request(rq, bio);
1312 spin_lock(&ctx->lock);
1313insert_rq:
1314 __blk_mq_insert_request(hctx, rq, false);
1315 spin_unlock(&ctx->lock);
1316 return false;
1317 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001318 struct request_queue *q = hctx->queue;
1319
Jens Axboe07068d52014-05-22 10:40:51 -06001320 spin_lock(&ctx->lock);
1321 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1322 blk_mq_bio_to_request(rq, bio);
1323 goto insert_rq;
1324 }
1325
1326 spin_unlock(&ctx->lock);
Jens Axboebd166ef2017-01-17 06:03:22 -07001327 __blk_mq_finish_request(hctx, ctx, rq);
Jens Axboe07068d52014-05-22 10:40:51 -06001328 return true;
1329 }
1330}
1331
Jens Axboefd2d3322017-01-12 10:04:45 -07001332static blk_qc_t request_to_qc_t(struct blk_mq_hw_ctx *hctx, struct request *rq)
1333{
Jens Axboebd166ef2017-01-17 06:03:22 -07001334 if (rq->tag != -1)
1335 return blk_tag_to_qc_t(rq->tag, hctx->queue_num, false);
1336
1337 return blk_tag_to_qc_t(rq->internal_tag, hctx->queue_num, true);
Jens Axboefd2d3322017-01-12 10:04:45 -07001338}
1339
Jens Axboe066a4a72016-11-11 12:24:46 -07001340static void blk_mq_try_issue_directly(struct request *rq, blk_qc_t *cookie)
Shaohua Lif984df12015-05-08 10:51:32 -07001341{
Shaohua Lif984df12015-05-08 10:51:32 -07001342 struct request_queue *q = rq->q;
Shaohua Lif984df12015-05-08 10:51:32 -07001343 struct blk_mq_queue_data bd = {
1344 .rq = rq,
1345 .list = NULL,
1346 .last = 1
1347 };
Jens Axboebd166ef2017-01-17 06:03:22 -07001348 struct blk_mq_hw_ctx *hctx;
1349 blk_qc_t new_cookie;
1350 int ret;
Shaohua Lif984df12015-05-08 10:51:32 -07001351
Jens Axboebd166ef2017-01-17 06:03:22 -07001352 if (q->elevator)
Bart Van Assche2253efc2016-10-28 17:20:02 -07001353 goto insert;
1354
Jens Axboebd166ef2017-01-17 06:03:22 -07001355 if (!blk_mq_get_driver_tag(rq, &hctx, false))
1356 goto insert;
1357
1358 new_cookie = request_to_qc_t(hctx, rq);
1359
Shaohua Lif984df12015-05-08 10:51:32 -07001360 /*
1361 * For OK queue, we are done. For error, kill it. Any other
1362 * error (busy), just add it to our list as we previously
1363 * would have done
1364 */
1365 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe7b371632015-11-05 10:41:40 -07001366 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1367 *cookie = new_cookie;
Bart Van Assche2253efc2016-10-28 17:20:02 -07001368 return;
Shaohua Lif984df12015-05-08 10:51:32 -07001369 }
Jens Axboe7b371632015-11-05 10:41:40 -07001370
1371 __blk_mq_requeue_request(rq);
1372
1373 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1374 *cookie = BLK_QC_T_NONE;
1375 rq->errors = -EIO;
1376 blk_mq_end_request(rq, rq->errors);
Bart Van Assche2253efc2016-10-28 17:20:02 -07001377 return;
Jens Axboe7b371632015-11-05 10:41:40 -07001378 }
1379
Bart Van Assche2253efc2016-10-28 17:20:02 -07001380insert:
Jens Axboebd166ef2017-01-17 06:03:22 -07001381 blk_mq_sched_insert_request(rq, false, true, true);
Shaohua Lif984df12015-05-08 10:51:32 -07001382}
1383
Jens Axboe07068d52014-05-22 10:40:51 -06001384/*
1385 * Multiple hardware queue variant. This will not use per-process plugs,
1386 * but will attempt to bypass the hctx queueing if we can go straight to
1387 * hardware for SYNC IO.
1388 */
Jens Axboedece1632015-11-05 10:41:16 -07001389static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001390{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001391 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001392 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jens Axboe5a797e02017-01-26 12:22:11 -07001393 struct blk_mq_alloc_data data = { .flags = 0 };
Jens Axboe07068d52014-05-22 10:40:51 -06001394 struct request *rq;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001395 unsigned int request_count = 0, srcu_idx;
Shaohua Lif984df12015-05-08 10:51:32 -07001396 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07001397 struct request *same_queue_rq = NULL;
Jens Axboe7b371632015-11-05 10:41:40 -07001398 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001399 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001400
1401 blk_queue_bounce(q, &bio);
1402
1403 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001404 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001405 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001406 }
1407
Kent Overstreet54efd502015-04-23 22:37:18 -07001408 blk_queue_split(q, &bio, q->bio_split);
1409
Omar Sandoval87c279e2016-06-01 22:18:48 -07001410 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1411 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1412 return BLK_QC_T_NONE;
Shaohua Lif984df12015-05-08 10:51:32 -07001413
Jens Axboebd166ef2017-01-17 06:03:22 -07001414 if (blk_mq_sched_bio_merge(q, bio))
1415 return BLK_QC_T_NONE;
1416
Jens Axboe87760e52016-11-09 12:38:14 -07001417 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1418
Jens Axboebd166ef2017-01-17 06:03:22 -07001419 trace_block_getrq(q, bio, bio->bi_opf);
1420
1421 rq = blk_mq_sched_get_request(q, bio, bio->bi_opf, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001422 if (unlikely(!rq)) {
1423 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001424 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001425 }
1426
1427 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe07068d52014-05-22 10:40:51 -06001428
Jens Axboefd2d3322017-01-12 10:04:45 -07001429 cookie = request_to_qc_t(data.hctx, rq);
Jens Axboe07068d52014-05-22 10:40:51 -06001430
1431 if (unlikely(is_flush_fua)) {
1432 blk_mq_bio_to_request(rq, bio);
Jens Axboebd166ef2017-01-17 06:03:22 -07001433 blk_mq_get_driver_tag(rq, NULL, true);
Jens Axboe07068d52014-05-22 10:40:51 -06001434 blk_insert_flush(rq);
1435 goto run_queue;
1436 }
1437
Shaohua Lif984df12015-05-08 10:51:32 -07001438 plug = current->plug;
Jens Axboee167dfb2014-10-29 11:18:26 -06001439 /*
1440 * If the driver supports defer issued based on 'last', then
1441 * queue it up like normal since we can potentially save some
1442 * CPU this way.
1443 */
Shaohua Lif984df12015-05-08 10:51:32 -07001444 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1445 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1446 struct request *old_rq = NULL;
Jens Axboe07068d52014-05-22 10:40:51 -06001447
1448 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001449
1450 /*
Bart Van Assche6a83e742016-11-02 10:09:51 -06001451 * We do limited plugging. If the bio can be merged, do that.
Shaohua Lif984df12015-05-08 10:51:32 -07001452 * Otherwise the existing request in the plug list will be
1453 * issued. So the plug list will have one request at most
Jens Axboe07068d52014-05-22 10:40:51 -06001454 */
Shaohua Lif984df12015-05-08 10:51:32 -07001455 if (plug) {
Shaohua Li5b3f3412015-05-08 10:51:33 -07001456 /*
1457 * The plug list might get flushed before this. If that
Jens Axboeb094f892015-11-20 20:29:45 -07001458 * happens, same_queue_rq is invalid and plug list is
1459 * empty
1460 */
Shaohua Li5b3f3412015-05-08 10:51:33 -07001461 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1462 old_rq = same_queue_rq;
Shaohua Lif984df12015-05-08 10:51:32 -07001463 list_del_init(&old_rq->queuelist);
Jens Axboe07068d52014-05-22 10:40:51 -06001464 }
Shaohua Lif984df12015-05-08 10:51:32 -07001465 list_add_tail(&rq->queuelist, &plug->mq_list);
1466 } else /* is_sync */
1467 old_rq = rq;
1468 blk_mq_put_ctx(data.ctx);
1469 if (!old_rq)
Jens Axboe7b371632015-11-05 10:41:40 -07001470 goto done;
Bart Van Assche6a83e742016-11-02 10:09:51 -06001471
1472 if (!(data.hctx->flags & BLK_MQ_F_BLOCKING)) {
1473 rcu_read_lock();
Jens Axboe066a4a72016-11-11 12:24:46 -07001474 blk_mq_try_issue_directly(old_rq, &cookie);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001475 rcu_read_unlock();
1476 } else {
1477 srcu_idx = srcu_read_lock(&data.hctx->queue_rq_srcu);
Jens Axboe066a4a72016-11-11 12:24:46 -07001478 blk_mq_try_issue_directly(old_rq, &cookie);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001479 srcu_read_unlock(&data.hctx->queue_rq_srcu, srcu_idx);
1480 }
Jens Axboe7b371632015-11-05 10:41:40 -07001481 goto done;
Jens Axboe07068d52014-05-22 10:40:51 -06001482 }
1483
Jens Axboebd166ef2017-01-17 06:03:22 -07001484 if (q->elevator) {
1485 blk_mq_put_ctx(data.ctx);
1486 blk_mq_bio_to_request(rq, bio);
Jens Axboe0abad772017-01-26 12:28:10 -07001487 blk_mq_sched_insert_request(rq, false, true,
1488 !is_sync || is_flush_fua);
Jens Axboebd166ef2017-01-17 06:03:22 -07001489 goto done;
1490 }
Jens Axboe07068d52014-05-22 10:40:51 -06001491 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1492 /*
1493 * For a SYNC request, send it to the hardware immediately. For
1494 * an ASYNC request, just ensure that we run it later on. The
1495 * latter allows for merging opportunities and more efficient
1496 * dispatching.
1497 */
1498run_queue:
1499 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1500 }
Jens Axboe07068d52014-05-22 10:40:51 -06001501 blk_mq_put_ctx(data.ctx);
Jens Axboe7b371632015-11-05 10:41:40 -07001502done:
1503 return cookie;
Jens Axboe07068d52014-05-22 10:40:51 -06001504}
1505
1506/*
1507 * Single hardware queue variant. This will attempt to use any per-process
1508 * plug for merging and IO deferral.
1509 */
Jens Axboedece1632015-11-05 10:41:16 -07001510static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06001511{
Christoph Hellwigef295ec2016-10-28 08:48:16 -06001512 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe1eff9d32016-08-05 15:35:16 -06001513 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
Jeff Moyere6c44382015-05-08 10:51:30 -07001514 struct blk_plug *plug;
1515 unsigned int request_count = 0;
Jens Axboe5a797e02017-01-26 12:22:11 -07001516 struct blk_mq_alloc_data data = { .flags = 0 };
Jens Axboe07068d52014-05-22 10:40:51 -06001517 struct request *rq;
Jens Axboe7b371632015-11-05 10:41:40 -07001518 blk_qc_t cookie;
Jens Axboe87760e52016-11-09 12:38:14 -07001519 unsigned int wb_acct;
Jens Axboe07068d52014-05-22 10:40:51 -06001520
Jens Axboe07068d52014-05-22 10:40:51 -06001521 blk_queue_bounce(q, &bio);
1522
1523 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001524 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001525 return BLK_QC_T_NONE;
Jens Axboe07068d52014-05-22 10:40:51 -06001526 }
1527
Kent Overstreet54efd502015-04-23 22:37:18 -07001528 blk_queue_split(q, &bio, q->bio_split);
1529
Omar Sandoval87c279e2016-06-01 22:18:48 -07001530 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1531 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1532 return BLK_QC_T_NONE;
1533 } else
1534 request_count = blk_plug_queued_count(q);
Jens Axboe07068d52014-05-22 10:40:51 -06001535
Jens Axboebd166ef2017-01-17 06:03:22 -07001536 if (blk_mq_sched_bio_merge(q, bio))
1537 return BLK_QC_T_NONE;
1538
Jens Axboe87760e52016-11-09 12:38:14 -07001539 wb_acct = wbt_wait(q->rq_wb, bio, NULL);
1540
Jens Axboebd166ef2017-01-17 06:03:22 -07001541 trace_block_getrq(q, bio, bio->bi_opf);
1542
1543 rq = blk_mq_sched_get_request(q, bio, bio->bi_opf, &data);
Jens Axboe87760e52016-11-09 12:38:14 -07001544 if (unlikely(!rq)) {
1545 __wbt_done(q->rq_wb, wb_acct);
Jens Axboedece1632015-11-05 10:41:16 -07001546 return BLK_QC_T_NONE;
Jens Axboe87760e52016-11-09 12:38:14 -07001547 }
1548
1549 wbt_track(&rq->issue_stat, wb_acct);
Jens Axboe320ae512013-10-24 09:20:05 +01001550
Jens Axboefd2d3322017-01-12 10:04:45 -07001551 cookie = request_to_qc_t(data.hctx, rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001552
1553 if (unlikely(is_flush_fua)) {
1554 blk_mq_bio_to_request(rq, bio);
Jens Axboebd166ef2017-01-17 06:03:22 -07001555 blk_mq_get_driver_tag(rq, NULL, true);
Jens Axboe320ae512013-10-24 09:20:05 +01001556 blk_insert_flush(rq);
1557 goto run_queue;
1558 }
1559
1560 /*
1561 * A task plug currently exists. Since this is completely lockless,
1562 * utilize that to temporarily store requests until the task is
1563 * either done or scheduled away.
1564 */
Jeff Moyere6c44382015-05-08 10:51:30 -07001565 plug = current->plug;
1566 if (plug) {
Shaohua Li600271d2016-11-03 17:03:54 -07001567 struct request *last = NULL;
1568
Jeff Moyere6c44382015-05-08 10:51:30 -07001569 blk_mq_bio_to_request(rq, bio);
Ming Lei0a6219a2016-11-16 18:07:05 +08001570
1571 /*
1572 * @request_count may become stale because of schedule
1573 * out, so check the list again.
1574 */
1575 if (list_empty(&plug->mq_list))
1576 request_count = 0;
Ming Lei676d0602015-10-20 23:13:56 +08001577 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07001578 trace_block_plug(q);
Shaohua Li600271d2016-11-03 17:03:54 -07001579 else
1580 last = list_entry_rq(plug->mq_list.prev);
Jens Axboeb094f892015-11-20 20:29:45 -07001581
1582 blk_mq_put_ctx(data.ctx);
1583
Shaohua Li600271d2016-11-03 17:03:54 -07001584 if (request_count >= BLK_MAX_REQUEST_COUNT || (last &&
1585 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
Jeff Moyere6c44382015-05-08 10:51:30 -07001586 blk_flush_plug_list(plug, false);
1587 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001588 }
Jens Axboeb094f892015-11-20 20:29:45 -07001589
Jeff Moyere6c44382015-05-08 10:51:30 -07001590 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe7b371632015-11-05 10:41:40 -07001591 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001592 }
1593
Jens Axboebd166ef2017-01-17 06:03:22 -07001594 if (q->elevator) {
1595 blk_mq_put_ctx(data.ctx);
1596 blk_mq_bio_to_request(rq, bio);
Jens Axboe0abad772017-01-26 12:28:10 -07001597 blk_mq_sched_insert_request(rq, false, true,
1598 !is_sync || is_flush_fua);
Jens Axboebd166ef2017-01-17 06:03:22 -07001599 goto done;
1600 }
Jens Axboe07068d52014-05-22 10:40:51 -06001601 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1602 /*
1603 * For a SYNC request, send it to the hardware immediately. For
1604 * an ASYNC request, just ensure that we run it later on. The
1605 * latter allows for merging opportunities and more efficient
1606 * dispatching.
1607 */
1608run_queue:
1609 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001610 }
1611
Jens Axboe07068d52014-05-22 10:40:51 -06001612 blk_mq_put_ctx(data.ctx);
Jens Axboebd166ef2017-01-17 06:03:22 -07001613done:
Jens Axboe7b371632015-11-05 10:41:40 -07001614 return cookie;
Jens Axboe320ae512013-10-24 09:20:05 +01001615}
1616
Jens Axboecc71a6f2017-01-11 14:29:56 -07001617void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
1618 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001619{
1620 struct page *page;
1621
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001622 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001623 int i;
1624
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001625 for (i = 0; i < tags->nr_tags; i++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001626 struct request *rq = tags->static_rqs[i];
1627
1628 if (!rq)
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001629 continue;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001630 set->ops->exit_request(set->driver_data, rq,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001631 hctx_idx, i);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001632 tags->static_rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001633 }
1634 }
1635
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001636 while (!list_empty(&tags->page_list)) {
1637 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001638 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001639 /*
1640 * Remove kmemleak object previously allocated in
1641 * blk_mq_init_rq_map().
1642 */
1643 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01001644 __free_pages(page, page->private);
1645 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001646}
Jens Axboe320ae512013-10-24 09:20:05 +01001647
Jens Axboecc71a6f2017-01-11 14:29:56 -07001648void blk_mq_free_rq_map(struct blk_mq_tags *tags)
1649{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001650 kfree(tags->rqs);
Jens Axboecc71a6f2017-01-11 14:29:56 -07001651 tags->rqs = NULL;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001652 kfree(tags->static_rqs);
1653 tags->static_rqs = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001654
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001655 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001656}
1657
Jens Axboecc71a6f2017-01-11 14:29:56 -07001658struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
1659 unsigned int hctx_idx,
1660 unsigned int nr_tags,
1661 unsigned int reserved_tags)
Jens Axboe320ae512013-10-24 09:20:05 +01001662{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001663 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001664
Jens Axboecc71a6f2017-01-11 14:29:56 -07001665 tags = blk_mq_init_tags(nr_tags, reserved_tags,
Shaohua Li24391c02015-01-23 14:18:00 -07001666 set->numa_node,
1667 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001668 if (!tags)
1669 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001670
Jens Axboecc71a6f2017-01-11 14:29:56 -07001671 tags->rqs = kzalloc_node(nr_tags * sizeof(struct request *),
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001672 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
Jens Axboea5164402014-09-10 09:02:03 -06001673 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001674 if (!tags->rqs) {
1675 blk_mq_free_tags(tags);
1676 return NULL;
1677 }
Jens Axboe320ae512013-10-24 09:20:05 +01001678
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001679 tags->static_rqs = kzalloc_node(nr_tags * sizeof(struct request *),
1680 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
1681 set->numa_node);
1682 if (!tags->static_rqs) {
1683 kfree(tags->rqs);
1684 blk_mq_free_tags(tags);
1685 return NULL;
1686 }
1687
Jens Axboecc71a6f2017-01-11 14:29:56 -07001688 return tags;
1689}
1690
1691static size_t order_to_size(unsigned int order)
1692{
1693 return (size_t)PAGE_SIZE << order;
1694}
1695
1696int blk_mq_alloc_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
1697 unsigned int hctx_idx, unsigned int depth)
1698{
1699 unsigned int i, j, entries_per_page, max_order = 4;
1700 size_t rq_size, left;
1701
1702 INIT_LIST_HEAD(&tags->page_list);
1703
Jens Axboe320ae512013-10-24 09:20:05 +01001704 /*
1705 * rq_size is the size of the request plus driver payload, rounded
1706 * to the cacheline size
1707 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001708 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001709 cache_line_size());
Jens Axboecc71a6f2017-01-11 14:29:56 -07001710 left = rq_size * depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001711
Jens Axboecc71a6f2017-01-11 14:29:56 -07001712 for (i = 0; i < depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001713 int this_order = max_order;
1714 struct page *page;
1715 int to_do;
1716 void *p;
1717
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06001718 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01001719 this_order--;
1720
1721 do {
Jens Axboea5164402014-09-10 09:02:03 -06001722 page = alloc_pages_node(set->numa_node,
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001723 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06001724 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001725 if (page)
1726 break;
1727 if (!this_order--)
1728 break;
1729 if (order_to_size(this_order) < rq_size)
1730 break;
1731 } while (1);
1732
1733 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001734 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001735
1736 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001737 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001738
1739 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01001740 /*
1741 * Allow kmemleak to scan these pages as they contain pointers
1742 * to additional allocations like via ops->init_request().
1743 */
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02001744 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
Jens Axboe320ae512013-10-24 09:20:05 +01001745 entries_per_page = order_to_size(this_order) / rq_size;
Jens Axboecc71a6f2017-01-11 14:29:56 -07001746 to_do = min(entries_per_page, depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001747 left -= to_do * rq_size;
1748 for (j = 0; j < to_do; j++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001749 struct request *rq = p;
1750
1751 tags->static_rqs[i] = rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001752 if (set->ops->init_request) {
1753 if (set->ops->init_request(set->driver_data,
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001754 rq, hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001755 set->numa_node)) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07001756 tags->static_rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001757 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001758 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001759 }
1760
Jens Axboe320ae512013-10-24 09:20:05 +01001761 p += rq_size;
1762 i++;
1763 }
1764 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001765 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01001766
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001767fail:
Jens Axboecc71a6f2017-01-11 14:29:56 -07001768 blk_mq_free_rqs(set, tags, hctx_idx);
1769 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01001770}
1771
Jens Axboee57690f2016-08-24 15:34:35 -06001772/*
1773 * 'cpu' is going away. splice any existing rq_list entries from this
1774 * software queue to the hw queue dispatch list, and ensure that it
1775 * gets run.
1776 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06001777static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06001778{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001779 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06001780 struct blk_mq_ctx *ctx;
1781 LIST_HEAD(tmp);
1782
Thomas Gleixner9467f852016-09-22 08:05:17 -06001783 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Jens Axboee57690f2016-08-24 15:34:35 -06001784 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Jens Axboe484b4062014-05-21 14:01:15 -06001785
1786 spin_lock(&ctx->lock);
1787 if (!list_empty(&ctx->rq_list)) {
1788 list_splice_init(&ctx->rq_list, &tmp);
1789 blk_mq_hctx_clear_pending(hctx, ctx);
1790 }
1791 spin_unlock(&ctx->lock);
1792
1793 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06001794 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001795
Jens Axboee57690f2016-08-24 15:34:35 -06001796 spin_lock(&hctx->lock);
1797 list_splice_tail_init(&tmp, &hctx->dispatch);
1798 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06001799
1800 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06001801 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06001802}
1803
Thomas Gleixner9467f852016-09-22 08:05:17 -06001804static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06001805{
Thomas Gleixner9467f852016-09-22 08:05:17 -06001806 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
1807 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06001808}
1809
Ming Leic3b4afc2015-06-04 22:25:04 +08001810/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08001811static void blk_mq_exit_hctx(struct request_queue *q,
1812 struct blk_mq_tag_set *set,
1813 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1814{
Ming Leif70ced02014-09-25 23:23:47 +08001815 unsigned flush_start_tag = set->queue_depth;
1816
Ming Lei08e98fc2014-09-25 23:23:38 +08001817 blk_mq_tag_idle(hctx);
1818
Ming Leif70ced02014-09-25 23:23:47 +08001819 if (set->ops->exit_request)
1820 set->ops->exit_request(set->driver_data,
1821 hctx->fq->flush_rq, hctx_idx,
1822 flush_start_tag + hctx_idx);
1823
Ming Lei08e98fc2014-09-25 23:23:38 +08001824 if (set->ops->exit_hctx)
1825 set->ops->exit_hctx(hctx, hctx_idx);
1826
Bart Van Assche6a83e742016-11-02 10:09:51 -06001827 if (hctx->flags & BLK_MQ_F_BLOCKING)
1828 cleanup_srcu_struct(&hctx->queue_rq_srcu);
1829
Thomas Gleixner9467f852016-09-22 08:05:17 -06001830 blk_mq_remove_cpuhp(hctx);
Ming Leif70ced02014-09-25 23:23:47 +08001831 blk_free_flush_queue(hctx->fq);
Omar Sandoval88459642016-09-17 08:38:44 -06001832 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001833}
1834
Ming Lei624dbe42014-05-27 23:35:13 +08001835static void blk_mq_exit_hw_queues(struct request_queue *q,
1836 struct blk_mq_tag_set *set, int nr_queue)
1837{
1838 struct blk_mq_hw_ctx *hctx;
1839 unsigned int i;
1840
1841 queue_for_each_hw_ctx(q, hctx, i) {
1842 if (i == nr_queue)
1843 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001844 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001845 }
Ming Lei624dbe42014-05-27 23:35:13 +08001846}
1847
1848static void blk_mq_free_hw_queues(struct request_queue *q,
1849 struct blk_mq_tag_set *set)
1850{
1851 struct blk_mq_hw_ctx *hctx;
1852 unsigned int i;
1853
Ming Leie09aae72015-01-29 20:17:27 +08001854 queue_for_each_hw_ctx(q, hctx, i)
Ming Lei624dbe42014-05-27 23:35:13 +08001855 free_cpumask_var(hctx->cpumask);
Ming Lei624dbe42014-05-27 23:35:13 +08001856}
1857
Ming Lei08e98fc2014-09-25 23:23:38 +08001858static int blk_mq_init_hctx(struct request_queue *q,
1859 struct blk_mq_tag_set *set,
1860 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1861{
1862 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001863 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001864
1865 node = hctx->numa_node;
1866 if (node == NUMA_NO_NODE)
1867 node = hctx->numa_node = set->numa_node;
1868
Jens Axboe27489a32016-08-24 15:54:25 -06001869 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08001870 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1871 spin_lock_init(&hctx->lock);
1872 INIT_LIST_HEAD(&hctx->dispatch);
1873 hctx->queue = q;
1874 hctx->queue_num = hctx_idx;
Jeff Moyer2404e602015-11-03 10:40:06 -05001875 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08001876
Thomas Gleixner9467f852016-09-22 08:05:17 -06001877 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
Ming Lei08e98fc2014-09-25 23:23:38 +08001878
1879 hctx->tags = set->tags[hctx_idx];
1880
1881 /*
1882 * Allocate space for all possible cpus to avoid allocation at
1883 * runtime
1884 */
1885 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1886 GFP_KERNEL, node);
1887 if (!hctx->ctxs)
1888 goto unregister_cpu_notifier;
1889
Omar Sandoval88459642016-09-17 08:38:44 -06001890 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1891 node))
Ming Lei08e98fc2014-09-25 23:23:38 +08001892 goto free_ctxs;
1893
1894 hctx->nr_ctx = 0;
1895
1896 if (set->ops->init_hctx &&
1897 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1898 goto free_bitmap;
1899
Ming Leif70ced02014-09-25 23:23:47 +08001900 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1901 if (!hctx->fq)
1902 goto exit_hctx;
1903
1904 if (set->ops->init_request &&
1905 set->ops->init_request(set->driver_data,
1906 hctx->fq->flush_rq, hctx_idx,
1907 flush_start_tag + hctx_idx, node))
1908 goto free_fq;
1909
Bart Van Assche6a83e742016-11-02 10:09:51 -06001910 if (hctx->flags & BLK_MQ_F_BLOCKING)
1911 init_srcu_struct(&hctx->queue_rq_srcu);
1912
Ming Lei08e98fc2014-09-25 23:23:38 +08001913 return 0;
1914
Ming Leif70ced02014-09-25 23:23:47 +08001915 free_fq:
1916 kfree(hctx->fq);
1917 exit_hctx:
1918 if (set->ops->exit_hctx)
1919 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001920 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06001921 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08001922 free_ctxs:
1923 kfree(hctx->ctxs);
1924 unregister_cpu_notifier:
Thomas Gleixner9467f852016-09-22 08:05:17 -06001925 blk_mq_remove_cpuhp(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001926 return -1;
1927}
1928
Jens Axboe320ae512013-10-24 09:20:05 +01001929static void blk_mq_init_cpu_queues(struct request_queue *q,
1930 unsigned int nr_hw_queues)
1931{
1932 unsigned int i;
1933
1934 for_each_possible_cpu(i) {
1935 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1936 struct blk_mq_hw_ctx *hctx;
1937
1938 memset(__ctx, 0, sizeof(*__ctx));
1939 __ctx->cpu = i;
1940 spin_lock_init(&__ctx->lock);
1941 INIT_LIST_HEAD(&__ctx->rq_list);
1942 __ctx->queue = q;
Jens Axboecf43e6b2016-11-07 21:32:37 -07001943 blk_stat_init(&__ctx->stat[BLK_STAT_READ]);
1944 blk_stat_init(&__ctx->stat[BLK_STAT_WRITE]);
Jens Axboe320ae512013-10-24 09:20:05 +01001945
1946 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001947 if (!cpu_online(i))
1948 continue;
1949
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02001950 hctx = blk_mq_map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001951
Jens Axboe320ae512013-10-24 09:20:05 +01001952 /*
1953 * Set local node, IFF we have more than one hw queue. If
1954 * not, we remain on the home node of the device
1955 */
1956 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Raghavendra K Tbffed452015-12-02 16:59:05 +05301957 hctx->numa_node = local_memory_node(cpu_to_node(i));
Jens Axboe320ae512013-10-24 09:20:05 +01001958 }
1959}
1960
Jens Axboecc71a6f2017-01-11 14:29:56 -07001961static bool __blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, int hctx_idx)
1962{
1963 int ret = 0;
1964
1965 set->tags[hctx_idx] = blk_mq_alloc_rq_map(set, hctx_idx,
1966 set->queue_depth, set->reserved_tags);
1967 if (!set->tags[hctx_idx])
1968 return false;
1969
1970 ret = blk_mq_alloc_rqs(set, set->tags[hctx_idx], hctx_idx,
1971 set->queue_depth);
1972 if (!ret)
1973 return true;
1974
1975 blk_mq_free_rq_map(set->tags[hctx_idx]);
1976 set->tags[hctx_idx] = NULL;
1977 return false;
1978}
1979
1980static void blk_mq_free_map_and_requests(struct blk_mq_tag_set *set,
1981 unsigned int hctx_idx)
1982{
Jens Axboebd166ef2017-01-17 06:03:22 -07001983 if (set->tags[hctx_idx]) {
1984 blk_mq_free_rqs(set, set->tags[hctx_idx], hctx_idx);
1985 blk_mq_free_rq_map(set->tags[hctx_idx]);
1986 set->tags[hctx_idx] = NULL;
1987 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07001988}
1989
Akinobu Mita57783222015-09-27 02:09:23 +09001990static void blk_mq_map_swqueue(struct request_queue *q,
1991 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01001992{
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02001993 unsigned int i, hctx_idx;
Jens Axboe320ae512013-10-24 09:20:05 +01001994 struct blk_mq_hw_ctx *hctx;
1995 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08001996 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001997
Akinobu Mita60de0742015-09-27 02:09:25 +09001998 /*
1999 * Avoid others reading imcomplete hctx->cpumask through sysfs
2000 */
2001 mutex_lock(&q->sysfs_lock);
2002
Jens Axboe320ae512013-10-24 09:20:05 +01002003 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06002004 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01002005 hctx->nr_ctx = 0;
2006 }
2007
2008 /*
2009 * Map software to hardware queues
2010 */
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01002011 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +01002012 /* If the cpu isn't online, the cpu is mapped to first hctx */
Akinobu Mita57783222015-09-27 02:09:23 +09002013 if (!cpumask_test_cpu(i, online_mask))
Jens Axboee4043dc2014-04-09 10:18:23 -06002014 continue;
2015
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002016 hctx_idx = q->mq_map[i];
2017 /* unmapped hw queue can be remapped after CPU topo changed */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002018 if (!set->tags[hctx_idx] &&
2019 !__blk_mq_alloc_rq_map(set, hctx_idx)) {
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002020 /*
2021 * If tags initialization fail for some hctx,
2022 * that hctx won't be brought online. In this
2023 * case, remap the current ctx to hctx[0] which
2024 * is guaranteed to always have tags allocated
2025 */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002026 q->mq_map[i] = 0;
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002027 }
2028
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01002029 ctx = per_cpu_ptr(q->queue_ctx, i);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002030 hctx = blk_mq_map_queue(q, i);
Keith Busch868f2f02015-12-17 17:08:14 -07002031
Jens Axboee4043dc2014-04-09 10:18:23 -06002032 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01002033 ctx->index_hw = hctx->nr_ctx;
2034 hctx->ctxs[hctx->nr_ctx++] = ctx;
2035 }
Jens Axboe506e9312014-05-07 10:26:44 -06002036
Akinobu Mita60de0742015-09-27 02:09:25 +09002037 mutex_unlock(&q->sysfs_lock);
2038
Jens Axboe506e9312014-05-07 10:26:44 -06002039 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06002040 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06002041 * If no software queues are mapped to this hardware queue,
2042 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06002043 */
2044 if (!hctx->nr_ctx) {
Gabriel Krisman Bertazid1b1cea2016-12-14 18:48:36 -02002045 /* Never unmap queue 0. We need it as a
2046 * fallback in case of a new remap fails
2047 * allocation
2048 */
Jens Axboecc71a6f2017-01-11 14:29:56 -07002049 if (i && set->tags[i])
2050 blk_mq_free_map_and_requests(set, i);
2051
Ming Lei2a34c082015-04-21 10:00:20 +08002052 hctx->tags = NULL;
Jens Axboe484b4062014-05-21 14:01:15 -06002053 continue;
2054 }
2055
Ming Lei2a34c082015-04-21 10:00:20 +08002056 hctx->tags = set->tags[i];
2057 WARN_ON(!hctx->tags);
2058
Jens Axboe484b4062014-05-21 14:01:15 -06002059 /*
Chong Yuan889fa312015-04-15 11:39:29 -06002060 * Set the map size to the number of mapped software queues.
2061 * This is more accurate and more efficient than looping
2062 * over all possibly mapped software queues.
2063 */
Omar Sandoval88459642016-09-17 08:38:44 -06002064 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06002065
2066 /*
Jens Axboe484b4062014-05-21 14:01:15 -06002067 * Initialize batch roundrobin counts
2068 */
Jens Axboe506e9312014-05-07 10:26:44 -06002069 hctx->next_cpu = cpumask_first(hctx->cpumask);
2070 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
2071 }
Jens Axboe320ae512013-10-24 09:20:05 +01002072}
2073
Jeff Moyer2404e602015-11-03 10:40:06 -05002074static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06002075{
2076 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06002077 int i;
2078
Jeff Moyer2404e602015-11-03 10:40:06 -05002079 queue_for_each_hw_ctx(q, hctx, i) {
2080 if (shared)
2081 hctx->flags |= BLK_MQ_F_TAG_SHARED;
2082 else
2083 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
2084 }
2085}
2086
2087static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
2088{
2089 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06002090
2091 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2092 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05002093 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002094 blk_mq_unfreeze_queue(q);
2095 }
2096}
2097
2098static void blk_mq_del_queue_tag_set(struct request_queue *q)
2099{
2100 struct blk_mq_tag_set *set = q->tag_set;
2101
Jens Axboe0d2602c2014-05-13 15:10:52 -06002102 mutex_lock(&set->tag_list_lock);
2103 list_del_init(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05002104 if (list_is_singular(&set->tag_list)) {
2105 /* just transitioned to unshared */
2106 set->flags &= ~BLK_MQ_F_TAG_SHARED;
2107 /* update existing queue */
2108 blk_mq_update_tag_set_depth(set, false);
2109 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06002110 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002111}
2112
2113static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
2114 struct request_queue *q)
2115{
2116 q->tag_set = set;
2117
2118 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05002119
2120 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
2121 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
2122 set->flags |= BLK_MQ_F_TAG_SHARED;
2123 /* update existing queue */
2124 blk_mq_update_tag_set_depth(set, true);
2125 }
2126 if (set->flags & BLK_MQ_F_TAG_SHARED)
2127 queue_set_hctx_shared(q, true);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002128 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05002129
Jens Axboe0d2602c2014-05-13 15:10:52 -06002130 mutex_unlock(&set->tag_list_lock);
2131}
2132
Ming Leie09aae72015-01-29 20:17:27 +08002133/*
2134 * It is the actual release handler for mq, but we do it from
2135 * request queue's release handler for avoiding use-after-free
2136 * and headache because q->mq_kobj shouldn't have been introduced,
2137 * but we can't group ctx/kctx kobj without it.
2138 */
2139void blk_mq_release(struct request_queue *q)
2140{
2141 struct blk_mq_hw_ctx *hctx;
2142 unsigned int i;
2143
Jens Axboebd166ef2017-01-17 06:03:22 -07002144 blk_mq_sched_teardown(q);
2145
Ming Leie09aae72015-01-29 20:17:27 +08002146 /* hctx kobj stays in hctx */
Ming Leic3b4afc2015-06-04 22:25:04 +08002147 queue_for_each_hw_ctx(q, hctx, i) {
2148 if (!hctx)
2149 continue;
2150 kfree(hctx->ctxs);
Ming Leie09aae72015-01-29 20:17:27 +08002151 kfree(hctx);
Ming Leic3b4afc2015-06-04 22:25:04 +08002152 }
Ming Leie09aae72015-01-29 20:17:27 +08002153
Akinobu Mitaa723bab2015-09-27 02:09:21 +09002154 q->mq_map = NULL;
2155
Ming Leie09aae72015-01-29 20:17:27 +08002156 kfree(q->queue_hw_ctx);
2157
2158 /* ctx kobj stays in queue_ctx */
2159 free_percpu(q->queue_ctx);
2160}
2161
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002162struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01002163{
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002164 struct request_queue *uninit_q, *q;
2165
2166 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
2167 if (!uninit_q)
2168 return ERR_PTR(-ENOMEM);
2169
2170 q = blk_mq_init_allocated_queue(set, uninit_q);
2171 if (IS_ERR(q))
2172 blk_cleanup_queue(uninit_q);
2173
2174 return q;
2175}
2176EXPORT_SYMBOL(blk_mq_init_queue);
2177
Keith Busch868f2f02015-12-17 17:08:14 -07002178static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
2179 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002180{
Keith Busch868f2f02015-12-17 17:08:14 -07002181 int i, j;
2182 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01002183
Keith Busch868f2f02015-12-17 17:08:14 -07002184 blk_mq_sysfs_unregister(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002185 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07002186 int node;
Jens Axboef14bbe72014-05-27 12:06:53 -06002187
Keith Busch868f2f02015-12-17 17:08:14 -07002188 if (hctxs[i])
2189 continue;
2190
2191 node = blk_mq_hw_queue_to_node(q->mq_map, i);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002192 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
2193 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01002194 if (!hctxs[i])
Keith Busch868f2f02015-12-17 17:08:14 -07002195 break;
Jens Axboe320ae512013-10-24 09:20:05 +01002196
Jens Axboea86073e2014-10-13 15:41:54 -06002197 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
Keith Busch868f2f02015-12-17 17:08:14 -07002198 node)) {
2199 kfree(hctxs[i]);
2200 hctxs[i] = NULL;
2201 break;
2202 }
Jens Axboee4043dc2014-04-09 10:18:23 -06002203
Jens Axboe0d2602c2014-05-13 15:10:52 -06002204 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06002205 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01002206 hctxs[i]->queue_num = i;
Keith Busch868f2f02015-12-17 17:08:14 -07002207
2208 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
2209 free_cpumask_var(hctxs[i]->cpumask);
2210 kfree(hctxs[i]);
2211 hctxs[i] = NULL;
2212 break;
2213 }
2214 blk_mq_hctx_kobj_init(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01002215 }
Keith Busch868f2f02015-12-17 17:08:14 -07002216 for (j = i; j < q->nr_hw_queues; j++) {
2217 struct blk_mq_hw_ctx *hctx = hctxs[j];
2218
2219 if (hctx) {
Jens Axboecc71a6f2017-01-11 14:29:56 -07002220 if (hctx->tags)
2221 blk_mq_free_map_and_requests(set, j);
Keith Busch868f2f02015-12-17 17:08:14 -07002222 blk_mq_exit_hctx(q, set, hctx, j);
2223 free_cpumask_var(hctx->cpumask);
2224 kobject_put(&hctx->kobj);
2225 kfree(hctx->ctxs);
2226 kfree(hctx);
2227 hctxs[j] = NULL;
2228
2229 }
2230 }
2231 q->nr_hw_queues = i;
2232 blk_mq_sysfs_register(q);
2233}
2234
2235struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2236 struct request_queue *q)
2237{
Ming Lei66841672016-02-12 15:27:00 +08002238 /* mark the queue as mq asap */
2239 q->mq_ops = set->ops;
2240
Keith Busch868f2f02015-12-17 17:08:14 -07002241 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2242 if (!q->queue_ctx)
Ming Linc7de5722016-05-25 23:23:27 -07002243 goto err_exit;
Keith Busch868f2f02015-12-17 17:08:14 -07002244
2245 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2246 GFP_KERNEL, set->numa_node);
2247 if (!q->queue_hw_ctx)
2248 goto err_percpu;
2249
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002250 q->mq_map = set->mq_map;
Keith Busch868f2f02015-12-17 17:08:14 -07002251
2252 blk_mq_realloc_hw_ctxs(set, q);
2253 if (!q->nr_hw_queues)
2254 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01002255
Christoph Hellwig287922e2015-10-30 20:57:30 +08002256 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08002257 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01002258
2259 q->nr_queues = nr_cpu_ids;
Jens Axboe320ae512013-10-24 09:20:05 +01002260
Jens Axboe94eddfb2013-11-19 09:25:07 -07002261 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01002262
Jens Axboe05f1dd52014-05-29 09:53:32 -06002263 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2264 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2265
Christoph Hellwig1be036e2014-02-07 10:22:39 -08002266 q->sg_reserved_size = INT_MAX;
2267
Mike Snitzer28494502016-09-14 13:28:30 -04002268 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06002269 INIT_LIST_HEAD(&q->requeue_list);
2270 spin_lock_init(&q->requeue_lock);
2271
Jens Axboe07068d52014-05-22 10:40:51 -06002272 if (q->nr_hw_queues > 1)
2273 blk_queue_make_request(q, blk_mq_make_request);
2274 else
2275 blk_queue_make_request(q, blk_sq_make_request);
2276
Jens Axboeeba71762014-05-20 15:17:27 -06002277 /*
2278 * Do this after blk_queue_make_request() overrides it...
2279 */
2280 q->nr_requests = set->queue_depth;
2281
Jens Axboe64f1c212016-11-14 13:03:03 -07002282 /*
2283 * Default to classic polling
2284 */
2285 q->poll_nsec = -1;
2286
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002287 if (set->ops->complete)
2288 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08002289
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002290 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002291
Akinobu Mita57783222015-09-27 02:09:23 +09002292 get_online_cpus();
Jens Axboe320ae512013-10-24 09:20:05 +01002293 mutex_lock(&all_q_mutex);
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002294
Jens Axboe320ae512013-10-24 09:20:05 +01002295 list_add_tail(&q->all_q_node, &all_q_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06002296 blk_mq_add_queue_tag_set(set, q);
Akinobu Mita57783222015-09-27 02:09:23 +09002297 blk_mq_map_swqueue(q, cpu_online_mask);
Jens Axboe484b4062014-05-21 14:01:15 -06002298
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002299 mutex_unlock(&all_q_mutex);
Akinobu Mita57783222015-09-27 02:09:23 +09002300 put_online_cpus();
Akinobu Mita4593fdb2015-09-27 02:09:20 +09002301
Jens Axboed3484992017-01-13 14:43:58 -07002302 if (!(set->flags & BLK_MQ_F_NO_SCHED)) {
2303 int ret;
2304
2305 ret = blk_mq_sched_init(q);
2306 if (ret)
2307 return ERR_PTR(ret);
2308 }
2309
Jens Axboe320ae512013-10-24 09:20:05 +01002310 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07002311
Jens Axboe320ae512013-10-24 09:20:05 +01002312err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07002313 kfree(q->queue_hw_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002314err_percpu:
Keith Busch868f2f02015-12-17 17:08:14 -07002315 free_percpu(q->queue_ctx);
Ming Linc7de5722016-05-25 23:23:27 -07002316err_exit:
2317 q->mq_ops = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002318 return ERR_PTR(-ENOMEM);
2319}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04002320EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002321
2322void blk_mq_free_queue(struct request_queue *q)
2323{
Ming Lei624dbe42014-05-27 23:35:13 +08002324 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01002325
Akinobu Mita0e626362015-09-27 02:09:22 +09002326 mutex_lock(&all_q_mutex);
2327 list_del_init(&q->all_q_node);
2328 mutex_unlock(&all_q_mutex);
2329
Jens Axboe87760e52016-11-09 12:38:14 -07002330 wbt_exit(q);
2331
Jens Axboe0d2602c2014-05-13 15:10:52 -06002332 blk_mq_del_queue_tag_set(q);
2333
Ming Lei624dbe42014-05-27 23:35:13 +08002334 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2335 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01002336}
Jens Axboe320ae512013-10-24 09:20:05 +01002337
2338/* Basically redo blk_mq_init_queue with queue frozen */
Akinobu Mita57783222015-09-27 02:09:23 +09002339static void blk_mq_queue_reinit(struct request_queue *q,
2340 const struct cpumask *online_mask)
Jens Axboe320ae512013-10-24 09:20:05 +01002341{
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +02002342 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
Jens Axboe320ae512013-10-24 09:20:05 +01002343
Jens Axboe67aec142014-05-30 08:25:36 -06002344 blk_mq_sysfs_unregister(q);
2345
Jens Axboe320ae512013-10-24 09:20:05 +01002346 /*
2347 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2348 * we should change hctx numa_node according to new topology (this
2349 * involves free and re-allocate memory, worthy doing?)
2350 */
2351
Akinobu Mita57783222015-09-27 02:09:23 +09002352 blk_mq_map_swqueue(q, online_mask);
Jens Axboe320ae512013-10-24 09:20:05 +01002353
Jens Axboe67aec142014-05-30 08:25:36 -06002354 blk_mq_sysfs_register(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002355}
2356
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002357/*
2358 * New online cpumask which is going to be set in this hotplug event.
2359 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2360 * one-by-one and dynamically allocating this could result in a failure.
2361 */
2362static struct cpumask cpuhp_online_new;
2363
2364static void blk_mq_queue_reinit_work(void)
Jens Axboe320ae512013-10-24 09:20:05 +01002365{
2366 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +01002367
2368 mutex_lock(&all_q_mutex);
Tejun Heof3af0202014-11-04 13:52:27 -05002369 /*
2370 * We need to freeze and reinit all existing queues. Freezing
2371 * involves synchronous wait for an RCU grace period and doing it
2372 * one by one may take a long time. Start freezing all queues in
2373 * one swoop and then wait for the completions so that freezing can
2374 * take place in parallel.
2375 */
2376 list_for_each_entry(q, &all_q_list, all_q_node)
2377 blk_mq_freeze_queue_start(q);
Gabriel Krisman Bertazi415d3da2016-11-28 15:01:48 -02002378 list_for_each_entry(q, &all_q_list, all_q_node)
Tejun Heof3af0202014-11-04 13:52:27 -05002379 blk_mq_freeze_queue_wait(q);
2380
Jens Axboe320ae512013-10-24 09:20:05 +01002381 list_for_each_entry(q, &all_q_list, all_q_node)
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002382 blk_mq_queue_reinit(q, &cpuhp_online_new);
Tejun Heof3af0202014-11-04 13:52:27 -05002383
2384 list_for_each_entry(q, &all_q_list, all_q_node)
2385 blk_mq_unfreeze_queue(q);
2386
Jens Axboe320ae512013-10-24 09:20:05 +01002387 mutex_unlock(&all_q_mutex);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002388}
2389
2390static int blk_mq_queue_reinit_dead(unsigned int cpu)
2391{
Sebastian Andrzej Siewior97a32862016-09-23 15:02:38 +02002392 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002393 blk_mq_queue_reinit_work();
2394 return 0;
2395}
2396
2397/*
2398 * Before hotadded cpu starts handling requests, new mappings must be
2399 * established. Otherwise, these requests in hw queue might never be
2400 * dispatched.
2401 *
2402 * For example, there is a single hw queue (hctx) and two CPU queues (ctx0
2403 * for CPU0, and ctx1 for CPU1).
2404 *
2405 * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list
2406 * and set bit0 in pending bitmap as ctx1->index_hw is still zero.
2407 *
Jens Axboe2c3ad662016-12-14 14:34:47 -07002408 * And then while running hw queue, blk_mq_flush_busy_ctxs() finds bit0 is set
2409 * in pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list.
2410 * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list is
2411 * ignored.
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002412 */
2413static int blk_mq_queue_reinit_prepare(unsigned int cpu)
2414{
2415 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
2416 cpumask_set_cpu(cpu, &cpuhp_online_new);
2417 blk_mq_queue_reinit_work();
2418 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002419}
2420
Jens Axboea5164402014-09-10 09:02:03 -06002421static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2422{
2423 int i;
2424
Jens Axboecc71a6f2017-01-11 14:29:56 -07002425 for (i = 0; i < set->nr_hw_queues; i++)
2426 if (!__blk_mq_alloc_rq_map(set, i))
Jens Axboea5164402014-09-10 09:02:03 -06002427 goto out_unwind;
Jens Axboea5164402014-09-10 09:02:03 -06002428
2429 return 0;
2430
2431out_unwind:
2432 while (--i >= 0)
Jens Axboecc71a6f2017-01-11 14:29:56 -07002433 blk_mq_free_rq_map(set->tags[i]);
Jens Axboea5164402014-09-10 09:02:03 -06002434
Jens Axboea5164402014-09-10 09:02:03 -06002435 return -ENOMEM;
2436}
2437
2438/*
2439 * Allocate the request maps associated with this tag_set. Note that this
2440 * may reduce the depth asked for, if memory is tight. set->queue_depth
2441 * will be updated to reflect the allocated depth.
2442 */
2443static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2444{
2445 unsigned int depth;
2446 int err;
2447
2448 depth = set->queue_depth;
2449 do {
2450 err = __blk_mq_alloc_rq_maps(set);
2451 if (!err)
2452 break;
2453
2454 set->queue_depth >>= 1;
2455 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2456 err = -ENOMEM;
2457 break;
2458 }
2459 } while (set->queue_depth);
2460
2461 if (!set->queue_depth || err) {
2462 pr_err("blk-mq: failed to allocate request map\n");
2463 return -ENOMEM;
2464 }
2465
2466 if (depth != set->queue_depth)
2467 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2468 depth, set->queue_depth);
2469
2470 return 0;
2471}
2472
Jens Axboea4391c62014-06-05 15:21:56 -06002473/*
2474 * Alloc a tag set to be associated with one or more request queues.
2475 * May fail with EINVAL for various error conditions. May adjust the
2476 * requested depth down, if if it too large. In that case, the set
2477 * value will be stored in set->queue_depth.
2478 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002479int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2480{
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002481 int ret;
2482
Bart Van Assche205fb5f2014-10-30 14:45:11 +01002483 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2484
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002485 if (!set->nr_hw_queues)
2486 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002487 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002488 return -EINVAL;
2489 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2490 return -EINVAL;
2491
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02002492 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002493 return -EINVAL;
2494
Jens Axboea4391c62014-06-05 15:21:56 -06002495 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2496 pr_info("blk-mq: reduced tag depth to %u\n",
2497 BLK_MQ_MAX_DEPTH);
2498 set->queue_depth = BLK_MQ_MAX_DEPTH;
2499 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002500
Shaohua Li6637fad2014-11-30 16:00:58 -08002501 /*
2502 * If a crashdump is active, then we are potentially in a very
2503 * memory constrained environment. Limit us to 1 queue and
2504 * 64 tags to prevent using too much memory.
2505 */
2506 if (is_kdump_kernel()) {
2507 set->nr_hw_queues = 1;
2508 set->queue_depth = min(64U, set->queue_depth);
2509 }
Keith Busch868f2f02015-12-17 17:08:14 -07002510 /*
2511 * There is no use for more h/w queues than cpus.
2512 */
2513 if (set->nr_hw_queues > nr_cpu_ids)
2514 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08002515
Keith Busch868f2f02015-12-17 17:08:14 -07002516 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002517 GFP_KERNEL, set->numa_node);
2518 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002519 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002520
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002521 ret = -ENOMEM;
2522 set->mq_map = kzalloc_node(sizeof(*set->mq_map) * nr_cpu_ids,
2523 GFP_KERNEL, set->numa_node);
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002524 if (!set->mq_map)
2525 goto out_free_tags;
2526
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002527 if (set->ops->map_queues)
2528 ret = set->ops->map_queues(set);
2529 else
2530 ret = blk_mq_map_queues(set);
2531 if (ret)
2532 goto out_free_mq_map;
2533
2534 ret = blk_mq_alloc_rq_maps(set);
2535 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002536 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002537
Jens Axboe0d2602c2014-05-13 15:10:52 -06002538 mutex_init(&set->tag_list_lock);
2539 INIT_LIST_HEAD(&set->tag_list);
2540
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002541 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002542
2543out_free_mq_map:
2544 kfree(set->mq_map);
2545 set->mq_map = NULL;
2546out_free_tags:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002547 kfree(set->tags);
2548 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02002549 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002550}
2551EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2552
2553void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2554{
2555 int i;
2556
Jens Axboecc71a6f2017-01-11 14:29:56 -07002557 for (i = 0; i < nr_cpu_ids; i++)
2558 blk_mq_free_map_and_requests(set, i);
Jens Axboe484b4062014-05-21 14:01:15 -06002559
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02002560 kfree(set->mq_map);
2561 set->mq_map = NULL;
2562
Ming Lei981bd182014-04-24 00:07:34 +08002563 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002564 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002565}
2566EXPORT_SYMBOL(blk_mq_free_tag_set);
2567
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002568int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2569{
2570 struct blk_mq_tag_set *set = q->tag_set;
2571 struct blk_mq_hw_ctx *hctx;
2572 int i, ret;
2573
Jens Axboebd166ef2017-01-17 06:03:22 -07002574 if (!set)
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002575 return -EINVAL;
2576
Jens Axboe70f36b62017-01-19 10:59:07 -07002577 blk_mq_freeze_queue(q);
2578 blk_mq_quiesce_queue(q);
2579
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002580 ret = 0;
2581 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07002582 if (!hctx->tags)
2583 continue;
Jens Axboebd166ef2017-01-17 06:03:22 -07002584 /*
2585 * If we're using an MQ scheduler, just update the scheduler
2586 * queue depth. This is similar to what the old code would do.
2587 */
Jens Axboe70f36b62017-01-19 10:59:07 -07002588 if (!hctx->sched_tags) {
2589 ret = blk_mq_tag_update_depth(hctx, &hctx->tags,
2590 min(nr, set->queue_depth),
2591 false);
2592 } else {
2593 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
2594 nr, true);
2595 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002596 if (ret)
2597 break;
2598 }
2599
2600 if (!ret)
2601 q->nr_requests = nr;
2602
Jens Axboe70f36b62017-01-19 10:59:07 -07002603 blk_mq_unfreeze_queue(q);
2604 blk_mq_start_stopped_hw_queues(q, true);
2605
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002606 return ret;
2607}
2608
Keith Busch868f2f02015-12-17 17:08:14 -07002609void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2610{
2611 struct request_queue *q;
2612
2613 if (nr_hw_queues > nr_cpu_ids)
2614 nr_hw_queues = nr_cpu_ids;
2615 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2616 return;
2617
2618 list_for_each_entry(q, &set->tag_list, tag_set_list)
2619 blk_mq_freeze_queue(q);
2620
2621 set->nr_hw_queues = nr_hw_queues;
2622 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2623 blk_mq_realloc_hw_ctxs(set, q);
2624
2625 if (q->nr_hw_queues > 1)
2626 blk_queue_make_request(q, blk_mq_make_request);
2627 else
2628 blk_queue_make_request(q, blk_sq_make_request);
2629
2630 blk_mq_queue_reinit(q, cpu_online_mask);
2631 }
2632
2633 list_for_each_entry(q, &set->tag_list, tag_set_list)
2634 blk_mq_unfreeze_queue(q);
2635}
2636EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2637
Jens Axboe64f1c212016-11-14 13:03:03 -07002638static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
2639 struct blk_mq_hw_ctx *hctx,
2640 struct request *rq)
2641{
2642 struct blk_rq_stat stat[2];
2643 unsigned long ret = 0;
2644
2645 /*
2646 * If stats collection isn't on, don't sleep but turn it on for
2647 * future users
2648 */
2649 if (!blk_stat_enable(q))
2650 return 0;
2651
2652 /*
2653 * We don't have to do this once per IO, should optimize this
2654 * to just use the current window of stats until it changes
2655 */
2656 memset(&stat, 0, sizeof(stat));
2657 blk_hctx_stat_get(hctx, stat);
2658
2659 /*
2660 * As an optimistic guess, use half of the mean service time
2661 * for this type of request. We can (and should) make this smarter.
2662 * For instance, if the completion latencies are tight, we can
2663 * get closer than just half the mean. This is especially
2664 * important on devices where the completion latencies are longer
2665 * than ~10 usec.
2666 */
2667 if (req_op(rq) == REQ_OP_READ && stat[BLK_STAT_READ].nr_samples)
2668 ret = (stat[BLK_STAT_READ].mean + 1) / 2;
2669 else if (req_op(rq) == REQ_OP_WRITE && stat[BLK_STAT_WRITE].nr_samples)
2670 ret = (stat[BLK_STAT_WRITE].mean + 1) / 2;
2671
2672 return ret;
2673}
2674
Jens Axboe06426ad2016-11-14 13:01:59 -07002675static bool blk_mq_poll_hybrid_sleep(struct request_queue *q,
Jens Axboe64f1c212016-11-14 13:03:03 -07002676 struct blk_mq_hw_ctx *hctx,
Jens Axboe06426ad2016-11-14 13:01:59 -07002677 struct request *rq)
2678{
2679 struct hrtimer_sleeper hs;
2680 enum hrtimer_mode mode;
Jens Axboe64f1c212016-11-14 13:03:03 -07002681 unsigned int nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002682 ktime_t kt;
2683
Jens Axboe64f1c212016-11-14 13:03:03 -07002684 if (test_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags))
2685 return false;
2686
2687 /*
2688 * poll_nsec can be:
2689 *
2690 * -1: don't ever hybrid sleep
2691 * 0: use half of prev avg
2692 * >0: use this specific value
2693 */
2694 if (q->poll_nsec == -1)
2695 return false;
2696 else if (q->poll_nsec > 0)
2697 nsecs = q->poll_nsec;
2698 else
2699 nsecs = blk_mq_poll_nsecs(q, hctx, rq);
2700
2701 if (!nsecs)
Jens Axboe06426ad2016-11-14 13:01:59 -07002702 return false;
2703
2704 set_bit(REQ_ATOM_POLL_SLEPT, &rq->atomic_flags);
2705
2706 /*
2707 * This will be replaced with the stats tracking code, using
2708 * 'avg_completion_time / 2' as the pre-sleep target.
2709 */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01002710 kt = nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07002711
2712 mode = HRTIMER_MODE_REL;
2713 hrtimer_init_on_stack(&hs.timer, CLOCK_MONOTONIC, mode);
2714 hrtimer_set_expires(&hs.timer, kt);
2715
2716 hrtimer_init_sleeper(&hs, current);
2717 do {
2718 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
2719 break;
2720 set_current_state(TASK_UNINTERRUPTIBLE);
2721 hrtimer_start_expires(&hs.timer, mode);
2722 if (hs.task)
2723 io_schedule();
2724 hrtimer_cancel(&hs.timer);
2725 mode = HRTIMER_MODE_ABS;
2726 } while (hs.task && !signal_pending(current));
2727
2728 __set_current_state(TASK_RUNNING);
2729 destroy_hrtimer_on_stack(&hs.timer);
2730 return true;
2731}
2732
Jens Axboebbd7bb72016-11-04 09:34:34 -06002733static bool __blk_mq_poll(struct blk_mq_hw_ctx *hctx, struct request *rq)
2734{
2735 struct request_queue *q = hctx->queue;
2736 long state;
2737
Jens Axboe06426ad2016-11-14 13:01:59 -07002738 /*
2739 * If we sleep, have the caller restart the poll loop to reset
2740 * the state. Like for the other success return cases, the
2741 * caller is responsible for checking if the IO completed. If
2742 * the IO isn't complete, we'll get called again and will go
2743 * straight to the busy poll loop.
2744 */
Jens Axboe64f1c212016-11-14 13:03:03 -07002745 if (blk_mq_poll_hybrid_sleep(q, hctx, rq))
Jens Axboe06426ad2016-11-14 13:01:59 -07002746 return true;
2747
Jens Axboebbd7bb72016-11-04 09:34:34 -06002748 hctx->poll_considered++;
2749
2750 state = current->state;
2751 while (!need_resched()) {
2752 int ret;
2753
2754 hctx->poll_invoked++;
2755
2756 ret = q->mq_ops->poll(hctx, rq->tag);
2757 if (ret > 0) {
2758 hctx->poll_success++;
2759 set_current_state(TASK_RUNNING);
2760 return true;
2761 }
2762
2763 if (signal_pending_state(state, current))
2764 set_current_state(TASK_RUNNING);
2765
2766 if (current->state == TASK_RUNNING)
2767 return true;
2768 if (ret < 0)
2769 break;
2770 cpu_relax();
2771 }
2772
2773 return false;
2774}
2775
2776bool blk_mq_poll(struct request_queue *q, blk_qc_t cookie)
2777{
2778 struct blk_mq_hw_ctx *hctx;
2779 struct blk_plug *plug;
2780 struct request *rq;
2781
2782 if (!q->mq_ops || !q->mq_ops->poll || !blk_qc_t_valid(cookie) ||
2783 !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
2784 return false;
2785
2786 plug = current->plug;
2787 if (plug)
2788 blk_flush_plug_list(plug, false);
2789
2790 hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
Jens Axboebd166ef2017-01-17 06:03:22 -07002791 if (!blk_qc_t_is_internal(cookie))
2792 rq = blk_mq_tag_to_rq(hctx->tags, blk_qc_t_to_tag(cookie));
2793 else
2794 rq = blk_mq_tag_to_rq(hctx->sched_tags, blk_qc_t_to_tag(cookie));
Jens Axboebbd7bb72016-11-04 09:34:34 -06002795
2796 return __blk_mq_poll(hctx, rq);
2797}
2798EXPORT_SYMBOL_GPL(blk_mq_poll);
2799
Jens Axboe676141e2014-03-20 13:29:18 -06002800void blk_mq_disable_hotplug(void)
2801{
2802 mutex_lock(&all_q_mutex);
2803}
2804
2805void blk_mq_enable_hotplug(void)
2806{
2807 mutex_unlock(&all_q_mutex);
2808}
2809
Jens Axboe320ae512013-10-24 09:20:05 +01002810static int __init blk_mq_init(void)
2811{
Omar Sandoval07e4fea2017-01-25 08:06:40 -08002812 blk_mq_debugfs_init();
2813
Thomas Gleixner9467f852016-09-22 08:05:17 -06002814 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
2815 blk_mq_hctx_notify_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002816
Sebastian Andrzej Siewior65d52912016-09-22 08:05:19 -06002817 cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare",
2818 blk_mq_queue_reinit_prepare,
2819 blk_mq_queue_reinit_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01002820 return 0;
2821}
2822subsys_initcall(blk_mq_init);