blob: fafea52281ac9498f66eae3c8ac5d536ff335d9c [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;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200188#ifdef CONFIG_BLK_CGROUP
189 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700190 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200191 rq->io_start_time_ns = 0;
192#endif
193 rq->nr_phys_segments = 0;
194#if defined(CONFIG_BLK_DEV_INTEGRITY)
195 rq->nr_integrity_segments = 0;
196#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200197 rq->special = NULL;
198 /* tag was already set */
199 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200200
201 rq->extra_len = 0;
202 rq->sense_len = 0;
203 rq->resid_len = 0;
204 rq->sense = NULL;
205
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200206 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600207 rq->timeout = 0;
208
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200209 rq->end_io = NULL;
210 rq->end_io_data = NULL;
211 rq->next_rq = NULL;
212
Jens Axboe320ae512013-10-24 09:20:05 +0100213 ctx->rq_dispatched[rw_is_sync(rw_flags)]++;
214}
215
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200216static struct request *
Ming Leicb96a422014-06-01 00:43:37 +0800217__blk_mq_alloc_request(struct blk_mq_alloc_data *data, int rw)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200218{
219 struct request *rq;
220 unsigned int tag;
221
Ming Leicb96a422014-06-01 00:43:37 +0800222 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200223 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a422014-06-01 00:43:37 +0800224 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200225
226 rq->cmd_flags = 0;
Ming Leicb96a422014-06-01 00:43:37 +0800227 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200228 rq->cmd_flags = REQ_MQ_INFLIGHT;
Ming Leicb96a422014-06-01 00:43:37 +0800229 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200230 }
231
232 rq->tag = tag;
Ming Leicb96a422014-06-01 00:43:37 +0800233 blk_mq_rq_ctx_init(data->q, data->ctx, rq, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200234 return rq;
235 }
236
237 return NULL;
238}
239
Christoph Hellwig4ce01dd2014-05-27 20:59:46 +0200240struct request *blk_mq_alloc_request(struct request_queue *q, int rw, gfp_t gfp,
241 bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100242{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200243 struct blk_mq_ctx *ctx;
244 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100245 struct request *rq;
Ming Leicb96a422014-06-01 00:43:37 +0800246 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +0100247
248 if (blk_mq_queue_enter(q))
249 return NULL;
250
Christoph Hellwigd8525642014-05-27 20:59:50 +0200251 ctx = blk_mq_get_ctx(q);
252 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +0800253 blk_mq_set_alloc_data(&alloc_data, q, gfp & ~__GFP_WAIT,
254 reserved, ctx, hctx);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200255
Ming Leicb96a422014-06-01 00:43:37 +0800256 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200257 if (!rq && (gfp & __GFP_WAIT)) {
258 __blk_mq_run_hw_queue(hctx);
259 blk_mq_put_ctx(ctx);
260
261 ctx = blk_mq_get_ctx(q);
262 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +0800263 blk_mq_set_alloc_data(&alloc_data, q, gfp, reserved, ctx,
264 hctx);
265 rq = __blk_mq_alloc_request(&alloc_data, rw);
266 ctx = alloc_data.ctx;
Christoph Hellwigd8525642014-05-27 20:59:50 +0200267 }
268 blk_mq_put_ctx(ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100269 return rq;
270}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600271EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100272
Jens Axboe320ae512013-10-24 09:20:05 +0100273static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
274 struct blk_mq_ctx *ctx, struct request *rq)
275{
276 const int tag = rq->tag;
277 struct request_queue *q = rq->q;
278
Jens Axboe0d2602c2014-05-13 15:10:52 -0600279 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
280 atomic_dec(&hctx->nr_active);
281
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200282 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600283 blk_mq_put_tag(hctx, tag, &ctx->last_tag);
Jens Axboe320ae512013-10-24 09:20:05 +0100284 blk_mq_queue_exit(q);
285}
286
287void blk_mq_free_request(struct request *rq)
288{
289 struct blk_mq_ctx *ctx = rq->mq_ctx;
290 struct blk_mq_hw_ctx *hctx;
291 struct request_queue *q = rq->q;
292
293 ctx->rq_completed[rq_is_sync(rq)]++;
294
295 hctx = q->mq_ops->map_queue(q, ctx->cpu);
296 __blk_mq_free_request(hctx, ctx, rq);
297}
298
Christoph Hellwig8727af42014-04-14 10:30:08 +0200299/*
300 * Clone all relevant state from a request that has been put on hold in
301 * the flush state machine into the preallocated flush request that hangs
302 * off the request queue.
303 *
304 * For a driver the flush request should be invisible, that's why we are
305 * impersonating the original request here.
306 */
307void blk_mq_clone_flush_request(struct request *flush_rq,
308 struct request *orig_rq)
309{
310 struct blk_mq_hw_ctx *hctx =
311 orig_rq->q->mq_ops->map_queue(orig_rq->q, orig_rq->mq_ctx->cpu);
312
313 flush_rq->mq_ctx = orig_rq->mq_ctx;
314 flush_rq->tag = orig_rq->tag;
315 memcpy(blk_mq_rq_to_pdu(flush_rq), blk_mq_rq_to_pdu(orig_rq),
316 hctx->cmd_size);
317}
318
Christoph Hellwig63151a42014-04-16 09:44:52 +0200319inline void __blk_mq_end_io(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100320{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700321 blk_account_io_done(rq);
322
Christoph Hellwig91b63632014-04-16 09:44:53 +0200323 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100324 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200325 } else {
326 if (unlikely(blk_bidi_rq(rq)))
327 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100328 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200329 }
Jens Axboe320ae512013-10-24 09:20:05 +0100330}
Christoph Hellwig63151a42014-04-16 09:44:52 +0200331EXPORT_SYMBOL(__blk_mq_end_io);
332
333void blk_mq_end_io(struct request *rq, int error)
334{
335 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
336 BUG();
337 __blk_mq_end_io(rq, error);
338}
339EXPORT_SYMBOL(blk_mq_end_io);
Jens Axboe320ae512013-10-24 09:20:05 +0100340
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800341static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100342{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800343 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100344
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800345 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100346}
347
Jens Axboeed851862014-05-30 21:20:50 -0600348static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100349{
350 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700351 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100352 int cpu;
353
Christoph Hellwig38535202014-04-25 02:32:53 -0700354 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800355 rq->q->softirq_done_fn(rq);
356 return;
357 }
Jens Axboe320ae512013-10-24 09:20:05 +0100358
359 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700360 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
361 shared = cpus_share_cache(cpu, ctx->cpu);
362
363 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800364 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800365 rq->csd.info = rq;
366 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100367 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800368 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800369 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800370 }
Jens Axboe320ae512013-10-24 09:20:05 +0100371 put_cpu();
372}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800373
Jens Axboeed851862014-05-30 21:20:50 -0600374void __blk_mq_complete_request(struct request *rq)
375{
376 struct request_queue *q = rq->q;
377
378 if (!q->softirq_done_fn)
379 blk_mq_end_io(rq, rq->errors);
380 else
381 blk_mq_ipi_complete_request(rq);
382}
383
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800384/**
385 * blk_mq_complete_request - end I/O on a request
386 * @rq: the request being processed
387 *
388 * Description:
389 * Ends all I/O on a request. It does not handle partial completions.
390 * The actual completion happens out-of-order, through a IPI handler.
391 **/
392void blk_mq_complete_request(struct request *rq)
393{
Jens Axboe95f09682014-05-27 17:46:48 -0600394 struct request_queue *q = rq->q;
395
396 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800397 return;
Jens Axboeed851862014-05-30 21:20:50 -0600398 if (!blk_mark_rq_complete(rq))
399 __blk_mq_complete_request(rq);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800400}
401EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100402
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800403static void blk_mq_start_request(struct request *rq, bool last)
Jens Axboe320ae512013-10-24 09:20:05 +0100404{
405 struct request_queue *q = rq->q;
406
407 trace_block_rq_issue(q, rq);
408
Christoph Hellwig742ee692014-04-14 10:30:06 +0200409 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200410 if (unlikely(blk_bidi_rq(rq)))
411 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200412
Jens Axboe320ae512013-10-24 09:20:05 +0100413 /*
414 * Just mark start time and set the started bit. Due to memory
415 * ordering, we know we'll see the correct deadline as long as
Jens Axboec22d9d82014-05-23 14:14:57 -0600416 * REQ_ATOMIC_STARTED is seen. Use the default queue timeout,
417 * unless one has been set in the request.
Jens Axboe320ae512013-10-24 09:20:05 +0100418 */
Jens Axboec22d9d82014-05-23 14:14:57 -0600419 if (!rq->timeout)
420 rq->deadline = jiffies + q->rq_timeout;
421 else
422 rq->deadline = jiffies + rq->timeout;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600423
424 /*
425 * Mark us as started and clear complete. Complete might have been
426 * set if requeue raced with timeout, which then marked it as
427 * complete. So be sure to clear complete again when we start
428 * the request, otherwise we'll ignore the completion event.
429 */
Jens Axboe4b570522014-05-29 11:00:11 -0600430 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
431 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
432 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
433 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800434
435 if (q->dma_drain_size && blk_rq_bytes(rq)) {
436 /*
437 * Make sure space for the drain appears. We know we can do
438 * this because max_hw_segments has been adjusted to be one
439 * fewer than the device can handle.
440 */
441 rq->nr_phys_segments++;
442 }
443
444 /*
445 * Flag the last request in the series so that drivers know when IO
446 * should be kicked off, if they don't do it on a per-request basis.
447 *
448 * Note: the flag isn't the only condition drivers should do kick off.
449 * If drive is busy, the last request might not have the bit set.
450 */
451 if (last)
452 rq->cmd_flags |= REQ_END;
Jens Axboe320ae512013-10-24 09:20:05 +0100453}
454
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200455static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100456{
457 struct request_queue *q = rq->q;
458
459 trace_block_rq_requeue(q, rq);
460 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800461
462 rq->cmd_flags &= ~REQ_END;
463
464 if (q->dma_drain_size && blk_rq_bytes(rq))
465 rq->nr_phys_segments--;
Jens Axboe320ae512013-10-24 09:20:05 +0100466}
467
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200468void blk_mq_requeue_request(struct request *rq)
469{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200470 __blk_mq_requeue_request(rq);
471 blk_clear_rq_complete(rq);
472
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200473 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600474 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200475}
476EXPORT_SYMBOL(blk_mq_requeue_request);
477
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600478static void blk_mq_requeue_work(struct work_struct *work)
479{
480 struct request_queue *q =
481 container_of(work, struct request_queue, requeue_work);
482 LIST_HEAD(rq_list);
483 struct request *rq, *next;
484 unsigned long flags;
485
486 spin_lock_irqsave(&q->requeue_lock, flags);
487 list_splice_init(&q->requeue_list, &rq_list);
488 spin_unlock_irqrestore(&q->requeue_lock, flags);
489
490 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
491 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
492 continue;
493
494 rq->cmd_flags &= ~REQ_SOFTBARRIER;
495 list_del_init(&rq->queuelist);
496 blk_mq_insert_request(rq, true, false, false);
497 }
498
499 while (!list_empty(&rq_list)) {
500 rq = list_entry(rq_list.next, struct request, queuelist);
501 list_del_init(&rq->queuelist);
502 blk_mq_insert_request(rq, false, false, false);
503 }
504
505 blk_mq_run_queues(q, false);
506}
507
508void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
509{
510 struct request_queue *q = rq->q;
511 unsigned long flags;
512
513 /*
514 * We abuse this flag that is otherwise used by the I/O scheduler to
515 * request head insertation from the workqueue.
516 */
517 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
518
519 spin_lock_irqsave(&q->requeue_lock, flags);
520 if (at_head) {
521 rq->cmd_flags |= REQ_SOFTBARRIER;
522 list_add(&rq->queuelist, &q->requeue_list);
523 } else {
524 list_add_tail(&rq->queuelist, &q->requeue_list);
525 }
526 spin_unlock_irqrestore(&q->requeue_lock, flags);
527}
528EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
529
530void blk_mq_kick_requeue_list(struct request_queue *q)
531{
532 kblockd_schedule_work(&q->requeue_work);
533}
534EXPORT_SYMBOL(blk_mq_kick_requeue_list);
535
Jens Axboe0e62f512014-06-04 10:23:49 -0600536static inline bool is_flush_request(struct request *rq, unsigned int tag)
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600537{
Jens Axboe0e62f512014-06-04 10:23:49 -0600538 return ((rq->cmd_flags & REQ_FLUSH_SEQ) &&
539 rq->q->flush_rq->tag == tag);
540}
Shaohua Li22302372014-05-30 08:06:42 -0600541
Jens Axboe0e62f512014-06-04 10:23:49 -0600542struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
543{
544 struct request *rq = tags->rqs[tag];
Shaohua Li22302372014-05-30 08:06:42 -0600545
Jens Axboe0e62f512014-06-04 10:23:49 -0600546 if (!is_flush_request(rq, tag))
547 return rq;
548
549 return rq->q->flush_rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600550}
551EXPORT_SYMBOL(blk_mq_tag_to_rq);
552
Jens Axboe320ae512013-10-24 09:20:05 +0100553struct blk_mq_timeout_data {
554 struct blk_mq_hw_ctx *hctx;
555 unsigned long *next;
556 unsigned int *next_set;
557};
558
559static void blk_mq_timeout_check(void *__data, unsigned long *free_tags)
560{
561 struct blk_mq_timeout_data *data = __data;
562 struct blk_mq_hw_ctx *hctx = data->hctx;
563 unsigned int tag;
564
565 /* It may not be in flight yet (this is where
566 * the REQ_ATOMIC_STARTED flag comes in). The requests are
567 * statically allocated, so we know it's always safe to access the
568 * memory associated with a bit offset into ->rqs[].
569 */
570 tag = 0;
571 do {
572 struct request *rq;
573
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600574 tag = find_next_zero_bit(free_tags, hctx->tags->nr_tags, tag);
575 if (tag >= hctx->tags->nr_tags)
Jens Axboe320ae512013-10-24 09:20:05 +0100576 break;
577
Jens Axboe0e62f512014-06-04 10:23:49 -0600578 rq = blk_mq_tag_to_rq(hctx->tags, tag++);
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600579 if (rq->q != hctx->queue)
580 continue;
Jens Axboe320ae512013-10-24 09:20:05 +0100581 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
582 continue;
583
584 blk_rq_check_expired(rq, data->next, data->next_set);
585 } while (1);
586}
587
588static void blk_mq_hw_ctx_check_timeout(struct blk_mq_hw_ctx *hctx,
589 unsigned long *next,
590 unsigned int *next_set)
591{
592 struct blk_mq_timeout_data data = {
593 .hctx = hctx,
594 .next = next,
595 .next_set = next_set,
596 };
597
598 /*
599 * Ask the tagging code to iterate busy requests, so we can
600 * check them for timeout.
601 */
602 blk_mq_tag_busy_iter(hctx->tags, blk_mq_timeout_check, &data);
603}
604
Jens Axboe87ee7b12014-04-24 08:51:47 -0600605static enum blk_eh_timer_return blk_mq_rq_timed_out(struct request *rq)
606{
607 struct request_queue *q = rq->q;
608
609 /*
610 * We know that complete is set at this point. If STARTED isn't set
611 * anymore, then the request isn't active and the "timeout" should
612 * just be ignored. This can happen due to the bitflag ordering.
613 * Timeout first checks if STARTED is set, and if it is, assumes
614 * the request is active. But if we race with completion, then
615 * we both flags will get cleared. So check here again, and ignore
616 * a timeout event with a request that isn't active.
617 */
618 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
619 return BLK_EH_NOT_HANDLED;
620
621 if (!q->mq_ops->timeout)
622 return BLK_EH_RESET_TIMER;
623
624 return q->mq_ops->timeout(rq);
625}
626
Jens Axboe320ae512013-10-24 09:20:05 +0100627static void blk_mq_rq_timer(unsigned long data)
628{
629 struct request_queue *q = (struct request_queue *) data;
630 struct blk_mq_hw_ctx *hctx;
631 unsigned long next = 0;
632 int i, next_set = 0;
633
Jens Axboe484b4062014-05-21 14:01:15 -0600634 queue_for_each_hw_ctx(q, hctx, i) {
635 /*
636 * If not software queues are currently mapped to this
637 * hardware queue, there's nothing to check
638 */
639 if (!hctx->nr_ctx || !hctx->tags)
640 continue;
641
Jens Axboe320ae512013-10-24 09:20:05 +0100642 blk_mq_hw_ctx_check_timeout(hctx, &next, &next_set);
Jens Axboe484b4062014-05-21 14:01:15 -0600643 }
Jens Axboe320ae512013-10-24 09:20:05 +0100644
Jens Axboe0d2602c2014-05-13 15:10:52 -0600645 if (next_set) {
646 next = blk_rq_timeout(round_jiffies_up(next));
647 mod_timer(&q->timeout, next);
648 } else {
649 queue_for_each_hw_ctx(q, hctx, i)
650 blk_mq_tag_idle(hctx);
651 }
Jens Axboe320ae512013-10-24 09:20:05 +0100652}
653
654/*
655 * Reverse check our software queue for entries that we could potentially
656 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
657 * too much time checking for merges.
658 */
659static bool blk_mq_attempt_merge(struct request_queue *q,
660 struct blk_mq_ctx *ctx, struct bio *bio)
661{
662 struct request *rq;
663 int checked = 8;
664
665 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
666 int el_ret;
667
668 if (!checked--)
669 break;
670
671 if (!blk_rq_merge_ok(rq, bio))
672 continue;
673
674 el_ret = blk_try_merge(rq, bio);
675 if (el_ret == ELEVATOR_BACK_MERGE) {
676 if (bio_attempt_back_merge(q, rq, bio)) {
677 ctx->rq_merged++;
678 return true;
679 }
680 break;
681 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
682 if (bio_attempt_front_merge(q, rq, bio)) {
683 ctx->rq_merged++;
684 return true;
685 }
686 break;
687 }
688 }
689
690 return false;
691}
692
Jens Axboe320ae512013-10-24 09:20:05 +0100693/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600694 * Process software queues that have been marked busy, splicing them
695 * to the for-dispatch
696 */
697static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
698{
699 struct blk_mq_ctx *ctx;
700 int i;
701
702 for (i = 0; i < hctx->ctx_map.map_size; i++) {
703 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
704 unsigned int off, bit;
705
706 if (!bm->word)
707 continue;
708
709 bit = 0;
710 off = i * hctx->ctx_map.bits_per_word;
711 do {
712 bit = find_next_bit(&bm->word, bm->depth, bit);
713 if (bit >= bm->depth)
714 break;
715
716 ctx = hctx->ctxs[bit + off];
717 clear_bit(bit, &bm->word);
718 spin_lock(&ctx->lock);
719 list_splice_tail_init(&ctx->rq_list, list);
720 spin_unlock(&ctx->lock);
721
722 bit++;
723 } while (1);
724 }
725}
726
727/*
Jens Axboe320ae512013-10-24 09:20:05 +0100728 * Run this hardware queue, pulling any software queues mapped to it in.
729 * Note that this function currently has various problems around ordering
730 * of IO. In particular, we'd like FIFO behaviour on handling existing
731 * items on the hctx->dispatch list. Ignore that for now.
732 */
733static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
734{
735 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100736 struct request *rq;
737 LIST_HEAD(rq_list);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600738 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100739
Jens Axboefd1270d2014-04-16 09:23:48 -0600740 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
Jens Axboee4043dc2014-04-09 10:18:23 -0600741
Jens Axboe5d12f902014-03-19 15:25:02 -0600742 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100743 return;
744
745 hctx->run++;
746
747 /*
748 * Touch any software queue that has pending entries.
749 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600750 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100751
752 /*
753 * If we have previous entries on our dispatch list, grab them
754 * and stuff them at the front for more fair dispatch.
755 */
756 if (!list_empty_careful(&hctx->dispatch)) {
757 spin_lock(&hctx->lock);
758 if (!list_empty(&hctx->dispatch))
759 list_splice_init(&hctx->dispatch, &rq_list);
760 spin_unlock(&hctx->lock);
761 }
762
763 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100764 * Now process all the entries, sending them to the driver.
765 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600766 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100767 while (!list_empty(&rq_list)) {
768 int ret;
769
770 rq = list_first_entry(&rq_list, struct request, queuelist);
771 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100772
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800773 blk_mq_start_request(rq, list_empty(&rq_list));
Jens Axboe320ae512013-10-24 09:20:05 +0100774
775 ret = q->mq_ops->queue_rq(hctx, rq);
776 switch (ret) {
777 case BLK_MQ_RQ_QUEUE_OK:
778 queued++;
779 continue;
780 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100781 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200782 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100783 break;
784 default:
785 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100786 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800787 rq->errors = -EIO;
Jens Axboe320ae512013-10-24 09:20:05 +0100788 blk_mq_end_io(rq, rq->errors);
789 break;
790 }
791
792 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
793 break;
794 }
795
796 if (!queued)
797 hctx->dispatched[0]++;
798 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
799 hctx->dispatched[ilog2(queued) + 1]++;
800
801 /*
802 * Any items that need requeuing? Stuff them into hctx->dispatch,
803 * that is where we will continue on next queue run.
804 */
805 if (!list_empty(&rq_list)) {
806 spin_lock(&hctx->lock);
807 list_splice(&rq_list, &hctx->dispatch);
808 spin_unlock(&hctx->lock);
809 }
810}
811
Jens Axboe506e9312014-05-07 10:26:44 -0600812/*
813 * It'd be great if the workqueue API had a way to pass
814 * in a mask and had some smarts for more clever placement.
815 * For now we just round-robin here, switching for every
816 * BLK_MQ_CPU_WORK_BATCH queued items.
817 */
818static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
819{
820 int cpu = hctx->next_cpu;
821
822 if (--hctx->next_cpu_batch <= 0) {
823 int next_cpu;
824
825 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
826 if (next_cpu >= nr_cpu_ids)
827 next_cpu = cpumask_first(hctx->cpumask);
828
829 hctx->next_cpu = next_cpu;
830 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
831 }
832
833 return cpu;
834}
835
Jens Axboe320ae512013-10-24 09:20:05 +0100836void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
837{
Jens Axboe5d12f902014-03-19 15:25:02 -0600838 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100839 return;
840
Jens Axboee4043dc2014-04-09 10:18:23 -0600841 if (!async && cpumask_test_cpu(smp_processor_id(), hctx->cpumask))
Jens Axboe320ae512013-10-24 09:20:05 +0100842 __blk_mq_run_hw_queue(hctx);
Jens Axboee4043dc2014-04-09 10:18:23 -0600843 else if (hctx->queue->nr_hw_queues == 1)
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600844 kblockd_schedule_delayed_work(&hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600845 else {
846 unsigned int cpu;
847
Jens Axboe506e9312014-05-07 10:26:44 -0600848 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600849 kblockd_schedule_delayed_work_on(cpu, &hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600850 }
Jens Axboe320ae512013-10-24 09:20:05 +0100851}
852
853void blk_mq_run_queues(struct request_queue *q, bool async)
854{
855 struct blk_mq_hw_ctx *hctx;
856 int i;
857
858 queue_for_each_hw_ctx(q, hctx, i) {
859 if ((!blk_mq_hctx_has_pending(hctx) &&
860 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600861 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100862 continue;
863
Jens Axboee4043dc2014-04-09 10:18:23 -0600864 preempt_disable();
Jens Axboe320ae512013-10-24 09:20:05 +0100865 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600866 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100867 }
868}
869EXPORT_SYMBOL(blk_mq_run_queues);
870
871void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
872{
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600873 cancel_delayed_work(&hctx->run_work);
874 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100875 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
876}
877EXPORT_SYMBOL(blk_mq_stop_hw_queue);
878
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100879void blk_mq_stop_hw_queues(struct request_queue *q)
880{
881 struct blk_mq_hw_ctx *hctx;
882 int i;
883
884 queue_for_each_hw_ctx(q, hctx, i)
885 blk_mq_stop_hw_queue(hctx);
886}
887EXPORT_SYMBOL(blk_mq_stop_hw_queues);
888
Jens Axboe320ae512013-10-24 09:20:05 +0100889void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
890{
891 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600892
893 preempt_disable();
Jens Axboe320ae512013-10-24 09:20:05 +0100894 __blk_mq_run_hw_queue(hctx);
Jens Axboee4043dc2014-04-09 10:18:23 -0600895 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100896}
897EXPORT_SYMBOL(blk_mq_start_hw_queue);
898
Christoph Hellwig2f268552014-04-16 09:44:56 +0200899void blk_mq_start_hw_queues(struct request_queue *q)
900{
901 struct blk_mq_hw_ctx *hctx;
902 int i;
903
904 queue_for_each_hw_ctx(q, hctx, i)
905 blk_mq_start_hw_queue(hctx);
906}
907EXPORT_SYMBOL(blk_mq_start_hw_queues);
908
909
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200910void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100911{
912 struct blk_mq_hw_ctx *hctx;
913 int i;
914
915 queue_for_each_hw_ctx(q, hctx, i) {
916 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
917 continue;
918
919 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600920 preempt_disable();
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200921 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600922 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100923 }
924}
925EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
926
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600927static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100928{
929 struct blk_mq_hw_ctx *hctx;
930
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600931 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600932
Jens Axboe320ae512013-10-24 09:20:05 +0100933 __blk_mq_run_hw_queue(hctx);
934}
935
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600936static void blk_mq_delay_work_fn(struct work_struct *work)
937{
938 struct blk_mq_hw_ctx *hctx;
939
940 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
941
942 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
943 __blk_mq_run_hw_queue(hctx);
944}
945
946void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
947{
948 unsigned long tmo = msecs_to_jiffies(msecs);
949
950 if (hctx->queue->nr_hw_queues == 1)
951 kblockd_schedule_delayed_work(&hctx->delay_work, tmo);
952 else {
953 unsigned int cpu;
954
Jens Axboe506e9312014-05-07 10:26:44 -0600955 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600956 kblockd_schedule_delayed_work_on(cpu, &hctx->delay_work, tmo);
957 }
958}
959EXPORT_SYMBOL(blk_mq_delay_queue);
960
Jens Axboe320ae512013-10-24 09:20:05 +0100961static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800962 struct request *rq, bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +0100963{
964 struct blk_mq_ctx *ctx = rq->mq_ctx;
965
Jens Axboe01b983c2013-11-19 18:59:10 -0700966 trace_block_rq_insert(hctx->queue, rq);
967
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800968 if (at_head)
969 list_add(&rq->queuelist, &ctx->rq_list);
970 else
971 list_add_tail(&rq->queuelist, &ctx->rq_list);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600972
Jens Axboe320ae512013-10-24 09:20:05 +0100973 blk_mq_hctx_mark_pending(hctx, ctx);
974
975 /*
976 * We do this early, to ensure we are on the right CPU.
977 */
Jens Axboe87ee7b12014-04-24 08:51:47 -0600978 blk_add_timer(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100979}
980
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600981void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
982 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100983{
984 struct request_queue *q = rq->q;
985 struct blk_mq_hw_ctx *hctx;
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600986 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100987
988 current_ctx = blk_mq_get_ctx(q);
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600989 if (!cpu_online(ctx->cpu))
990 rq->mq_ctx = ctx = current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100991
Jens Axboe320ae512013-10-24 09:20:05 +0100992 hctx = q->mq_ops->map_queue(q, ctx->cpu);
993
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600994 if (rq->cmd_flags & (REQ_FLUSH | REQ_FUA) &&
995 !(rq->cmd_flags & (REQ_FLUSH_SEQ))) {
996 blk_insert_flush(rq);
997 } else {
998 spin_lock(&ctx->lock);
999 __blk_mq_insert_request(hctx, rq, at_head);
1000 spin_unlock(&ctx->lock);
1001 }
Jens Axboe320ae512013-10-24 09:20:05 +01001002
Jens Axboe320ae512013-10-24 09:20:05 +01001003 if (run_queue)
1004 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -06001005
1006 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001007}
1008
1009static void blk_mq_insert_requests(struct request_queue *q,
1010 struct blk_mq_ctx *ctx,
1011 struct list_head *list,
1012 int depth,
1013 bool from_schedule)
1014
1015{
1016 struct blk_mq_hw_ctx *hctx;
1017 struct blk_mq_ctx *current_ctx;
1018
1019 trace_block_unplug(q, depth, !from_schedule);
1020
1021 current_ctx = blk_mq_get_ctx(q);
1022
1023 if (!cpu_online(ctx->cpu))
1024 ctx = current_ctx;
1025 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1026
1027 /*
1028 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1029 * offline now
1030 */
1031 spin_lock(&ctx->lock);
1032 while (!list_empty(list)) {
1033 struct request *rq;
1034
1035 rq = list_first_entry(list, struct request, queuelist);
1036 list_del_init(&rq->queuelist);
1037 rq->mq_ctx = ctx;
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001038 __blk_mq_insert_request(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001039 }
1040 spin_unlock(&ctx->lock);
1041
Jens Axboe320ae512013-10-24 09:20:05 +01001042 blk_mq_run_hw_queue(hctx, from_schedule);
Jens Axboee4043dc2014-04-09 10:18:23 -06001043 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001044}
1045
1046static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1047{
1048 struct request *rqa = container_of(a, struct request, queuelist);
1049 struct request *rqb = container_of(b, struct request, queuelist);
1050
1051 return !(rqa->mq_ctx < rqb->mq_ctx ||
1052 (rqa->mq_ctx == rqb->mq_ctx &&
1053 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1054}
1055
1056void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1057{
1058 struct blk_mq_ctx *this_ctx;
1059 struct request_queue *this_q;
1060 struct request *rq;
1061 LIST_HEAD(list);
1062 LIST_HEAD(ctx_list);
1063 unsigned int depth;
1064
1065 list_splice_init(&plug->mq_list, &list);
1066
1067 list_sort(NULL, &list, plug_ctx_cmp);
1068
1069 this_q = NULL;
1070 this_ctx = NULL;
1071 depth = 0;
1072
1073 while (!list_empty(&list)) {
1074 rq = list_entry_rq(list.next);
1075 list_del_init(&rq->queuelist);
1076 BUG_ON(!rq->q);
1077 if (rq->mq_ctx != this_ctx) {
1078 if (this_ctx) {
1079 blk_mq_insert_requests(this_q, this_ctx,
1080 &ctx_list, depth,
1081 from_schedule);
1082 }
1083
1084 this_ctx = rq->mq_ctx;
1085 this_q = rq->q;
1086 depth = 0;
1087 }
1088
1089 depth++;
1090 list_add_tail(&rq->queuelist, &ctx_list);
1091 }
1092
1093 /*
1094 * If 'this_ctx' is set, we know we have entries to complete
1095 * on 'ctx_list'. Do those.
1096 */
1097 if (this_ctx) {
1098 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1099 from_schedule);
1100 }
1101}
1102
1103static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1104{
1105 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001106
1107 if (blk_do_io_stat(rq)) {
1108 rq->start_time = jiffies;
1109 blk_account_io_start(rq, 1);
1110 }
Jens Axboe320ae512013-10-24 09:20:05 +01001111}
1112
Jens Axboe07068d52014-05-22 10:40:51 -06001113static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1114 struct blk_mq_ctx *ctx,
1115 struct request *rq, struct bio *bio)
1116{
1117 struct request_queue *q = hctx->queue;
1118
1119 if (!(hctx->flags & BLK_MQ_F_SHOULD_MERGE)) {
1120 blk_mq_bio_to_request(rq, bio);
1121 spin_lock(&ctx->lock);
1122insert_rq:
1123 __blk_mq_insert_request(hctx, rq, false);
1124 spin_unlock(&ctx->lock);
1125 return false;
1126 } else {
1127 spin_lock(&ctx->lock);
1128 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1129 blk_mq_bio_to_request(rq, bio);
1130 goto insert_rq;
1131 }
1132
1133 spin_unlock(&ctx->lock);
1134 __blk_mq_free_request(hctx, ctx, rq);
1135 return true;
1136 }
1137}
1138
1139struct blk_map_ctx {
1140 struct blk_mq_hw_ctx *hctx;
1141 struct blk_mq_ctx *ctx;
1142};
1143
1144static struct request *blk_mq_map_request(struct request_queue *q,
1145 struct bio *bio,
1146 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001147{
1148 struct blk_mq_hw_ctx *hctx;
1149 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001150 struct request *rq;
Jens Axboe07068d52014-05-22 10:40:51 -06001151 int rw = bio_data_dir(bio);
Ming Leicb96a422014-06-01 00:43:37 +08001152 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001153
Jens Axboe07068d52014-05-22 10:40:51 -06001154 if (unlikely(blk_mq_queue_enter(q))) {
Nicholas Bellinger14ec77f2014-02-07 13:45:39 -07001155 bio_endio(bio, -EIO);
Jens Axboe07068d52014-05-22 10:40:51 -06001156 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001157 }
1158
1159 ctx = blk_mq_get_ctx(q);
1160 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1161
Jens Axboe07068d52014-05-22 10:40:51 -06001162 if (rw_is_sync(bio->bi_rw))
Shaohua Li27fbf4e2014-02-19 20:20:21 +08001163 rw |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001164
Jens Axboe320ae512013-10-24 09:20:05 +01001165 trace_block_getrq(q, bio, rw);
Ming Leicb96a422014-06-01 00:43:37 +08001166 blk_mq_set_alloc_data(&alloc_data, q, GFP_ATOMIC, false, ctx,
1167 hctx);
1168 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001169 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001170 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001171 blk_mq_put_ctx(ctx);
1172 trace_block_sleeprq(q, bio, rw);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001173
1174 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001175 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +08001176 blk_mq_set_alloc_data(&alloc_data, q,
1177 __GFP_WAIT|GFP_ATOMIC, false, ctx, hctx);
1178 rq = __blk_mq_alloc_request(&alloc_data, rw);
1179 ctx = alloc_data.ctx;
1180 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001181 }
1182
1183 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001184 data->hctx = hctx;
1185 data->ctx = ctx;
1186 return rq;
1187}
1188
1189/*
1190 * Multiple hardware queue variant. This will not use per-process plugs,
1191 * but will attempt to bypass the hctx queueing if we can go straight to
1192 * hardware for SYNC IO.
1193 */
1194static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1195{
1196 const int is_sync = rw_is_sync(bio->bi_rw);
1197 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1198 struct blk_map_ctx data;
1199 struct request *rq;
1200
1201 blk_queue_bounce(q, &bio);
1202
1203 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1204 bio_endio(bio, -EIO);
1205 return;
1206 }
1207
1208 rq = blk_mq_map_request(q, bio, &data);
1209 if (unlikely(!rq))
1210 return;
1211
1212 if (unlikely(is_flush_fua)) {
1213 blk_mq_bio_to_request(rq, bio);
1214 blk_insert_flush(rq);
1215 goto run_queue;
1216 }
1217
1218 if (is_sync) {
1219 int ret;
1220
1221 blk_mq_bio_to_request(rq, bio);
1222 blk_mq_start_request(rq, true);
Jens Axboefeff6892014-05-30 15:42:56 -06001223 blk_add_timer(rq);
Jens Axboe07068d52014-05-22 10:40:51 -06001224
1225 /*
1226 * For OK queue, we are done. For error, kill it. Any other
1227 * error (busy), just add it to our list as we previously
1228 * would have done
1229 */
1230 ret = q->mq_ops->queue_rq(data.hctx, rq);
1231 if (ret == BLK_MQ_RQ_QUEUE_OK)
1232 goto done;
1233 else {
1234 __blk_mq_requeue_request(rq);
1235
1236 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1237 rq->errors = -EIO;
1238 blk_mq_end_io(rq, rq->errors);
1239 goto done;
1240 }
1241 }
1242 }
1243
1244 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1245 /*
1246 * For a SYNC request, send it to the hardware immediately. For
1247 * an ASYNC request, just ensure that we run it later on. The
1248 * latter allows for merging opportunities and more efficient
1249 * dispatching.
1250 */
1251run_queue:
1252 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1253 }
1254done:
1255 blk_mq_put_ctx(data.ctx);
1256}
1257
1258/*
1259 * Single hardware queue variant. This will attempt to use any per-process
1260 * plug for merging and IO deferral.
1261 */
1262static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1263{
1264 const int is_sync = rw_is_sync(bio->bi_rw);
1265 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1266 unsigned int use_plug, request_count = 0;
1267 struct blk_map_ctx data;
1268 struct request *rq;
1269
1270 /*
1271 * If we have multiple hardware queues, just go directly to
1272 * one of those for sync IO.
1273 */
1274 use_plug = !is_flush_fua && !is_sync;
1275
1276 blk_queue_bounce(q, &bio);
1277
1278 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1279 bio_endio(bio, -EIO);
1280 return;
1281 }
1282
1283 if (use_plug && !blk_queue_nomerges(q) &&
1284 blk_attempt_plug_merge(q, bio, &request_count))
1285 return;
1286
1287 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001288 if (unlikely(!rq))
1289 return;
Jens Axboe320ae512013-10-24 09:20:05 +01001290
1291 if (unlikely(is_flush_fua)) {
1292 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001293 blk_insert_flush(rq);
1294 goto run_queue;
1295 }
1296
1297 /*
1298 * A task plug currently exists. Since this is completely lockless,
1299 * utilize that to temporarily store requests until the task is
1300 * either done or scheduled away.
1301 */
1302 if (use_plug) {
1303 struct blk_plug *plug = current->plug;
1304
1305 if (plug) {
1306 blk_mq_bio_to_request(rq, bio);
Shaohua Li92f399c2013-10-29 12:01:03 -06001307 if (list_empty(&plug->mq_list))
Jens Axboe320ae512013-10-24 09:20:05 +01001308 trace_block_plug(q);
1309 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1310 blk_flush_plug_list(plug, false);
1311 trace_block_plug(q);
1312 }
1313 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe07068d52014-05-22 10:40:51 -06001314 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001315 return;
1316 }
1317 }
1318
Jens Axboe07068d52014-05-22 10:40:51 -06001319 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1320 /*
1321 * For a SYNC request, send it to the hardware immediately. For
1322 * an ASYNC request, just ensure that we run it later on. The
1323 * latter allows for merging opportunities and more efficient
1324 * dispatching.
1325 */
1326run_queue:
1327 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001328 }
1329
Jens Axboe07068d52014-05-22 10:40:51 -06001330 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001331}
1332
1333/*
1334 * Default mapping to a software queue, since we use one per CPU.
1335 */
1336struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1337{
1338 return q->queue_hw_ctx[q->mq_map[cpu]];
1339}
1340EXPORT_SYMBOL(blk_mq_map_queue);
1341
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001342static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1343 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001344{
1345 struct page *page;
1346
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001347 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001348 int i;
1349
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001350 for (i = 0; i < tags->nr_tags; i++) {
1351 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001352 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001353 set->ops->exit_request(set->driver_data, tags->rqs[i],
1354 hctx_idx, i);
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001355 }
1356 }
1357
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001358 while (!list_empty(&tags->page_list)) {
1359 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001360 list_del_init(&page->lru);
Jens Axboe320ae512013-10-24 09:20:05 +01001361 __free_pages(page, page->private);
1362 }
1363
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001364 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001365
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001366 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001367}
1368
1369static size_t order_to_size(unsigned int order)
1370{
Ming Lei4ca08502014-04-19 18:00:18 +08001371 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001372}
1373
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001374static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1375 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001376{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001377 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001378 unsigned int i, j, entries_per_page, max_order = 4;
1379 size_t rq_size, left;
1380
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001381 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1382 set->numa_node);
1383 if (!tags)
1384 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001385
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001386 INIT_LIST_HEAD(&tags->page_list);
1387
1388 tags->rqs = kmalloc_node(set->queue_depth * sizeof(struct request *),
1389 GFP_KERNEL, set->numa_node);
1390 if (!tags->rqs) {
1391 blk_mq_free_tags(tags);
1392 return NULL;
1393 }
Jens Axboe320ae512013-10-24 09:20:05 +01001394
1395 /*
1396 * rq_size is the size of the request plus driver payload, rounded
1397 * to the cacheline size
1398 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001399 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001400 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001401 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001402
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001403 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001404 int this_order = max_order;
1405 struct page *page;
1406 int to_do;
1407 void *p;
1408
1409 while (left < order_to_size(this_order - 1) && this_order)
1410 this_order--;
1411
1412 do {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001413 page = alloc_pages_node(set->numa_node, GFP_KERNEL,
1414 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001415 if (page)
1416 break;
1417 if (!this_order--)
1418 break;
1419 if (order_to_size(this_order) < rq_size)
1420 break;
1421 } while (1);
1422
1423 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001424 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001425
1426 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001427 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001428
1429 p = page_address(page);
1430 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001431 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001432 left -= to_do * rq_size;
1433 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001434 tags->rqs[i] = p;
1435 if (set->ops->init_request) {
1436 if (set->ops->init_request(set->driver_data,
1437 tags->rqs[i], hctx_idx, i,
1438 set->numa_node))
1439 goto fail;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001440 }
1441
Jens Axboe320ae512013-10-24 09:20:05 +01001442 p += rq_size;
1443 i++;
1444 }
1445 }
1446
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001447 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001448
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001449fail:
1450 pr_warn("%s: failed to allocate requests\n", __func__);
1451 blk_mq_free_rq_map(set, tags, hctx_idx);
1452 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001453}
1454
Jens Axboe1429d7c2014-05-19 09:23:55 -06001455static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1456{
1457 kfree(bitmap->map);
1458}
1459
1460static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1461{
1462 unsigned int bpw = 8, total, num_maps, i;
1463
1464 bitmap->bits_per_word = bpw;
1465
1466 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1467 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1468 GFP_KERNEL, node);
1469 if (!bitmap->map)
1470 return -ENOMEM;
1471
1472 bitmap->map_size = num_maps;
1473
1474 total = nr_cpu_ids;
1475 for (i = 0; i < num_maps; i++) {
1476 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1477 total -= bitmap->map[i].depth;
1478 }
1479
1480 return 0;
1481}
1482
Jens Axboe484b4062014-05-21 14:01:15 -06001483static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1484{
1485 struct request_queue *q = hctx->queue;
1486 struct blk_mq_ctx *ctx;
1487 LIST_HEAD(tmp);
1488
1489 /*
1490 * Move ctx entries to new CPU, if this one is going away.
1491 */
1492 ctx = __blk_mq_get_ctx(q, cpu);
1493
1494 spin_lock(&ctx->lock);
1495 if (!list_empty(&ctx->rq_list)) {
1496 list_splice_init(&ctx->rq_list, &tmp);
1497 blk_mq_hctx_clear_pending(hctx, ctx);
1498 }
1499 spin_unlock(&ctx->lock);
1500
1501 if (list_empty(&tmp))
1502 return NOTIFY_OK;
1503
1504 ctx = blk_mq_get_ctx(q);
1505 spin_lock(&ctx->lock);
1506
1507 while (!list_empty(&tmp)) {
1508 struct request *rq;
1509
1510 rq = list_first_entry(&tmp, struct request, queuelist);
1511 rq->mq_ctx = ctx;
1512 list_move_tail(&rq->queuelist, &ctx->rq_list);
1513 }
1514
1515 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1516 blk_mq_hctx_mark_pending(hctx, ctx);
1517
1518 spin_unlock(&ctx->lock);
1519
1520 blk_mq_run_hw_queue(hctx, true);
1521 blk_mq_put_ctx(ctx);
1522 return NOTIFY_OK;
1523}
1524
1525static int blk_mq_hctx_cpu_online(struct blk_mq_hw_ctx *hctx, int cpu)
1526{
1527 struct request_queue *q = hctx->queue;
1528 struct blk_mq_tag_set *set = q->tag_set;
1529
1530 if (set->tags[hctx->queue_num])
1531 return NOTIFY_OK;
1532
1533 set->tags[hctx->queue_num] = blk_mq_init_rq_map(set, hctx->queue_num);
1534 if (!set->tags[hctx->queue_num])
1535 return NOTIFY_STOP;
1536
1537 hctx->tags = set->tags[hctx->queue_num];
1538 return NOTIFY_OK;
1539}
1540
1541static int blk_mq_hctx_notify(void *data, unsigned long action,
1542 unsigned int cpu)
1543{
1544 struct blk_mq_hw_ctx *hctx = data;
1545
1546 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1547 return blk_mq_hctx_cpu_offline(hctx, cpu);
1548 else if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
1549 return blk_mq_hctx_cpu_online(hctx, cpu);
1550
1551 return NOTIFY_OK;
1552}
1553
Ming Lei624dbe42014-05-27 23:35:13 +08001554static void blk_mq_exit_hw_queues(struct request_queue *q,
1555 struct blk_mq_tag_set *set, int nr_queue)
1556{
1557 struct blk_mq_hw_ctx *hctx;
1558 unsigned int i;
1559
1560 queue_for_each_hw_ctx(q, hctx, i) {
1561 if (i == nr_queue)
1562 break;
1563
Jens Axboef899fed2014-06-04 09:11:53 -06001564 blk_mq_tag_idle(hctx);
1565
Ming Lei624dbe42014-05-27 23:35:13 +08001566 if (set->ops->exit_hctx)
1567 set->ops->exit_hctx(hctx, i);
1568
1569 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1570 kfree(hctx->ctxs);
1571 blk_mq_free_bitmap(&hctx->ctx_map);
1572 }
1573
1574}
1575
1576static void blk_mq_free_hw_queues(struct request_queue *q,
1577 struct blk_mq_tag_set *set)
1578{
1579 struct blk_mq_hw_ctx *hctx;
1580 unsigned int i;
1581
1582 queue_for_each_hw_ctx(q, hctx, i) {
1583 free_cpumask_var(hctx->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001584 kfree(hctx);
Ming Lei624dbe42014-05-27 23:35:13 +08001585 }
1586}
1587
Jens Axboe320ae512013-10-24 09:20:05 +01001588static int blk_mq_init_hw_queues(struct request_queue *q,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001589 struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001590{
1591 struct blk_mq_hw_ctx *hctx;
Ming Lei624dbe42014-05-27 23:35:13 +08001592 unsigned int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001593
1594 /*
1595 * Initialize hardware queues
1596 */
1597 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001598 int node;
1599
1600 node = hctx->numa_node;
1601 if (node == NUMA_NO_NODE)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001602 node = hctx->numa_node = set->numa_node;
Jens Axboe320ae512013-10-24 09:20:05 +01001603
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001604 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1605 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
Jens Axboe320ae512013-10-24 09:20:05 +01001606 spin_lock_init(&hctx->lock);
1607 INIT_LIST_HEAD(&hctx->dispatch);
1608 hctx->queue = q;
1609 hctx->queue_num = i;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001610 hctx->flags = set->flags;
1611 hctx->cmd_size = set->cmd_size;
Jens Axboe320ae512013-10-24 09:20:05 +01001612
1613 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1614 blk_mq_hctx_notify, hctx);
1615 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1616
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001617 hctx->tags = set->tags[i];
Jens Axboe320ae512013-10-24 09:20:05 +01001618
1619 /*
1620 * Allocate space for all possible cpus to avoid allocation in
1621 * runtime
1622 */
1623 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1624 GFP_KERNEL, node);
1625 if (!hctx->ctxs)
1626 break;
1627
Jens Axboe1429d7c2014-05-19 09:23:55 -06001628 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
Jens Axboe320ae512013-10-24 09:20:05 +01001629 break;
1630
Jens Axboe320ae512013-10-24 09:20:05 +01001631 hctx->nr_ctx = 0;
1632
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001633 if (set->ops->init_hctx &&
1634 set->ops->init_hctx(hctx, set->driver_data, i))
Jens Axboe320ae512013-10-24 09:20:05 +01001635 break;
1636 }
1637
1638 if (i == q->nr_hw_queues)
1639 return 0;
1640
1641 /*
1642 * Init failed
1643 */
Ming Lei624dbe42014-05-27 23:35:13 +08001644 blk_mq_exit_hw_queues(q, set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001645
1646 return 1;
1647}
1648
1649static void blk_mq_init_cpu_queues(struct request_queue *q,
1650 unsigned int nr_hw_queues)
1651{
1652 unsigned int i;
1653
1654 for_each_possible_cpu(i) {
1655 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1656 struct blk_mq_hw_ctx *hctx;
1657
1658 memset(__ctx, 0, sizeof(*__ctx));
1659 __ctx->cpu = i;
1660 spin_lock_init(&__ctx->lock);
1661 INIT_LIST_HEAD(&__ctx->rq_list);
1662 __ctx->queue = q;
1663
1664 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001665 if (!cpu_online(i))
1666 continue;
1667
Jens Axboee4043dc2014-04-09 10:18:23 -06001668 hctx = q->mq_ops->map_queue(q, i);
1669 cpumask_set_cpu(i, hctx->cpumask);
1670 hctx->nr_ctx++;
1671
Jens Axboe320ae512013-10-24 09:20:05 +01001672 /*
1673 * Set local node, IFF we have more than one hw queue. If
1674 * not, we remain on the home node of the device
1675 */
1676 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1677 hctx->numa_node = cpu_to_node(i);
1678 }
1679}
1680
1681static void blk_mq_map_swqueue(struct request_queue *q)
1682{
1683 unsigned int i;
1684 struct blk_mq_hw_ctx *hctx;
1685 struct blk_mq_ctx *ctx;
1686
1687 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001688 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001689 hctx->nr_ctx = 0;
1690 }
1691
1692 /*
1693 * Map software to hardware queues
1694 */
1695 queue_for_each_ctx(q, ctx, i) {
1696 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboee4043dc2014-04-09 10:18:23 -06001697 if (!cpu_online(i))
1698 continue;
1699
Jens Axboe320ae512013-10-24 09:20:05 +01001700 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001701 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001702 ctx->index_hw = hctx->nr_ctx;
1703 hctx->ctxs[hctx->nr_ctx++] = ctx;
1704 }
Jens Axboe506e9312014-05-07 10:26:44 -06001705
1706 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001707 /*
1708 * If not software queues are mapped to this hardware queue,
1709 * disable it and free the request entries
1710 */
1711 if (!hctx->nr_ctx) {
1712 struct blk_mq_tag_set *set = q->tag_set;
1713
1714 if (set->tags[i]) {
1715 blk_mq_free_rq_map(set, set->tags[i], i);
1716 set->tags[i] = NULL;
1717 hctx->tags = NULL;
1718 }
1719 continue;
1720 }
1721
1722 /*
1723 * Initialize batch roundrobin counts
1724 */
Jens Axboe506e9312014-05-07 10:26:44 -06001725 hctx->next_cpu = cpumask_first(hctx->cpumask);
1726 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1727 }
Jens Axboe320ae512013-10-24 09:20:05 +01001728}
1729
Jens Axboe0d2602c2014-05-13 15:10:52 -06001730static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1731{
1732 struct blk_mq_hw_ctx *hctx;
1733 struct request_queue *q;
1734 bool shared;
1735 int i;
1736
1737 if (set->tag_list.next == set->tag_list.prev)
1738 shared = false;
1739 else
1740 shared = true;
1741
1742 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1743 blk_mq_freeze_queue(q);
1744
1745 queue_for_each_hw_ctx(q, hctx, i) {
1746 if (shared)
1747 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1748 else
1749 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1750 }
1751 blk_mq_unfreeze_queue(q);
1752 }
1753}
1754
1755static void blk_mq_del_queue_tag_set(struct request_queue *q)
1756{
1757 struct blk_mq_tag_set *set = q->tag_set;
1758
1759 blk_mq_freeze_queue(q);
1760
1761 mutex_lock(&set->tag_list_lock);
1762 list_del_init(&q->tag_set_list);
1763 blk_mq_update_tag_set_depth(set);
1764 mutex_unlock(&set->tag_list_lock);
1765
1766 blk_mq_unfreeze_queue(q);
1767}
1768
1769static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1770 struct request_queue *q)
1771{
1772 q->tag_set = set;
1773
1774 mutex_lock(&set->tag_list_lock);
1775 list_add_tail(&q->tag_set_list, &set->tag_list);
1776 blk_mq_update_tag_set_depth(set);
1777 mutex_unlock(&set->tag_list_lock);
1778}
1779
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001780struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001781{
1782 struct blk_mq_hw_ctx **hctxs;
Ming Leie6cdb092014-06-03 11:24:06 +08001783 struct blk_mq_ctx __percpu *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001784 struct request_queue *q;
Jens Axboef14bbe72014-05-27 12:06:53 -06001785 unsigned int *map;
Jens Axboe320ae512013-10-24 09:20:05 +01001786 int i;
1787
Jens Axboe320ae512013-10-24 09:20:05 +01001788 ctx = alloc_percpu(struct blk_mq_ctx);
1789 if (!ctx)
1790 return ERR_PTR(-ENOMEM);
1791
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001792 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1793 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001794
1795 if (!hctxs)
1796 goto err_percpu;
1797
Jens Axboef14bbe72014-05-27 12:06:53 -06001798 map = blk_mq_make_queue_map(set);
1799 if (!map)
1800 goto err_map;
1801
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001802 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboef14bbe72014-05-27 12:06:53 -06001803 int node = blk_mq_hw_queue_to_node(map, i);
1804
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001805 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1806 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001807 if (!hctxs[i])
1808 goto err_hctxs;
1809
Jens Axboee4043dc2014-04-09 10:18:23 -06001810 if (!zalloc_cpumask_var(&hctxs[i]->cpumask, GFP_KERNEL))
1811 goto err_hctxs;
1812
Jens Axboe0d2602c2014-05-13 15:10:52 -06001813 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001814 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001815 hctxs[i]->queue_num = i;
1816 }
1817
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001818 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001819 if (!q)
1820 goto err_hctxs;
1821
Ming Lei3d2936f2014-05-27 23:35:14 +08001822 if (percpu_counter_init(&q->mq_usage_counter, 0))
1823 goto err_map;
1824
Jens Axboe320ae512013-10-24 09:20:05 +01001825 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1826 blk_queue_rq_timeout(q, 30000);
1827
1828 q->nr_queues = nr_cpu_ids;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001829 q->nr_hw_queues = set->nr_hw_queues;
Jens Axboef14bbe72014-05-27 12:06:53 -06001830 q->mq_map = map;
Jens Axboe320ae512013-10-24 09:20:05 +01001831
1832 q->queue_ctx = ctx;
1833 q->queue_hw_ctx = hctxs;
1834
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001835 q->mq_ops = set->ops;
Jens Axboe94eddfb2013-11-19 09:25:07 -07001836 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001837
Jens Axboe05f1dd52014-05-29 09:53:32 -06001838 if (!(set->flags & BLK_MQ_F_SG_MERGE))
1839 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
1840
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001841 q->sg_reserved_size = INT_MAX;
1842
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001843 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
1844 INIT_LIST_HEAD(&q->requeue_list);
1845 spin_lock_init(&q->requeue_lock);
1846
Jens Axboe07068d52014-05-22 10:40:51 -06001847 if (q->nr_hw_queues > 1)
1848 blk_queue_make_request(q, blk_mq_make_request);
1849 else
1850 blk_queue_make_request(q, blk_sq_make_request);
1851
Jens Axboe87ee7b12014-04-24 08:51:47 -06001852 blk_queue_rq_timed_out(q, blk_mq_rq_timed_out);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001853 if (set->timeout)
1854 blk_queue_rq_timeout(q, set->timeout);
Jens Axboe320ae512013-10-24 09:20:05 +01001855
Jens Axboeeba71762014-05-20 15:17:27 -06001856 /*
1857 * Do this after blk_queue_make_request() overrides it...
1858 */
1859 q->nr_requests = set->queue_depth;
1860
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001861 if (set->ops->complete)
1862 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001863
Jens Axboe320ae512013-10-24 09:20:05 +01001864 blk_mq_init_flush(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001865 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001866
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001867 q->flush_rq = kzalloc(round_up(sizeof(struct request) +
1868 set->cmd_size, cache_line_size()),
1869 GFP_KERNEL);
Christoph Hellwig18741982014-02-10 09:29:00 -07001870 if (!q->flush_rq)
Jens Axboe320ae512013-10-24 09:20:05 +01001871 goto err_hw;
1872
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001873 if (blk_mq_init_hw_queues(q, set))
Christoph Hellwig18741982014-02-10 09:29:00 -07001874 goto err_flush_rq;
1875
Jens Axboe320ae512013-10-24 09:20:05 +01001876 mutex_lock(&all_q_mutex);
1877 list_add_tail(&q->all_q_node, &all_q_list);
1878 mutex_unlock(&all_q_mutex);
1879
Jens Axboe0d2602c2014-05-13 15:10:52 -06001880 blk_mq_add_queue_tag_set(set, q);
1881
Jens Axboe484b4062014-05-21 14:01:15 -06001882 blk_mq_map_swqueue(q);
1883
Jens Axboe320ae512013-10-24 09:20:05 +01001884 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07001885
1886err_flush_rq:
1887 kfree(q->flush_rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001888err_hw:
Jens Axboe320ae512013-10-24 09:20:05 +01001889 blk_cleanup_queue(q);
1890err_hctxs:
Jens Axboef14bbe72014-05-27 12:06:53 -06001891 kfree(map);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001892 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboe320ae512013-10-24 09:20:05 +01001893 if (!hctxs[i])
1894 break;
Jens Axboee4043dc2014-04-09 10:18:23 -06001895 free_cpumask_var(hctxs[i]->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001896 kfree(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001897 }
Jens Axboef14bbe72014-05-27 12:06:53 -06001898err_map:
Jens Axboe320ae512013-10-24 09:20:05 +01001899 kfree(hctxs);
1900err_percpu:
1901 free_percpu(ctx);
1902 return ERR_PTR(-ENOMEM);
1903}
1904EXPORT_SYMBOL(blk_mq_init_queue);
1905
1906void blk_mq_free_queue(struct request_queue *q)
1907{
Ming Lei624dbe42014-05-27 23:35:13 +08001908 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001909
Jens Axboe0d2602c2014-05-13 15:10:52 -06001910 blk_mq_del_queue_tag_set(q);
1911
Ming Lei624dbe42014-05-27 23:35:13 +08001912 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1913 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01001914
Ming Lei3d2936f2014-05-27 23:35:14 +08001915 percpu_counter_destroy(&q->mq_usage_counter);
1916
Jens Axboe320ae512013-10-24 09:20:05 +01001917 free_percpu(q->queue_ctx);
1918 kfree(q->queue_hw_ctx);
1919 kfree(q->mq_map);
1920
1921 q->queue_ctx = NULL;
1922 q->queue_hw_ctx = NULL;
1923 q->mq_map = NULL;
1924
1925 mutex_lock(&all_q_mutex);
1926 list_del_init(&q->all_q_node);
1927 mutex_unlock(&all_q_mutex);
1928}
Jens Axboe320ae512013-10-24 09:20:05 +01001929
1930/* Basically redo blk_mq_init_queue with queue frozen */
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001931static void blk_mq_queue_reinit(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01001932{
1933 blk_mq_freeze_queue(q);
1934
Jens Axboe67aec142014-05-30 08:25:36 -06001935 blk_mq_sysfs_unregister(q);
1936
Jens Axboe320ae512013-10-24 09:20:05 +01001937 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1938
1939 /*
1940 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1941 * we should change hctx numa_node according to new topology (this
1942 * involves free and re-allocate memory, worthy doing?)
1943 */
1944
1945 blk_mq_map_swqueue(q);
1946
Jens Axboe67aec142014-05-30 08:25:36 -06001947 blk_mq_sysfs_register(q);
1948
Jens Axboe320ae512013-10-24 09:20:05 +01001949 blk_mq_unfreeze_queue(q);
1950}
1951
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001952static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1953 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01001954{
1955 struct request_queue *q;
1956
1957 /*
Jens Axboe9fccfed2014-05-08 14:50:19 -06001958 * Before new mappings are established, hotadded cpu might already
1959 * start handling requests. This doesn't break anything as we map
1960 * offline CPUs to first hardware queue. We will re-init the queue
1961 * below to get optimal settings.
Jens Axboe320ae512013-10-24 09:20:05 +01001962 */
1963 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1964 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1965 return NOTIFY_OK;
1966
1967 mutex_lock(&all_q_mutex);
1968 list_for_each_entry(q, &all_q_list, all_q_node)
1969 blk_mq_queue_reinit(q);
1970 mutex_unlock(&all_q_mutex);
1971 return NOTIFY_OK;
1972}
1973
Jens Axboea4391c62014-06-05 15:21:56 -06001974/*
1975 * Alloc a tag set to be associated with one or more request queues.
1976 * May fail with EINVAL for various error conditions. May adjust the
1977 * requested depth down, if if it too large. In that case, the set
1978 * value will be stored in set->queue_depth.
1979 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001980int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
1981{
1982 int i;
1983
1984 if (!set->nr_hw_queues)
1985 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06001986 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001987 return -EINVAL;
1988 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
1989 return -EINVAL;
1990
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001991 if (!set->nr_hw_queues || !set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001992 return -EINVAL;
1993
Jens Axboea4391c62014-06-05 15:21:56 -06001994 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
1995 pr_info("blk-mq: reduced tag depth to %u\n",
1996 BLK_MQ_MAX_DEPTH);
1997 set->queue_depth = BLK_MQ_MAX_DEPTH;
1998 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001999
Ming Lei48479002014-04-19 18:00:17 +08002000 set->tags = kmalloc_node(set->nr_hw_queues *
2001 sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002002 GFP_KERNEL, set->numa_node);
2003 if (!set->tags)
2004 goto out;
2005
2006 for (i = 0; i < set->nr_hw_queues; i++) {
2007 set->tags[i] = blk_mq_init_rq_map(set, i);
2008 if (!set->tags[i])
2009 goto out_unwind;
2010 }
2011
Jens Axboe0d2602c2014-05-13 15:10:52 -06002012 mutex_init(&set->tag_list_lock);
2013 INIT_LIST_HEAD(&set->tag_list);
2014
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002015 return 0;
2016
2017out_unwind:
2018 while (--i >= 0)
2019 blk_mq_free_rq_map(set, set->tags[i], i);
2020out:
2021 return -ENOMEM;
2022}
2023EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2024
2025void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2026{
2027 int i;
2028
Jens Axboe484b4062014-05-21 14:01:15 -06002029 for (i = 0; i < set->nr_hw_queues; i++) {
2030 if (set->tags[i])
2031 blk_mq_free_rq_map(set, set->tags[i], i);
2032 }
2033
Ming Lei981bd182014-04-24 00:07:34 +08002034 kfree(set->tags);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002035}
2036EXPORT_SYMBOL(blk_mq_free_tag_set);
2037
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002038int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2039{
2040 struct blk_mq_tag_set *set = q->tag_set;
2041 struct blk_mq_hw_ctx *hctx;
2042 int i, ret;
2043
2044 if (!set || nr > set->queue_depth)
2045 return -EINVAL;
2046
2047 ret = 0;
2048 queue_for_each_hw_ctx(q, hctx, i) {
2049 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2050 if (ret)
2051 break;
2052 }
2053
2054 if (!ret)
2055 q->nr_requests = nr;
2056
2057 return ret;
2058}
2059
Jens Axboe676141e2014-03-20 13:29:18 -06002060void blk_mq_disable_hotplug(void)
2061{
2062 mutex_lock(&all_q_mutex);
2063}
2064
2065void blk_mq_enable_hotplug(void)
2066{
2067 mutex_unlock(&all_q_mutex);
2068}
2069
Jens Axboe320ae512013-10-24 09:20:05 +01002070static int __init blk_mq_init(void)
2071{
Jens Axboe320ae512013-10-24 09:20:05 +01002072 blk_mq_cpu_init();
2073
2074 /* Must be called after percpu_counter_hotcpu_callback() */
2075 hotcpu_notifier(blk_mq_queue_reinit_notify, -10);
2076
2077 return 0;
2078}
2079subsys_initcall(blk_mq_init);