blob: c9e89a8792e33f5eb723b95fcc9fa7e1a4b5888f [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{
Tejun Heoadd703f2014-07-01 10:34:38 -060081 while (true) {
82 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +010083
Tejun Heoadd703f2014-07-01 10:34:38 -060084 if (percpu_ref_tryget_live(&q->mq_usage_counter))
85 return 0;
Keith Busch3b632cf2014-06-06 10:22:07 -060086
Tejun Heoadd703f2014-07-01 10:34:38 -060087 ret = wait_event_interruptible(q->mq_freeze_wq,
88 !q->mq_freeze_depth || blk_queue_dying(q));
89 if (blk_queue_dying(q))
90 return -ENODEV;
91 if (ret)
92 return ret;
93 }
Jens Axboe320ae512013-10-24 09:20:05 +010094}
95
96static void blk_mq_queue_exit(struct request_queue *q)
97{
Tejun Heoadd703f2014-07-01 10:34:38 -060098 percpu_ref_put(&q->mq_usage_counter);
99}
100
101static void blk_mq_usage_counter_release(struct percpu_ref *ref)
102{
103 struct request_queue *q =
104 container_of(ref, struct request_queue, mq_usage_counter);
105
106 wake_up_all(&q->mq_freeze_wq);
Jens Axboe320ae512013-10-24 09:20:05 +0100107}
108
Tejun Heo72d6f022014-07-01 10:33:02 -0600109/*
110 * Guarantee no request is in use, so we can change any data structure of
111 * the queue afterward.
112 */
113void blk_mq_freeze_queue(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +0800114{
Tejun Heo72d6f022014-07-01 10:33:02 -0600115 spin_lock_irq(q->queue_lock);
116 q->mq_freeze_depth++;
117 spin_unlock_irq(q->queue_lock);
118
Tejun Heoadd703f2014-07-01 10:34:38 -0600119 percpu_ref_kill(&q->mq_usage_counter);
120 blk_mq_run_queues(q, false);
121 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->mq_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +0800122}
123
Jens Axboe320ae512013-10-24 09:20:05 +0100124static void blk_mq_unfreeze_queue(struct request_queue *q)
125{
126 bool wake = false;
127
128 spin_lock_irq(q->queue_lock);
Tejun Heo780db202014-07-01 10:31:13 -0600129 wake = !--q->mq_freeze_depth;
130 WARN_ON_ONCE(q->mq_freeze_depth < 0);
Jens Axboe320ae512013-10-24 09:20:05 +0100131 spin_unlock_irq(q->queue_lock);
Tejun Heoadd703f2014-07-01 10:34:38 -0600132 if (wake) {
133 percpu_ref_reinit(&q->mq_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100134 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600135 }
Jens Axboe320ae512013-10-24 09:20:05 +0100136}
137
138bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
139{
140 return blk_mq_has_free_tags(hctx->tags);
141}
142EXPORT_SYMBOL(blk_mq_can_queue);
143
Jens Axboe94eddfb2013-11-19 09:25:07 -0700144static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
145 struct request *rq, unsigned int rw_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100146{
Jens Axboe94eddfb2013-11-19 09:25:07 -0700147 if (blk_queue_io_stat(q))
148 rw_flags |= REQ_IO_STAT;
149
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200150 INIT_LIST_HEAD(&rq->queuelist);
151 /* csd/requeue_work/fifo_time is initialized before use */
152 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100153 rq->mq_ctx = ctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600154 rq->cmd_flags |= rw_flags;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200155 /* do not touch atomic flags, it needs atomic ops against the timer */
156 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200157 INIT_HLIST_NODE(&rq->hash);
158 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200159 rq->rq_disk = NULL;
160 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600161 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200162#ifdef CONFIG_BLK_CGROUP
163 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700164 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200165 rq->io_start_time_ns = 0;
166#endif
167 rq->nr_phys_segments = 0;
168#if defined(CONFIG_BLK_DEV_INTEGRITY)
169 rq->nr_integrity_segments = 0;
170#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200171 rq->special = NULL;
172 /* tag was already set */
173 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200174
175 rq->extra_len = 0;
176 rq->sense_len = 0;
177 rq->resid_len = 0;
178 rq->sense = NULL;
179
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200180 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600181 rq->timeout = 0;
182
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200183 rq->end_io = NULL;
184 rq->end_io_data = NULL;
185 rq->next_rq = NULL;
186
Jens Axboe320ae512013-10-24 09:20:05 +0100187 ctx->rq_dispatched[rw_is_sync(rw_flags)]++;
188}
189
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200190static struct request *
Ming Leicb96a422014-06-01 00:43:37 +0800191__blk_mq_alloc_request(struct blk_mq_alloc_data *data, int rw)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200192{
193 struct request *rq;
194 unsigned int tag;
195
Ming Leicb96a422014-06-01 00:43:37 +0800196 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200197 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a422014-06-01 00:43:37 +0800198 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200199
200 rq->cmd_flags = 0;
Ming Leicb96a422014-06-01 00:43:37 +0800201 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200202 rq->cmd_flags = REQ_MQ_INFLIGHT;
Ming Leicb96a422014-06-01 00:43:37 +0800203 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200204 }
205
206 rq->tag = tag;
Ming Leicb96a422014-06-01 00:43:37 +0800207 blk_mq_rq_ctx_init(data->q, data->ctx, rq, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200208 return rq;
209 }
210
211 return NULL;
212}
213
Christoph Hellwig4ce01dd2014-05-27 20:59:46 +0200214struct request *blk_mq_alloc_request(struct request_queue *q, int rw, gfp_t gfp,
215 bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100216{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200217 struct blk_mq_ctx *ctx;
218 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100219 struct request *rq;
Ming Leicb96a422014-06-01 00:43:37 +0800220 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +0100221
222 if (blk_mq_queue_enter(q))
223 return NULL;
224
Christoph Hellwigd8525642014-05-27 20:59:50 +0200225 ctx = blk_mq_get_ctx(q);
226 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +0800227 blk_mq_set_alloc_data(&alloc_data, q, gfp & ~__GFP_WAIT,
228 reserved, ctx, hctx);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200229
Ming Leicb96a422014-06-01 00:43:37 +0800230 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200231 if (!rq && (gfp & __GFP_WAIT)) {
232 __blk_mq_run_hw_queue(hctx);
233 blk_mq_put_ctx(ctx);
234
235 ctx = blk_mq_get_ctx(q);
236 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +0800237 blk_mq_set_alloc_data(&alloc_data, q, gfp, reserved, ctx,
238 hctx);
239 rq = __blk_mq_alloc_request(&alloc_data, rw);
240 ctx = alloc_data.ctx;
Christoph Hellwigd8525642014-05-27 20:59:50 +0200241 }
242 blk_mq_put_ctx(ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100243 return rq;
244}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600245EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100246
Jens Axboe320ae512013-10-24 09:20:05 +0100247static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
248 struct blk_mq_ctx *ctx, struct request *rq)
249{
250 const int tag = rq->tag;
251 struct request_queue *q = rq->q;
252
Jens Axboe0d2602c2014-05-13 15:10:52 -0600253 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
254 atomic_dec(&hctx->nr_active);
255
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200256 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600257 blk_mq_put_tag(hctx, tag, &ctx->last_tag);
Jens Axboe320ae512013-10-24 09:20:05 +0100258 blk_mq_queue_exit(q);
259}
260
261void blk_mq_free_request(struct request *rq)
262{
263 struct blk_mq_ctx *ctx = rq->mq_ctx;
264 struct blk_mq_hw_ctx *hctx;
265 struct request_queue *q = rq->q;
266
267 ctx->rq_completed[rq_is_sync(rq)]++;
268
269 hctx = q->mq_ops->map_queue(q, ctx->cpu);
270 __blk_mq_free_request(hctx, ctx, rq);
271}
272
Christoph Hellwig8727af42014-04-14 10:30:08 +0200273/*
274 * Clone all relevant state from a request that has been put on hold in
275 * the flush state machine into the preallocated flush request that hangs
276 * off the request queue.
277 *
278 * For a driver the flush request should be invisible, that's why we are
279 * impersonating the original request here.
280 */
281void blk_mq_clone_flush_request(struct request *flush_rq,
282 struct request *orig_rq)
283{
284 struct blk_mq_hw_ctx *hctx =
285 orig_rq->q->mq_ops->map_queue(orig_rq->q, orig_rq->mq_ctx->cpu);
286
287 flush_rq->mq_ctx = orig_rq->mq_ctx;
288 flush_rq->tag = orig_rq->tag;
289 memcpy(blk_mq_rq_to_pdu(flush_rq), blk_mq_rq_to_pdu(orig_rq),
290 hctx->cmd_size);
291}
292
Christoph Hellwig63151a42014-04-16 09:44:52 +0200293inline void __blk_mq_end_io(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100294{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700295 blk_account_io_done(rq);
296
Christoph Hellwig91b63632014-04-16 09:44:53 +0200297 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100298 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200299 } else {
300 if (unlikely(blk_bidi_rq(rq)))
301 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100302 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200303 }
Jens Axboe320ae512013-10-24 09:20:05 +0100304}
Christoph Hellwig63151a42014-04-16 09:44:52 +0200305EXPORT_SYMBOL(__blk_mq_end_io);
306
307void blk_mq_end_io(struct request *rq, int error)
308{
309 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
310 BUG();
311 __blk_mq_end_io(rq, error);
312}
313EXPORT_SYMBOL(blk_mq_end_io);
Jens Axboe320ae512013-10-24 09:20:05 +0100314
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800315static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100316{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800317 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100318
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800319 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100320}
321
Jens Axboeed851862014-05-30 21:20:50 -0600322static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100323{
324 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700325 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100326 int cpu;
327
Christoph Hellwig38535202014-04-25 02:32:53 -0700328 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800329 rq->q->softirq_done_fn(rq);
330 return;
331 }
Jens Axboe320ae512013-10-24 09:20:05 +0100332
333 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700334 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
335 shared = cpus_share_cache(cpu, ctx->cpu);
336
337 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800338 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800339 rq->csd.info = rq;
340 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100341 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800342 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800343 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800344 }
Jens Axboe320ae512013-10-24 09:20:05 +0100345 put_cpu();
346}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800347
Jens Axboeed851862014-05-30 21:20:50 -0600348void __blk_mq_complete_request(struct request *rq)
349{
350 struct request_queue *q = rq->q;
351
352 if (!q->softirq_done_fn)
353 blk_mq_end_io(rq, rq->errors);
354 else
355 blk_mq_ipi_complete_request(rq);
356}
357
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800358/**
359 * blk_mq_complete_request - end I/O on a request
360 * @rq: the request being processed
361 *
362 * Description:
363 * Ends all I/O on a request. It does not handle partial completions.
364 * The actual completion happens out-of-order, through a IPI handler.
365 **/
366void blk_mq_complete_request(struct request *rq)
367{
Jens Axboe95f09682014-05-27 17:46:48 -0600368 struct request_queue *q = rq->q;
369
370 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800371 return;
Jens Axboeed851862014-05-30 21:20:50 -0600372 if (!blk_mark_rq_complete(rq))
373 __blk_mq_complete_request(rq);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800374}
375EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100376
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800377static void blk_mq_start_request(struct request *rq, bool last)
Jens Axboe320ae512013-10-24 09:20:05 +0100378{
379 struct request_queue *q = rq->q;
380
381 trace_block_rq_issue(q, rq);
382
Christoph Hellwig742ee692014-04-14 10:30:06 +0200383 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200384 if (unlikely(blk_bidi_rq(rq)))
385 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200386
Ming Lei2b8393b2014-06-10 00:16:41 +0800387 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600388
389 /*
390 * Mark us as started and clear complete. Complete might have been
391 * set if requeue raced with timeout, which then marked it as
392 * complete. So be sure to clear complete again when we start
393 * the request, otherwise we'll ignore the completion event.
394 */
Jens Axboe4b570522014-05-29 11:00:11 -0600395 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
396 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
397 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
398 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800399
400 if (q->dma_drain_size && blk_rq_bytes(rq)) {
401 /*
402 * Make sure space for the drain appears. We know we can do
403 * this because max_hw_segments has been adjusted to be one
404 * fewer than the device can handle.
405 */
406 rq->nr_phys_segments++;
407 }
408
409 /*
410 * Flag the last request in the series so that drivers know when IO
411 * should be kicked off, if they don't do it on a per-request basis.
412 *
413 * Note: the flag isn't the only condition drivers should do kick off.
414 * If drive is busy, the last request might not have the bit set.
415 */
416 if (last)
417 rq->cmd_flags |= REQ_END;
Jens Axboe320ae512013-10-24 09:20:05 +0100418}
419
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200420static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100421{
422 struct request_queue *q = rq->q;
423
424 trace_block_rq_requeue(q, rq);
425 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800426
427 rq->cmd_flags &= ~REQ_END;
428
429 if (q->dma_drain_size && blk_rq_bytes(rq))
430 rq->nr_phys_segments--;
Jens Axboe320ae512013-10-24 09:20:05 +0100431}
432
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200433void blk_mq_requeue_request(struct request *rq)
434{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200435 __blk_mq_requeue_request(rq);
436 blk_clear_rq_complete(rq);
437
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200438 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600439 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200440}
441EXPORT_SYMBOL(blk_mq_requeue_request);
442
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600443static void blk_mq_requeue_work(struct work_struct *work)
444{
445 struct request_queue *q =
446 container_of(work, struct request_queue, requeue_work);
447 LIST_HEAD(rq_list);
448 struct request *rq, *next;
449 unsigned long flags;
450
451 spin_lock_irqsave(&q->requeue_lock, flags);
452 list_splice_init(&q->requeue_list, &rq_list);
453 spin_unlock_irqrestore(&q->requeue_lock, flags);
454
455 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
456 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
457 continue;
458
459 rq->cmd_flags &= ~REQ_SOFTBARRIER;
460 list_del_init(&rq->queuelist);
461 blk_mq_insert_request(rq, true, false, false);
462 }
463
464 while (!list_empty(&rq_list)) {
465 rq = list_entry(rq_list.next, struct request, queuelist);
466 list_del_init(&rq->queuelist);
467 blk_mq_insert_request(rq, false, false, false);
468 }
469
470 blk_mq_run_queues(q, false);
471}
472
473void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
474{
475 struct request_queue *q = rq->q;
476 unsigned long flags;
477
478 /*
479 * We abuse this flag that is otherwise used by the I/O scheduler to
480 * request head insertation from the workqueue.
481 */
482 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
483
484 spin_lock_irqsave(&q->requeue_lock, flags);
485 if (at_head) {
486 rq->cmd_flags |= REQ_SOFTBARRIER;
487 list_add(&rq->queuelist, &q->requeue_list);
488 } else {
489 list_add_tail(&rq->queuelist, &q->requeue_list);
490 }
491 spin_unlock_irqrestore(&q->requeue_lock, flags);
492}
493EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
494
495void blk_mq_kick_requeue_list(struct request_queue *q)
496{
497 kblockd_schedule_work(&q->requeue_work);
498}
499EXPORT_SYMBOL(blk_mq_kick_requeue_list);
500
Jens Axboe0e62f512014-06-04 10:23:49 -0600501static inline bool is_flush_request(struct request *rq, unsigned int tag)
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600502{
Jens Axboe0e62f512014-06-04 10:23:49 -0600503 return ((rq->cmd_flags & REQ_FLUSH_SEQ) &&
504 rq->q->flush_rq->tag == tag);
505}
Shaohua Li22302372014-05-30 08:06:42 -0600506
Jens Axboe0e62f512014-06-04 10:23:49 -0600507struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
508{
509 struct request *rq = tags->rqs[tag];
Shaohua Li22302372014-05-30 08:06:42 -0600510
Jens Axboe0e62f512014-06-04 10:23:49 -0600511 if (!is_flush_request(rq, tag))
512 return rq;
513
514 return rq->q->flush_rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600515}
516EXPORT_SYMBOL(blk_mq_tag_to_rq);
517
Jens Axboe320ae512013-10-24 09:20:05 +0100518struct blk_mq_timeout_data {
519 struct blk_mq_hw_ctx *hctx;
520 unsigned long *next;
521 unsigned int *next_set;
522};
523
524static void blk_mq_timeout_check(void *__data, unsigned long *free_tags)
525{
526 struct blk_mq_timeout_data *data = __data;
527 struct blk_mq_hw_ctx *hctx = data->hctx;
528 unsigned int tag;
529
530 /* It may not be in flight yet (this is where
531 * the REQ_ATOMIC_STARTED flag comes in). The requests are
532 * statically allocated, so we know it's always safe to access the
533 * memory associated with a bit offset into ->rqs[].
534 */
535 tag = 0;
536 do {
537 struct request *rq;
538
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600539 tag = find_next_zero_bit(free_tags, hctx->tags->nr_tags, tag);
540 if (tag >= hctx->tags->nr_tags)
Jens Axboe320ae512013-10-24 09:20:05 +0100541 break;
542
Jens Axboe0e62f512014-06-04 10:23:49 -0600543 rq = blk_mq_tag_to_rq(hctx->tags, tag++);
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600544 if (rq->q != hctx->queue)
545 continue;
Jens Axboe320ae512013-10-24 09:20:05 +0100546 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
547 continue;
548
549 blk_rq_check_expired(rq, data->next, data->next_set);
550 } while (1);
551}
552
553static void blk_mq_hw_ctx_check_timeout(struct blk_mq_hw_ctx *hctx,
554 unsigned long *next,
555 unsigned int *next_set)
556{
557 struct blk_mq_timeout_data data = {
558 .hctx = hctx,
559 .next = next,
560 .next_set = next_set,
561 };
562
563 /*
564 * Ask the tagging code to iterate busy requests, so we can
565 * check them for timeout.
566 */
567 blk_mq_tag_busy_iter(hctx->tags, blk_mq_timeout_check, &data);
568}
569
Jens Axboe87ee7b12014-04-24 08:51:47 -0600570static enum blk_eh_timer_return blk_mq_rq_timed_out(struct request *rq)
571{
572 struct request_queue *q = rq->q;
573
574 /*
575 * We know that complete is set at this point. If STARTED isn't set
576 * anymore, then the request isn't active and the "timeout" should
577 * just be ignored. This can happen due to the bitflag ordering.
578 * Timeout first checks if STARTED is set, and if it is, assumes
579 * the request is active. But if we race with completion, then
580 * we both flags will get cleared. So check here again, and ignore
581 * a timeout event with a request that isn't active.
582 */
583 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
584 return BLK_EH_NOT_HANDLED;
585
586 if (!q->mq_ops->timeout)
587 return BLK_EH_RESET_TIMER;
588
589 return q->mq_ops->timeout(rq);
590}
591
Jens Axboe320ae512013-10-24 09:20:05 +0100592static void blk_mq_rq_timer(unsigned long data)
593{
594 struct request_queue *q = (struct request_queue *) data;
595 struct blk_mq_hw_ctx *hctx;
596 unsigned long next = 0;
597 int i, next_set = 0;
598
Jens Axboe484b4062014-05-21 14:01:15 -0600599 queue_for_each_hw_ctx(q, hctx, i) {
600 /*
601 * If not software queues are currently mapped to this
602 * hardware queue, there's nothing to check
603 */
604 if (!hctx->nr_ctx || !hctx->tags)
605 continue;
606
Jens Axboe320ae512013-10-24 09:20:05 +0100607 blk_mq_hw_ctx_check_timeout(hctx, &next, &next_set);
Jens Axboe484b4062014-05-21 14:01:15 -0600608 }
Jens Axboe320ae512013-10-24 09:20:05 +0100609
Jens Axboe0d2602c2014-05-13 15:10:52 -0600610 if (next_set) {
611 next = blk_rq_timeout(round_jiffies_up(next));
612 mod_timer(&q->timeout, next);
613 } else {
614 queue_for_each_hw_ctx(q, hctx, i)
615 blk_mq_tag_idle(hctx);
616 }
Jens Axboe320ae512013-10-24 09:20:05 +0100617}
618
619/*
620 * Reverse check our software queue for entries that we could potentially
621 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
622 * too much time checking for merges.
623 */
624static bool blk_mq_attempt_merge(struct request_queue *q,
625 struct blk_mq_ctx *ctx, struct bio *bio)
626{
627 struct request *rq;
628 int checked = 8;
629
630 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
631 int el_ret;
632
633 if (!checked--)
634 break;
635
636 if (!blk_rq_merge_ok(rq, bio))
637 continue;
638
639 el_ret = blk_try_merge(rq, bio);
640 if (el_ret == ELEVATOR_BACK_MERGE) {
641 if (bio_attempt_back_merge(q, rq, bio)) {
642 ctx->rq_merged++;
643 return true;
644 }
645 break;
646 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
647 if (bio_attempt_front_merge(q, rq, bio)) {
648 ctx->rq_merged++;
649 return true;
650 }
651 break;
652 }
653 }
654
655 return false;
656}
657
Jens Axboe320ae512013-10-24 09:20:05 +0100658/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600659 * Process software queues that have been marked busy, splicing them
660 * to the for-dispatch
661 */
662static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
663{
664 struct blk_mq_ctx *ctx;
665 int i;
666
667 for (i = 0; i < hctx->ctx_map.map_size; i++) {
668 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
669 unsigned int off, bit;
670
671 if (!bm->word)
672 continue;
673
674 bit = 0;
675 off = i * hctx->ctx_map.bits_per_word;
676 do {
677 bit = find_next_bit(&bm->word, bm->depth, bit);
678 if (bit >= bm->depth)
679 break;
680
681 ctx = hctx->ctxs[bit + off];
682 clear_bit(bit, &bm->word);
683 spin_lock(&ctx->lock);
684 list_splice_tail_init(&ctx->rq_list, list);
685 spin_unlock(&ctx->lock);
686
687 bit++;
688 } while (1);
689 }
690}
691
692/*
Jens Axboe320ae512013-10-24 09:20:05 +0100693 * Run this hardware queue, pulling any software queues mapped to it in.
694 * Note that this function currently has various problems around ordering
695 * of IO. In particular, we'd like FIFO behaviour on handling existing
696 * items on the hctx->dispatch list. Ignore that for now.
697 */
698static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
699{
700 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100701 struct request *rq;
702 LIST_HEAD(rq_list);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600703 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100704
Jens Axboefd1270d2014-04-16 09:23:48 -0600705 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
Jens Axboee4043dc2014-04-09 10:18:23 -0600706
Jens Axboe5d12f902014-03-19 15:25:02 -0600707 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100708 return;
709
710 hctx->run++;
711
712 /*
713 * Touch any software queue that has pending entries.
714 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600715 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100716
717 /*
718 * If we have previous entries on our dispatch list, grab them
719 * and stuff them at the front for more fair dispatch.
720 */
721 if (!list_empty_careful(&hctx->dispatch)) {
722 spin_lock(&hctx->lock);
723 if (!list_empty(&hctx->dispatch))
724 list_splice_init(&hctx->dispatch, &rq_list);
725 spin_unlock(&hctx->lock);
726 }
727
728 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100729 * Now process all the entries, sending them to the driver.
730 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600731 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100732 while (!list_empty(&rq_list)) {
733 int ret;
734
735 rq = list_first_entry(&rq_list, struct request, queuelist);
736 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100737
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800738 blk_mq_start_request(rq, list_empty(&rq_list));
Jens Axboe320ae512013-10-24 09:20:05 +0100739
740 ret = q->mq_ops->queue_rq(hctx, rq);
741 switch (ret) {
742 case BLK_MQ_RQ_QUEUE_OK:
743 queued++;
744 continue;
745 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100746 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200747 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100748 break;
749 default:
750 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100751 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800752 rq->errors = -EIO;
Jens Axboe320ae512013-10-24 09:20:05 +0100753 blk_mq_end_io(rq, rq->errors);
754 break;
755 }
756
757 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
758 break;
759 }
760
761 if (!queued)
762 hctx->dispatched[0]++;
763 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
764 hctx->dispatched[ilog2(queued) + 1]++;
765
766 /*
767 * Any items that need requeuing? Stuff them into hctx->dispatch,
768 * that is where we will continue on next queue run.
769 */
770 if (!list_empty(&rq_list)) {
771 spin_lock(&hctx->lock);
772 list_splice(&rq_list, &hctx->dispatch);
773 spin_unlock(&hctx->lock);
774 }
775}
776
Jens Axboe506e9312014-05-07 10:26:44 -0600777/*
778 * It'd be great if the workqueue API had a way to pass
779 * in a mask and had some smarts for more clever placement.
780 * For now we just round-robin here, switching for every
781 * BLK_MQ_CPU_WORK_BATCH queued items.
782 */
783static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
784{
785 int cpu = hctx->next_cpu;
786
787 if (--hctx->next_cpu_batch <= 0) {
788 int next_cpu;
789
790 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
791 if (next_cpu >= nr_cpu_ids)
792 next_cpu = cpumask_first(hctx->cpumask);
793
794 hctx->next_cpu = next_cpu;
795 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
796 }
797
798 return cpu;
799}
800
Jens Axboe320ae512013-10-24 09:20:05 +0100801void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
802{
Jens Axboe5d12f902014-03-19 15:25:02 -0600803 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100804 return;
805
Jens Axboee4043dc2014-04-09 10:18:23 -0600806 if (!async && cpumask_test_cpu(smp_processor_id(), hctx->cpumask))
Jens Axboe320ae512013-10-24 09:20:05 +0100807 __blk_mq_run_hw_queue(hctx);
Jens Axboee4043dc2014-04-09 10:18:23 -0600808 else if (hctx->queue->nr_hw_queues == 1)
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600809 kblockd_schedule_delayed_work(&hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600810 else {
811 unsigned int cpu;
812
Jens Axboe506e9312014-05-07 10:26:44 -0600813 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600814 kblockd_schedule_delayed_work_on(cpu, &hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600815 }
Jens Axboe320ae512013-10-24 09:20:05 +0100816}
817
818void blk_mq_run_queues(struct request_queue *q, bool async)
819{
820 struct blk_mq_hw_ctx *hctx;
821 int i;
822
823 queue_for_each_hw_ctx(q, hctx, i) {
824 if ((!blk_mq_hctx_has_pending(hctx) &&
825 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600826 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100827 continue;
828
Jens Axboee4043dc2014-04-09 10:18:23 -0600829 preempt_disable();
Jens Axboe320ae512013-10-24 09:20:05 +0100830 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600831 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100832 }
833}
834EXPORT_SYMBOL(blk_mq_run_queues);
835
836void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
837{
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600838 cancel_delayed_work(&hctx->run_work);
839 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100840 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
841}
842EXPORT_SYMBOL(blk_mq_stop_hw_queue);
843
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100844void blk_mq_stop_hw_queues(struct request_queue *q)
845{
846 struct blk_mq_hw_ctx *hctx;
847 int i;
848
849 queue_for_each_hw_ctx(q, hctx, i)
850 blk_mq_stop_hw_queue(hctx);
851}
852EXPORT_SYMBOL(blk_mq_stop_hw_queues);
853
Jens Axboe320ae512013-10-24 09:20:05 +0100854void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
855{
856 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600857
858 preempt_disable();
Jens Axboe0ffbce82014-06-25 08:22:34 -0600859 blk_mq_run_hw_queue(hctx, false);
Jens Axboee4043dc2014-04-09 10:18:23 -0600860 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100861}
862EXPORT_SYMBOL(blk_mq_start_hw_queue);
863
Christoph Hellwig2f268552014-04-16 09:44:56 +0200864void blk_mq_start_hw_queues(struct request_queue *q)
865{
866 struct blk_mq_hw_ctx *hctx;
867 int i;
868
869 queue_for_each_hw_ctx(q, hctx, i)
870 blk_mq_start_hw_queue(hctx);
871}
872EXPORT_SYMBOL(blk_mq_start_hw_queues);
873
874
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200875void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100876{
877 struct blk_mq_hw_ctx *hctx;
878 int i;
879
880 queue_for_each_hw_ctx(q, hctx, i) {
881 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
882 continue;
883
884 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600885 preempt_disable();
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200886 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600887 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100888 }
889}
890EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
891
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600892static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100893{
894 struct blk_mq_hw_ctx *hctx;
895
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600896 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600897
Jens Axboe320ae512013-10-24 09:20:05 +0100898 __blk_mq_run_hw_queue(hctx);
899}
900
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600901static void blk_mq_delay_work_fn(struct work_struct *work)
902{
903 struct blk_mq_hw_ctx *hctx;
904
905 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
906
907 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
908 __blk_mq_run_hw_queue(hctx);
909}
910
911void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
912{
913 unsigned long tmo = msecs_to_jiffies(msecs);
914
915 if (hctx->queue->nr_hw_queues == 1)
916 kblockd_schedule_delayed_work(&hctx->delay_work, tmo);
917 else {
918 unsigned int cpu;
919
Jens Axboe506e9312014-05-07 10:26:44 -0600920 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600921 kblockd_schedule_delayed_work_on(cpu, &hctx->delay_work, tmo);
922 }
923}
924EXPORT_SYMBOL(blk_mq_delay_queue);
925
Jens Axboe320ae512013-10-24 09:20:05 +0100926static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800927 struct request *rq, bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +0100928{
929 struct blk_mq_ctx *ctx = rq->mq_ctx;
930
Jens Axboe01b983c2013-11-19 18:59:10 -0700931 trace_block_rq_insert(hctx->queue, rq);
932
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800933 if (at_head)
934 list_add(&rq->queuelist, &ctx->rq_list);
935 else
936 list_add_tail(&rq->queuelist, &ctx->rq_list);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600937
Jens Axboe320ae512013-10-24 09:20:05 +0100938 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100939}
940
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600941void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
942 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100943{
944 struct request_queue *q = rq->q;
945 struct blk_mq_hw_ctx *hctx;
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600946 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100947
948 current_ctx = blk_mq_get_ctx(q);
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600949 if (!cpu_online(ctx->cpu))
950 rq->mq_ctx = ctx = current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100951
Jens Axboe320ae512013-10-24 09:20:05 +0100952 hctx = q->mq_ops->map_queue(q, ctx->cpu);
953
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600954 if (rq->cmd_flags & (REQ_FLUSH | REQ_FUA) &&
955 !(rq->cmd_flags & (REQ_FLUSH_SEQ))) {
956 blk_insert_flush(rq);
957 } else {
958 spin_lock(&ctx->lock);
959 __blk_mq_insert_request(hctx, rq, at_head);
960 spin_unlock(&ctx->lock);
961 }
Jens Axboe320ae512013-10-24 09:20:05 +0100962
Jens Axboe320ae512013-10-24 09:20:05 +0100963 if (run_queue)
964 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600965
966 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100967}
968
969static void blk_mq_insert_requests(struct request_queue *q,
970 struct blk_mq_ctx *ctx,
971 struct list_head *list,
972 int depth,
973 bool from_schedule)
974
975{
976 struct blk_mq_hw_ctx *hctx;
977 struct blk_mq_ctx *current_ctx;
978
979 trace_block_unplug(q, depth, !from_schedule);
980
981 current_ctx = blk_mq_get_ctx(q);
982
983 if (!cpu_online(ctx->cpu))
984 ctx = current_ctx;
985 hctx = q->mq_ops->map_queue(q, ctx->cpu);
986
987 /*
988 * preemption doesn't flush plug list, so it's possible ctx->cpu is
989 * offline now
990 */
991 spin_lock(&ctx->lock);
992 while (!list_empty(list)) {
993 struct request *rq;
994
995 rq = list_first_entry(list, struct request, queuelist);
996 list_del_init(&rq->queuelist);
997 rq->mq_ctx = ctx;
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800998 __blk_mq_insert_request(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100999 }
1000 spin_unlock(&ctx->lock);
1001
Jens Axboe320ae512013-10-24 09:20:05 +01001002 blk_mq_run_hw_queue(hctx, from_schedule);
Jens Axboee4043dc2014-04-09 10:18:23 -06001003 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001004}
1005
1006static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1007{
1008 struct request *rqa = container_of(a, struct request, queuelist);
1009 struct request *rqb = container_of(b, struct request, queuelist);
1010
1011 return !(rqa->mq_ctx < rqb->mq_ctx ||
1012 (rqa->mq_ctx == rqb->mq_ctx &&
1013 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1014}
1015
1016void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1017{
1018 struct blk_mq_ctx *this_ctx;
1019 struct request_queue *this_q;
1020 struct request *rq;
1021 LIST_HEAD(list);
1022 LIST_HEAD(ctx_list);
1023 unsigned int depth;
1024
1025 list_splice_init(&plug->mq_list, &list);
1026
1027 list_sort(NULL, &list, plug_ctx_cmp);
1028
1029 this_q = NULL;
1030 this_ctx = NULL;
1031 depth = 0;
1032
1033 while (!list_empty(&list)) {
1034 rq = list_entry_rq(list.next);
1035 list_del_init(&rq->queuelist);
1036 BUG_ON(!rq->q);
1037 if (rq->mq_ctx != this_ctx) {
1038 if (this_ctx) {
1039 blk_mq_insert_requests(this_q, this_ctx,
1040 &ctx_list, depth,
1041 from_schedule);
1042 }
1043
1044 this_ctx = rq->mq_ctx;
1045 this_q = rq->q;
1046 depth = 0;
1047 }
1048
1049 depth++;
1050 list_add_tail(&rq->queuelist, &ctx_list);
1051 }
1052
1053 /*
1054 * If 'this_ctx' is set, we know we have entries to complete
1055 * on 'ctx_list'. Do those.
1056 */
1057 if (this_ctx) {
1058 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1059 from_schedule);
1060 }
1061}
1062
1063static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1064{
1065 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001066
Jens Axboe3ee32372014-06-09 09:36:53 -06001067 if (blk_do_io_stat(rq))
Jens Axboe4b570522014-05-29 11:00:11 -06001068 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001069}
1070
Jens Axboe274a5842014-08-15 12:44:08 -06001071static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1072{
1073 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1074 !blk_queue_nomerges(hctx->queue);
1075}
1076
Jens Axboe07068d52014-05-22 10:40:51 -06001077static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1078 struct blk_mq_ctx *ctx,
1079 struct request *rq, struct bio *bio)
1080{
Jens Axboe274a5842014-08-15 12:44:08 -06001081 if (!hctx_allow_merges(hctx)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001082 blk_mq_bio_to_request(rq, bio);
1083 spin_lock(&ctx->lock);
1084insert_rq:
1085 __blk_mq_insert_request(hctx, rq, false);
1086 spin_unlock(&ctx->lock);
1087 return false;
1088 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001089 struct request_queue *q = hctx->queue;
1090
Jens Axboe07068d52014-05-22 10:40:51 -06001091 spin_lock(&ctx->lock);
1092 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1093 blk_mq_bio_to_request(rq, bio);
1094 goto insert_rq;
1095 }
1096
1097 spin_unlock(&ctx->lock);
1098 __blk_mq_free_request(hctx, ctx, rq);
1099 return true;
1100 }
1101}
1102
1103struct blk_map_ctx {
1104 struct blk_mq_hw_ctx *hctx;
1105 struct blk_mq_ctx *ctx;
1106};
1107
1108static struct request *blk_mq_map_request(struct request_queue *q,
1109 struct bio *bio,
1110 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001111{
1112 struct blk_mq_hw_ctx *hctx;
1113 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001114 struct request *rq;
Jens Axboe07068d52014-05-22 10:40:51 -06001115 int rw = bio_data_dir(bio);
Ming Leicb96a422014-06-01 00:43:37 +08001116 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001117
Jens Axboe07068d52014-05-22 10:40:51 -06001118 if (unlikely(blk_mq_queue_enter(q))) {
Nicholas Bellinger14ec77f2014-02-07 13:45:39 -07001119 bio_endio(bio, -EIO);
Jens Axboe07068d52014-05-22 10:40:51 -06001120 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001121 }
1122
1123 ctx = blk_mq_get_ctx(q);
1124 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1125
Jens Axboe07068d52014-05-22 10:40:51 -06001126 if (rw_is_sync(bio->bi_rw))
Shaohua Li27fbf4e2014-02-19 20:20:21 +08001127 rw |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001128
Jens Axboe320ae512013-10-24 09:20:05 +01001129 trace_block_getrq(q, bio, rw);
Ming Leicb96a422014-06-01 00:43:37 +08001130 blk_mq_set_alloc_data(&alloc_data, q, GFP_ATOMIC, false, ctx,
1131 hctx);
1132 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001133 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001134 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001135 blk_mq_put_ctx(ctx);
1136 trace_block_sleeprq(q, bio, rw);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001137
1138 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001139 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +08001140 blk_mq_set_alloc_data(&alloc_data, q,
1141 __GFP_WAIT|GFP_ATOMIC, false, ctx, hctx);
1142 rq = __blk_mq_alloc_request(&alloc_data, rw);
1143 ctx = alloc_data.ctx;
1144 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001145 }
1146
1147 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001148 data->hctx = hctx;
1149 data->ctx = ctx;
1150 return rq;
1151}
1152
1153/*
1154 * Multiple hardware queue variant. This will not use per-process plugs,
1155 * but will attempt to bypass the hctx queueing if we can go straight to
1156 * hardware for SYNC IO.
1157 */
1158static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1159{
1160 const int is_sync = rw_is_sync(bio->bi_rw);
1161 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1162 struct blk_map_ctx data;
1163 struct request *rq;
1164
1165 blk_queue_bounce(q, &bio);
1166
1167 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1168 bio_endio(bio, -EIO);
1169 return;
1170 }
1171
1172 rq = blk_mq_map_request(q, bio, &data);
1173 if (unlikely(!rq))
1174 return;
1175
1176 if (unlikely(is_flush_fua)) {
1177 blk_mq_bio_to_request(rq, bio);
1178 blk_insert_flush(rq);
1179 goto run_queue;
1180 }
1181
1182 if (is_sync) {
1183 int ret;
1184
1185 blk_mq_bio_to_request(rq, bio);
1186 blk_mq_start_request(rq, true);
1187
1188 /*
1189 * For OK queue, we are done. For error, kill it. Any other
1190 * error (busy), just add it to our list as we previously
1191 * would have done
1192 */
1193 ret = q->mq_ops->queue_rq(data.hctx, rq);
1194 if (ret == BLK_MQ_RQ_QUEUE_OK)
1195 goto done;
1196 else {
1197 __blk_mq_requeue_request(rq);
1198
1199 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1200 rq->errors = -EIO;
1201 blk_mq_end_io(rq, rq->errors);
1202 goto done;
1203 }
1204 }
1205 }
1206
1207 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1208 /*
1209 * For a SYNC request, send it to the hardware immediately. For
1210 * an ASYNC request, just ensure that we run it later on. The
1211 * latter allows for merging opportunities and more efficient
1212 * dispatching.
1213 */
1214run_queue:
1215 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1216 }
1217done:
1218 blk_mq_put_ctx(data.ctx);
1219}
1220
1221/*
1222 * Single hardware queue variant. This will attempt to use any per-process
1223 * plug for merging and IO deferral.
1224 */
1225static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1226{
1227 const int is_sync = rw_is_sync(bio->bi_rw);
1228 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1229 unsigned int use_plug, request_count = 0;
1230 struct blk_map_ctx data;
1231 struct request *rq;
1232
1233 /*
1234 * If we have multiple hardware queues, just go directly to
1235 * one of those for sync IO.
1236 */
1237 use_plug = !is_flush_fua && !is_sync;
1238
1239 blk_queue_bounce(q, &bio);
1240
1241 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1242 bio_endio(bio, -EIO);
1243 return;
1244 }
1245
1246 if (use_plug && !blk_queue_nomerges(q) &&
1247 blk_attempt_plug_merge(q, bio, &request_count))
1248 return;
1249
1250 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001251 if (unlikely(!rq))
1252 return;
Jens Axboe320ae512013-10-24 09:20:05 +01001253
1254 if (unlikely(is_flush_fua)) {
1255 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001256 blk_insert_flush(rq);
1257 goto run_queue;
1258 }
1259
1260 /*
1261 * A task plug currently exists. Since this is completely lockless,
1262 * utilize that to temporarily store requests until the task is
1263 * either done or scheduled away.
1264 */
1265 if (use_plug) {
1266 struct blk_plug *plug = current->plug;
1267
1268 if (plug) {
1269 blk_mq_bio_to_request(rq, bio);
Shaohua Li92f399c2013-10-29 12:01:03 -06001270 if (list_empty(&plug->mq_list))
Jens Axboe320ae512013-10-24 09:20:05 +01001271 trace_block_plug(q);
1272 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1273 blk_flush_plug_list(plug, false);
1274 trace_block_plug(q);
1275 }
1276 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe07068d52014-05-22 10:40:51 -06001277 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001278 return;
1279 }
1280 }
1281
Jens Axboe07068d52014-05-22 10:40:51 -06001282 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1283 /*
1284 * For a SYNC request, send it to the hardware immediately. For
1285 * an ASYNC request, just ensure that we run it later on. The
1286 * latter allows for merging opportunities and more efficient
1287 * dispatching.
1288 */
1289run_queue:
1290 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001291 }
1292
Jens Axboe07068d52014-05-22 10:40:51 -06001293 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001294}
1295
1296/*
1297 * Default mapping to a software queue, since we use one per CPU.
1298 */
1299struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1300{
1301 return q->queue_hw_ctx[q->mq_map[cpu]];
1302}
1303EXPORT_SYMBOL(blk_mq_map_queue);
1304
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001305static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1306 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001307{
1308 struct page *page;
1309
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001310 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001311 int i;
1312
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001313 for (i = 0; i < tags->nr_tags; i++) {
1314 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001315 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001316 set->ops->exit_request(set->driver_data, tags->rqs[i],
1317 hctx_idx, i);
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001318 }
1319 }
1320
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001321 while (!list_empty(&tags->page_list)) {
1322 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001323 list_del_init(&page->lru);
Jens Axboe320ae512013-10-24 09:20:05 +01001324 __free_pages(page, page->private);
1325 }
1326
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001327 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001328
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001329 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001330}
1331
1332static size_t order_to_size(unsigned int order)
1333{
Ming Lei4ca08502014-04-19 18:00:18 +08001334 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001335}
1336
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001337static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1338 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001339{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001340 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001341 unsigned int i, j, entries_per_page, max_order = 4;
1342 size_t rq_size, left;
1343
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001344 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1345 set->numa_node);
1346 if (!tags)
1347 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001348
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001349 INIT_LIST_HEAD(&tags->page_list);
1350
1351 tags->rqs = kmalloc_node(set->queue_depth * sizeof(struct request *),
1352 GFP_KERNEL, set->numa_node);
1353 if (!tags->rqs) {
1354 blk_mq_free_tags(tags);
1355 return NULL;
1356 }
Jens Axboe320ae512013-10-24 09:20:05 +01001357
1358 /*
1359 * rq_size is the size of the request plus driver payload, rounded
1360 * to the cacheline size
1361 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001362 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001363 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001364 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001365
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001366 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001367 int this_order = max_order;
1368 struct page *page;
1369 int to_do;
1370 void *p;
1371
1372 while (left < order_to_size(this_order - 1) && this_order)
1373 this_order--;
1374
1375 do {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001376 page = alloc_pages_node(set->numa_node, GFP_KERNEL,
1377 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001378 if (page)
1379 break;
1380 if (!this_order--)
1381 break;
1382 if (order_to_size(this_order) < rq_size)
1383 break;
1384 } while (1);
1385
1386 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001387 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001388
1389 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001390 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001391
1392 p = page_address(page);
1393 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001394 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001395 left -= to_do * rq_size;
1396 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001397 tags->rqs[i] = p;
1398 if (set->ops->init_request) {
1399 if (set->ops->init_request(set->driver_data,
1400 tags->rqs[i], hctx_idx, i,
1401 set->numa_node))
1402 goto fail;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001403 }
1404
Jens Axboe320ae512013-10-24 09:20:05 +01001405 p += rq_size;
1406 i++;
1407 }
1408 }
1409
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001410 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001411
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001412fail:
1413 pr_warn("%s: failed to allocate requests\n", __func__);
1414 blk_mq_free_rq_map(set, tags, hctx_idx);
1415 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001416}
1417
Jens Axboe1429d7c2014-05-19 09:23:55 -06001418static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1419{
1420 kfree(bitmap->map);
1421}
1422
1423static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1424{
1425 unsigned int bpw = 8, total, num_maps, i;
1426
1427 bitmap->bits_per_word = bpw;
1428
1429 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1430 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1431 GFP_KERNEL, node);
1432 if (!bitmap->map)
1433 return -ENOMEM;
1434
1435 bitmap->map_size = num_maps;
1436
1437 total = nr_cpu_ids;
1438 for (i = 0; i < num_maps; i++) {
1439 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1440 total -= bitmap->map[i].depth;
1441 }
1442
1443 return 0;
1444}
1445
Jens Axboe484b4062014-05-21 14:01:15 -06001446static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1447{
1448 struct request_queue *q = hctx->queue;
1449 struct blk_mq_ctx *ctx;
1450 LIST_HEAD(tmp);
1451
1452 /*
1453 * Move ctx entries to new CPU, if this one is going away.
1454 */
1455 ctx = __blk_mq_get_ctx(q, cpu);
1456
1457 spin_lock(&ctx->lock);
1458 if (!list_empty(&ctx->rq_list)) {
1459 list_splice_init(&ctx->rq_list, &tmp);
1460 blk_mq_hctx_clear_pending(hctx, ctx);
1461 }
1462 spin_unlock(&ctx->lock);
1463
1464 if (list_empty(&tmp))
1465 return NOTIFY_OK;
1466
1467 ctx = blk_mq_get_ctx(q);
1468 spin_lock(&ctx->lock);
1469
1470 while (!list_empty(&tmp)) {
1471 struct request *rq;
1472
1473 rq = list_first_entry(&tmp, struct request, queuelist);
1474 rq->mq_ctx = ctx;
1475 list_move_tail(&rq->queuelist, &ctx->rq_list);
1476 }
1477
1478 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1479 blk_mq_hctx_mark_pending(hctx, ctx);
1480
1481 spin_unlock(&ctx->lock);
1482
1483 blk_mq_run_hw_queue(hctx, true);
1484 blk_mq_put_ctx(ctx);
1485 return NOTIFY_OK;
1486}
1487
1488static int blk_mq_hctx_cpu_online(struct blk_mq_hw_ctx *hctx, int cpu)
1489{
1490 struct request_queue *q = hctx->queue;
1491 struct blk_mq_tag_set *set = q->tag_set;
1492
1493 if (set->tags[hctx->queue_num])
1494 return NOTIFY_OK;
1495
1496 set->tags[hctx->queue_num] = blk_mq_init_rq_map(set, hctx->queue_num);
1497 if (!set->tags[hctx->queue_num])
1498 return NOTIFY_STOP;
1499
1500 hctx->tags = set->tags[hctx->queue_num];
1501 return NOTIFY_OK;
1502}
1503
1504static int blk_mq_hctx_notify(void *data, unsigned long action,
1505 unsigned int cpu)
1506{
1507 struct blk_mq_hw_ctx *hctx = data;
1508
1509 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1510 return blk_mq_hctx_cpu_offline(hctx, cpu);
1511 else if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
1512 return blk_mq_hctx_cpu_online(hctx, cpu);
1513
1514 return NOTIFY_OK;
1515}
1516
Ming Lei624dbe42014-05-27 23:35:13 +08001517static void blk_mq_exit_hw_queues(struct request_queue *q,
1518 struct blk_mq_tag_set *set, int nr_queue)
1519{
1520 struct blk_mq_hw_ctx *hctx;
1521 unsigned int i;
1522
1523 queue_for_each_hw_ctx(q, hctx, i) {
1524 if (i == nr_queue)
1525 break;
1526
Jens Axboef899fed2014-06-04 09:11:53 -06001527 blk_mq_tag_idle(hctx);
1528
Ming Lei624dbe42014-05-27 23:35:13 +08001529 if (set->ops->exit_hctx)
1530 set->ops->exit_hctx(hctx, i);
1531
1532 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1533 kfree(hctx->ctxs);
1534 blk_mq_free_bitmap(&hctx->ctx_map);
1535 }
1536
1537}
1538
1539static void blk_mq_free_hw_queues(struct request_queue *q,
1540 struct blk_mq_tag_set *set)
1541{
1542 struct blk_mq_hw_ctx *hctx;
1543 unsigned int i;
1544
1545 queue_for_each_hw_ctx(q, hctx, i) {
1546 free_cpumask_var(hctx->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001547 kfree(hctx);
Ming Lei624dbe42014-05-27 23:35:13 +08001548 }
1549}
1550
Jens Axboe320ae512013-10-24 09:20:05 +01001551static int blk_mq_init_hw_queues(struct request_queue *q,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001552 struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001553{
1554 struct blk_mq_hw_ctx *hctx;
Ming Lei624dbe42014-05-27 23:35:13 +08001555 unsigned int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001556
1557 /*
1558 * Initialize hardware queues
1559 */
1560 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001561 int node;
1562
1563 node = hctx->numa_node;
1564 if (node == NUMA_NO_NODE)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001565 node = hctx->numa_node = set->numa_node;
Jens Axboe320ae512013-10-24 09:20:05 +01001566
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001567 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1568 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
Jens Axboe320ae512013-10-24 09:20:05 +01001569 spin_lock_init(&hctx->lock);
1570 INIT_LIST_HEAD(&hctx->dispatch);
1571 hctx->queue = q;
1572 hctx->queue_num = i;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001573 hctx->flags = set->flags;
1574 hctx->cmd_size = set->cmd_size;
Jens Axboe320ae512013-10-24 09:20:05 +01001575
1576 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1577 blk_mq_hctx_notify, hctx);
1578 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1579
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001580 hctx->tags = set->tags[i];
Jens Axboe320ae512013-10-24 09:20:05 +01001581
1582 /*
1583 * Allocate space for all possible cpus to avoid allocation in
1584 * runtime
1585 */
1586 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1587 GFP_KERNEL, node);
1588 if (!hctx->ctxs)
1589 break;
1590
Jens Axboe1429d7c2014-05-19 09:23:55 -06001591 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
Jens Axboe320ae512013-10-24 09:20:05 +01001592 break;
1593
Jens Axboe320ae512013-10-24 09:20:05 +01001594 hctx->nr_ctx = 0;
1595
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001596 if (set->ops->init_hctx &&
1597 set->ops->init_hctx(hctx, set->driver_data, i))
Jens Axboe320ae512013-10-24 09:20:05 +01001598 break;
1599 }
1600
1601 if (i == q->nr_hw_queues)
1602 return 0;
1603
1604 /*
1605 * Init failed
1606 */
Ming Lei624dbe42014-05-27 23:35:13 +08001607 blk_mq_exit_hw_queues(q, set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001608
1609 return 1;
1610}
1611
1612static void blk_mq_init_cpu_queues(struct request_queue *q,
1613 unsigned int nr_hw_queues)
1614{
1615 unsigned int i;
1616
1617 for_each_possible_cpu(i) {
1618 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1619 struct blk_mq_hw_ctx *hctx;
1620
1621 memset(__ctx, 0, sizeof(*__ctx));
1622 __ctx->cpu = i;
1623 spin_lock_init(&__ctx->lock);
1624 INIT_LIST_HEAD(&__ctx->rq_list);
1625 __ctx->queue = q;
1626
1627 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001628 if (!cpu_online(i))
1629 continue;
1630
Jens Axboee4043dc2014-04-09 10:18:23 -06001631 hctx = q->mq_ops->map_queue(q, i);
1632 cpumask_set_cpu(i, hctx->cpumask);
1633 hctx->nr_ctx++;
1634
Jens Axboe320ae512013-10-24 09:20:05 +01001635 /*
1636 * Set local node, IFF we have more than one hw queue. If
1637 * not, we remain on the home node of the device
1638 */
1639 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1640 hctx->numa_node = cpu_to_node(i);
1641 }
1642}
1643
1644static void blk_mq_map_swqueue(struct request_queue *q)
1645{
1646 unsigned int i;
1647 struct blk_mq_hw_ctx *hctx;
1648 struct blk_mq_ctx *ctx;
1649
1650 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001651 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001652 hctx->nr_ctx = 0;
1653 }
1654
1655 /*
1656 * Map software to hardware queues
1657 */
1658 queue_for_each_ctx(q, ctx, i) {
1659 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboee4043dc2014-04-09 10:18:23 -06001660 if (!cpu_online(i))
1661 continue;
1662
Jens Axboe320ae512013-10-24 09:20:05 +01001663 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001664 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001665 ctx->index_hw = hctx->nr_ctx;
1666 hctx->ctxs[hctx->nr_ctx++] = ctx;
1667 }
Jens Axboe506e9312014-05-07 10:26:44 -06001668
1669 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001670 /*
1671 * If not software queues are mapped to this hardware queue,
1672 * disable it and free the request entries
1673 */
1674 if (!hctx->nr_ctx) {
1675 struct blk_mq_tag_set *set = q->tag_set;
1676
1677 if (set->tags[i]) {
1678 blk_mq_free_rq_map(set, set->tags[i], i);
1679 set->tags[i] = NULL;
1680 hctx->tags = NULL;
1681 }
1682 continue;
1683 }
1684
1685 /*
1686 * Initialize batch roundrobin counts
1687 */
Jens Axboe506e9312014-05-07 10:26:44 -06001688 hctx->next_cpu = cpumask_first(hctx->cpumask);
1689 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1690 }
Jens Axboe320ae512013-10-24 09:20:05 +01001691}
1692
Jens Axboe0d2602c2014-05-13 15:10:52 -06001693static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1694{
1695 struct blk_mq_hw_ctx *hctx;
1696 struct request_queue *q;
1697 bool shared;
1698 int i;
1699
1700 if (set->tag_list.next == set->tag_list.prev)
1701 shared = false;
1702 else
1703 shared = true;
1704
1705 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1706 blk_mq_freeze_queue(q);
1707
1708 queue_for_each_hw_ctx(q, hctx, i) {
1709 if (shared)
1710 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1711 else
1712 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1713 }
1714 blk_mq_unfreeze_queue(q);
1715 }
1716}
1717
1718static void blk_mq_del_queue_tag_set(struct request_queue *q)
1719{
1720 struct blk_mq_tag_set *set = q->tag_set;
1721
Jens Axboe0d2602c2014-05-13 15:10:52 -06001722 mutex_lock(&set->tag_list_lock);
1723 list_del_init(&q->tag_set_list);
1724 blk_mq_update_tag_set_depth(set);
1725 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001726}
1727
1728static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1729 struct request_queue *q)
1730{
1731 q->tag_set = set;
1732
1733 mutex_lock(&set->tag_list_lock);
1734 list_add_tail(&q->tag_set_list, &set->tag_list);
1735 blk_mq_update_tag_set_depth(set);
1736 mutex_unlock(&set->tag_list_lock);
1737}
1738
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001739struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001740{
1741 struct blk_mq_hw_ctx **hctxs;
Ming Leie6cdb092014-06-03 11:24:06 +08001742 struct blk_mq_ctx __percpu *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001743 struct request_queue *q;
Jens Axboef14bbe72014-05-27 12:06:53 -06001744 unsigned int *map;
Jens Axboe320ae512013-10-24 09:20:05 +01001745 int i;
1746
Jens Axboe320ae512013-10-24 09:20:05 +01001747 ctx = alloc_percpu(struct blk_mq_ctx);
1748 if (!ctx)
1749 return ERR_PTR(-ENOMEM);
1750
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001751 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1752 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001753
1754 if (!hctxs)
1755 goto err_percpu;
1756
Jens Axboef14bbe72014-05-27 12:06:53 -06001757 map = blk_mq_make_queue_map(set);
1758 if (!map)
1759 goto err_map;
1760
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001761 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboef14bbe72014-05-27 12:06:53 -06001762 int node = blk_mq_hw_queue_to_node(map, i);
1763
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001764 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1765 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001766 if (!hctxs[i])
1767 goto err_hctxs;
1768
Jens Axboee4043dc2014-04-09 10:18:23 -06001769 if (!zalloc_cpumask_var(&hctxs[i]->cpumask, GFP_KERNEL))
1770 goto err_hctxs;
1771
Jens Axboe0d2602c2014-05-13 15:10:52 -06001772 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001773 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001774 hctxs[i]->queue_num = i;
1775 }
1776
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001777 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001778 if (!q)
1779 goto err_hctxs;
1780
Tejun Heoadd703f2014-07-01 10:34:38 -06001781 if (percpu_ref_init(&q->mq_usage_counter, blk_mq_usage_counter_release))
Ming Lei3d2936f2014-05-27 23:35:14 +08001782 goto err_map;
1783
Jens Axboe320ae512013-10-24 09:20:05 +01001784 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1785 blk_queue_rq_timeout(q, 30000);
1786
1787 q->nr_queues = nr_cpu_ids;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001788 q->nr_hw_queues = set->nr_hw_queues;
Jens Axboef14bbe72014-05-27 12:06:53 -06001789 q->mq_map = map;
Jens Axboe320ae512013-10-24 09:20:05 +01001790
1791 q->queue_ctx = ctx;
1792 q->queue_hw_ctx = hctxs;
1793
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001794 q->mq_ops = set->ops;
Jens Axboe94eddfb2013-11-19 09:25:07 -07001795 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001796
Jens Axboe05f1dd52014-05-29 09:53:32 -06001797 if (!(set->flags & BLK_MQ_F_SG_MERGE))
1798 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
1799
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001800 q->sg_reserved_size = INT_MAX;
1801
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001802 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
1803 INIT_LIST_HEAD(&q->requeue_list);
1804 spin_lock_init(&q->requeue_lock);
1805
Jens Axboe07068d52014-05-22 10:40:51 -06001806 if (q->nr_hw_queues > 1)
1807 blk_queue_make_request(q, blk_mq_make_request);
1808 else
1809 blk_queue_make_request(q, blk_sq_make_request);
1810
Jens Axboe87ee7b12014-04-24 08:51:47 -06001811 blk_queue_rq_timed_out(q, blk_mq_rq_timed_out);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001812 if (set->timeout)
1813 blk_queue_rq_timeout(q, set->timeout);
Jens Axboe320ae512013-10-24 09:20:05 +01001814
Jens Axboeeba71762014-05-20 15:17:27 -06001815 /*
1816 * Do this after blk_queue_make_request() overrides it...
1817 */
1818 q->nr_requests = set->queue_depth;
1819
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001820 if (set->ops->complete)
1821 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001822
Jens Axboe320ae512013-10-24 09:20:05 +01001823 blk_mq_init_flush(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001824 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001825
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001826 q->flush_rq = kzalloc(round_up(sizeof(struct request) +
1827 set->cmd_size, cache_line_size()),
1828 GFP_KERNEL);
Christoph Hellwig18741982014-02-10 09:29:00 -07001829 if (!q->flush_rq)
Jens Axboe320ae512013-10-24 09:20:05 +01001830 goto err_hw;
1831
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001832 if (blk_mq_init_hw_queues(q, set))
Christoph Hellwig18741982014-02-10 09:29:00 -07001833 goto err_flush_rq;
1834
Jens Axboe320ae512013-10-24 09:20:05 +01001835 mutex_lock(&all_q_mutex);
1836 list_add_tail(&q->all_q_node, &all_q_list);
1837 mutex_unlock(&all_q_mutex);
1838
Jens Axboe0d2602c2014-05-13 15:10:52 -06001839 blk_mq_add_queue_tag_set(set, q);
1840
Jens Axboe484b4062014-05-21 14:01:15 -06001841 blk_mq_map_swqueue(q);
1842
Jens Axboe320ae512013-10-24 09:20:05 +01001843 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07001844
1845err_flush_rq:
1846 kfree(q->flush_rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001847err_hw:
Jens Axboe320ae512013-10-24 09:20:05 +01001848 blk_cleanup_queue(q);
1849err_hctxs:
Jens Axboef14bbe72014-05-27 12:06:53 -06001850 kfree(map);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001851 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboe320ae512013-10-24 09:20:05 +01001852 if (!hctxs[i])
1853 break;
Jens Axboee4043dc2014-04-09 10:18:23 -06001854 free_cpumask_var(hctxs[i]->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001855 kfree(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001856 }
Jens Axboef14bbe72014-05-27 12:06:53 -06001857err_map:
Jens Axboe320ae512013-10-24 09:20:05 +01001858 kfree(hctxs);
1859err_percpu:
1860 free_percpu(ctx);
1861 return ERR_PTR(-ENOMEM);
1862}
1863EXPORT_SYMBOL(blk_mq_init_queue);
1864
1865void blk_mq_free_queue(struct request_queue *q)
1866{
Ming Lei624dbe42014-05-27 23:35:13 +08001867 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001868
Jens Axboe0d2602c2014-05-13 15:10:52 -06001869 blk_mq_del_queue_tag_set(q);
1870
Ming Lei624dbe42014-05-27 23:35:13 +08001871 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1872 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01001873
Tejun Heoadd703f2014-07-01 10:34:38 -06001874 percpu_ref_exit(&q->mq_usage_counter);
Ming Lei3d2936f2014-05-27 23:35:14 +08001875
Jens Axboe320ae512013-10-24 09:20:05 +01001876 free_percpu(q->queue_ctx);
1877 kfree(q->queue_hw_ctx);
1878 kfree(q->mq_map);
1879
1880 q->queue_ctx = NULL;
1881 q->queue_hw_ctx = NULL;
1882 q->mq_map = NULL;
1883
1884 mutex_lock(&all_q_mutex);
1885 list_del_init(&q->all_q_node);
1886 mutex_unlock(&all_q_mutex);
1887}
Jens Axboe320ae512013-10-24 09:20:05 +01001888
1889/* Basically redo blk_mq_init_queue with queue frozen */
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001890static void blk_mq_queue_reinit(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01001891{
1892 blk_mq_freeze_queue(q);
1893
Jens Axboe67aec142014-05-30 08:25:36 -06001894 blk_mq_sysfs_unregister(q);
1895
Jens Axboe320ae512013-10-24 09:20:05 +01001896 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1897
1898 /*
1899 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1900 * we should change hctx numa_node according to new topology (this
1901 * involves free and re-allocate memory, worthy doing?)
1902 */
1903
1904 blk_mq_map_swqueue(q);
1905
Jens Axboe67aec142014-05-30 08:25:36 -06001906 blk_mq_sysfs_register(q);
1907
Jens Axboe320ae512013-10-24 09:20:05 +01001908 blk_mq_unfreeze_queue(q);
1909}
1910
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001911static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1912 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01001913{
1914 struct request_queue *q;
1915
1916 /*
Jens Axboe9fccfed2014-05-08 14:50:19 -06001917 * Before new mappings are established, hotadded cpu might already
1918 * start handling requests. This doesn't break anything as we map
1919 * offline CPUs to first hardware queue. We will re-init the queue
1920 * below to get optimal settings.
Jens Axboe320ae512013-10-24 09:20:05 +01001921 */
1922 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1923 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1924 return NOTIFY_OK;
1925
1926 mutex_lock(&all_q_mutex);
1927 list_for_each_entry(q, &all_q_list, all_q_node)
1928 blk_mq_queue_reinit(q);
1929 mutex_unlock(&all_q_mutex);
1930 return NOTIFY_OK;
1931}
1932
Jens Axboea4391c62014-06-05 15:21:56 -06001933/*
1934 * Alloc a tag set to be associated with one or more request queues.
1935 * May fail with EINVAL for various error conditions. May adjust the
1936 * requested depth down, if if it too large. In that case, the set
1937 * value will be stored in set->queue_depth.
1938 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001939int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
1940{
1941 int i;
1942
1943 if (!set->nr_hw_queues)
1944 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06001945 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001946 return -EINVAL;
1947 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
1948 return -EINVAL;
1949
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001950 if (!set->nr_hw_queues || !set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001951 return -EINVAL;
1952
Jens Axboea4391c62014-06-05 15:21:56 -06001953 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
1954 pr_info("blk-mq: reduced tag depth to %u\n",
1955 BLK_MQ_MAX_DEPTH);
1956 set->queue_depth = BLK_MQ_MAX_DEPTH;
1957 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001958
Ming Lei48479002014-04-19 18:00:17 +08001959 set->tags = kmalloc_node(set->nr_hw_queues *
1960 sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001961 GFP_KERNEL, set->numa_node);
1962 if (!set->tags)
1963 goto out;
1964
1965 for (i = 0; i < set->nr_hw_queues; i++) {
1966 set->tags[i] = blk_mq_init_rq_map(set, i);
1967 if (!set->tags[i])
1968 goto out_unwind;
1969 }
1970
Jens Axboe0d2602c2014-05-13 15:10:52 -06001971 mutex_init(&set->tag_list_lock);
1972 INIT_LIST_HEAD(&set->tag_list);
1973
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001974 return 0;
1975
1976out_unwind:
1977 while (--i >= 0)
1978 blk_mq_free_rq_map(set, set->tags[i], i);
1979out:
1980 return -ENOMEM;
1981}
1982EXPORT_SYMBOL(blk_mq_alloc_tag_set);
1983
1984void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
1985{
1986 int i;
1987
Jens Axboe484b4062014-05-21 14:01:15 -06001988 for (i = 0; i < set->nr_hw_queues; i++) {
1989 if (set->tags[i])
1990 blk_mq_free_rq_map(set, set->tags[i], i);
1991 }
1992
Ming Lei981bd182014-04-24 00:07:34 +08001993 kfree(set->tags);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001994}
1995EXPORT_SYMBOL(blk_mq_free_tag_set);
1996
Jens Axboee3a2b3f2014-05-20 11:49:02 -06001997int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
1998{
1999 struct blk_mq_tag_set *set = q->tag_set;
2000 struct blk_mq_hw_ctx *hctx;
2001 int i, ret;
2002
2003 if (!set || nr > set->queue_depth)
2004 return -EINVAL;
2005
2006 ret = 0;
2007 queue_for_each_hw_ctx(q, hctx, i) {
2008 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2009 if (ret)
2010 break;
2011 }
2012
2013 if (!ret)
2014 q->nr_requests = nr;
2015
2016 return ret;
2017}
2018
Jens Axboe676141e2014-03-20 13:29:18 -06002019void blk_mq_disable_hotplug(void)
2020{
2021 mutex_lock(&all_q_mutex);
2022}
2023
2024void blk_mq_enable_hotplug(void)
2025{
2026 mutex_unlock(&all_q_mutex);
2027}
2028
Jens Axboe320ae512013-10-24 09:20:05 +01002029static int __init blk_mq_init(void)
2030{
Jens Axboe320ae512013-10-24 09:20:05 +01002031 blk_mq_cpu_init();
2032
Tejun Heoadd703f2014-07-01 10:34:38 -06002033 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002034
2035 return 0;
2036}
2037subsys_initcall(blk_mq_init);