blob: 32b4797f418629dfe226c5644479a38704f776af [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 Heocddd5d12014-08-16 08:02:24 -0400115 bool freeze;
116
Tejun Heo72d6f022014-07-01 10:33:02 -0600117 spin_lock_irq(q->queue_lock);
Tejun Heocddd5d12014-08-16 08:02:24 -0400118 freeze = !q->mq_freeze_depth++;
Tejun Heo72d6f022014-07-01 10:33:02 -0600119 spin_unlock_irq(q->queue_lock);
120
Tejun Heocddd5d12014-08-16 08:02:24 -0400121 if (freeze) {
122 percpu_ref_kill(&q->mq_usage_counter);
123 blk_mq_run_queues(q, false);
124 }
Tejun Heoadd703f2014-07-01 10:34:38 -0600125 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->mq_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +0800126}
127
Jens Axboe320ae512013-10-24 09:20:05 +0100128static void blk_mq_unfreeze_queue(struct request_queue *q)
129{
Tejun Heocddd5d12014-08-16 08:02:24 -0400130 bool wake;
Jens Axboe320ae512013-10-24 09:20:05 +0100131
132 spin_lock_irq(q->queue_lock);
Tejun Heo780db202014-07-01 10:31:13 -0600133 wake = !--q->mq_freeze_depth;
134 WARN_ON_ONCE(q->mq_freeze_depth < 0);
Jens Axboe320ae512013-10-24 09:20:05 +0100135 spin_unlock_irq(q->queue_lock);
Tejun Heoadd703f2014-07-01 10:34:38 -0600136 if (wake) {
137 percpu_ref_reinit(&q->mq_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100138 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600139 }
Jens Axboe320ae512013-10-24 09:20:05 +0100140}
141
142bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
143{
144 return blk_mq_has_free_tags(hctx->tags);
145}
146EXPORT_SYMBOL(blk_mq_can_queue);
147
Jens Axboe94eddfb2013-11-19 09:25:07 -0700148static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
149 struct request *rq, unsigned int rw_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100150{
Jens Axboe94eddfb2013-11-19 09:25:07 -0700151 if (blk_queue_io_stat(q))
152 rw_flags |= REQ_IO_STAT;
153
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200154 INIT_LIST_HEAD(&rq->queuelist);
155 /* csd/requeue_work/fifo_time is initialized before use */
156 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100157 rq->mq_ctx = ctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600158 rq->cmd_flags |= rw_flags;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200159 /* do not touch atomic flags, it needs atomic ops against the timer */
160 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200161 INIT_HLIST_NODE(&rq->hash);
162 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200163 rq->rq_disk = NULL;
164 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600165 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200166#ifdef CONFIG_BLK_CGROUP
167 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700168 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200169 rq->io_start_time_ns = 0;
170#endif
171 rq->nr_phys_segments = 0;
172#if defined(CONFIG_BLK_DEV_INTEGRITY)
173 rq->nr_integrity_segments = 0;
174#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200175 rq->special = NULL;
176 /* tag was already set */
177 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200178
Tony Battersby6f4a16262014-08-22 15:53:39 -0400179 rq->cmd = rq->__cmd;
180
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200181 rq->extra_len = 0;
182 rq->sense_len = 0;
183 rq->resid_len = 0;
184 rq->sense = NULL;
185
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200186 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600187 rq->timeout = 0;
188
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200189 rq->end_io = NULL;
190 rq->end_io_data = NULL;
191 rq->next_rq = NULL;
192
Jens Axboe320ae512013-10-24 09:20:05 +0100193 ctx->rq_dispatched[rw_is_sync(rw_flags)]++;
194}
195
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200196static struct request *
Ming Leicb96a422014-06-01 00:43:37 +0800197__blk_mq_alloc_request(struct blk_mq_alloc_data *data, int rw)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200198{
199 struct request *rq;
200 unsigned int tag;
201
Ming Leicb96a422014-06-01 00:43:37 +0800202 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200203 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a422014-06-01 00:43:37 +0800204 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200205
Ming Leicb96a422014-06-01 00:43:37 +0800206 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200207 rq->cmd_flags = REQ_MQ_INFLIGHT;
Ming Leicb96a422014-06-01 00:43:37 +0800208 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200209 }
210
211 rq->tag = tag;
Ming Leicb96a422014-06-01 00:43:37 +0800212 blk_mq_rq_ctx_init(data->q, data->ctx, rq, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200213 return rq;
214 }
215
216 return NULL;
217}
218
Christoph Hellwig4ce01dd2014-05-27 20:59:46 +0200219struct request *blk_mq_alloc_request(struct request_queue *q, int rw, gfp_t gfp,
220 bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100221{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200222 struct blk_mq_ctx *ctx;
223 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100224 struct request *rq;
Ming Leicb96a422014-06-01 00:43:37 +0800225 struct blk_mq_alloc_data alloc_data;
Joe Lawrencea492f072014-08-28 08:15:21 -0600226 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100227
Joe Lawrencea492f072014-08-28 08:15:21 -0600228 ret = blk_mq_queue_enter(q);
229 if (ret)
230 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100231
Christoph Hellwigd8525642014-05-27 20:59:50 +0200232 ctx = blk_mq_get_ctx(q);
233 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +0800234 blk_mq_set_alloc_data(&alloc_data, q, gfp & ~__GFP_WAIT,
235 reserved, ctx, hctx);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200236
Ming Leicb96a422014-06-01 00:43:37 +0800237 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200238 if (!rq && (gfp & __GFP_WAIT)) {
239 __blk_mq_run_hw_queue(hctx);
240 blk_mq_put_ctx(ctx);
241
242 ctx = blk_mq_get_ctx(q);
243 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +0800244 blk_mq_set_alloc_data(&alloc_data, q, gfp, reserved, ctx,
245 hctx);
246 rq = __blk_mq_alloc_request(&alloc_data, rw);
247 ctx = alloc_data.ctx;
Christoph Hellwigd8525642014-05-27 20:59:50 +0200248 }
249 blk_mq_put_ctx(ctx);
Joe Lawrencea492f072014-08-28 08:15:21 -0600250 if (!rq)
251 return ERR_PTR(-EWOULDBLOCK);
Jens Axboe320ae512013-10-24 09:20:05 +0100252 return rq;
253}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600254EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100255
Jens Axboe320ae512013-10-24 09:20:05 +0100256static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
257 struct blk_mq_ctx *ctx, struct request *rq)
258{
259 const int tag = rq->tag;
260 struct request_queue *q = rq->q;
261
Jens Axboe0d2602c2014-05-13 15:10:52 -0600262 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
263 atomic_dec(&hctx->nr_active);
David Hildenbrand683d0e12014-09-18 11:04:31 +0200264 rq->cmd_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600265
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200266 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600267 blk_mq_put_tag(hctx, tag, &ctx->last_tag);
Jens Axboe320ae512013-10-24 09:20:05 +0100268 blk_mq_queue_exit(q);
269}
270
271void blk_mq_free_request(struct request *rq)
272{
273 struct blk_mq_ctx *ctx = rq->mq_ctx;
274 struct blk_mq_hw_ctx *hctx;
275 struct request_queue *q = rq->q;
276
277 ctx->rq_completed[rq_is_sync(rq)]++;
278
279 hctx = q->mq_ops->map_queue(q, ctx->cpu);
280 __blk_mq_free_request(hctx, ctx, rq);
281}
282
Christoph Hellwig8727af42014-04-14 10:30:08 +0200283/*
284 * Clone all relevant state from a request that has been put on hold in
285 * the flush state machine into the preallocated flush request that hangs
286 * off the request queue.
287 *
288 * For a driver the flush request should be invisible, that's why we are
289 * impersonating the original request here.
290 */
291void blk_mq_clone_flush_request(struct request *flush_rq,
292 struct request *orig_rq)
293{
294 struct blk_mq_hw_ctx *hctx =
295 orig_rq->q->mq_ops->map_queue(orig_rq->q, orig_rq->mq_ctx->cpu);
296
297 flush_rq->mq_ctx = orig_rq->mq_ctx;
298 flush_rq->tag = orig_rq->tag;
299 memcpy(blk_mq_rq_to_pdu(flush_rq), blk_mq_rq_to_pdu(orig_rq),
300 hctx->cmd_size);
301}
302
Christoph Hellwig63151a42014-04-16 09:44:52 +0200303inline void __blk_mq_end_io(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100304{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700305 blk_account_io_done(rq);
306
Christoph Hellwig91b63632014-04-16 09:44:53 +0200307 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100308 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200309 } else {
310 if (unlikely(blk_bidi_rq(rq)))
311 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100312 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200313 }
Jens Axboe320ae512013-10-24 09:20:05 +0100314}
Christoph Hellwig63151a42014-04-16 09:44:52 +0200315EXPORT_SYMBOL(__blk_mq_end_io);
316
317void blk_mq_end_io(struct request *rq, int error)
318{
319 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
320 BUG();
321 __blk_mq_end_io(rq, error);
322}
323EXPORT_SYMBOL(blk_mq_end_io);
Jens Axboe320ae512013-10-24 09:20:05 +0100324
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800325static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100326{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800327 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100328
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800329 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100330}
331
Jens Axboeed851862014-05-30 21:20:50 -0600332static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100333{
334 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700335 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100336 int cpu;
337
Christoph Hellwig38535202014-04-25 02:32:53 -0700338 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800339 rq->q->softirq_done_fn(rq);
340 return;
341 }
Jens Axboe320ae512013-10-24 09:20:05 +0100342
343 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700344 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
345 shared = cpus_share_cache(cpu, ctx->cpu);
346
347 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800348 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800349 rq->csd.info = rq;
350 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100351 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800352 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800353 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800354 }
Jens Axboe320ae512013-10-24 09:20:05 +0100355 put_cpu();
356}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800357
Jens Axboeed851862014-05-30 21:20:50 -0600358void __blk_mq_complete_request(struct request *rq)
359{
360 struct request_queue *q = rq->q;
361
362 if (!q->softirq_done_fn)
363 blk_mq_end_io(rq, rq->errors);
364 else
365 blk_mq_ipi_complete_request(rq);
366}
367
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800368/**
369 * blk_mq_complete_request - end I/O on a request
370 * @rq: the request being processed
371 *
372 * Description:
373 * Ends all I/O on a request. It does not handle partial completions.
374 * The actual completion happens out-of-order, through a IPI handler.
375 **/
376void blk_mq_complete_request(struct request *rq)
377{
Jens Axboe95f09682014-05-27 17:46:48 -0600378 struct request_queue *q = rq->q;
379
380 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800381 return;
Jens Axboeed851862014-05-30 21:20:50 -0600382 if (!blk_mark_rq_complete(rq))
383 __blk_mq_complete_request(rq);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800384}
385EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100386
Christoph Hellwigbf572292014-09-13 16:40:08 -0700387static void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100388{
389 struct request_queue *q = rq->q;
390
391 trace_block_rq_issue(q, rq);
392
Christoph Hellwig742ee692014-04-14 10:30:06 +0200393 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200394 if (unlikely(blk_bidi_rq(rq)))
395 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200396
Ming Lei2b8393b2014-06-10 00:16:41 +0800397 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600398
399 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600400 * Ensure that ->deadline is visible before set the started
401 * flag and clear the completed flag.
402 */
403 smp_mb__before_atomic();
404
405 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600406 * Mark us as started and clear complete. Complete might have been
407 * set if requeue raced with timeout, which then marked it as
408 * complete. So be sure to clear complete again when we start
409 * the request, otherwise we'll ignore the completion event.
410 */
Jens Axboe4b570522014-05-29 11:00:11 -0600411 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
412 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
413 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
414 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800415
416 if (q->dma_drain_size && blk_rq_bytes(rq)) {
417 /*
418 * Make sure space for the drain appears. We know we can do
419 * this because max_hw_segments has been adjusted to be one
420 * fewer than the device can handle.
421 */
422 rq->nr_phys_segments++;
423 }
Jens Axboe320ae512013-10-24 09:20:05 +0100424}
425
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200426static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100427{
428 struct request_queue *q = rq->q;
429
430 trace_block_rq_requeue(q, rq);
431 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800432
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800433 if (q->dma_drain_size && blk_rq_bytes(rq))
434 rq->nr_phys_segments--;
Jens Axboe320ae512013-10-24 09:20:05 +0100435}
436
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200437void blk_mq_requeue_request(struct request *rq)
438{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200439 __blk_mq_requeue_request(rq);
440 blk_clear_rq_complete(rq);
441
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200442 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600443 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200444}
445EXPORT_SYMBOL(blk_mq_requeue_request);
446
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600447static void blk_mq_requeue_work(struct work_struct *work)
448{
449 struct request_queue *q =
450 container_of(work, struct request_queue, requeue_work);
451 LIST_HEAD(rq_list);
452 struct request *rq, *next;
453 unsigned long flags;
454
455 spin_lock_irqsave(&q->requeue_lock, flags);
456 list_splice_init(&q->requeue_list, &rq_list);
457 spin_unlock_irqrestore(&q->requeue_lock, flags);
458
459 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
460 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
461 continue;
462
463 rq->cmd_flags &= ~REQ_SOFTBARRIER;
464 list_del_init(&rq->queuelist);
465 blk_mq_insert_request(rq, true, false, false);
466 }
467
468 while (!list_empty(&rq_list)) {
469 rq = list_entry(rq_list.next, struct request, queuelist);
470 list_del_init(&rq->queuelist);
471 blk_mq_insert_request(rq, false, false, false);
472 }
473
Jens Axboe8b957412014-09-19 13:10:29 -0600474 /*
475 * Use the start variant of queue running here, so that running
476 * the requeue work will kick stopped queues.
477 */
478 blk_mq_start_hw_queues(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600479}
480
481void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
482{
483 struct request_queue *q = rq->q;
484 unsigned long flags;
485
486 /*
487 * We abuse this flag that is otherwise used by the I/O scheduler to
488 * request head insertation from the workqueue.
489 */
490 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
491
492 spin_lock_irqsave(&q->requeue_lock, flags);
493 if (at_head) {
494 rq->cmd_flags |= REQ_SOFTBARRIER;
495 list_add(&rq->queuelist, &q->requeue_list);
496 } else {
497 list_add_tail(&rq->queuelist, &q->requeue_list);
498 }
499 spin_unlock_irqrestore(&q->requeue_lock, flags);
500}
501EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
502
503void blk_mq_kick_requeue_list(struct request_queue *q)
504{
505 kblockd_schedule_work(&q->requeue_work);
506}
507EXPORT_SYMBOL(blk_mq_kick_requeue_list);
508
Jens Axboe0e62f512014-06-04 10:23:49 -0600509static inline bool is_flush_request(struct request *rq, unsigned int tag)
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600510{
Jens Axboe0e62f512014-06-04 10:23:49 -0600511 return ((rq->cmd_flags & REQ_FLUSH_SEQ) &&
512 rq->q->flush_rq->tag == tag);
513}
Shaohua Li22302372014-05-30 08:06:42 -0600514
Jens Axboe0e62f512014-06-04 10:23:49 -0600515struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
516{
517 struct request *rq = tags->rqs[tag];
Shaohua Li22302372014-05-30 08:06:42 -0600518
Jens Axboe0e62f512014-06-04 10:23:49 -0600519 if (!is_flush_request(rq, tag))
520 return rq;
521
522 return rq->q->flush_rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600523}
524EXPORT_SYMBOL(blk_mq_tag_to_rq);
525
Jens Axboe320ae512013-10-24 09:20:05 +0100526struct blk_mq_timeout_data {
527 struct blk_mq_hw_ctx *hctx;
528 unsigned long *next;
529 unsigned int *next_set;
530};
531
532static void blk_mq_timeout_check(void *__data, unsigned long *free_tags)
533{
534 struct blk_mq_timeout_data *data = __data;
535 struct blk_mq_hw_ctx *hctx = data->hctx;
536 unsigned int tag;
537
538 /* It may not be in flight yet (this is where
539 * the REQ_ATOMIC_STARTED flag comes in). The requests are
540 * statically allocated, so we know it's always safe to access the
541 * memory associated with a bit offset into ->rqs[].
542 */
543 tag = 0;
544 do {
545 struct request *rq;
546
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600547 tag = find_next_zero_bit(free_tags, hctx->tags->nr_tags, tag);
548 if (tag >= hctx->tags->nr_tags)
Jens Axboe320ae512013-10-24 09:20:05 +0100549 break;
550
Jens Axboe0e62f512014-06-04 10:23:49 -0600551 rq = blk_mq_tag_to_rq(hctx->tags, tag++);
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600552 if (rq->q != hctx->queue)
553 continue;
Jens Axboe320ae512013-10-24 09:20:05 +0100554 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
555 continue;
556
557 blk_rq_check_expired(rq, data->next, data->next_set);
558 } while (1);
559}
560
561static void blk_mq_hw_ctx_check_timeout(struct blk_mq_hw_ctx *hctx,
562 unsigned long *next,
563 unsigned int *next_set)
564{
565 struct blk_mq_timeout_data data = {
566 .hctx = hctx,
567 .next = next,
568 .next_set = next_set,
569 };
570
571 /*
572 * Ask the tagging code to iterate busy requests, so we can
573 * check them for timeout.
574 */
575 blk_mq_tag_busy_iter(hctx->tags, blk_mq_timeout_check, &data);
576}
577
Jens Axboe87ee7b12014-04-24 08:51:47 -0600578static enum blk_eh_timer_return blk_mq_rq_timed_out(struct request *rq)
579{
580 struct request_queue *q = rq->q;
581
582 /*
583 * We know that complete is set at this point. If STARTED isn't set
584 * anymore, then the request isn't active and the "timeout" should
585 * just be ignored. This can happen due to the bitflag ordering.
586 * Timeout first checks if STARTED is set, and if it is, assumes
587 * the request is active. But if we race with completion, then
588 * we both flags will get cleared. So check here again, and ignore
589 * a timeout event with a request that isn't active.
590 */
591 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
592 return BLK_EH_NOT_HANDLED;
593
594 if (!q->mq_ops->timeout)
595 return BLK_EH_RESET_TIMER;
596
597 return q->mq_ops->timeout(rq);
598}
599
Jens Axboe320ae512013-10-24 09:20:05 +0100600static void blk_mq_rq_timer(unsigned long data)
601{
602 struct request_queue *q = (struct request_queue *) data;
603 struct blk_mq_hw_ctx *hctx;
604 unsigned long next = 0;
605 int i, next_set = 0;
606
Jens Axboe484b4062014-05-21 14:01:15 -0600607 queue_for_each_hw_ctx(q, hctx, i) {
608 /*
609 * If not software queues are currently mapped to this
610 * hardware queue, there's nothing to check
611 */
612 if (!hctx->nr_ctx || !hctx->tags)
613 continue;
614
Jens Axboe320ae512013-10-24 09:20:05 +0100615 blk_mq_hw_ctx_check_timeout(hctx, &next, &next_set);
Jens Axboe484b4062014-05-21 14:01:15 -0600616 }
Jens Axboe320ae512013-10-24 09:20:05 +0100617
Jens Axboe0d2602c2014-05-13 15:10:52 -0600618 if (next_set) {
619 next = blk_rq_timeout(round_jiffies_up(next));
620 mod_timer(&q->timeout, next);
621 } else {
622 queue_for_each_hw_ctx(q, hctx, i)
623 blk_mq_tag_idle(hctx);
624 }
Jens Axboe320ae512013-10-24 09:20:05 +0100625}
626
627/*
628 * Reverse check our software queue for entries that we could potentially
629 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
630 * too much time checking for merges.
631 */
632static bool blk_mq_attempt_merge(struct request_queue *q,
633 struct blk_mq_ctx *ctx, struct bio *bio)
634{
635 struct request *rq;
636 int checked = 8;
637
638 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
639 int el_ret;
640
641 if (!checked--)
642 break;
643
644 if (!blk_rq_merge_ok(rq, bio))
645 continue;
646
647 el_ret = blk_try_merge(rq, bio);
648 if (el_ret == ELEVATOR_BACK_MERGE) {
649 if (bio_attempt_back_merge(q, rq, bio)) {
650 ctx->rq_merged++;
651 return true;
652 }
653 break;
654 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
655 if (bio_attempt_front_merge(q, rq, bio)) {
656 ctx->rq_merged++;
657 return true;
658 }
659 break;
660 }
661 }
662
663 return false;
664}
665
Jens Axboe320ae512013-10-24 09:20:05 +0100666/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600667 * Process software queues that have been marked busy, splicing them
668 * to the for-dispatch
669 */
670static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
671{
672 struct blk_mq_ctx *ctx;
673 int i;
674
675 for (i = 0; i < hctx->ctx_map.map_size; i++) {
676 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
677 unsigned int off, bit;
678
679 if (!bm->word)
680 continue;
681
682 bit = 0;
683 off = i * hctx->ctx_map.bits_per_word;
684 do {
685 bit = find_next_bit(&bm->word, bm->depth, bit);
686 if (bit >= bm->depth)
687 break;
688
689 ctx = hctx->ctxs[bit + off];
690 clear_bit(bit, &bm->word);
691 spin_lock(&ctx->lock);
692 list_splice_tail_init(&ctx->rq_list, list);
693 spin_unlock(&ctx->lock);
694
695 bit++;
696 } while (1);
697 }
698}
699
700/*
Jens Axboe320ae512013-10-24 09:20:05 +0100701 * Run this hardware queue, pulling any software queues mapped to it in.
702 * Note that this function currently has various problems around ordering
703 * of IO. In particular, we'd like FIFO behaviour on handling existing
704 * items on the hctx->dispatch list. Ignore that for now.
705 */
706static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
707{
708 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100709 struct request *rq;
710 LIST_HEAD(rq_list);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600711 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100712
Jens Axboefd1270d2014-04-16 09:23:48 -0600713 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
Jens Axboee4043dc2014-04-09 10:18:23 -0600714
Jens Axboe5d12f902014-03-19 15:25:02 -0600715 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100716 return;
717
718 hctx->run++;
719
720 /*
721 * Touch any software queue that has pending entries.
722 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600723 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100724
725 /*
726 * If we have previous entries on our dispatch list, grab them
727 * and stuff them at the front for more fair dispatch.
728 */
729 if (!list_empty_careful(&hctx->dispatch)) {
730 spin_lock(&hctx->lock);
731 if (!list_empty(&hctx->dispatch))
732 list_splice_init(&hctx->dispatch, &rq_list);
733 spin_unlock(&hctx->lock);
734 }
735
736 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100737 * Now process all the entries, sending them to the driver.
738 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600739 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100740 while (!list_empty(&rq_list)) {
741 int ret;
742
743 rq = list_first_entry(&rq_list, struct request, queuelist);
744 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100745
Christoph Hellwigbf572292014-09-13 16:40:08 -0700746 blk_mq_start_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100747
Christoph Hellwigbf572292014-09-13 16:40:08 -0700748 ret = q->mq_ops->queue_rq(hctx, rq, list_empty(&rq_list));
Jens Axboe320ae512013-10-24 09:20:05 +0100749 switch (ret) {
750 case BLK_MQ_RQ_QUEUE_OK:
751 queued++;
752 continue;
753 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100754 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200755 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100756 break;
757 default:
758 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100759 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800760 rq->errors = -EIO;
Jens Axboe320ae512013-10-24 09:20:05 +0100761 blk_mq_end_io(rq, rq->errors);
762 break;
763 }
764
765 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
766 break;
767 }
768
769 if (!queued)
770 hctx->dispatched[0]++;
771 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
772 hctx->dispatched[ilog2(queued) + 1]++;
773
774 /*
775 * Any items that need requeuing? Stuff them into hctx->dispatch,
776 * that is where we will continue on next queue run.
777 */
778 if (!list_empty(&rq_list)) {
779 spin_lock(&hctx->lock);
780 list_splice(&rq_list, &hctx->dispatch);
781 spin_unlock(&hctx->lock);
782 }
783}
784
Jens Axboe506e9312014-05-07 10:26:44 -0600785/*
786 * It'd be great if the workqueue API had a way to pass
787 * in a mask and had some smarts for more clever placement.
788 * For now we just round-robin here, switching for every
789 * BLK_MQ_CPU_WORK_BATCH queued items.
790 */
791static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
792{
793 int cpu = hctx->next_cpu;
794
795 if (--hctx->next_cpu_batch <= 0) {
796 int next_cpu;
797
798 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
799 if (next_cpu >= nr_cpu_ids)
800 next_cpu = cpumask_first(hctx->cpumask);
801
802 hctx->next_cpu = next_cpu;
803 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
804 }
805
806 return cpu;
807}
808
Jens Axboe320ae512013-10-24 09:20:05 +0100809void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
810{
Jens Axboe5d12f902014-03-19 15:25:02 -0600811 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100812 return;
813
Jens Axboee4043dc2014-04-09 10:18:23 -0600814 if (!async && cpumask_test_cpu(smp_processor_id(), hctx->cpumask))
Jens Axboe320ae512013-10-24 09:20:05 +0100815 __blk_mq_run_hw_queue(hctx);
Jens Axboee4043dc2014-04-09 10:18:23 -0600816 else if (hctx->queue->nr_hw_queues == 1)
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600817 kblockd_schedule_delayed_work(&hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600818 else {
819 unsigned int cpu;
820
Jens Axboe506e9312014-05-07 10:26:44 -0600821 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600822 kblockd_schedule_delayed_work_on(cpu, &hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600823 }
Jens Axboe320ae512013-10-24 09:20:05 +0100824}
825
826void blk_mq_run_queues(struct request_queue *q, bool async)
827{
828 struct blk_mq_hw_ctx *hctx;
829 int i;
830
831 queue_for_each_hw_ctx(q, hctx, i) {
832 if ((!blk_mq_hctx_has_pending(hctx) &&
833 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600834 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100835 continue;
836
Jens Axboee4043dc2014-04-09 10:18:23 -0600837 preempt_disable();
Jens Axboe320ae512013-10-24 09:20:05 +0100838 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600839 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100840 }
841}
842EXPORT_SYMBOL(blk_mq_run_queues);
843
844void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
845{
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600846 cancel_delayed_work(&hctx->run_work);
847 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100848 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
849}
850EXPORT_SYMBOL(blk_mq_stop_hw_queue);
851
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100852void blk_mq_stop_hw_queues(struct request_queue *q)
853{
854 struct blk_mq_hw_ctx *hctx;
855 int i;
856
857 queue_for_each_hw_ctx(q, hctx, i)
858 blk_mq_stop_hw_queue(hctx);
859}
860EXPORT_SYMBOL(blk_mq_stop_hw_queues);
861
Jens Axboe320ae512013-10-24 09:20:05 +0100862void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
863{
864 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600865
866 preempt_disable();
Jens Axboe0ffbce82014-06-25 08:22:34 -0600867 blk_mq_run_hw_queue(hctx, false);
Jens Axboee4043dc2014-04-09 10:18:23 -0600868 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100869}
870EXPORT_SYMBOL(blk_mq_start_hw_queue);
871
Christoph Hellwig2f268552014-04-16 09:44:56 +0200872void blk_mq_start_hw_queues(struct request_queue *q)
873{
874 struct blk_mq_hw_ctx *hctx;
875 int i;
876
877 queue_for_each_hw_ctx(q, hctx, i)
878 blk_mq_start_hw_queue(hctx);
879}
880EXPORT_SYMBOL(blk_mq_start_hw_queues);
881
882
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200883void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100884{
885 struct blk_mq_hw_ctx *hctx;
886 int i;
887
888 queue_for_each_hw_ctx(q, hctx, i) {
889 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
890 continue;
891
892 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600893 preempt_disable();
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200894 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600895 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100896 }
897}
898EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
899
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600900static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100901{
902 struct blk_mq_hw_ctx *hctx;
903
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600904 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600905
Jens Axboe320ae512013-10-24 09:20:05 +0100906 __blk_mq_run_hw_queue(hctx);
907}
908
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600909static void blk_mq_delay_work_fn(struct work_struct *work)
910{
911 struct blk_mq_hw_ctx *hctx;
912
913 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
914
915 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
916 __blk_mq_run_hw_queue(hctx);
917}
918
919void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
920{
921 unsigned long tmo = msecs_to_jiffies(msecs);
922
923 if (hctx->queue->nr_hw_queues == 1)
924 kblockd_schedule_delayed_work(&hctx->delay_work, tmo);
925 else {
926 unsigned int cpu;
927
Jens Axboe506e9312014-05-07 10:26:44 -0600928 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600929 kblockd_schedule_delayed_work_on(cpu, &hctx->delay_work, tmo);
930 }
931}
932EXPORT_SYMBOL(blk_mq_delay_queue);
933
Jens Axboe320ae512013-10-24 09:20:05 +0100934static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800935 struct request *rq, bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +0100936{
937 struct blk_mq_ctx *ctx = rq->mq_ctx;
938
Jens Axboe01b983c2013-11-19 18:59:10 -0700939 trace_block_rq_insert(hctx->queue, rq);
940
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800941 if (at_head)
942 list_add(&rq->queuelist, &ctx->rq_list);
943 else
944 list_add_tail(&rq->queuelist, &ctx->rq_list);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600945
Jens Axboe320ae512013-10-24 09:20:05 +0100946 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100947}
948
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600949void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
950 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100951{
952 struct request_queue *q = rq->q;
953 struct blk_mq_hw_ctx *hctx;
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600954 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100955
956 current_ctx = blk_mq_get_ctx(q);
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600957 if (!cpu_online(ctx->cpu))
958 rq->mq_ctx = ctx = current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100959
Jens Axboe320ae512013-10-24 09:20:05 +0100960 hctx = q->mq_ops->map_queue(q, ctx->cpu);
961
Christoph Hellwiga57a1782014-09-16 14:44:07 -0700962 spin_lock(&ctx->lock);
963 __blk_mq_insert_request(hctx, rq, at_head);
964 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100965
Jens Axboe320ae512013-10-24 09:20:05 +0100966 if (run_queue)
967 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600968
969 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100970}
971
972static void blk_mq_insert_requests(struct request_queue *q,
973 struct blk_mq_ctx *ctx,
974 struct list_head *list,
975 int depth,
976 bool from_schedule)
977
978{
979 struct blk_mq_hw_ctx *hctx;
980 struct blk_mq_ctx *current_ctx;
981
982 trace_block_unplug(q, depth, !from_schedule);
983
984 current_ctx = blk_mq_get_ctx(q);
985
986 if (!cpu_online(ctx->cpu))
987 ctx = current_ctx;
988 hctx = q->mq_ops->map_queue(q, ctx->cpu);
989
990 /*
991 * preemption doesn't flush plug list, so it's possible ctx->cpu is
992 * offline now
993 */
994 spin_lock(&ctx->lock);
995 while (!list_empty(list)) {
996 struct request *rq;
997
998 rq = list_first_entry(list, struct request, queuelist);
999 list_del_init(&rq->queuelist);
1000 rq->mq_ctx = ctx;
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001001 __blk_mq_insert_request(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001002 }
1003 spin_unlock(&ctx->lock);
1004
Jens Axboe320ae512013-10-24 09:20:05 +01001005 blk_mq_run_hw_queue(hctx, from_schedule);
Jens Axboee4043dc2014-04-09 10:18:23 -06001006 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001007}
1008
1009static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1010{
1011 struct request *rqa = container_of(a, struct request, queuelist);
1012 struct request *rqb = container_of(b, struct request, queuelist);
1013
1014 return !(rqa->mq_ctx < rqb->mq_ctx ||
1015 (rqa->mq_ctx == rqb->mq_ctx &&
1016 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1017}
1018
1019void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1020{
1021 struct blk_mq_ctx *this_ctx;
1022 struct request_queue *this_q;
1023 struct request *rq;
1024 LIST_HEAD(list);
1025 LIST_HEAD(ctx_list);
1026 unsigned int depth;
1027
1028 list_splice_init(&plug->mq_list, &list);
1029
1030 list_sort(NULL, &list, plug_ctx_cmp);
1031
1032 this_q = NULL;
1033 this_ctx = NULL;
1034 depth = 0;
1035
1036 while (!list_empty(&list)) {
1037 rq = list_entry_rq(list.next);
1038 list_del_init(&rq->queuelist);
1039 BUG_ON(!rq->q);
1040 if (rq->mq_ctx != this_ctx) {
1041 if (this_ctx) {
1042 blk_mq_insert_requests(this_q, this_ctx,
1043 &ctx_list, depth,
1044 from_schedule);
1045 }
1046
1047 this_ctx = rq->mq_ctx;
1048 this_q = rq->q;
1049 depth = 0;
1050 }
1051
1052 depth++;
1053 list_add_tail(&rq->queuelist, &ctx_list);
1054 }
1055
1056 /*
1057 * If 'this_ctx' is set, we know we have entries to complete
1058 * on 'ctx_list'. Do those.
1059 */
1060 if (this_ctx) {
1061 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1062 from_schedule);
1063 }
1064}
1065
1066static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1067{
1068 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001069
Jens Axboe3ee32372014-06-09 09:36:53 -06001070 if (blk_do_io_stat(rq))
Jens Axboe4b570522014-05-29 11:00:11 -06001071 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001072}
1073
Jens Axboe274a5842014-08-15 12:44:08 -06001074static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1075{
1076 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1077 !blk_queue_nomerges(hctx->queue);
1078}
1079
Jens Axboe07068d52014-05-22 10:40:51 -06001080static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1081 struct blk_mq_ctx *ctx,
1082 struct request *rq, struct bio *bio)
1083{
Jens Axboe274a5842014-08-15 12:44:08 -06001084 if (!hctx_allow_merges(hctx)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001085 blk_mq_bio_to_request(rq, bio);
1086 spin_lock(&ctx->lock);
1087insert_rq:
1088 __blk_mq_insert_request(hctx, rq, false);
1089 spin_unlock(&ctx->lock);
1090 return false;
1091 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001092 struct request_queue *q = hctx->queue;
1093
Jens Axboe07068d52014-05-22 10:40:51 -06001094 spin_lock(&ctx->lock);
1095 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1096 blk_mq_bio_to_request(rq, bio);
1097 goto insert_rq;
1098 }
1099
1100 spin_unlock(&ctx->lock);
1101 __blk_mq_free_request(hctx, ctx, rq);
1102 return true;
1103 }
1104}
1105
1106struct blk_map_ctx {
1107 struct blk_mq_hw_ctx *hctx;
1108 struct blk_mq_ctx *ctx;
1109};
1110
1111static struct request *blk_mq_map_request(struct request_queue *q,
1112 struct bio *bio,
1113 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001114{
1115 struct blk_mq_hw_ctx *hctx;
1116 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001117 struct request *rq;
Jens Axboe07068d52014-05-22 10:40:51 -06001118 int rw = bio_data_dir(bio);
Ming Leicb96a422014-06-01 00:43:37 +08001119 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001120
Jens Axboe07068d52014-05-22 10:40:51 -06001121 if (unlikely(blk_mq_queue_enter(q))) {
Nicholas Bellinger14ec77f2014-02-07 13:45:39 -07001122 bio_endio(bio, -EIO);
Jens Axboe07068d52014-05-22 10:40:51 -06001123 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001124 }
1125
1126 ctx = blk_mq_get_ctx(q);
1127 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1128
Jens Axboe07068d52014-05-22 10:40:51 -06001129 if (rw_is_sync(bio->bi_rw))
Shaohua Li27fbf4e2014-02-19 20:20:21 +08001130 rw |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001131
Jens Axboe320ae512013-10-24 09:20:05 +01001132 trace_block_getrq(q, bio, rw);
Ming Leicb96a422014-06-01 00:43:37 +08001133 blk_mq_set_alloc_data(&alloc_data, q, GFP_ATOMIC, false, ctx,
1134 hctx);
1135 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001136 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001137 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001138 blk_mq_put_ctx(ctx);
1139 trace_block_sleeprq(q, bio, rw);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001140
1141 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001142 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +08001143 blk_mq_set_alloc_data(&alloc_data, q,
1144 __GFP_WAIT|GFP_ATOMIC, false, ctx, hctx);
1145 rq = __blk_mq_alloc_request(&alloc_data, rw);
1146 ctx = alloc_data.ctx;
1147 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001148 }
1149
1150 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001151 data->hctx = hctx;
1152 data->ctx = ctx;
1153 return rq;
1154}
1155
1156/*
1157 * Multiple hardware queue variant. This will not use per-process plugs,
1158 * but will attempt to bypass the hctx queueing if we can go straight to
1159 * hardware for SYNC IO.
1160 */
1161static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1162{
1163 const int is_sync = rw_is_sync(bio->bi_rw);
1164 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1165 struct blk_map_ctx data;
1166 struct request *rq;
1167
1168 blk_queue_bounce(q, &bio);
1169
1170 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1171 bio_endio(bio, -EIO);
1172 return;
1173 }
1174
1175 rq = blk_mq_map_request(q, bio, &data);
1176 if (unlikely(!rq))
1177 return;
1178
1179 if (unlikely(is_flush_fua)) {
1180 blk_mq_bio_to_request(rq, bio);
1181 blk_insert_flush(rq);
1182 goto run_queue;
1183 }
1184
1185 if (is_sync) {
1186 int ret;
1187
1188 blk_mq_bio_to_request(rq, bio);
Christoph Hellwigbf572292014-09-13 16:40:08 -07001189 blk_mq_start_request(rq);
Jens Axboe07068d52014-05-22 10:40:51 -06001190
1191 /*
1192 * For OK queue, we are done. For error, kill it. Any other
1193 * error (busy), just add it to our list as we previously
1194 * would have done
1195 */
Christoph Hellwigbf572292014-09-13 16:40:08 -07001196 ret = q->mq_ops->queue_rq(data.hctx, rq, true);
Jens Axboe07068d52014-05-22 10:40:51 -06001197 if (ret == BLK_MQ_RQ_QUEUE_OK)
1198 goto done;
1199 else {
1200 __blk_mq_requeue_request(rq);
1201
1202 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1203 rq->errors = -EIO;
1204 blk_mq_end_io(rq, rq->errors);
1205 goto done;
1206 }
1207 }
1208 }
1209
1210 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1211 /*
1212 * For a SYNC request, send it to the hardware immediately. For
1213 * an ASYNC request, just ensure that we run it later on. The
1214 * latter allows for merging opportunities and more efficient
1215 * dispatching.
1216 */
1217run_queue:
1218 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1219 }
1220done:
1221 blk_mq_put_ctx(data.ctx);
1222}
1223
1224/*
1225 * Single hardware queue variant. This will attempt to use any per-process
1226 * plug for merging and IO deferral.
1227 */
1228static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1229{
1230 const int is_sync = rw_is_sync(bio->bi_rw);
1231 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1232 unsigned int use_plug, request_count = 0;
1233 struct blk_map_ctx data;
1234 struct request *rq;
1235
1236 /*
1237 * If we have multiple hardware queues, just go directly to
1238 * one of those for sync IO.
1239 */
1240 use_plug = !is_flush_fua && !is_sync;
1241
1242 blk_queue_bounce(q, &bio);
1243
1244 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1245 bio_endio(bio, -EIO);
1246 return;
1247 }
1248
1249 if (use_plug && !blk_queue_nomerges(q) &&
1250 blk_attempt_plug_merge(q, bio, &request_count))
1251 return;
1252
1253 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001254 if (unlikely(!rq))
1255 return;
Jens Axboe320ae512013-10-24 09:20:05 +01001256
1257 if (unlikely(is_flush_fua)) {
1258 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001259 blk_insert_flush(rq);
1260 goto run_queue;
1261 }
1262
1263 /*
1264 * A task plug currently exists. Since this is completely lockless,
1265 * utilize that to temporarily store requests until the task is
1266 * either done or scheduled away.
1267 */
1268 if (use_plug) {
1269 struct blk_plug *plug = current->plug;
1270
1271 if (plug) {
1272 blk_mq_bio_to_request(rq, bio);
Shaohua Li92f399c2013-10-29 12:01:03 -06001273 if (list_empty(&plug->mq_list))
Jens Axboe320ae512013-10-24 09:20:05 +01001274 trace_block_plug(q);
1275 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1276 blk_flush_plug_list(plug, false);
1277 trace_block_plug(q);
1278 }
1279 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe07068d52014-05-22 10:40:51 -06001280 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001281 return;
1282 }
1283 }
1284
Jens Axboe07068d52014-05-22 10:40:51 -06001285 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1286 /*
1287 * For a SYNC request, send it to the hardware immediately. For
1288 * an ASYNC request, just ensure that we run it later on. The
1289 * latter allows for merging opportunities and more efficient
1290 * dispatching.
1291 */
1292run_queue:
1293 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001294 }
1295
Jens Axboe07068d52014-05-22 10:40:51 -06001296 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001297}
1298
1299/*
1300 * Default mapping to a software queue, since we use one per CPU.
1301 */
1302struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1303{
1304 return q->queue_hw_ctx[q->mq_map[cpu]];
1305}
1306EXPORT_SYMBOL(blk_mq_map_queue);
1307
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001308static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1309 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001310{
1311 struct page *page;
1312
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001313 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001314 int i;
1315
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001316 for (i = 0; i < tags->nr_tags; i++) {
1317 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001318 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001319 set->ops->exit_request(set->driver_data, tags->rqs[i],
1320 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001321 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001322 }
1323 }
1324
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001325 while (!list_empty(&tags->page_list)) {
1326 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001327 list_del_init(&page->lru);
Jens Axboe320ae512013-10-24 09:20:05 +01001328 __free_pages(page, page->private);
1329 }
1330
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001331 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001332
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001333 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001334}
1335
1336static size_t order_to_size(unsigned int order)
1337{
Ming Lei4ca08502014-04-19 18:00:18 +08001338 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001339}
1340
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001341static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1342 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001343{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001344 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001345 unsigned int i, j, entries_per_page, max_order = 4;
1346 size_t rq_size, left;
1347
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001348 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1349 set->numa_node);
1350 if (!tags)
1351 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001352
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001353 INIT_LIST_HEAD(&tags->page_list);
1354
Jens Axboea5164402014-09-10 09:02:03 -06001355 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1356 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1357 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001358 if (!tags->rqs) {
1359 blk_mq_free_tags(tags);
1360 return NULL;
1361 }
Jens Axboe320ae512013-10-24 09:20:05 +01001362
1363 /*
1364 * rq_size is the size of the request plus driver payload, rounded
1365 * to the cacheline size
1366 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001367 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001368 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001369 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001370
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001371 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001372 int this_order = max_order;
1373 struct page *page;
1374 int to_do;
1375 void *p;
1376
1377 while (left < order_to_size(this_order - 1) && this_order)
1378 this_order--;
1379
1380 do {
Jens Axboea5164402014-09-10 09:02:03 -06001381 page = alloc_pages_node(set->numa_node,
1382 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1383 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001384 if (page)
1385 break;
1386 if (!this_order--)
1387 break;
1388 if (order_to_size(this_order) < rq_size)
1389 break;
1390 } while (1);
1391
1392 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001393 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001394
1395 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001396 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001397
1398 p = page_address(page);
1399 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001400 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001401 left -= to_do * rq_size;
1402 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001403 tags->rqs[i] = p;
David Hildenbrand683d0e12014-09-18 11:04:31 +02001404 tags->rqs[i]->atomic_flags = 0;
1405 tags->rqs[i]->cmd_flags = 0;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001406 if (set->ops->init_request) {
1407 if (set->ops->init_request(set->driver_data,
1408 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001409 set->numa_node)) {
1410 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001411 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001412 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001413 }
1414
Jens Axboe320ae512013-10-24 09:20:05 +01001415 p += rq_size;
1416 i++;
1417 }
1418 }
1419
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001420 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001421
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001422fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001423 blk_mq_free_rq_map(set, tags, hctx_idx);
1424 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001425}
1426
Jens Axboe1429d7c2014-05-19 09:23:55 -06001427static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1428{
1429 kfree(bitmap->map);
1430}
1431
1432static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1433{
1434 unsigned int bpw = 8, total, num_maps, i;
1435
1436 bitmap->bits_per_word = bpw;
1437
1438 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1439 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1440 GFP_KERNEL, node);
1441 if (!bitmap->map)
1442 return -ENOMEM;
1443
1444 bitmap->map_size = num_maps;
1445
1446 total = nr_cpu_ids;
1447 for (i = 0; i < num_maps; i++) {
1448 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1449 total -= bitmap->map[i].depth;
1450 }
1451
1452 return 0;
1453}
1454
Jens Axboe484b4062014-05-21 14:01:15 -06001455static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1456{
1457 struct request_queue *q = hctx->queue;
1458 struct blk_mq_ctx *ctx;
1459 LIST_HEAD(tmp);
1460
1461 /*
1462 * Move ctx entries to new CPU, if this one is going away.
1463 */
1464 ctx = __blk_mq_get_ctx(q, cpu);
1465
1466 spin_lock(&ctx->lock);
1467 if (!list_empty(&ctx->rq_list)) {
1468 list_splice_init(&ctx->rq_list, &tmp);
1469 blk_mq_hctx_clear_pending(hctx, ctx);
1470 }
1471 spin_unlock(&ctx->lock);
1472
1473 if (list_empty(&tmp))
1474 return NOTIFY_OK;
1475
1476 ctx = blk_mq_get_ctx(q);
1477 spin_lock(&ctx->lock);
1478
1479 while (!list_empty(&tmp)) {
1480 struct request *rq;
1481
1482 rq = list_first_entry(&tmp, struct request, queuelist);
1483 rq->mq_ctx = ctx;
1484 list_move_tail(&rq->queuelist, &ctx->rq_list);
1485 }
1486
1487 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1488 blk_mq_hctx_mark_pending(hctx, ctx);
1489
1490 spin_unlock(&ctx->lock);
1491
1492 blk_mq_run_hw_queue(hctx, true);
1493 blk_mq_put_ctx(ctx);
1494 return NOTIFY_OK;
1495}
1496
1497static int blk_mq_hctx_cpu_online(struct blk_mq_hw_ctx *hctx, int cpu)
1498{
1499 struct request_queue *q = hctx->queue;
1500 struct blk_mq_tag_set *set = q->tag_set;
1501
1502 if (set->tags[hctx->queue_num])
1503 return NOTIFY_OK;
1504
1505 set->tags[hctx->queue_num] = blk_mq_init_rq_map(set, hctx->queue_num);
1506 if (!set->tags[hctx->queue_num])
1507 return NOTIFY_STOP;
1508
1509 hctx->tags = set->tags[hctx->queue_num];
1510 return NOTIFY_OK;
1511}
1512
1513static int blk_mq_hctx_notify(void *data, unsigned long action,
1514 unsigned int cpu)
1515{
1516 struct blk_mq_hw_ctx *hctx = data;
1517
1518 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1519 return blk_mq_hctx_cpu_offline(hctx, cpu);
1520 else if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
1521 return blk_mq_hctx_cpu_online(hctx, cpu);
1522
1523 return NOTIFY_OK;
1524}
1525
Ming Lei624dbe42014-05-27 23:35:13 +08001526static void blk_mq_exit_hw_queues(struct request_queue *q,
1527 struct blk_mq_tag_set *set, int nr_queue)
1528{
1529 struct blk_mq_hw_ctx *hctx;
1530 unsigned int i;
1531
1532 queue_for_each_hw_ctx(q, hctx, i) {
1533 if (i == nr_queue)
1534 break;
1535
Jens Axboef899fed2014-06-04 09:11:53 -06001536 blk_mq_tag_idle(hctx);
1537
Ming Lei624dbe42014-05-27 23:35:13 +08001538 if (set->ops->exit_hctx)
1539 set->ops->exit_hctx(hctx, i);
1540
1541 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1542 kfree(hctx->ctxs);
1543 blk_mq_free_bitmap(&hctx->ctx_map);
1544 }
1545
1546}
1547
1548static void blk_mq_free_hw_queues(struct request_queue *q,
1549 struct blk_mq_tag_set *set)
1550{
1551 struct blk_mq_hw_ctx *hctx;
1552 unsigned int i;
1553
1554 queue_for_each_hw_ctx(q, hctx, i) {
1555 free_cpumask_var(hctx->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001556 kfree(hctx);
Ming Lei624dbe42014-05-27 23:35:13 +08001557 }
1558}
1559
Jens Axboe320ae512013-10-24 09:20:05 +01001560static int blk_mq_init_hw_queues(struct request_queue *q,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001561 struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001562{
1563 struct blk_mq_hw_ctx *hctx;
Ming Lei624dbe42014-05-27 23:35:13 +08001564 unsigned int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001565
1566 /*
1567 * Initialize hardware queues
1568 */
1569 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001570 int node;
1571
1572 node = hctx->numa_node;
1573 if (node == NUMA_NO_NODE)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001574 node = hctx->numa_node = set->numa_node;
Jens Axboe320ae512013-10-24 09:20:05 +01001575
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001576 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1577 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
Jens Axboe320ae512013-10-24 09:20:05 +01001578 spin_lock_init(&hctx->lock);
1579 INIT_LIST_HEAD(&hctx->dispatch);
1580 hctx->queue = q;
1581 hctx->queue_num = i;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001582 hctx->flags = set->flags;
1583 hctx->cmd_size = set->cmd_size;
Jens Axboe320ae512013-10-24 09:20:05 +01001584
1585 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1586 blk_mq_hctx_notify, hctx);
1587 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1588
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001589 hctx->tags = set->tags[i];
Jens Axboe320ae512013-10-24 09:20:05 +01001590
1591 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001592 * Allocate space for all possible cpus to avoid allocation at
Jens Axboe320ae512013-10-24 09:20:05 +01001593 * runtime
1594 */
1595 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1596 GFP_KERNEL, node);
1597 if (!hctx->ctxs)
1598 break;
1599
Jens Axboe1429d7c2014-05-19 09:23:55 -06001600 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
Jens Axboe320ae512013-10-24 09:20:05 +01001601 break;
1602
Jens Axboe320ae512013-10-24 09:20:05 +01001603 hctx->nr_ctx = 0;
1604
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001605 if (set->ops->init_hctx &&
1606 set->ops->init_hctx(hctx, set->driver_data, i))
Jens Axboe320ae512013-10-24 09:20:05 +01001607 break;
1608 }
1609
1610 if (i == q->nr_hw_queues)
1611 return 0;
1612
1613 /*
1614 * Init failed
1615 */
Ming Lei624dbe42014-05-27 23:35:13 +08001616 blk_mq_exit_hw_queues(q, set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001617
1618 return 1;
1619}
1620
1621static void blk_mq_init_cpu_queues(struct request_queue *q,
1622 unsigned int nr_hw_queues)
1623{
1624 unsigned int i;
1625
1626 for_each_possible_cpu(i) {
1627 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1628 struct blk_mq_hw_ctx *hctx;
1629
1630 memset(__ctx, 0, sizeof(*__ctx));
1631 __ctx->cpu = i;
1632 spin_lock_init(&__ctx->lock);
1633 INIT_LIST_HEAD(&__ctx->rq_list);
1634 __ctx->queue = q;
1635
1636 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001637 if (!cpu_online(i))
1638 continue;
1639
Jens Axboee4043dc2014-04-09 10:18:23 -06001640 hctx = q->mq_ops->map_queue(q, i);
1641 cpumask_set_cpu(i, hctx->cpumask);
1642 hctx->nr_ctx++;
1643
Jens Axboe320ae512013-10-24 09:20:05 +01001644 /*
1645 * Set local node, IFF we have more than one hw queue. If
1646 * not, we remain on the home node of the device
1647 */
1648 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1649 hctx->numa_node = cpu_to_node(i);
1650 }
1651}
1652
1653static void blk_mq_map_swqueue(struct request_queue *q)
1654{
1655 unsigned int i;
1656 struct blk_mq_hw_ctx *hctx;
1657 struct blk_mq_ctx *ctx;
1658
1659 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001660 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001661 hctx->nr_ctx = 0;
1662 }
1663
1664 /*
1665 * Map software to hardware queues
1666 */
1667 queue_for_each_ctx(q, ctx, i) {
1668 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboee4043dc2014-04-09 10:18:23 -06001669 if (!cpu_online(i))
1670 continue;
1671
Jens Axboe320ae512013-10-24 09:20:05 +01001672 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001673 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001674 ctx->index_hw = hctx->nr_ctx;
1675 hctx->ctxs[hctx->nr_ctx++] = ctx;
1676 }
Jens Axboe506e9312014-05-07 10:26:44 -06001677
1678 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001679 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001680 * If no software queues are mapped to this hardware queue,
1681 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001682 */
1683 if (!hctx->nr_ctx) {
1684 struct blk_mq_tag_set *set = q->tag_set;
1685
1686 if (set->tags[i]) {
1687 blk_mq_free_rq_map(set, set->tags[i], i);
1688 set->tags[i] = NULL;
1689 hctx->tags = NULL;
1690 }
1691 continue;
1692 }
1693
1694 /*
1695 * Initialize batch roundrobin counts
1696 */
Jens Axboe506e9312014-05-07 10:26:44 -06001697 hctx->next_cpu = cpumask_first(hctx->cpumask);
1698 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1699 }
Jens Axboe320ae512013-10-24 09:20:05 +01001700}
1701
Jens Axboe0d2602c2014-05-13 15:10:52 -06001702static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1703{
1704 struct blk_mq_hw_ctx *hctx;
1705 struct request_queue *q;
1706 bool shared;
1707 int i;
1708
1709 if (set->tag_list.next == set->tag_list.prev)
1710 shared = false;
1711 else
1712 shared = true;
1713
1714 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1715 blk_mq_freeze_queue(q);
1716
1717 queue_for_each_hw_ctx(q, hctx, i) {
1718 if (shared)
1719 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1720 else
1721 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1722 }
1723 blk_mq_unfreeze_queue(q);
1724 }
1725}
1726
1727static void blk_mq_del_queue_tag_set(struct request_queue *q)
1728{
1729 struct blk_mq_tag_set *set = q->tag_set;
1730
Jens Axboe0d2602c2014-05-13 15:10:52 -06001731 mutex_lock(&set->tag_list_lock);
1732 list_del_init(&q->tag_set_list);
1733 blk_mq_update_tag_set_depth(set);
1734 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001735}
1736
1737static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1738 struct request_queue *q)
1739{
1740 q->tag_set = set;
1741
1742 mutex_lock(&set->tag_list_lock);
1743 list_add_tail(&q->tag_set_list, &set->tag_list);
1744 blk_mq_update_tag_set_depth(set);
1745 mutex_unlock(&set->tag_list_lock);
1746}
1747
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001748struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001749{
1750 struct blk_mq_hw_ctx **hctxs;
Ming Leie6cdb092014-06-03 11:24:06 +08001751 struct blk_mq_ctx __percpu *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001752 struct request_queue *q;
Jens Axboef14bbe72014-05-27 12:06:53 -06001753 unsigned int *map;
Jens Axboe320ae512013-10-24 09:20:05 +01001754 int i;
1755
Jens Axboe320ae512013-10-24 09:20:05 +01001756 ctx = alloc_percpu(struct blk_mq_ctx);
1757 if (!ctx)
1758 return ERR_PTR(-ENOMEM);
1759
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001760 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1761 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001762
1763 if (!hctxs)
1764 goto err_percpu;
1765
Jens Axboef14bbe72014-05-27 12:06:53 -06001766 map = blk_mq_make_queue_map(set);
1767 if (!map)
1768 goto err_map;
1769
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001770 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboef14bbe72014-05-27 12:06:53 -06001771 int node = blk_mq_hw_queue_to_node(map, i);
1772
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001773 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1774 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001775 if (!hctxs[i])
1776 goto err_hctxs;
1777
Jens Axboee4043dc2014-04-09 10:18:23 -06001778 if (!zalloc_cpumask_var(&hctxs[i]->cpumask, GFP_KERNEL))
1779 goto err_hctxs;
1780
Jens Axboe0d2602c2014-05-13 15:10:52 -06001781 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001782 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001783 hctxs[i]->queue_num = i;
1784 }
1785
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001786 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001787 if (!q)
1788 goto err_hctxs;
1789
Tejun Heoadd703f2014-07-01 10:34:38 -06001790 if (percpu_ref_init(&q->mq_usage_counter, blk_mq_usage_counter_release))
Ming Lei3d2936f2014-05-27 23:35:14 +08001791 goto err_map;
1792
Jens Axboe320ae512013-10-24 09:20:05 +01001793 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1794 blk_queue_rq_timeout(q, 30000);
1795
1796 q->nr_queues = nr_cpu_ids;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001797 q->nr_hw_queues = set->nr_hw_queues;
Jens Axboef14bbe72014-05-27 12:06:53 -06001798 q->mq_map = map;
Jens Axboe320ae512013-10-24 09:20:05 +01001799
1800 q->queue_ctx = ctx;
1801 q->queue_hw_ctx = hctxs;
1802
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001803 q->mq_ops = set->ops;
Jens Axboe94eddfb2013-11-19 09:25:07 -07001804 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001805
Jens Axboe05f1dd52014-05-29 09:53:32 -06001806 if (!(set->flags & BLK_MQ_F_SG_MERGE))
1807 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
1808
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001809 q->sg_reserved_size = INT_MAX;
1810
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001811 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
1812 INIT_LIST_HEAD(&q->requeue_list);
1813 spin_lock_init(&q->requeue_lock);
1814
Jens Axboe07068d52014-05-22 10:40:51 -06001815 if (q->nr_hw_queues > 1)
1816 blk_queue_make_request(q, blk_mq_make_request);
1817 else
1818 blk_queue_make_request(q, blk_sq_make_request);
1819
Jens Axboe87ee7b12014-04-24 08:51:47 -06001820 blk_queue_rq_timed_out(q, blk_mq_rq_timed_out);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001821 if (set->timeout)
1822 blk_queue_rq_timeout(q, set->timeout);
Jens Axboe320ae512013-10-24 09:20:05 +01001823
Jens Axboeeba71762014-05-20 15:17:27 -06001824 /*
1825 * Do this after blk_queue_make_request() overrides it...
1826 */
1827 q->nr_requests = set->queue_depth;
1828
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001829 if (set->ops->complete)
1830 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001831
Jens Axboe320ae512013-10-24 09:20:05 +01001832 blk_mq_init_flush(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001833 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001834
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001835 q->flush_rq = kzalloc(round_up(sizeof(struct request) +
1836 set->cmd_size, cache_line_size()),
1837 GFP_KERNEL);
Christoph Hellwig18741982014-02-10 09:29:00 -07001838 if (!q->flush_rq)
Jens Axboe320ae512013-10-24 09:20:05 +01001839 goto err_hw;
1840
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001841 if (blk_mq_init_hw_queues(q, set))
Christoph Hellwig18741982014-02-10 09:29:00 -07001842 goto err_flush_rq;
1843
Jens Axboe320ae512013-10-24 09:20:05 +01001844 mutex_lock(&all_q_mutex);
1845 list_add_tail(&q->all_q_node, &all_q_list);
1846 mutex_unlock(&all_q_mutex);
1847
Jens Axboe0d2602c2014-05-13 15:10:52 -06001848 blk_mq_add_queue_tag_set(set, q);
1849
Jens Axboe484b4062014-05-21 14:01:15 -06001850 blk_mq_map_swqueue(q);
1851
Jens Axboe320ae512013-10-24 09:20:05 +01001852 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07001853
1854err_flush_rq:
1855 kfree(q->flush_rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001856err_hw:
Jens Axboe320ae512013-10-24 09:20:05 +01001857 blk_cleanup_queue(q);
1858err_hctxs:
Jens Axboef14bbe72014-05-27 12:06:53 -06001859 kfree(map);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001860 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboe320ae512013-10-24 09:20:05 +01001861 if (!hctxs[i])
1862 break;
Jens Axboee4043dc2014-04-09 10:18:23 -06001863 free_cpumask_var(hctxs[i]->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001864 kfree(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001865 }
Jens Axboef14bbe72014-05-27 12:06:53 -06001866err_map:
Jens Axboe320ae512013-10-24 09:20:05 +01001867 kfree(hctxs);
1868err_percpu:
1869 free_percpu(ctx);
1870 return ERR_PTR(-ENOMEM);
1871}
1872EXPORT_SYMBOL(blk_mq_init_queue);
1873
1874void blk_mq_free_queue(struct request_queue *q)
1875{
Ming Lei624dbe42014-05-27 23:35:13 +08001876 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001877
Jens Axboe0d2602c2014-05-13 15:10:52 -06001878 blk_mq_del_queue_tag_set(q);
1879
Ming Lei624dbe42014-05-27 23:35:13 +08001880 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1881 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01001882
Tejun Heoadd703f2014-07-01 10:34:38 -06001883 percpu_ref_exit(&q->mq_usage_counter);
Ming Lei3d2936f2014-05-27 23:35:14 +08001884
Jens Axboe320ae512013-10-24 09:20:05 +01001885 free_percpu(q->queue_ctx);
1886 kfree(q->queue_hw_ctx);
1887 kfree(q->mq_map);
1888
1889 q->queue_ctx = NULL;
1890 q->queue_hw_ctx = NULL;
1891 q->mq_map = NULL;
1892
1893 mutex_lock(&all_q_mutex);
1894 list_del_init(&q->all_q_node);
1895 mutex_unlock(&all_q_mutex);
1896}
Jens Axboe320ae512013-10-24 09:20:05 +01001897
1898/* Basically redo blk_mq_init_queue with queue frozen */
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001899static void blk_mq_queue_reinit(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01001900{
1901 blk_mq_freeze_queue(q);
1902
Jens Axboe67aec142014-05-30 08:25:36 -06001903 blk_mq_sysfs_unregister(q);
1904
Jens Axboe320ae512013-10-24 09:20:05 +01001905 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1906
1907 /*
1908 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1909 * we should change hctx numa_node according to new topology (this
1910 * involves free and re-allocate memory, worthy doing?)
1911 */
1912
1913 blk_mq_map_swqueue(q);
1914
Jens Axboe67aec142014-05-30 08:25:36 -06001915 blk_mq_sysfs_register(q);
1916
Jens Axboe320ae512013-10-24 09:20:05 +01001917 blk_mq_unfreeze_queue(q);
1918}
1919
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001920static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1921 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01001922{
1923 struct request_queue *q;
1924
1925 /*
Jens Axboe9fccfed2014-05-08 14:50:19 -06001926 * Before new mappings are established, hotadded cpu might already
1927 * start handling requests. This doesn't break anything as we map
1928 * offline CPUs to first hardware queue. We will re-init the queue
1929 * below to get optimal settings.
Jens Axboe320ae512013-10-24 09:20:05 +01001930 */
1931 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1932 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1933 return NOTIFY_OK;
1934
1935 mutex_lock(&all_q_mutex);
1936 list_for_each_entry(q, &all_q_list, all_q_node)
1937 blk_mq_queue_reinit(q);
1938 mutex_unlock(&all_q_mutex);
1939 return NOTIFY_OK;
1940}
1941
Jens Axboea5164402014-09-10 09:02:03 -06001942static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
1943{
1944 int i;
1945
1946 for (i = 0; i < set->nr_hw_queues; i++) {
1947 set->tags[i] = blk_mq_init_rq_map(set, i);
1948 if (!set->tags[i])
1949 goto out_unwind;
1950 }
1951
1952 return 0;
1953
1954out_unwind:
1955 while (--i >= 0)
1956 blk_mq_free_rq_map(set, set->tags[i], i);
1957
Jens Axboea5164402014-09-10 09:02:03 -06001958 return -ENOMEM;
1959}
1960
1961/*
1962 * Allocate the request maps associated with this tag_set. Note that this
1963 * may reduce the depth asked for, if memory is tight. set->queue_depth
1964 * will be updated to reflect the allocated depth.
1965 */
1966static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
1967{
1968 unsigned int depth;
1969 int err;
1970
1971 depth = set->queue_depth;
1972 do {
1973 err = __blk_mq_alloc_rq_maps(set);
1974 if (!err)
1975 break;
1976
1977 set->queue_depth >>= 1;
1978 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
1979 err = -ENOMEM;
1980 break;
1981 }
1982 } while (set->queue_depth);
1983
1984 if (!set->queue_depth || err) {
1985 pr_err("blk-mq: failed to allocate request map\n");
1986 return -ENOMEM;
1987 }
1988
1989 if (depth != set->queue_depth)
1990 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
1991 depth, set->queue_depth);
1992
1993 return 0;
1994}
1995
Jens Axboea4391c62014-06-05 15:21:56 -06001996/*
1997 * Alloc a tag set to be associated with one or more request queues.
1998 * May fail with EINVAL for various error conditions. May adjust the
1999 * requested depth down, if if it too large. In that case, the set
2000 * value will be stored in set->queue_depth.
2001 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002002int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2003{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002004 if (!set->nr_hw_queues)
2005 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002006 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002007 return -EINVAL;
2008 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2009 return -EINVAL;
2010
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002011 if (!set->nr_hw_queues || !set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002012 return -EINVAL;
2013
Jens Axboea4391c62014-06-05 15:21:56 -06002014 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2015 pr_info("blk-mq: reduced tag depth to %u\n",
2016 BLK_MQ_MAX_DEPTH);
2017 set->queue_depth = BLK_MQ_MAX_DEPTH;
2018 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002019
Ming Lei48479002014-04-19 18:00:17 +08002020 set->tags = kmalloc_node(set->nr_hw_queues *
2021 sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002022 GFP_KERNEL, set->numa_node);
2023 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002024 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002025
Jens Axboea5164402014-09-10 09:02:03 -06002026 if (blk_mq_alloc_rq_maps(set))
2027 goto enomem;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002028
Jens Axboe0d2602c2014-05-13 15:10:52 -06002029 mutex_init(&set->tag_list_lock);
2030 INIT_LIST_HEAD(&set->tag_list);
2031
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002032 return 0;
Jens Axboea5164402014-09-10 09:02:03 -06002033enomem:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002034 kfree(set->tags);
2035 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002036 return -ENOMEM;
2037}
2038EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2039
2040void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2041{
2042 int i;
2043
Jens Axboe484b4062014-05-21 14:01:15 -06002044 for (i = 0; i < set->nr_hw_queues; i++) {
2045 if (set->tags[i])
2046 blk_mq_free_rq_map(set, set->tags[i], i);
2047 }
2048
Ming Lei981bd182014-04-24 00:07:34 +08002049 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002050 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002051}
2052EXPORT_SYMBOL(blk_mq_free_tag_set);
2053
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002054int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2055{
2056 struct blk_mq_tag_set *set = q->tag_set;
2057 struct blk_mq_hw_ctx *hctx;
2058 int i, ret;
2059
2060 if (!set || nr > set->queue_depth)
2061 return -EINVAL;
2062
2063 ret = 0;
2064 queue_for_each_hw_ctx(q, hctx, i) {
2065 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2066 if (ret)
2067 break;
2068 }
2069
2070 if (!ret)
2071 q->nr_requests = nr;
2072
2073 return ret;
2074}
2075
Jens Axboe676141e2014-03-20 13:29:18 -06002076void blk_mq_disable_hotplug(void)
2077{
2078 mutex_lock(&all_q_mutex);
2079}
2080
2081void blk_mq_enable_hotplug(void)
2082{
2083 mutex_unlock(&all_q_mutex);
2084}
2085
Jens Axboe320ae512013-10-24 09:20:05 +01002086static int __init blk_mq_init(void)
2087{
Jens Axboe320ae512013-10-24 09:20:05 +01002088 blk_mq_cpu_init();
2089
Tejun Heoadd703f2014-07-01 10:34:38 -06002090 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002091
2092 return 0;
2093}
2094subsys_initcall(blk_mq_init);