blob: e11f5f8e0313e08b5fd4ec11a1fd25cfbc872477 [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>
12#include <linux/mm.h>
13#include <linux/init.h>
14#include <linux/slab.h>
15#include <linux/workqueue.h>
16#include <linux/smp.h>
17#include <linux/llist.h>
18#include <linux/list_sort.h>
19#include <linux/cpu.h>
20#include <linux/cache.h>
21#include <linux/sched/sysctl.h>
22#include <linux/delay.h>
23
24#include <trace/events/block.h>
25
26#include <linux/blk-mq.h>
27#include "blk.h"
28#include "blk-mq.h"
29#include "blk-mq-tag.h"
30
31static DEFINE_MUTEX(all_q_mutex);
32static LIST_HEAD(all_q_list);
33
34static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx);
35
Jens Axboe320ae512013-10-24 09:20:05 +010036/*
37 * Check if any of the ctx's have pending work in this hardware queue
38 */
39static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
40{
41 unsigned int i;
42
Jens Axboe1429d7c2014-05-19 09:23:55 -060043 for (i = 0; i < hctx->ctx_map.map_size; i++)
44 if (hctx->ctx_map.map[i].word)
Jens Axboe320ae512013-10-24 09:20:05 +010045 return true;
46
47 return false;
48}
49
Jens Axboe1429d7c2014-05-19 09:23:55 -060050static inline struct blk_align_bitmap *get_bm(struct blk_mq_hw_ctx *hctx,
51 struct blk_mq_ctx *ctx)
52{
53 return &hctx->ctx_map.map[ctx->index_hw / hctx->ctx_map.bits_per_word];
54}
55
56#define CTX_TO_BIT(hctx, ctx) \
57 ((ctx)->index_hw & ((hctx)->ctx_map.bits_per_word - 1))
58
Jens Axboe320ae512013-10-24 09:20:05 +010059/*
60 * Mark this ctx as having pending work in this hardware queue
61 */
62static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
63 struct blk_mq_ctx *ctx)
64{
Jens Axboe1429d7c2014-05-19 09:23:55 -060065 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
66
67 if (!test_bit(CTX_TO_BIT(hctx, ctx), &bm->word))
68 set_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
69}
70
71static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
72 struct blk_mq_ctx *ctx)
73{
74 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
75
76 clear_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
Jens Axboe320ae512013-10-24 09:20:05 +010077}
78
Jens Axboe320ae512013-10-24 09:20:05 +010079static int blk_mq_queue_enter(struct request_queue *q)
80{
81 int ret;
82
83 __percpu_counter_add(&q->mq_usage_counter, 1, 1000000);
84 smp_wmb();
Keith Busch3b632cf2014-06-06 10:22:07 -060085
86 /* we have problems freezing the queue if it's initializing */
87 if (!blk_queue_dying(q) &&
88 (!blk_queue_bypass(q) || !blk_queue_init_done(q)))
Jens Axboe320ae512013-10-24 09:20:05 +010089 return 0;
90
91 __percpu_counter_add(&q->mq_usage_counter, -1, 1000000);
92
93 spin_lock_irq(q->queue_lock);
94 ret = wait_event_interruptible_lock_irq(q->mq_freeze_wq,
Ming Lei43a5e4e2013-12-26 21:31:35 +080095 !blk_queue_bypass(q) || blk_queue_dying(q),
96 *q->queue_lock);
Jens Axboe320ae512013-10-24 09:20:05 +010097 /* inc usage with lock hold to avoid freeze_queue runs here */
Ming Lei43a5e4e2013-12-26 21:31:35 +080098 if (!ret && !blk_queue_dying(q))
Jens Axboe320ae512013-10-24 09:20:05 +010099 __percpu_counter_add(&q->mq_usage_counter, 1, 1000000);
Ming Lei43a5e4e2013-12-26 21:31:35 +0800100 else if (blk_queue_dying(q))
101 ret = -ENODEV;
Jens Axboe320ae512013-10-24 09:20:05 +0100102 spin_unlock_irq(q->queue_lock);
103
104 return ret;
105}
106
107static void blk_mq_queue_exit(struct request_queue *q)
108{
109 __percpu_counter_add(&q->mq_usage_counter, -1, 1000000);
110}
111
Ming Lei43a5e4e2013-12-26 21:31:35 +0800112static void __blk_mq_drain_queue(struct request_queue *q)
113{
114 while (true) {
115 s64 count;
116
117 spin_lock_irq(q->queue_lock);
118 count = percpu_counter_sum(&q->mq_usage_counter);
119 spin_unlock_irq(q->queue_lock);
120
121 if (count == 0)
122 break;
123 blk_mq_run_queues(q, false);
124 msleep(10);
125 }
126}
127
Jens Axboe320ae512013-10-24 09:20:05 +0100128/*
129 * Guarantee no request is in use, so we can change any data structure of
130 * the queue afterward.
131 */
132static void blk_mq_freeze_queue(struct request_queue *q)
133{
134 bool drain;
135
136 spin_lock_irq(q->queue_lock);
137 drain = !q->bypass_depth++;
138 queue_flag_set(QUEUE_FLAG_BYPASS, q);
139 spin_unlock_irq(q->queue_lock);
140
Ming Lei43a5e4e2013-12-26 21:31:35 +0800141 if (drain)
142 __blk_mq_drain_queue(q);
143}
Jens Axboe320ae512013-10-24 09:20:05 +0100144
Ming Lei43a5e4e2013-12-26 21:31:35 +0800145void blk_mq_drain_queue(struct request_queue *q)
146{
147 __blk_mq_drain_queue(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100148}
149
150static void blk_mq_unfreeze_queue(struct request_queue *q)
151{
152 bool wake = false;
153
154 spin_lock_irq(q->queue_lock);
155 if (!--q->bypass_depth) {
156 queue_flag_clear(QUEUE_FLAG_BYPASS, q);
157 wake = true;
158 }
159 WARN_ON_ONCE(q->bypass_depth < 0);
160 spin_unlock_irq(q->queue_lock);
161 if (wake)
162 wake_up_all(&q->mq_freeze_wq);
163}
164
165bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
166{
167 return blk_mq_has_free_tags(hctx->tags);
168}
169EXPORT_SYMBOL(blk_mq_can_queue);
170
Jens Axboe94eddfb2013-11-19 09:25:07 -0700171static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
172 struct request *rq, unsigned int rw_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100173{
Jens Axboe94eddfb2013-11-19 09:25:07 -0700174 if (blk_queue_io_stat(q))
175 rw_flags |= REQ_IO_STAT;
176
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200177 INIT_LIST_HEAD(&rq->queuelist);
178 /* csd/requeue_work/fifo_time is initialized before use */
179 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100180 rq->mq_ctx = ctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600181 rq->cmd_flags |= rw_flags;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200182 /* do not touch atomic flags, it needs atomic ops against the timer */
183 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200184 INIT_HLIST_NODE(&rq->hash);
185 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200186 rq->rq_disk = NULL;
187 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600188 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200189#ifdef CONFIG_BLK_CGROUP
190 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700191 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200192 rq->io_start_time_ns = 0;
193#endif
194 rq->nr_phys_segments = 0;
195#if defined(CONFIG_BLK_DEV_INTEGRITY)
196 rq->nr_integrity_segments = 0;
197#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200198 rq->special = NULL;
199 /* tag was already set */
200 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200201
202 rq->extra_len = 0;
203 rq->sense_len = 0;
204 rq->resid_len = 0;
205 rq->sense = NULL;
206
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200207 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600208 rq->timeout = 0;
209
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200210 rq->end_io = NULL;
211 rq->end_io_data = NULL;
212 rq->next_rq = NULL;
213
Jens Axboe320ae512013-10-24 09:20:05 +0100214 ctx->rq_dispatched[rw_is_sync(rw_flags)]++;
215}
216
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200217static struct request *
Ming Leicb96a422014-06-01 00:43:37 +0800218__blk_mq_alloc_request(struct blk_mq_alloc_data *data, int rw)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200219{
220 struct request *rq;
221 unsigned int tag;
222
Ming Leicb96a422014-06-01 00:43:37 +0800223 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200224 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a422014-06-01 00:43:37 +0800225 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200226
227 rq->cmd_flags = 0;
Ming Leicb96a422014-06-01 00:43:37 +0800228 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200229 rq->cmd_flags = REQ_MQ_INFLIGHT;
Ming Leicb96a422014-06-01 00:43:37 +0800230 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200231 }
232
233 rq->tag = tag;
Ming Leicb96a422014-06-01 00:43:37 +0800234 blk_mq_rq_ctx_init(data->q, data->ctx, rq, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200235 return rq;
236 }
237
238 return NULL;
239}
240
Christoph Hellwig4ce01dd2014-05-27 20:59:46 +0200241struct request *blk_mq_alloc_request(struct request_queue *q, int rw, gfp_t gfp,
242 bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100243{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200244 struct blk_mq_ctx *ctx;
245 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100246 struct request *rq;
Ming Leicb96a422014-06-01 00:43:37 +0800247 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +0100248
249 if (blk_mq_queue_enter(q))
250 return NULL;
251
Christoph Hellwigd8525642014-05-27 20:59:50 +0200252 ctx = blk_mq_get_ctx(q);
253 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +0800254 blk_mq_set_alloc_data(&alloc_data, q, gfp & ~__GFP_WAIT,
255 reserved, ctx, hctx);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200256
Ming Leicb96a422014-06-01 00:43:37 +0800257 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200258 if (!rq && (gfp & __GFP_WAIT)) {
259 __blk_mq_run_hw_queue(hctx);
260 blk_mq_put_ctx(ctx);
261
262 ctx = blk_mq_get_ctx(q);
263 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +0800264 blk_mq_set_alloc_data(&alloc_data, q, gfp, reserved, ctx,
265 hctx);
266 rq = __blk_mq_alloc_request(&alloc_data, rw);
267 ctx = alloc_data.ctx;
Christoph Hellwigd8525642014-05-27 20:59:50 +0200268 }
269 blk_mq_put_ctx(ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100270 return rq;
271}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600272EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100273
Jens Axboe320ae512013-10-24 09:20:05 +0100274static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
275 struct blk_mq_ctx *ctx, struct request *rq)
276{
277 const int tag = rq->tag;
278 struct request_queue *q = rq->q;
279
Jens Axboe0d2602c2014-05-13 15:10:52 -0600280 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
281 atomic_dec(&hctx->nr_active);
282
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200283 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600284 blk_mq_put_tag(hctx, tag, &ctx->last_tag);
Jens Axboe320ae512013-10-24 09:20:05 +0100285 blk_mq_queue_exit(q);
286}
287
288void blk_mq_free_request(struct request *rq)
289{
290 struct blk_mq_ctx *ctx = rq->mq_ctx;
291 struct blk_mq_hw_ctx *hctx;
292 struct request_queue *q = rq->q;
293
294 ctx->rq_completed[rq_is_sync(rq)]++;
295
296 hctx = q->mq_ops->map_queue(q, ctx->cpu);
297 __blk_mq_free_request(hctx, ctx, rq);
298}
299
Christoph Hellwig8727af42014-04-14 10:30:08 +0200300/*
301 * Clone all relevant state from a request that has been put on hold in
302 * the flush state machine into the preallocated flush request that hangs
303 * off the request queue.
304 *
305 * For a driver the flush request should be invisible, that's why we are
306 * impersonating the original request here.
307 */
308void blk_mq_clone_flush_request(struct request *flush_rq,
309 struct request *orig_rq)
310{
311 struct blk_mq_hw_ctx *hctx =
312 orig_rq->q->mq_ops->map_queue(orig_rq->q, orig_rq->mq_ctx->cpu);
313
314 flush_rq->mq_ctx = orig_rq->mq_ctx;
315 flush_rq->tag = orig_rq->tag;
316 memcpy(blk_mq_rq_to_pdu(flush_rq), blk_mq_rq_to_pdu(orig_rq),
317 hctx->cmd_size);
318}
319
Christoph Hellwig63151a42014-04-16 09:44:52 +0200320inline void __blk_mq_end_io(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100321{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700322 blk_account_io_done(rq);
323
Christoph Hellwig91b63632014-04-16 09:44:53 +0200324 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100325 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200326 } else {
327 if (unlikely(blk_bidi_rq(rq)))
328 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100329 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200330 }
Jens Axboe320ae512013-10-24 09:20:05 +0100331}
Christoph Hellwig63151a42014-04-16 09:44:52 +0200332EXPORT_SYMBOL(__blk_mq_end_io);
333
334void blk_mq_end_io(struct request *rq, int error)
335{
336 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
337 BUG();
338 __blk_mq_end_io(rq, error);
339}
340EXPORT_SYMBOL(blk_mq_end_io);
Jens Axboe320ae512013-10-24 09:20:05 +0100341
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800342static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100343{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800344 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100345
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800346 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100347}
348
Jens Axboeed851862014-05-30 21:20:50 -0600349static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100350{
351 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700352 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100353 int cpu;
354
Christoph Hellwig38535202014-04-25 02:32:53 -0700355 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800356 rq->q->softirq_done_fn(rq);
357 return;
358 }
Jens Axboe320ae512013-10-24 09:20:05 +0100359
360 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700361 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
362 shared = cpus_share_cache(cpu, ctx->cpu);
363
364 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800365 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800366 rq->csd.info = rq;
367 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100368 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800369 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800370 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800371 }
Jens Axboe320ae512013-10-24 09:20:05 +0100372 put_cpu();
373}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800374
Jens Axboeed851862014-05-30 21:20:50 -0600375void __blk_mq_complete_request(struct request *rq)
376{
377 struct request_queue *q = rq->q;
378
379 if (!q->softirq_done_fn)
380 blk_mq_end_io(rq, rq->errors);
381 else
382 blk_mq_ipi_complete_request(rq);
383}
384
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800385/**
386 * blk_mq_complete_request - end I/O on a request
387 * @rq: the request being processed
388 *
389 * Description:
390 * Ends all I/O on a request. It does not handle partial completions.
391 * The actual completion happens out-of-order, through a IPI handler.
392 **/
393void blk_mq_complete_request(struct request *rq)
394{
Jens Axboe95f09682014-05-27 17:46:48 -0600395 struct request_queue *q = rq->q;
396
397 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800398 return;
Jens Axboeed851862014-05-30 21:20:50 -0600399 if (!blk_mark_rq_complete(rq))
400 __blk_mq_complete_request(rq);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800401}
402EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100403
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800404static void blk_mq_start_request(struct request *rq, bool last)
Jens Axboe320ae512013-10-24 09:20:05 +0100405{
406 struct request_queue *q = rq->q;
407
408 trace_block_rq_issue(q, rq);
409
Christoph Hellwig742ee692014-04-14 10:30:06 +0200410 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200411 if (unlikely(blk_bidi_rq(rq)))
412 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200413
Ming Lei2b8393b2014-06-10 00:16:41 +0800414 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600415
416 /*
417 * Mark us as started and clear complete. Complete might have been
418 * set if requeue raced with timeout, which then marked it as
419 * complete. So be sure to clear complete again when we start
420 * the request, otherwise we'll ignore the completion event.
421 */
Jens Axboe4b570522014-05-29 11:00:11 -0600422 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
423 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
424 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
425 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800426
427 if (q->dma_drain_size && blk_rq_bytes(rq)) {
428 /*
429 * Make sure space for the drain appears. We know we can do
430 * this because max_hw_segments has been adjusted to be one
431 * fewer than the device can handle.
432 */
433 rq->nr_phys_segments++;
434 }
435
436 /*
437 * Flag the last request in the series so that drivers know when IO
438 * should be kicked off, if they don't do it on a per-request basis.
439 *
440 * Note: the flag isn't the only condition drivers should do kick off.
441 * If drive is busy, the last request might not have the bit set.
442 */
443 if (last)
444 rq->cmd_flags |= REQ_END;
Jens Axboe320ae512013-10-24 09:20:05 +0100445}
446
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200447static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100448{
449 struct request_queue *q = rq->q;
450
451 trace_block_rq_requeue(q, rq);
452 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800453
454 rq->cmd_flags &= ~REQ_END;
455
456 if (q->dma_drain_size && blk_rq_bytes(rq))
457 rq->nr_phys_segments--;
Jens Axboe320ae512013-10-24 09:20:05 +0100458}
459
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200460void blk_mq_requeue_request(struct request *rq)
461{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200462 __blk_mq_requeue_request(rq);
463 blk_clear_rq_complete(rq);
464
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200465 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600466 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200467}
468EXPORT_SYMBOL(blk_mq_requeue_request);
469
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600470static void blk_mq_requeue_work(struct work_struct *work)
471{
472 struct request_queue *q =
473 container_of(work, struct request_queue, requeue_work);
474 LIST_HEAD(rq_list);
475 struct request *rq, *next;
476 unsigned long flags;
477
478 spin_lock_irqsave(&q->requeue_lock, flags);
479 list_splice_init(&q->requeue_list, &rq_list);
480 spin_unlock_irqrestore(&q->requeue_lock, flags);
481
482 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
483 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
484 continue;
485
486 rq->cmd_flags &= ~REQ_SOFTBARRIER;
487 list_del_init(&rq->queuelist);
488 blk_mq_insert_request(rq, true, false, false);
489 }
490
491 while (!list_empty(&rq_list)) {
492 rq = list_entry(rq_list.next, struct request, queuelist);
493 list_del_init(&rq->queuelist);
494 blk_mq_insert_request(rq, false, false, false);
495 }
496
497 blk_mq_run_queues(q, false);
498}
499
500void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
501{
502 struct request_queue *q = rq->q;
503 unsigned long flags;
504
505 /*
506 * We abuse this flag that is otherwise used by the I/O scheduler to
507 * request head insertation from the workqueue.
508 */
509 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
510
511 spin_lock_irqsave(&q->requeue_lock, flags);
512 if (at_head) {
513 rq->cmd_flags |= REQ_SOFTBARRIER;
514 list_add(&rq->queuelist, &q->requeue_list);
515 } else {
516 list_add_tail(&rq->queuelist, &q->requeue_list);
517 }
518 spin_unlock_irqrestore(&q->requeue_lock, flags);
519}
520EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
521
522void blk_mq_kick_requeue_list(struct request_queue *q)
523{
524 kblockd_schedule_work(&q->requeue_work);
525}
526EXPORT_SYMBOL(blk_mq_kick_requeue_list);
527
Jens Axboe0e62f512014-06-04 10:23:49 -0600528static inline bool is_flush_request(struct request *rq, unsigned int tag)
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600529{
Jens Axboe0e62f512014-06-04 10:23:49 -0600530 return ((rq->cmd_flags & REQ_FLUSH_SEQ) &&
531 rq->q->flush_rq->tag == tag);
532}
Shaohua Li22302372014-05-30 08:06:42 -0600533
Jens Axboe0e62f512014-06-04 10:23:49 -0600534struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
535{
536 struct request *rq = tags->rqs[tag];
Shaohua Li22302372014-05-30 08:06:42 -0600537
Jens Axboe0e62f512014-06-04 10:23:49 -0600538 if (!is_flush_request(rq, tag))
539 return rq;
540
541 return rq->q->flush_rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600542}
543EXPORT_SYMBOL(blk_mq_tag_to_rq);
544
Jens Axboe320ae512013-10-24 09:20:05 +0100545struct blk_mq_timeout_data {
546 struct blk_mq_hw_ctx *hctx;
547 unsigned long *next;
548 unsigned int *next_set;
549};
550
551static void blk_mq_timeout_check(void *__data, unsigned long *free_tags)
552{
553 struct blk_mq_timeout_data *data = __data;
554 struct blk_mq_hw_ctx *hctx = data->hctx;
555 unsigned int tag;
556
557 /* It may not be in flight yet (this is where
558 * the REQ_ATOMIC_STARTED flag comes in). The requests are
559 * statically allocated, so we know it's always safe to access the
560 * memory associated with a bit offset into ->rqs[].
561 */
562 tag = 0;
563 do {
564 struct request *rq;
565
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600566 tag = find_next_zero_bit(free_tags, hctx->tags->nr_tags, tag);
567 if (tag >= hctx->tags->nr_tags)
Jens Axboe320ae512013-10-24 09:20:05 +0100568 break;
569
Jens Axboe0e62f512014-06-04 10:23:49 -0600570 rq = blk_mq_tag_to_rq(hctx->tags, tag++);
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600571 if (rq->q != hctx->queue)
572 continue;
Jens Axboe320ae512013-10-24 09:20:05 +0100573 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
574 continue;
575
576 blk_rq_check_expired(rq, data->next, data->next_set);
577 } while (1);
578}
579
580static void blk_mq_hw_ctx_check_timeout(struct blk_mq_hw_ctx *hctx,
581 unsigned long *next,
582 unsigned int *next_set)
583{
584 struct blk_mq_timeout_data data = {
585 .hctx = hctx,
586 .next = next,
587 .next_set = next_set,
588 };
589
590 /*
591 * Ask the tagging code to iterate busy requests, so we can
592 * check them for timeout.
593 */
594 blk_mq_tag_busy_iter(hctx->tags, blk_mq_timeout_check, &data);
595}
596
Jens Axboe87ee7b12014-04-24 08:51:47 -0600597static enum blk_eh_timer_return blk_mq_rq_timed_out(struct request *rq)
598{
599 struct request_queue *q = rq->q;
600
601 /*
602 * We know that complete is set at this point. If STARTED isn't set
603 * anymore, then the request isn't active and the "timeout" should
604 * just be ignored. This can happen due to the bitflag ordering.
605 * Timeout first checks if STARTED is set, and if it is, assumes
606 * the request is active. But if we race with completion, then
607 * we both flags will get cleared. So check here again, and ignore
608 * a timeout event with a request that isn't active.
609 */
610 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
611 return BLK_EH_NOT_HANDLED;
612
613 if (!q->mq_ops->timeout)
614 return BLK_EH_RESET_TIMER;
615
616 return q->mq_ops->timeout(rq);
617}
618
Jens Axboe320ae512013-10-24 09:20:05 +0100619static void blk_mq_rq_timer(unsigned long data)
620{
621 struct request_queue *q = (struct request_queue *) data;
622 struct blk_mq_hw_ctx *hctx;
623 unsigned long next = 0;
624 int i, next_set = 0;
625
Jens Axboe484b4062014-05-21 14:01:15 -0600626 queue_for_each_hw_ctx(q, hctx, i) {
627 /*
628 * If not software queues are currently mapped to this
629 * hardware queue, there's nothing to check
630 */
631 if (!hctx->nr_ctx || !hctx->tags)
632 continue;
633
Jens Axboe320ae512013-10-24 09:20:05 +0100634 blk_mq_hw_ctx_check_timeout(hctx, &next, &next_set);
Jens Axboe484b4062014-05-21 14:01:15 -0600635 }
Jens Axboe320ae512013-10-24 09:20:05 +0100636
Jens Axboe0d2602c2014-05-13 15:10:52 -0600637 if (next_set) {
638 next = blk_rq_timeout(round_jiffies_up(next));
639 mod_timer(&q->timeout, next);
640 } else {
641 queue_for_each_hw_ctx(q, hctx, i)
642 blk_mq_tag_idle(hctx);
643 }
Jens Axboe320ae512013-10-24 09:20:05 +0100644}
645
646/*
647 * Reverse check our software queue for entries that we could potentially
648 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
649 * too much time checking for merges.
650 */
651static bool blk_mq_attempt_merge(struct request_queue *q,
652 struct blk_mq_ctx *ctx, struct bio *bio)
653{
654 struct request *rq;
655 int checked = 8;
656
657 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
658 int el_ret;
659
660 if (!checked--)
661 break;
662
663 if (!blk_rq_merge_ok(rq, bio))
664 continue;
665
666 el_ret = blk_try_merge(rq, bio);
667 if (el_ret == ELEVATOR_BACK_MERGE) {
668 if (bio_attempt_back_merge(q, rq, bio)) {
669 ctx->rq_merged++;
670 return true;
671 }
672 break;
673 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
674 if (bio_attempt_front_merge(q, rq, bio)) {
675 ctx->rq_merged++;
676 return true;
677 }
678 break;
679 }
680 }
681
682 return false;
683}
684
Jens Axboe320ae512013-10-24 09:20:05 +0100685/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600686 * Process software queues that have been marked busy, splicing them
687 * to the for-dispatch
688 */
689static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
690{
691 struct blk_mq_ctx *ctx;
692 int i;
693
694 for (i = 0; i < hctx->ctx_map.map_size; i++) {
695 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
696 unsigned int off, bit;
697
698 if (!bm->word)
699 continue;
700
701 bit = 0;
702 off = i * hctx->ctx_map.bits_per_word;
703 do {
704 bit = find_next_bit(&bm->word, bm->depth, bit);
705 if (bit >= bm->depth)
706 break;
707
708 ctx = hctx->ctxs[bit + off];
709 clear_bit(bit, &bm->word);
710 spin_lock(&ctx->lock);
711 list_splice_tail_init(&ctx->rq_list, list);
712 spin_unlock(&ctx->lock);
713
714 bit++;
715 } while (1);
716 }
717}
718
719/*
Jens Axboe320ae512013-10-24 09:20:05 +0100720 * Run this hardware queue, pulling any software queues mapped to it in.
721 * Note that this function currently has various problems around ordering
722 * of IO. In particular, we'd like FIFO behaviour on handling existing
723 * items on the hctx->dispatch list. Ignore that for now.
724 */
725static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
726{
727 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100728 struct request *rq;
729 LIST_HEAD(rq_list);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600730 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100731
Jens Axboefd1270d2014-04-16 09:23:48 -0600732 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
Jens Axboee4043dc2014-04-09 10:18:23 -0600733
Jens Axboe5d12f902014-03-19 15:25:02 -0600734 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100735 return;
736
737 hctx->run++;
738
739 /*
740 * Touch any software queue that has pending entries.
741 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600742 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100743
744 /*
745 * If we have previous entries on our dispatch list, grab them
746 * and stuff them at the front for more fair dispatch.
747 */
748 if (!list_empty_careful(&hctx->dispatch)) {
749 spin_lock(&hctx->lock);
750 if (!list_empty(&hctx->dispatch))
751 list_splice_init(&hctx->dispatch, &rq_list);
752 spin_unlock(&hctx->lock);
753 }
754
755 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100756 * Now process all the entries, sending them to the driver.
757 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600758 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100759 while (!list_empty(&rq_list)) {
760 int ret;
761
762 rq = list_first_entry(&rq_list, struct request, queuelist);
763 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100764
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800765 blk_mq_start_request(rq, list_empty(&rq_list));
Jens Axboe320ae512013-10-24 09:20:05 +0100766
767 ret = q->mq_ops->queue_rq(hctx, rq);
768 switch (ret) {
769 case BLK_MQ_RQ_QUEUE_OK:
770 queued++;
771 continue;
772 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100773 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200774 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100775 break;
776 default:
777 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100778 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800779 rq->errors = -EIO;
Jens Axboe320ae512013-10-24 09:20:05 +0100780 blk_mq_end_io(rq, rq->errors);
781 break;
782 }
783
784 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
785 break;
786 }
787
788 if (!queued)
789 hctx->dispatched[0]++;
790 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
791 hctx->dispatched[ilog2(queued) + 1]++;
792
793 /*
794 * Any items that need requeuing? Stuff them into hctx->dispatch,
795 * that is where we will continue on next queue run.
796 */
797 if (!list_empty(&rq_list)) {
798 spin_lock(&hctx->lock);
799 list_splice(&rq_list, &hctx->dispatch);
800 spin_unlock(&hctx->lock);
801 }
802}
803
Jens Axboe506e9312014-05-07 10:26:44 -0600804/*
805 * It'd be great if the workqueue API had a way to pass
806 * in a mask and had some smarts for more clever placement.
807 * For now we just round-robin here, switching for every
808 * BLK_MQ_CPU_WORK_BATCH queued items.
809 */
810static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
811{
812 int cpu = hctx->next_cpu;
813
814 if (--hctx->next_cpu_batch <= 0) {
815 int next_cpu;
816
817 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
818 if (next_cpu >= nr_cpu_ids)
819 next_cpu = cpumask_first(hctx->cpumask);
820
821 hctx->next_cpu = next_cpu;
822 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
823 }
824
825 return cpu;
826}
827
Jens Axboe320ae512013-10-24 09:20:05 +0100828void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
829{
Jens Axboe5d12f902014-03-19 15:25:02 -0600830 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100831 return;
832
Jens Axboee4043dc2014-04-09 10:18:23 -0600833 if (!async && cpumask_test_cpu(smp_processor_id(), hctx->cpumask))
Jens Axboe320ae512013-10-24 09:20:05 +0100834 __blk_mq_run_hw_queue(hctx);
Jens Axboee4043dc2014-04-09 10:18:23 -0600835 else if (hctx->queue->nr_hw_queues == 1)
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600836 kblockd_schedule_delayed_work(&hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600837 else {
838 unsigned int cpu;
839
Jens Axboe506e9312014-05-07 10:26:44 -0600840 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600841 kblockd_schedule_delayed_work_on(cpu, &hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600842 }
Jens Axboe320ae512013-10-24 09:20:05 +0100843}
844
845void blk_mq_run_queues(struct request_queue *q, bool async)
846{
847 struct blk_mq_hw_ctx *hctx;
848 int i;
849
850 queue_for_each_hw_ctx(q, hctx, i) {
851 if ((!blk_mq_hctx_has_pending(hctx) &&
852 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600853 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100854 continue;
855
Jens Axboee4043dc2014-04-09 10:18:23 -0600856 preempt_disable();
Jens Axboe320ae512013-10-24 09:20:05 +0100857 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600858 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100859 }
860}
861EXPORT_SYMBOL(blk_mq_run_queues);
862
863void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
864{
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600865 cancel_delayed_work(&hctx->run_work);
866 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100867 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
868}
869EXPORT_SYMBOL(blk_mq_stop_hw_queue);
870
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100871void blk_mq_stop_hw_queues(struct request_queue *q)
872{
873 struct blk_mq_hw_ctx *hctx;
874 int i;
875
876 queue_for_each_hw_ctx(q, hctx, i)
877 blk_mq_stop_hw_queue(hctx);
878}
879EXPORT_SYMBOL(blk_mq_stop_hw_queues);
880
Jens Axboe320ae512013-10-24 09:20:05 +0100881void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
882{
883 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600884
885 preempt_disable();
Jens Axboe320ae512013-10-24 09:20:05 +0100886 __blk_mq_run_hw_queue(hctx);
Jens Axboee4043dc2014-04-09 10:18:23 -0600887 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100888}
889EXPORT_SYMBOL(blk_mq_start_hw_queue);
890
Christoph Hellwig2f268552014-04-16 09:44:56 +0200891void blk_mq_start_hw_queues(struct request_queue *q)
892{
893 struct blk_mq_hw_ctx *hctx;
894 int i;
895
896 queue_for_each_hw_ctx(q, hctx, i)
897 blk_mq_start_hw_queue(hctx);
898}
899EXPORT_SYMBOL(blk_mq_start_hw_queues);
900
901
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200902void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100903{
904 struct blk_mq_hw_ctx *hctx;
905 int i;
906
907 queue_for_each_hw_ctx(q, hctx, i) {
908 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
909 continue;
910
911 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600912 preempt_disable();
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200913 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600914 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100915 }
916}
917EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
918
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600919static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100920{
921 struct blk_mq_hw_ctx *hctx;
922
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600923 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600924
Jens Axboe320ae512013-10-24 09:20:05 +0100925 __blk_mq_run_hw_queue(hctx);
926}
927
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600928static void blk_mq_delay_work_fn(struct work_struct *work)
929{
930 struct blk_mq_hw_ctx *hctx;
931
932 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
933
934 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
935 __blk_mq_run_hw_queue(hctx);
936}
937
938void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
939{
940 unsigned long tmo = msecs_to_jiffies(msecs);
941
942 if (hctx->queue->nr_hw_queues == 1)
943 kblockd_schedule_delayed_work(&hctx->delay_work, tmo);
944 else {
945 unsigned int cpu;
946
Jens Axboe506e9312014-05-07 10:26:44 -0600947 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600948 kblockd_schedule_delayed_work_on(cpu, &hctx->delay_work, tmo);
949 }
950}
951EXPORT_SYMBOL(blk_mq_delay_queue);
952
Jens Axboe320ae512013-10-24 09:20:05 +0100953static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800954 struct request *rq, bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +0100955{
956 struct blk_mq_ctx *ctx = rq->mq_ctx;
957
Jens Axboe01b983c2013-11-19 18:59:10 -0700958 trace_block_rq_insert(hctx->queue, rq);
959
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800960 if (at_head)
961 list_add(&rq->queuelist, &ctx->rq_list);
962 else
963 list_add_tail(&rq->queuelist, &ctx->rq_list);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600964
Jens Axboe320ae512013-10-24 09:20:05 +0100965 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100966}
967
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600968void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
969 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100970{
971 struct request_queue *q = rq->q;
972 struct blk_mq_hw_ctx *hctx;
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600973 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100974
975 current_ctx = blk_mq_get_ctx(q);
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600976 if (!cpu_online(ctx->cpu))
977 rq->mq_ctx = ctx = current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100978
Jens Axboe320ae512013-10-24 09:20:05 +0100979 hctx = q->mq_ops->map_queue(q, ctx->cpu);
980
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600981 if (rq->cmd_flags & (REQ_FLUSH | REQ_FUA) &&
982 !(rq->cmd_flags & (REQ_FLUSH_SEQ))) {
983 blk_insert_flush(rq);
984 } else {
985 spin_lock(&ctx->lock);
986 __blk_mq_insert_request(hctx, rq, at_head);
987 spin_unlock(&ctx->lock);
988 }
Jens Axboe320ae512013-10-24 09:20:05 +0100989
Jens Axboe320ae512013-10-24 09:20:05 +0100990 if (run_queue)
991 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600992
993 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100994}
995
996static void blk_mq_insert_requests(struct request_queue *q,
997 struct blk_mq_ctx *ctx,
998 struct list_head *list,
999 int depth,
1000 bool from_schedule)
1001
1002{
1003 struct blk_mq_hw_ctx *hctx;
1004 struct blk_mq_ctx *current_ctx;
1005
1006 trace_block_unplug(q, depth, !from_schedule);
1007
1008 current_ctx = blk_mq_get_ctx(q);
1009
1010 if (!cpu_online(ctx->cpu))
1011 ctx = current_ctx;
1012 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1013
1014 /*
1015 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1016 * offline now
1017 */
1018 spin_lock(&ctx->lock);
1019 while (!list_empty(list)) {
1020 struct request *rq;
1021
1022 rq = list_first_entry(list, struct request, queuelist);
1023 list_del_init(&rq->queuelist);
1024 rq->mq_ctx = ctx;
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001025 __blk_mq_insert_request(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001026 }
1027 spin_unlock(&ctx->lock);
1028
Jens Axboe320ae512013-10-24 09:20:05 +01001029 blk_mq_run_hw_queue(hctx, from_schedule);
Jens Axboee4043dc2014-04-09 10:18:23 -06001030 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001031}
1032
1033static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1034{
1035 struct request *rqa = container_of(a, struct request, queuelist);
1036 struct request *rqb = container_of(b, struct request, queuelist);
1037
1038 return !(rqa->mq_ctx < rqb->mq_ctx ||
1039 (rqa->mq_ctx == rqb->mq_ctx &&
1040 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1041}
1042
1043void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1044{
1045 struct blk_mq_ctx *this_ctx;
1046 struct request_queue *this_q;
1047 struct request *rq;
1048 LIST_HEAD(list);
1049 LIST_HEAD(ctx_list);
1050 unsigned int depth;
1051
1052 list_splice_init(&plug->mq_list, &list);
1053
1054 list_sort(NULL, &list, plug_ctx_cmp);
1055
1056 this_q = NULL;
1057 this_ctx = NULL;
1058 depth = 0;
1059
1060 while (!list_empty(&list)) {
1061 rq = list_entry_rq(list.next);
1062 list_del_init(&rq->queuelist);
1063 BUG_ON(!rq->q);
1064 if (rq->mq_ctx != this_ctx) {
1065 if (this_ctx) {
1066 blk_mq_insert_requests(this_q, this_ctx,
1067 &ctx_list, depth,
1068 from_schedule);
1069 }
1070
1071 this_ctx = rq->mq_ctx;
1072 this_q = rq->q;
1073 depth = 0;
1074 }
1075
1076 depth++;
1077 list_add_tail(&rq->queuelist, &ctx_list);
1078 }
1079
1080 /*
1081 * If 'this_ctx' is set, we know we have entries to complete
1082 * on 'ctx_list'. Do those.
1083 */
1084 if (this_ctx) {
1085 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1086 from_schedule);
1087 }
1088}
1089
1090static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1091{
1092 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001093
Jens Axboe3ee32372014-06-09 09:36:53 -06001094 if (blk_do_io_stat(rq))
Jens Axboe4b570522014-05-29 11:00:11 -06001095 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001096}
1097
Jens Axboe07068d52014-05-22 10:40:51 -06001098static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1099 struct blk_mq_ctx *ctx,
1100 struct request *rq, struct bio *bio)
1101{
1102 struct request_queue *q = hctx->queue;
1103
1104 if (!(hctx->flags & BLK_MQ_F_SHOULD_MERGE)) {
1105 blk_mq_bio_to_request(rq, bio);
1106 spin_lock(&ctx->lock);
1107insert_rq:
1108 __blk_mq_insert_request(hctx, rq, false);
1109 spin_unlock(&ctx->lock);
1110 return false;
1111 } else {
1112 spin_lock(&ctx->lock);
1113 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1114 blk_mq_bio_to_request(rq, bio);
1115 goto insert_rq;
1116 }
1117
1118 spin_unlock(&ctx->lock);
1119 __blk_mq_free_request(hctx, ctx, rq);
1120 return true;
1121 }
1122}
1123
1124struct blk_map_ctx {
1125 struct blk_mq_hw_ctx *hctx;
1126 struct blk_mq_ctx *ctx;
1127};
1128
1129static struct request *blk_mq_map_request(struct request_queue *q,
1130 struct bio *bio,
1131 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001132{
1133 struct blk_mq_hw_ctx *hctx;
1134 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001135 struct request *rq;
Jens Axboe07068d52014-05-22 10:40:51 -06001136 int rw = bio_data_dir(bio);
Ming Leicb96a422014-06-01 00:43:37 +08001137 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001138
Jens Axboe07068d52014-05-22 10:40:51 -06001139 if (unlikely(blk_mq_queue_enter(q))) {
Nicholas Bellinger14ec77f2014-02-07 13:45:39 -07001140 bio_endio(bio, -EIO);
Jens Axboe07068d52014-05-22 10:40:51 -06001141 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001142 }
1143
1144 ctx = blk_mq_get_ctx(q);
1145 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1146
Jens Axboe07068d52014-05-22 10:40:51 -06001147 if (rw_is_sync(bio->bi_rw))
Shaohua Li27fbf4e2014-02-19 20:20:21 +08001148 rw |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001149
Jens Axboe320ae512013-10-24 09:20:05 +01001150 trace_block_getrq(q, bio, rw);
Ming Leicb96a422014-06-01 00:43:37 +08001151 blk_mq_set_alloc_data(&alloc_data, q, GFP_ATOMIC, false, ctx,
1152 hctx);
1153 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001154 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001155 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001156 blk_mq_put_ctx(ctx);
1157 trace_block_sleeprq(q, bio, rw);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001158
1159 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001160 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +08001161 blk_mq_set_alloc_data(&alloc_data, q,
1162 __GFP_WAIT|GFP_ATOMIC, false, ctx, hctx);
1163 rq = __blk_mq_alloc_request(&alloc_data, rw);
1164 ctx = alloc_data.ctx;
1165 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001166 }
1167
1168 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001169 data->hctx = hctx;
1170 data->ctx = ctx;
1171 return rq;
1172}
1173
1174/*
1175 * Multiple hardware queue variant. This will not use per-process plugs,
1176 * but will attempt to bypass the hctx queueing if we can go straight to
1177 * hardware for SYNC IO.
1178 */
1179static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1180{
1181 const int is_sync = rw_is_sync(bio->bi_rw);
1182 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1183 struct blk_map_ctx data;
1184 struct request *rq;
1185
1186 blk_queue_bounce(q, &bio);
1187
1188 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1189 bio_endio(bio, -EIO);
1190 return;
1191 }
1192
1193 rq = blk_mq_map_request(q, bio, &data);
1194 if (unlikely(!rq))
1195 return;
1196
1197 if (unlikely(is_flush_fua)) {
1198 blk_mq_bio_to_request(rq, bio);
1199 blk_insert_flush(rq);
1200 goto run_queue;
1201 }
1202
1203 if (is_sync) {
1204 int ret;
1205
1206 blk_mq_bio_to_request(rq, bio);
1207 blk_mq_start_request(rq, true);
1208
1209 /*
1210 * For OK queue, we are done. For error, kill it. Any other
1211 * error (busy), just add it to our list as we previously
1212 * would have done
1213 */
1214 ret = q->mq_ops->queue_rq(data.hctx, rq);
1215 if (ret == BLK_MQ_RQ_QUEUE_OK)
1216 goto done;
1217 else {
1218 __blk_mq_requeue_request(rq);
1219
1220 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1221 rq->errors = -EIO;
1222 blk_mq_end_io(rq, rq->errors);
1223 goto done;
1224 }
1225 }
1226 }
1227
1228 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1229 /*
1230 * For a SYNC request, send it to the hardware immediately. For
1231 * an ASYNC request, just ensure that we run it later on. The
1232 * latter allows for merging opportunities and more efficient
1233 * dispatching.
1234 */
1235run_queue:
1236 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1237 }
1238done:
1239 blk_mq_put_ctx(data.ctx);
1240}
1241
1242/*
1243 * Single hardware queue variant. This will attempt to use any per-process
1244 * plug for merging and IO deferral.
1245 */
1246static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1247{
1248 const int is_sync = rw_is_sync(bio->bi_rw);
1249 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1250 unsigned int use_plug, request_count = 0;
1251 struct blk_map_ctx data;
1252 struct request *rq;
1253
1254 /*
1255 * If we have multiple hardware queues, just go directly to
1256 * one of those for sync IO.
1257 */
1258 use_plug = !is_flush_fua && !is_sync;
1259
1260 blk_queue_bounce(q, &bio);
1261
1262 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1263 bio_endio(bio, -EIO);
1264 return;
1265 }
1266
1267 if (use_plug && !blk_queue_nomerges(q) &&
1268 blk_attempt_plug_merge(q, bio, &request_count))
1269 return;
1270
1271 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001272 if (unlikely(!rq))
1273 return;
Jens Axboe320ae512013-10-24 09:20:05 +01001274
1275 if (unlikely(is_flush_fua)) {
1276 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001277 blk_insert_flush(rq);
1278 goto run_queue;
1279 }
1280
1281 /*
1282 * A task plug currently exists. Since this is completely lockless,
1283 * utilize that to temporarily store requests until the task is
1284 * either done or scheduled away.
1285 */
1286 if (use_plug) {
1287 struct blk_plug *plug = current->plug;
1288
1289 if (plug) {
1290 blk_mq_bio_to_request(rq, bio);
Shaohua Li92f399c2013-10-29 12:01:03 -06001291 if (list_empty(&plug->mq_list))
Jens Axboe320ae512013-10-24 09:20:05 +01001292 trace_block_plug(q);
1293 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1294 blk_flush_plug_list(plug, false);
1295 trace_block_plug(q);
1296 }
1297 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe07068d52014-05-22 10:40:51 -06001298 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001299 return;
1300 }
1301 }
1302
Jens Axboe07068d52014-05-22 10:40:51 -06001303 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1304 /*
1305 * For a SYNC request, send it to the hardware immediately. For
1306 * an ASYNC request, just ensure that we run it later on. The
1307 * latter allows for merging opportunities and more efficient
1308 * dispatching.
1309 */
1310run_queue:
1311 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001312 }
1313
Jens Axboe07068d52014-05-22 10:40:51 -06001314 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001315}
1316
1317/*
1318 * Default mapping to a software queue, since we use one per CPU.
1319 */
1320struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1321{
1322 return q->queue_hw_ctx[q->mq_map[cpu]];
1323}
1324EXPORT_SYMBOL(blk_mq_map_queue);
1325
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001326static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1327 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001328{
1329 struct page *page;
1330
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001331 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001332 int i;
1333
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001334 for (i = 0; i < tags->nr_tags; i++) {
1335 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001336 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001337 set->ops->exit_request(set->driver_data, tags->rqs[i],
1338 hctx_idx, i);
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001339 }
1340 }
1341
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001342 while (!list_empty(&tags->page_list)) {
1343 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001344 list_del_init(&page->lru);
Jens Axboe320ae512013-10-24 09:20:05 +01001345 __free_pages(page, page->private);
1346 }
1347
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001348 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001349
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001350 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001351}
1352
1353static size_t order_to_size(unsigned int order)
1354{
Ming Lei4ca08502014-04-19 18:00:18 +08001355 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001356}
1357
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001358static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1359 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001360{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001361 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001362 unsigned int i, j, entries_per_page, max_order = 4;
1363 size_t rq_size, left;
1364
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001365 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1366 set->numa_node);
1367 if (!tags)
1368 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001369
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001370 INIT_LIST_HEAD(&tags->page_list);
1371
1372 tags->rqs = kmalloc_node(set->queue_depth * sizeof(struct request *),
1373 GFP_KERNEL, set->numa_node);
1374 if (!tags->rqs) {
1375 blk_mq_free_tags(tags);
1376 return NULL;
1377 }
Jens Axboe320ae512013-10-24 09:20:05 +01001378
1379 /*
1380 * rq_size is the size of the request plus driver payload, rounded
1381 * to the cacheline size
1382 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001383 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001384 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001385 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001386
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001387 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001388 int this_order = max_order;
1389 struct page *page;
1390 int to_do;
1391 void *p;
1392
1393 while (left < order_to_size(this_order - 1) && this_order)
1394 this_order--;
1395
1396 do {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001397 page = alloc_pages_node(set->numa_node, GFP_KERNEL,
1398 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001399 if (page)
1400 break;
1401 if (!this_order--)
1402 break;
1403 if (order_to_size(this_order) < rq_size)
1404 break;
1405 } while (1);
1406
1407 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001408 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001409
1410 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001411 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001412
1413 p = page_address(page);
1414 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001415 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001416 left -= to_do * rq_size;
1417 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001418 tags->rqs[i] = p;
1419 if (set->ops->init_request) {
1420 if (set->ops->init_request(set->driver_data,
1421 tags->rqs[i], hctx_idx, i,
1422 set->numa_node))
1423 goto fail;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001424 }
1425
Jens Axboe320ae512013-10-24 09:20:05 +01001426 p += rq_size;
1427 i++;
1428 }
1429 }
1430
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001431 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001432
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001433fail:
1434 pr_warn("%s: failed to allocate requests\n", __func__);
1435 blk_mq_free_rq_map(set, tags, hctx_idx);
1436 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001437}
1438
Jens Axboe1429d7c2014-05-19 09:23:55 -06001439static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1440{
1441 kfree(bitmap->map);
1442}
1443
1444static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1445{
1446 unsigned int bpw = 8, total, num_maps, i;
1447
1448 bitmap->bits_per_word = bpw;
1449
1450 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1451 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1452 GFP_KERNEL, node);
1453 if (!bitmap->map)
1454 return -ENOMEM;
1455
1456 bitmap->map_size = num_maps;
1457
1458 total = nr_cpu_ids;
1459 for (i = 0; i < num_maps; i++) {
1460 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1461 total -= bitmap->map[i].depth;
1462 }
1463
1464 return 0;
1465}
1466
Jens Axboe484b4062014-05-21 14:01:15 -06001467static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1468{
1469 struct request_queue *q = hctx->queue;
1470 struct blk_mq_ctx *ctx;
1471 LIST_HEAD(tmp);
1472
1473 /*
1474 * Move ctx entries to new CPU, if this one is going away.
1475 */
1476 ctx = __blk_mq_get_ctx(q, cpu);
1477
1478 spin_lock(&ctx->lock);
1479 if (!list_empty(&ctx->rq_list)) {
1480 list_splice_init(&ctx->rq_list, &tmp);
1481 blk_mq_hctx_clear_pending(hctx, ctx);
1482 }
1483 spin_unlock(&ctx->lock);
1484
1485 if (list_empty(&tmp))
1486 return NOTIFY_OK;
1487
1488 ctx = blk_mq_get_ctx(q);
1489 spin_lock(&ctx->lock);
1490
1491 while (!list_empty(&tmp)) {
1492 struct request *rq;
1493
1494 rq = list_first_entry(&tmp, struct request, queuelist);
1495 rq->mq_ctx = ctx;
1496 list_move_tail(&rq->queuelist, &ctx->rq_list);
1497 }
1498
1499 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1500 blk_mq_hctx_mark_pending(hctx, ctx);
1501
1502 spin_unlock(&ctx->lock);
1503
1504 blk_mq_run_hw_queue(hctx, true);
1505 blk_mq_put_ctx(ctx);
1506 return NOTIFY_OK;
1507}
1508
1509static int blk_mq_hctx_cpu_online(struct blk_mq_hw_ctx *hctx, int cpu)
1510{
1511 struct request_queue *q = hctx->queue;
1512 struct blk_mq_tag_set *set = q->tag_set;
1513
1514 if (set->tags[hctx->queue_num])
1515 return NOTIFY_OK;
1516
1517 set->tags[hctx->queue_num] = blk_mq_init_rq_map(set, hctx->queue_num);
1518 if (!set->tags[hctx->queue_num])
1519 return NOTIFY_STOP;
1520
1521 hctx->tags = set->tags[hctx->queue_num];
1522 return NOTIFY_OK;
1523}
1524
1525static int blk_mq_hctx_notify(void *data, unsigned long action,
1526 unsigned int cpu)
1527{
1528 struct blk_mq_hw_ctx *hctx = data;
1529
1530 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1531 return blk_mq_hctx_cpu_offline(hctx, cpu);
1532 else if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
1533 return blk_mq_hctx_cpu_online(hctx, cpu);
1534
1535 return NOTIFY_OK;
1536}
1537
Ming Lei624dbe42014-05-27 23:35:13 +08001538static void blk_mq_exit_hw_queues(struct request_queue *q,
1539 struct blk_mq_tag_set *set, int nr_queue)
1540{
1541 struct blk_mq_hw_ctx *hctx;
1542 unsigned int i;
1543
1544 queue_for_each_hw_ctx(q, hctx, i) {
1545 if (i == nr_queue)
1546 break;
1547
Jens Axboef899fed2014-06-04 09:11:53 -06001548 blk_mq_tag_idle(hctx);
1549
Ming Lei624dbe42014-05-27 23:35:13 +08001550 if (set->ops->exit_hctx)
1551 set->ops->exit_hctx(hctx, i);
1552
1553 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1554 kfree(hctx->ctxs);
1555 blk_mq_free_bitmap(&hctx->ctx_map);
1556 }
1557
1558}
1559
1560static void blk_mq_free_hw_queues(struct request_queue *q,
1561 struct blk_mq_tag_set *set)
1562{
1563 struct blk_mq_hw_ctx *hctx;
1564 unsigned int i;
1565
1566 queue_for_each_hw_ctx(q, hctx, i) {
1567 free_cpumask_var(hctx->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001568 kfree(hctx);
Ming Lei624dbe42014-05-27 23:35:13 +08001569 }
1570}
1571
Jens Axboe320ae512013-10-24 09:20:05 +01001572static int blk_mq_init_hw_queues(struct request_queue *q,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001573 struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001574{
1575 struct blk_mq_hw_ctx *hctx;
Ming Lei624dbe42014-05-27 23:35:13 +08001576 unsigned int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001577
1578 /*
1579 * Initialize hardware queues
1580 */
1581 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001582 int node;
1583
1584 node = hctx->numa_node;
1585 if (node == NUMA_NO_NODE)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001586 node = hctx->numa_node = set->numa_node;
Jens Axboe320ae512013-10-24 09:20:05 +01001587
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001588 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1589 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
Jens Axboe320ae512013-10-24 09:20:05 +01001590 spin_lock_init(&hctx->lock);
1591 INIT_LIST_HEAD(&hctx->dispatch);
1592 hctx->queue = q;
1593 hctx->queue_num = i;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001594 hctx->flags = set->flags;
1595 hctx->cmd_size = set->cmd_size;
Jens Axboe320ae512013-10-24 09:20:05 +01001596
1597 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1598 blk_mq_hctx_notify, hctx);
1599 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1600
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001601 hctx->tags = set->tags[i];
Jens Axboe320ae512013-10-24 09:20:05 +01001602
1603 /*
1604 * Allocate space for all possible cpus to avoid allocation in
1605 * runtime
1606 */
1607 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1608 GFP_KERNEL, node);
1609 if (!hctx->ctxs)
1610 break;
1611
Jens Axboe1429d7c2014-05-19 09:23:55 -06001612 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
Jens Axboe320ae512013-10-24 09:20:05 +01001613 break;
1614
Jens Axboe320ae512013-10-24 09:20:05 +01001615 hctx->nr_ctx = 0;
1616
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001617 if (set->ops->init_hctx &&
1618 set->ops->init_hctx(hctx, set->driver_data, i))
Jens Axboe320ae512013-10-24 09:20:05 +01001619 break;
1620 }
1621
1622 if (i == q->nr_hw_queues)
1623 return 0;
1624
1625 /*
1626 * Init failed
1627 */
Ming Lei624dbe42014-05-27 23:35:13 +08001628 blk_mq_exit_hw_queues(q, set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001629
1630 return 1;
1631}
1632
1633static void blk_mq_init_cpu_queues(struct request_queue *q,
1634 unsigned int nr_hw_queues)
1635{
1636 unsigned int i;
1637
1638 for_each_possible_cpu(i) {
1639 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1640 struct blk_mq_hw_ctx *hctx;
1641
1642 memset(__ctx, 0, sizeof(*__ctx));
1643 __ctx->cpu = i;
1644 spin_lock_init(&__ctx->lock);
1645 INIT_LIST_HEAD(&__ctx->rq_list);
1646 __ctx->queue = q;
1647
1648 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001649 if (!cpu_online(i))
1650 continue;
1651
Jens Axboee4043dc2014-04-09 10:18:23 -06001652 hctx = q->mq_ops->map_queue(q, i);
1653 cpumask_set_cpu(i, hctx->cpumask);
1654 hctx->nr_ctx++;
1655
Jens Axboe320ae512013-10-24 09:20:05 +01001656 /*
1657 * Set local node, IFF we have more than one hw queue. If
1658 * not, we remain on the home node of the device
1659 */
1660 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1661 hctx->numa_node = cpu_to_node(i);
1662 }
1663}
1664
1665static void blk_mq_map_swqueue(struct request_queue *q)
1666{
1667 unsigned int i;
1668 struct blk_mq_hw_ctx *hctx;
1669 struct blk_mq_ctx *ctx;
1670
1671 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001672 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001673 hctx->nr_ctx = 0;
1674 }
1675
1676 /*
1677 * Map software to hardware queues
1678 */
1679 queue_for_each_ctx(q, ctx, i) {
1680 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboee4043dc2014-04-09 10:18:23 -06001681 if (!cpu_online(i))
1682 continue;
1683
Jens Axboe320ae512013-10-24 09:20:05 +01001684 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001685 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001686 ctx->index_hw = hctx->nr_ctx;
1687 hctx->ctxs[hctx->nr_ctx++] = ctx;
1688 }
Jens Axboe506e9312014-05-07 10:26:44 -06001689
1690 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001691 /*
1692 * If not software queues are mapped to this hardware queue,
1693 * disable it and free the request entries
1694 */
1695 if (!hctx->nr_ctx) {
1696 struct blk_mq_tag_set *set = q->tag_set;
1697
1698 if (set->tags[i]) {
1699 blk_mq_free_rq_map(set, set->tags[i], i);
1700 set->tags[i] = NULL;
1701 hctx->tags = NULL;
1702 }
1703 continue;
1704 }
1705
1706 /*
1707 * Initialize batch roundrobin counts
1708 */
Jens Axboe506e9312014-05-07 10:26:44 -06001709 hctx->next_cpu = cpumask_first(hctx->cpumask);
1710 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1711 }
Jens Axboe320ae512013-10-24 09:20:05 +01001712}
1713
Jens Axboe0d2602c2014-05-13 15:10:52 -06001714static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1715{
1716 struct blk_mq_hw_ctx *hctx;
1717 struct request_queue *q;
1718 bool shared;
1719 int i;
1720
1721 if (set->tag_list.next == set->tag_list.prev)
1722 shared = false;
1723 else
1724 shared = true;
1725
1726 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1727 blk_mq_freeze_queue(q);
1728
1729 queue_for_each_hw_ctx(q, hctx, i) {
1730 if (shared)
1731 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1732 else
1733 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1734 }
1735 blk_mq_unfreeze_queue(q);
1736 }
1737}
1738
1739static void blk_mq_del_queue_tag_set(struct request_queue *q)
1740{
1741 struct blk_mq_tag_set *set = q->tag_set;
1742
1743 blk_mq_freeze_queue(q);
1744
1745 mutex_lock(&set->tag_list_lock);
1746 list_del_init(&q->tag_set_list);
1747 blk_mq_update_tag_set_depth(set);
1748 mutex_unlock(&set->tag_list_lock);
1749
1750 blk_mq_unfreeze_queue(q);
1751}
1752
1753static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1754 struct request_queue *q)
1755{
1756 q->tag_set = set;
1757
1758 mutex_lock(&set->tag_list_lock);
1759 list_add_tail(&q->tag_set_list, &set->tag_list);
1760 blk_mq_update_tag_set_depth(set);
1761 mutex_unlock(&set->tag_list_lock);
1762}
1763
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001764struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001765{
1766 struct blk_mq_hw_ctx **hctxs;
Ming Leie6cdb092014-06-03 11:24:06 +08001767 struct blk_mq_ctx __percpu *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001768 struct request_queue *q;
Jens Axboef14bbe72014-05-27 12:06:53 -06001769 unsigned int *map;
Jens Axboe320ae512013-10-24 09:20:05 +01001770 int i;
1771
Jens Axboe320ae512013-10-24 09:20:05 +01001772 ctx = alloc_percpu(struct blk_mq_ctx);
1773 if (!ctx)
1774 return ERR_PTR(-ENOMEM);
1775
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001776 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1777 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001778
1779 if (!hctxs)
1780 goto err_percpu;
1781
Jens Axboef14bbe72014-05-27 12:06:53 -06001782 map = blk_mq_make_queue_map(set);
1783 if (!map)
1784 goto err_map;
1785
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001786 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboef14bbe72014-05-27 12:06:53 -06001787 int node = blk_mq_hw_queue_to_node(map, i);
1788
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001789 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1790 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001791 if (!hctxs[i])
1792 goto err_hctxs;
1793
Jens Axboee4043dc2014-04-09 10:18:23 -06001794 if (!zalloc_cpumask_var(&hctxs[i]->cpumask, GFP_KERNEL))
1795 goto err_hctxs;
1796
Jens Axboe0d2602c2014-05-13 15:10:52 -06001797 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001798 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001799 hctxs[i]->queue_num = i;
1800 }
1801
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001802 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001803 if (!q)
1804 goto err_hctxs;
1805
Ming Lei3d2936f2014-05-27 23:35:14 +08001806 if (percpu_counter_init(&q->mq_usage_counter, 0))
1807 goto err_map;
1808
Jens Axboe320ae512013-10-24 09:20:05 +01001809 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1810 blk_queue_rq_timeout(q, 30000);
1811
1812 q->nr_queues = nr_cpu_ids;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001813 q->nr_hw_queues = set->nr_hw_queues;
Jens Axboef14bbe72014-05-27 12:06:53 -06001814 q->mq_map = map;
Jens Axboe320ae512013-10-24 09:20:05 +01001815
1816 q->queue_ctx = ctx;
1817 q->queue_hw_ctx = hctxs;
1818
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001819 q->mq_ops = set->ops;
Jens Axboe94eddfb2013-11-19 09:25:07 -07001820 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001821
Jens Axboe05f1dd52014-05-29 09:53:32 -06001822 if (!(set->flags & BLK_MQ_F_SG_MERGE))
1823 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
1824
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001825 q->sg_reserved_size = INT_MAX;
1826
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001827 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
1828 INIT_LIST_HEAD(&q->requeue_list);
1829 spin_lock_init(&q->requeue_lock);
1830
Jens Axboe07068d52014-05-22 10:40:51 -06001831 if (q->nr_hw_queues > 1)
1832 blk_queue_make_request(q, blk_mq_make_request);
1833 else
1834 blk_queue_make_request(q, blk_sq_make_request);
1835
Jens Axboe87ee7b12014-04-24 08:51:47 -06001836 blk_queue_rq_timed_out(q, blk_mq_rq_timed_out);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001837 if (set->timeout)
1838 blk_queue_rq_timeout(q, set->timeout);
Jens Axboe320ae512013-10-24 09:20:05 +01001839
Jens Axboeeba71762014-05-20 15:17:27 -06001840 /*
1841 * Do this after blk_queue_make_request() overrides it...
1842 */
1843 q->nr_requests = set->queue_depth;
1844
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001845 if (set->ops->complete)
1846 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001847
Jens Axboe320ae512013-10-24 09:20:05 +01001848 blk_mq_init_flush(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001849 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001850
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001851 q->flush_rq = kzalloc(round_up(sizeof(struct request) +
1852 set->cmd_size, cache_line_size()),
1853 GFP_KERNEL);
Christoph Hellwig18741982014-02-10 09:29:00 -07001854 if (!q->flush_rq)
Jens Axboe320ae512013-10-24 09:20:05 +01001855 goto err_hw;
1856
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001857 if (blk_mq_init_hw_queues(q, set))
Christoph Hellwig18741982014-02-10 09:29:00 -07001858 goto err_flush_rq;
1859
Jens Axboe320ae512013-10-24 09:20:05 +01001860 mutex_lock(&all_q_mutex);
1861 list_add_tail(&q->all_q_node, &all_q_list);
1862 mutex_unlock(&all_q_mutex);
1863
Jens Axboe0d2602c2014-05-13 15:10:52 -06001864 blk_mq_add_queue_tag_set(set, q);
1865
Jens Axboe484b4062014-05-21 14:01:15 -06001866 blk_mq_map_swqueue(q);
1867
Jens Axboe320ae512013-10-24 09:20:05 +01001868 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07001869
1870err_flush_rq:
1871 kfree(q->flush_rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001872err_hw:
Jens Axboe320ae512013-10-24 09:20:05 +01001873 blk_cleanup_queue(q);
1874err_hctxs:
Jens Axboef14bbe72014-05-27 12:06:53 -06001875 kfree(map);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001876 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboe320ae512013-10-24 09:20:05 +01001877 if (!hctxs[i])
1878 break;
Jens Axboee4043dc2014-04-09 10:18:23 -06001879 free_cpumask_var(hctxs[i]->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001880 kfree(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001881 }
Jens Axboef14bbe72014-05-27 12:06:53 -06001882err_map:
Jens Axboe320ae512013-10-24 09:20:05 +01001883 kfree(hctxs);
1884err_percpu:
1885 free_percpu(ctx);
1886 return ERR_PTR(-ENOMEM);
1887}
1888EXPORT_SYMBOL(blk_mq_init_queue);
1889
1890void blk_mq_free_queue(struct request_queue *q)
1891{
Ming Lei624dbe42014-05-27 23:35:13 +08001892 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001893
Jens Axboe0d2602c2014-05-13 15:10:52 -06001894 blk_mq_del_queue_tag_set(q);
1895
Ming Lei624dbe42014-05-27 23:35:13 +08001896 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1897 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01001898
Ming Lei3d2936f2014-05-27 23:35:14 +08001899 percpu_counter_destroy(&q->mq_usage_counter);
1900
Jens Axboe320ae512013-10-24 09:20:05 +01001901 free_percpu(q->queue_ctx);
1902 kfree(q->queue_hw_ctx);
1903 kfree(q->mq_map);
1904
1905 q->queue_ctx = NULL;
1906 q->queue_hw_ctx = NULL;
1907 q->mq_map = NULL;
1908
1909 mutex_lock(&all_q_mutex);
1910 list_del_init(&q->all_q_node);
1911 mutex_unlock(&all_q_mutex);
1912}
Jens Axboe320ae512013-10-24 09:20:05 +01001913
1914/* Basically redo blk_mq_init_queue with queue frozen */
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001915static void blk_mq_queue_reinit(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01001916{
1917 blk_mq_freeze_queue(q);
1918
Jens Axboe67aec142014-05-30 08:25:36 -06001919 blk_mq_sysfs_unregister(q);
1920
Jens Axboe320ae512013-10-24 09:20:05 +01001921 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1922
1923 /*
1924 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1925 * we should change hctx numa_node according to new topology (this
1926 * involves free and re-allocate memory, worthy doing?)
1927 */
1928
1929 blk_mq_map_swqueue(q);
1930
Jens Axboe67aec142014-05-30 08:25:36 -06001931 blk_mq_sysfs_register(q);
1932
Jens Axboe320ae512013-10-24 09:20:05 +01001933 blk_mq_unfreeze_queue(q);
1934}
1935
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001936static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1937 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01001938{
1939 struct request_queue *q;
1940
1941 /*
Jens Axboe9fccfed2014-05-08 14:50:19 -06001942 * Before new mappings are established, hotadded cpu might already
1943 * start handling requests. This doesn't break anything as we map
1944 * offline CPUs to first hardware queue. We will re-init the queue
1945 * below to get optimal settings.
Jens Axboe320ae512013-10-24 09:20:05 +01001946 */
1947 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1948 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1949 return NOTIFY_OK;
1950
1951 mutex_lock(&all_q_mutex);
1952 list_for_each_entry(q, &all_q_list, all_q_node)
1953 blk_mq_queue_reinit(q);
1954 mutex_unlock(&all_q_mutex);
1955 return NOTIFY_OK;
1956}
1957
Jens Axboea4391c62014-06-05 15:21:56 -06001958/*
1959 * Alloc a tag set to be associated with one or more request queues.
1960 * May fail with EINVAL for various error conditions. May adjust the
1961 * requested depth down, if if it too large. In that case, the set
1962 * value will be stored in set->queue_depth.
1963 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001964int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
1965{
1966 int i;
1967
1968 if (!set->nr_hw_queues)
1969 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06001970 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001971 return -EINVAL;
1972 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
1973 return -EINVAL;
1974
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001975 if (!set->nr_hw_queues || !set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001976 return -EINVAL;
1977
Jens Axboea4391c62014-06-05 15:21:56 -06001978 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
1979 pr_info("blk-mq: reduced tag depth to %u\n",
1980 BLK_MQ_MAX_DEPTH);
1981 set->queue_depth = BLK_MQ_MAX_DEPTH;
1982 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001983
Ming Lei48479002014-04-19 18:00:17 +08001984 set->tags = kmalloc_node(set->nr_hw_queues *
1985 sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001986 GFP_KERNEL, set->numa_node);
1987 if (!set->tags)
1988 goto out;
1989
1990 for (i = 0; i < set->nr_hw_queues; i++) {
1991 set->tags[i] = blk_mq_init_rq_map(set, i);
1992 if (!set->tags[i])
1993 goto out_unwind;
1994 }
1995
Jens Axboe0d2602c2014-05-13 15:10:52 -06001996 mutex_init(&set->tag_list_lock);
1997 INIT_LIST_HEAD(&set->tag_list);
1998
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001999 return 0;
2000
2001out_unwind:
2002 while (--i >= 0)
2003 blk_mq_free_rq_map(set, set->tags[i], i);
2004out:
2005 return -ENOMEM;
2006}
2007EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2008
2009void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2010{
2011 int i;
2012
Jens Axboe484b4062014-05-21 14:01:15 -06002013 for (i = 0; i < set->nr_hw_queues; i++) {
2014 if (set->tags[i])
2015 blk_mq_free_rq_map(set, set->tags[i], i);
2016 }
2017
Ming Lei981bd182014-04-24 00:07:34 +08002018 kfree(set->tags);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002019}
2020EXPORT_SYMBOL(blk_mq_free_tag_set);
2021
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002022int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2023{
2024 struct blk_mq_tag_set *set = q->tag_set;
2025 struct blk_mq_hw_ctx *hctx;
2026 int i, ret;
2027
2028 if (!set || nr > set->queue_depth)
2029 return -EINVAL;
2030
2031 ret = 0;
2032 queue_for_each_hw_ctx(q, hctx, i) {
2033 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2034 if (ret)
2035 break;
2036 }
2037
2038 if (!ret)
2039 q->nr_requests = nr;
2040
2041 return ret;
2042}
2043
Jens Axboe676141e2014-03-20 13:29:18 -06002044void blk_mq_disable_hotplug(void)
2045{
2046 mutex_lock(&all_q_mutex);
2047}
2048
2049void blk_mq_enable_hotplug(void)
2050{
2051 mutex_unlock(&all_q_mutex);
2052}
2053
Jens Axboe320ae512013-10-24 09:20:05 +01002054static int __init blk_mq_init(void)
2055{
Jens Axboe320ae512013-10-24 09:20:05 +01002056 blk_mq_cpu_init();
2057
2058 /* Must be called after percpu_counter_hotcpu_callback() */
2059 hotcpu_notifier(blk_mq_queue_reinit_notify, -10);
2060
2061 return 0;
2062}
2063subsys_initcall(blk_mq_init);