blob: 38f4a165640dd0aba321bb3196d8b1d1996635c1 [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) {
Tejun Heo9eca8042014-09-24 13:07:33 -0400122 percpu_ref_kill(&q->mq_usage_counter);
Tejun Heocddd5d12014-08-16 08:02:24 -0400123 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;
Jens Axboe320ae512013-10-24 09:20:05 +0100226
227 if (blk_mq_queue_enter(q))
228 return NULL;
229
Christoph Hellwigd8525642014-05-27 20:59:50 +0200230 ctx = blk_mq_get_ctx(q);
231 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +0800232 blk_mq_set_alloc_data(&alloc_data, q, gfp & ~__GFP_WAIT,
233 reserved, ctx, hctx);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200234
Ming Leicb96a422014-06-01 00:43:37 +0800235 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200236 if (!rq && (gfp & __GFP_WAIT)) {
237 __blk_mq_run_hw_queue(hctx);
238 blk_mq_put_ctx(ctx);
239
240 ctx = blk_mq_get_ctx(q);
241 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +0800242 blk_mq_set_alloc_data(&alloc_data, q, gfp, reserved, ctx,
243 hctx);
244 rq = __blk_mq_alloc_request(&alloc_data, rw);
245 ctx = alloc_data.ctx;
Christoph Hellwigd8525642014-05-27 20:59:50 +0200246 }
247 blk_mq_put_ctx(ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100248 return rq;
249}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600250EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100251
Jens Axboe320ae512013-10-24 09:20:05 +0100252static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
253 struct blk_mq_ctx *ctx, struct request *rq)
254{
255 const int tag = rq->tag;
256 struct request_queue *q = rq->q;
257
Jens Axboe0d2602c2014-05-13 15:10:52 -0600258 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
259 atomic_dec(&hctx->nr_active);
David Hildenbrand683d0e12014-09-18 11:04:31 +0200260 rq->cmd_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600261
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200262 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600263 blk_mq_put_tag(hctx, tag, &ctx->last_tag);
Jens Axboe320ae512013-10-24 09:20:05 +0100264 blk_mq_queue_exit(q);
265}
266
267void blk_mq_free_request(struct request *rq)
268{
269 struct blk_mq_ctx *ctx = rq->mq_ctx;
270 struct blk_mq_hw_ctx *hctx;
271 struct request_queue *q = rq->q;
272
273 ctx->rq_completed[rq_is_sync(rq)]++;
274
275 hctx = q->mq_ops->map_queue(q, ctx->cpu);
276 __blk_mq_free_request(hctx, ctx, rq);
277}
278
Christoph Hellwig8727af42014-04-14 10:30:08 +0200279/*
280 * Clone all relevant state from a request that has been put on hold in
281 * the flush state machine into the preallocated flush request that hangs
282 * off the request queue.
283 *
284 * For a driver the flush request should be invisible, that's why we are
285 * impersonating the original request here.
286 */
287void blk_mq_clone_flush_request(struct request *flush_rq,
288 struct request *orig_rq)
289{
290 struct blk_mq_hw_ctx *hctx =
291 orig_rq->q->mq_ops->map_queue(orig_rq->q, orig_rq->mq_ctx->cpu);
292
293 flush_rq->mq_ctx = orig_rq->mq_ctx;
294 flush_rq->tag = orig_rq->tag;
295 memcpy(blk_mq_rq_to_pdu(flush_rq), blk_mq_rq_to_pdu(orig_rq),
296 hctx->cmd_size);
297}
298
Christoph Hellwig63151a42014-04-16 09:44:52 +0200299inline void __blk_mq_end_io(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100300{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700301 blk_account_io_done(rq);
302
Christoph Hellwig91b63632014-04-16 09:44:53 +0200303 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100304 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200305 } else {
306 if (unlikely(blk_bidi_rq(rq)))
307 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100308 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200309 }
Jens Axboe320ae512013-10-24 09:20:05 +0100310}
Christoph Hellwig63151a42014-04-16 09:44:52 +0200311EXPORT_SYMBOL(__blk_mq_end_io);
312
313void blk_mq_end_io(struct request *rq, int error)
314{
315 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
316 BUG();
317 __blk_mq_end_io(rq, error);
318}
319EXPORT_SYMBOL(blk_mq_end_io);
Jens Axboe320ae512013-10-24 09:20:05 +0100320
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800321static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100322{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800323 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100324
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800325 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100326}
327
Jens Axboeed851862014-05-30 21:20:50 -0600328static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100329{
330 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700331 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100332 int cpu;
333
Christoph Hellwig38535202014-04-25 02:32:53 -0700334 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800335 rq->q->softirq_done_fn(rq);
336 return;
337 }
Jens Axboe320ae512013-10-24 09:20:05 +0100338
339 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700340 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
341 shared = cpus_share_cache(cpu, ctx->cpu);
342
343 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800344 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800345 rq->csd.info = rq;
346 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100347 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800348 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800349 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800350 }
Jens Axboe320ae512013-10-24 09:20:05 +0100351 put_cpu();
352}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800353
Jens Axboeed851862014-05-30 21:20:50 -0600354void __blk_mq_complete_request(struct request *rq)
355{
356 struct request_queue *q = rq->q;
357
358 if (!q->softirq_done_fn)
359 blk_mq_end_io(rq, rq->errors);
360 else
361 blk_mq_ipi_complete_request(rq);
362}
363
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800364/**
365 * blk_mq_complete_request - end I/O on a request
366 * @rq: the request being processed
367 *
368 * Description:
369 * Ends all I/O on a request. It does not handle partial completions.
370 * The actual completion happens out-of-order, through a IPI handler.
371 **/
372void blk_mq_complete_request(struct request *rq)
373{
Jens Axboe95f09682014-05-27 17:46:48 -0600374 struct request_queue *q = rq->q;
375
376 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800377 return;
Jens Axboeed851862014-05-30 21:20:50 -0600378 if (!blk_mark_rq_complete(rq))
379 __blk_mq_complete_request(rq);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800380}
381EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100382
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800383static void blk_mq_start_request(struct request *rq, bool last)
Jens Axboe320ae512013-10-24 09:20:05 +0100384{
385 struct request_queue *q = rq->q;
386
387 trace_block_rq_issue(q, rq);
388
Christoph Hellwig742ee692014-04-14 10:30:06 +0200389 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200390 if (unlikely(blk_bidi_rq(rq)))
391 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200392
Ming Lei2b8393b2014-06-10 00:16:41 +0800393 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600394
395 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600396 * Ensure that ->deadline is visible before set the started
397 * flag and clear the completed flag.
398 */
399 smp_mb__before_atomic();
400
401 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600402 * Mark us as started and clear complete. Complete might have been
403 * set if requeue raced with timeout, which then marked it as
404 * complete. So be sure to clear complete again when we start
405 * the request, otherwise we'll ignore the completion event.
406 */
Jens Axboe4b570522014-05-29 11:00:11 -0600407 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
408 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
409 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
410 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800411
412 if (q->dma_drain_size && blk_rq_bytes(rq)) {
413 /*
414 * Make sure space for the drain appears. We know we can do
415 * this because max_hw_segments has been adjusted to be one
416 * fewer than the device can handle.
417 */
418 rq->nr_phys_segments++;
419 }
420
421 /*
422 * Flag the last request in the series so that drivers know when IO
423 * should be kicked off, if they don't do it on a per-request basis.
424 *
425 * Note: the flag isn't the only condition drivers should do kick off.
426 * If drive is busy, the last request might not have the bit set.
427 */
428 if (last)
429 rq->cmd_flags |= REQ_END;
Jens Axboe320ae512013-10-24 09:20:05 +0100430}
431
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200432static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100433{
434 struct request_queue *q = rq->q;
435
436 trace_block_rq_requeue(q, rq);
437 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800438
439 rq->cmd_flags &= ~REQ_END;
440
441 if (q->dma_drain_size && blk_rq_bytes(rq))
442 rq->nr_phys_segments--;
Jens Axboe320ae512013-10-24 09:20:05 +0100443}
444
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200445void blk_mq_requeue_request(struct request *rq)
446{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200447 __blk_mq_requeue_request(rq);
448 blk_clear_rq_complete(rq);
449
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200450 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600451 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200452}
453EXPORT_SYMBOL(blk_mq_requeue_request);
454
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600455static void blk_mq_requeue_work(struct work_struct *work)
456{
457 struct request_queue *q =
458 container_of(work, struct request_queue, requeue_work);
459 LIST_HEAD(rq_list);
460 struct request *rq, *next;
461 unsigned long flags;
462
463 spin_lock_irqsave(&q->requeue_lock, flags);
464 list_splice_init(&q->requeue_list, &rq_list);
465 spin_unlock_irqrestore(&q->requeue_lock, flags);
466
467 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
468 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
469 continue;
470
471 rq->cmd_flags &= ~REQ_SOFTBARRIER;
472 list_del_init(&rq->queuelist);
473 blk_mq_insert_request(rq, true, false, false);
474 }
475
476 while (!list_empty(&rq_list)) {
477 rq = list_entry(rq_list.next, struct request, queuelist);
478 list_del_init(&rq->queuelist);
479 blk_mq_insert_request(rq, false, false, false);
480 }
481
Jens Axboe8b957412014-09-19 13:10:29 -0600482 /*
483 * Use the start variant of queue running here, so that running
484 * the requeue work will kick stopped queues.
485 */
486 blk_mq_start_hw_queues(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600487}
488
489void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
490{
491 struct request_queue *q = rq->q;
492 unsigned long flags;
493
494 /*
495 * We abuse this flag that is otherwise used by the I/O scheduler to
496 * request head insertation from the workqueue.
497 */
498 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
499
500 spin_lock_irqsave(&q->requeue_lock, flags);
501 if (at_head) {
502 rq->cmd_flags |= REQ_SOFTBARRIER;
503 list_add(&rq->queuelist, &q->requeue_list);
504 } else {
505 list_add_tail(&rq->queuelist, &q->requeue_list);
506 }
507 spin_unlock_irqrestore(&q->requeue_lock, flags);
508}
509EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
510
511void blk_mq_kick_requeue_list(struct request_queue *q)
512{
513 kblockd_schedule_work(&q->requeue_work);
514}
515EXPORT_SYMBOL(blk_mq_kick_requeue_list);
516
Jens Axboe0e62f512014-06-04 10:23:49 -0600517static inline bool is_flush_request(struct request *rq, unsigned int tag)
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600518{
Jens Axboe0e62f512014-06-04 10:23:49 -0600519 return ((rq->cmd_flags & REQ_FLUSH_SEQ) &&
520 rq->q->flush_rq->tag == tag);
521}
Shaohua Li22302372014-05-30 08:06:42 -0600522
Jens Axboe0e62f512014-06-04 10:23:49 -0600523struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
524{
525 struct request *rq = tags->rqs[tag];
Shaohua Li22302372014-05-30 08:06:42 -0600526
Jens Axboe0e62f512014-06-04 10:23:49 -0600527 if (!is_flush_request(rq, tag))
528 return rq;
529
530 return rq->q->flush_rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600531}
532EXPORT_SYMBOL(blk_mq_tag_to_rq);
533
Jens Axboe320ae512013-10-24 09:20:05 +0100534struct blk_mq_timeout_data {
535 struct blk_mq_hw_ctx *hctx;
536 unsigned long *next;
537 unsigned int *next_set;
538};
539
540static void blk_mq_timeout_check(void *__data, unsigned long *free_tags)
541{
542 struct blk_mq_timeout_data *data = __data;
543 struct blk_mq_hw_ctx *hctx = data->hctx;
544 unsigned int tag;
545
546 /* It may not be in flight yet (this is where
547 * the REQ_ATOMIC_STARTED flag comes in). The requests are
548 * statically allocated, so we know it's always safe to access the
549 * memory associated with a bit offset into ->rqs[].
550 */
551 tag = 0;
552 do {
553 struct request *rq;
554
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600555 tag = find_next_zero_bit(free_tags, hctx->tags->nr_tags, tag);
556 if (tag >= hctx->tags->nr_tags)
Jens Axboe320ae512013-10-24 09:20:05 +0100557 break;
558
Jens Axboe0e62f512014-06-04 10:23:49 -0600559 rq = blk_mq_tag_to_rq(hctx->tags, tag++);
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600560 if (rq->q != hctx->queue)
561 continue;
Jens Axboe320ae512013-10-24 09:20:05 +0100562 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
563 continue;
564
565 blk_rq_check_expired(rq, data->next, data->next_set);
566 } while (1);
567}
568
569static void blk_mq_hw_ctx_check_timeout(struct blk_mq_hw_ctx *hctx,
570 unsigned long *next,
571 unsigned int *next_set)
572{
573 struct blk_mq_timeout_data data = {
574 .hctx = hctx,
575 .next = next,
576 .next_set = next_set,
577 };
578
579 /*
580 * Ask the tagging code to iterate busy requests, so we can
581 * check them for timeout.
582 */
583 blk_mq_tag_busy_iter(hctx->tags, blk_mq_timeout_check, &data);
584}
585
Jens Axboe87ee7b12014-04-24 08:51:47 -0600586static enum blk_eh_timer_return blk_mq_rq_timed_out(struct request *rq)
587{
588 struct request_queue *q = rq->q;
589
590 /*
591 * We know that complete is set at this point. If STARTED isn't set
592 * anymore, then the request isn't active and the "timeout" should
593 * just be ignored. This can happen due to the bitflag ordering.
594 * Timeout first checks if STARTED is set, and if it is, assumes
595 * the request is active. But if we race with completion, then
596 * we both flags will get cleared. So check here again, and ignore
597 * a timeout event with a request that isn't active.
598 */
599 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
600 return BLK_EH_NOT_HANDLED;
601
602 if (!q->mq_ops->timeout)
603 return BLK_EH_RESET_TIMER;
604
605 return q->mq_ops->timeout(rq);
606}
607
Jens Axboe320ae512013-10-24 09:20:05 +0100608static void blk_mq_rq_timer(unsigned long data)
609{
610 struct request_queue *q = (struct request_queue *) data;
611 struct blk_mq_hw_ctx *hctx;
612 unsigned long next = 0;
613 int i, next_set = 0;
614
Jens Axboe484b4062014-05-21 14:01:15 -0600615 queue_for_each_hw_ctx(q, hctx, i) {
616 /*
617 * If not software queues are currently mapped to this
618 * hardware queue, there's nothing to check
619 */
620 if (!hctx->nr_ctx || !hctx->tags)
621 continue;
622
Jens Axboe320ae512013-10-24 09:20:05 +0100623 blk_mq_hw_ctx_check_timeout(hctx, &next, &next_set);
Jens Axboe484b4062014-05-21 14:01:15 -0600624 }
Jens Axboe320ae512013-10-24 09:20:05 +0100625
Jens Axboe0d2602c2014-05-13 15:10:52 -0600626 if (next_set) {
627 next = blk_rq_timeout(round_jiffies_up(next));
628 mod_timer(&q->timeout, next);
629 } else {
630 queue_for_each_hw_ctx(q, hctx, i)
631 blk_mq_tag_idle(hctx);
632 }
Jens Axboe320ae512013-10-24 09:20:05 +0100633}
634
635/*
636 * Reverse check our software queue for entries that we could potentially
637 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
638 * too much time checking for merges.
639 */
640static bool blk_mq_attempt_merge(struct request_queue *q,
641 struct blk_mq_ctx *ctx, struct bio *bio)
642{
643 struct request *rq;
644 int checked = 8;
645
646 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
647 int el_ret;
648
649 if (!checked--)
650 break;
651
652 if (!blk_rq_merge_ok(rq, bio))
653 continue;
654
655 el_ret = blk_try_merge(rq, bio);
656 if (el_ret == ELEVATOR_BACK_MERGE) {
657 if (bio_attempt_back_merge(q, rq, bio)) {
658 ctx->rq_merged++;
659 return true;
660 }
661 break;
662 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
663 if (bio_attempt_front_merge(q, rq, bio)) {
664 ctx->rq_merged++;
665 return true;
666 }
667 break;
668 }
669 }
670
671 return false;
672}
673
Jens Axboe320ae512013-10-24 09:20:05 +0100674/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600675 * Process software queues that have been marked busy, splicing them
676 * to the for-dispatch
677 */
678static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
679{
680 struct blk_mq_ctx *ctx;
681 int i;
682
683 for (i = 0; i < hctx->ctx_map.map_size; i++) {
684 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
685 unsigned int off, bit;
686
687 if (!bm->word)
688 continue;
689
690 bit = 0;
691 off = i * hctx->ctx_map.bits_per_word;
692 do {
693 bit = find_next_bit(&bm->word, bm->depth, bit);
694 if (bit >= bm->depth)
695 break;
696
697 ctx = hctx->ctxs[bit + off];
698 clear_bit(bit, &bm->word);
699 spin_lock(&ctx->lock);
700 list_splice_tail_init(&ctx->rq_list, list);
701 spin_unlock(&ctx->lock);
702
703 bit++;
704 } while (1);
705 }
706}
707
708/*
Jens Axboe320ae512013-10-24 09:20:05 +0100709 * Run this hardware queue, pulling any software queues mapped to it in.
710 * Note that this function currently has various problems around ordering
711 * of IO. In particular, we'd like FIFO behaviour on handling existing
712 * items on the hctx->dispatch list. Ignore that for now.
713 */
714static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
715{
716 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100717 struct request *rq;
718 LIST_HEAD(rq_list);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600719 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100720
Jens Axboefd1270d2014-04-16 09:23:48 -0600721 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
Jens Axboee4043dc2014-04-09 10:18:23 -0600722
Jens Axboe5d12f902014-03-19 15:25:02 -0600723 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100724 return;
725
726 hctx->run++;
727
728 /*
729 * Touch any software queue that has pending entries.
730 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600731 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100732
733 /*
734 * If we have previous entries on our dispatch list, grab them
735 * and stuff them at the front for more fair dispatch.
736 */
737 if (!list_empty_careful(&hctx->dispatch)) {
738 spin_lock(&hctx->lock);
739 if (!list_empty(&hctx->dispatch))
740 list_splice_init(&hctx->dispatch, &rq_list);
741 spin_unlock(&hctx->lock);
742 }
743
744 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100745 * Now process all the entries, sending them to the driver.
746 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600747 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100748 while (!list_empty(&rq_list)) {
749 int ret;
750
751 rq = list_first_entry(&rq_list, struct request, queuelist);
752 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100753
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800754 blk_mq_start_request(rq, list_empty(&rq_list));
Jens Axboe320ae512013-10-24 09:20:05 +0100755
756 ret = q->mq_ops->queue_rq(hctx, rq);
757 switch (ret) {
758 case BLK_MQ_RQ_QUEUE_OK:
759 queued++;
760 continue;
761 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100762 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200763 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100764 break;
765 default:
766 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100767 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800768 rq->errors = -EIO;
Jens Axboe320ae512013-10-24 09:20:05 +0100769 blk_mq_end_io(rq, rq->errors);
770 break;
771 }
772
773 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
774 break;
775 }
776
777 if (!queued)
778 hctx->dispatched[0]++;
779 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
780 hctx->dispatched[ilog2(queued) + 1]++;
781
782 /*
783 * Any items that need requeuing? Stuff them into hctx->dispatch,
784 * that is where we will continue on next queue run.
785 */
786 if (!list_empty(&rq_list)) {
787 spin_lock(&hctx->lock);
788 list_splice(&rq_list, &hctx->dispatch);
789 spin_unlock(&hctx->lock);
790 }
791}
792
Jens Axboe506e9312014-05-07 10:26:44 -0600793/*
794 * It'd be great if the workqueue API had a way to pass
795 * in a mask and had some smarts for more clever placement.
796 * For now we just round-robin here, switching for every
797 * BLK_MQ_CPU_WORK_BATCH queued items.
798 */
799static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
800{
801 int cpu = hctx->next_cpu;
802
803 if (--hctx->next_cpu_batch <= 0) {
804 int next_cpu;
805
806 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
807 if (next_cpu >= nr_cpu_ids)
808 next_cpu = cpumask_first(hctx->cpumask);
809
810 hctx->next_cpu = next_cpu;
811 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
812 }
813
814 return cpu;
815}
816
Jens Axboe320ae512013-10-24 09:20:05 +0100817void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
818{
Jens Axboe5d12f902014-03-19 15:25:02 -0600819 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100820 return;
821
Jens Axboee4043dc2014-04-09 10:18:23 -0600822 if (!async && cpumask_test_cpu(smp_processor_id(), hctx->cpumask))
Jens Axboe320ae512013-10-24 09:20:05 +0100823 __blk_mq_run_hw_queue(hctx);
Jens Axboee4043dc2014-04-09 10:18:23 -0600824 else if (hctx->queue->nr_hw_queues == 1)
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600825 kblockd_schedule_delayed_work(&hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600826 else {
827 unsigned int cpu;
828
Jens Axboe506e9312014-05-07 10:26:44 -0600829 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600830 kblockd_schedule_delayed_work_on(cpu, &hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600831 }
Jens Axboe320ae512013-10-24 09:20:05 +0100832}
833
834void blk_mq_run_queues(struct request_queue *q, bool async)
835{
836 struct blk_mq_hw_ctx *hctx;
837 int i;
838
839 queue_for_each_hw_ctx(q, hctx, i) {
840 if ((!blk_mq_hctx_has_pending(hctx) &&
841 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600842 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100843 continue;
844
Jens Axboee4043dc2014-04-09 10:18:23 -0600845 preempt_disable();
Jens Axboe320ae512013-10-24 09:20:05 +0100846 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600847 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100848 }
849}
850EXPORT_SYMBOL(blk_mq_run_queues);
851
852void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
853{
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600854 cancel_delayed_work(&hctx->run_work);
855 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100856 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
857}
858EXPORT_SYMBOL(blk_mq_stop_hw_queue);
859
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100860void blk_mq_stop_hw_queues(struct request_queue *q)
861{
862 struct blk_mq_hw_ctx *hctx;
863 int i;
864
865 queue_for_each_hw_ctx(q, hctx, i)
866 blk_mq_stop_hw_queue(hctx);
867}
868EXPORT_SYMBOL(blk_mq_stop_hw_queues);
869
Jens Axboe320ae512013-10-24 09:20:05 +0100870void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
871{
872 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600873
874 preempt_disable();
Jens Axboe0ffbce82014-06-25 08:22:34 -0600875 blk_mq_run_hw_queue(hctx, false);
Jens Axboee4043dc2014-04-09 10:18:23 -0600876 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100877}
878EXPORT_SYMBOL(blk_mq_start_hw_queue);
879
Christoph Hellwig2f268552014-04-16 09:44:56 +0200880void blk_mq_start_hw_queues(struct request_queue *q)
881{
882 struct blk_mq_hw_ctx *hctx;
883 int i;
884
885 queue_for_each_hw_ctx(q, hctx, i)
886 blk_mq_start_hw_queue(hctx);
887}
888EXPORT_SYMBOL(blk_mq_start_hw_queues);
889
890
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200891void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100892{
893 struct blk_mq_hw_ctx *hctx;
894 int i;
895
896 queue_for_each_hw_ctx(q, hctx, i) {
897 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
898 continue;
899
900 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600901 preempt_disable();
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200902 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600903 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100904 }
905}
906EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
907
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600908static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100909{
910 struct blk_mq_hw_ctx *hctx;
911
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600912 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600913
Jens Axboe320ae512013-10-24 09:20:05 +0100914 __blk_mq_run_hw_queue(hctx);
915}
916
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600917static void blk_mq_delay_work_fn(struct work_struct *work)
918{
919 struct blk_mq_hw_ctx *hctx;
920
921 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
922
923 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
924 __blk_mq_run_hw_queue(hctx);
925}
926
927void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
928{
929 unsigned long tmo = msecs_to_jiffies(msecs);
930
931 if (hctx->queue->nr_hw_queues == 1)
932 kblockd_schedule_delayed_work(&hctx->delay_work, tmo);
933 else {
934 unsigned int cpu;
935
Jens Axboe506e9312014-05-07 10:26:44 -0600936 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600937 kblockd_schedule_delayed_work_on(cpu, &hctx->delay_work, tmo);
938 }
939}
940EXPORT_SYMBOL(blk_mq_delay_queue);
941
Jens Axboe320ae512013-10-24 09:20:05 +0100942static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800943 struct request *rq, bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +0100944{
945 struct blk_mq_ctx *ctx = rq->mq_ctx;
946
Jens Axboe01b983c2013-11-19 18:59:10 -0700947 trace_block_rq_insert(hctx->queue, rq);
948
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800949 if (at_head)
950 list_add(&rq->queuelist, &ctx->rq_list);
951 else
952 list_add_tail(&rq->queuelist, &ctx->rq_list);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600953
Jens Axboe320ae512013-10-24 09:20:05 +0100954 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100955}
956
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600957void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
958 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100959{
960 struct request_queue *q = rq->q;
961 struct blk_mq_hw_ctx *hctx;
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600962 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100963
964 current_ctx = blk_mq_get_ctx(q);
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600965 if (!cpu_online(ctx->cpu))
966 rq->mq_ctx = ctx = current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100967
Jens Axboe320ae512013-10-24 09:20:05 +0100968 hctx = q->mq_ops->map_queue(q, ctx->cpu);
969
Christoph Hellwiga57a1782014-09-16 14:44:07 -0700970 spin_lock(&ctx->lock);
971 __blk_mq_insert_request(hctx, rq, at_head);
972 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100973
Jens Axboe320ae512013-10-24 09:20:05 +0100974 if (run_queue)
975 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600976
977 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100978}
979
980static void blk_mq_insert_requests(struct request_queue *q,
981 struct blk_mq_ctx *ctx,
982 struct list_head *list,
983 int depth,
984 bool from_schedule)
985
986{
987 struct blk_mq_hw_ctx *hctx;
988 struct blk_mq_ctx *current_ctx;
989
990 trace_block_unplug(q, depth, !from_schedule);
991
992 current_ctx = blk_mq_get_ctx(q);
993
994 if (!cpu_online(ctx->cpu))
995 ctx = current_ctx;
996 hctx = q->mq_ops->map_queue(q, ctx->cpu);
997
998 /*
999 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1000 * offline now
1001 */
1002 spin_lock(&ctx->lock);
1003 while (!list_empty(list)) {
1004 struct request *rq;
1005
1006 rq = list_first_entry(list, struct request, queuelist);
1007 list_del_init(&rq->queuelist);
1008 rq->mq_ctx = ctx;
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001009 __blk_mq_insert_request(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001010 }
1011 spin_unlock(&ctx->lock);
1012
Jens Axboe320ae512013-10-24 09:20:05 +01001013 blk_mq_run_hw_queue(hctx, from_schedule);
Jens Axboee4043dc2014-04-09 10:18:23 -06001014 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001015}
1016
1017static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1018{
1019 struct request *rqa = container_of(a, struct request, queuelist);
1020 struct request *rqb = container_of(b, struct request, queuelist);
1021
1022 return !(rqa->mq_ctx < rqb->mq_ctx ||
1023 (rqa->mq_ctx == rqb->mq_ctx &&
1024 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1025}
1026
1027void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1028{
1029 struct blk_mq_ctx *this_ctx;
1030 struct request_queue *this_q;
1031 struct request *rq;
1032 LIST_HEAD(list);
1033 LIST_HEAD(ctx_list);
1034 unsigned int depth;
1035
1036 list_splice_init(&plug->mq_list, &list);
1037
1038 list_sort(NULL, &list, plug_ctx_cmp);
1039
1040 this_q = NULL;
1041 this_ctx = NULL;
1042 depth = 0;
1043
1044 while (!list_empty(&list)) {
1045 rq = list_entry_rq(list.next);
1046 list_del_init(&rq->queuelist);
1047 BUG_ON(!rq->q);
1048 if (rq->mq_ctx != this_ctx) {
1049 if (this_ctx) {
1050 blk_mq_insert_requests(this_q, this_ctx,
1051 &ctx_list, depth,
1052 from_schedule);
1053 }
1054
1055 this_ctx = rq->mq_ctx;
1056 this_q = rq->q;
1057 depth = 0;
1058 }
1059
1060 depth++;
1061 list_add_tail(&rq->queuelist, &ctx_list);
1062 }
1063
1064 /*
1065 * If 'this_ctx' is set, we know we have entries to complete
1066 * on 'ctx_list'. Do those.
1067 */
1068 if (this_ctx) {
1069 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1070 from_schedule);
1071 }
1072}
1073
1074static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1075{
1076 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001077
Jens Axboe3ee32372014-06-09 09:36:53 -06001078 if (blk_do_io_stat(rq))
Jens Axboe4b570522014-05-29 11:00:11 -06001079 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001080}
1081
Jens Axboe274a5842014-08-15 12:44:08 -06001082static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1083{
1084 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1085 !blk_queue_nomerges(hctx->queue);
1086}
1087
Jens Axboe07068d52014-05-22 10:40:51 -06001088static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1089 struct blk_mq_ctx *ctx,
1090 struct request *rq, struct bio *bio)
1091{
Jens Axboe274a5842014-08-15 12:44:08 -06001092 if (!hctx_allow_merges(hctx)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001093 blk_mq_bio_to_request(rq, bio);
1094 spin_lock(&ctx->lock);
1095insert_rq:
1096 __blk_mq_insert_request(hctx, rq, false);
1097 spin_unlock(&ctx->lock);
1098 return false;
1099 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001100 struct request_queue *q = hctx->queue;
1101
Jens Axboe07068d52014-05-22 10:40:51 -06001102 spin_lock(&ctx->lock);
1103 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1104 blk_mq_bio_to_request(rq, bio);
1105 goto insert_rq;
1106 }
1107
1108 spin_unlock(&ctx->lock);
1109 __blk_mq_free_request(hctx, ctx, rq);
1110 return true;
1111 }
1112}
1113
1114struct blk_map_ctx {
1115 struct blk_mq_hw_ctx *hctx;
1116 struct blk_mq_ctx *ctx;
1117};
1118
1119static struct request *blk_mq_map_request(struct request_queue *q,
1120 struct bio *bio,
1121 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001122{
1123 struct blk_mq_hw_ctx *hctx;
1124 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001125 struct request *rq;
Jens Axboe07068d52014-05-22 10:40:51 -06001126 int rw = bio_data_dir(bio);
Ming Leicb96a422014-06-01 00:43:37 +08001127 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001128
Jens Axboe07068d52014-05-22 10:40:51 -06001129 if (unlikely(blk_mq_queue_enter(q))) {
Nicholas Bellinger14ec77f2014-02-07 13:45:39 -07001130 bio_endio(bio, -EIO);
Jens Axboe07068d52014-05-22 10:40:51 -06001131 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001132 }
1133
1134 ctx = blk_mq_get_ctx(q);
1135 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1136
Jens Axboe07068d52014-05-22 10:40:51 -06001137 if (rw_is_sync(bio->bi_rw))
Shaohua Li27fbf4e2014-02-19 20:20:21 +08001138 rw |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001139
Jens Axboe320ae512013-10-24 09:20:05 +01001140 trace_block_getrq(q, bio, rw);
Ming Leicb96a422014-06-01 00:43:37 +08001141 blk_mq_set_alloc_data(&alloc_data, q, GFP_ATOMIC, false, ctx,
1142 hctx);
1143 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001144 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001145 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001146 blk_mq_put_ctx(ctx);
1147 trace_block_sleeprq(q, bio, rw);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001148
1149 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001150 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +08001151 blk_mq_set_alloc_data(&alloc_data, q,
1152 __GFP_WAIT|GFP_ATOMIC, false, ctx, hctx);
1153 rq = __blk_mq_alloc_request(&alloc_data, rw);
1154 ctx = alloc_data.ctx;
1155 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001156 }
1157
1158 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001159 data->hctx = hctx;
1160 data->ctx = ctx;
1161 return rq;
1162}
1163
1164/*
1165 * Multiple hardware queue variant. This will not use per-process plugs,
1166 * but will attempt to bypass the hctx queueing if we can go straight to
1167 * hardware for SYNC IO.
1168 */
1169static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1170{
1171 const int is_sync = rw_is_sync(bio->bi_rw);
1172 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1173 struct blk_map_ctx data;
1174 struct request *rq;
1175
1176 blk_queue_bounce(q, &bio);
1177
1178 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1179 bio_endio(bio, -EIO);
1180 return;
1181 }
1182
1183 rq = blk_mq_map_request(q, bio, &data);
1184 if (unlikely(!rq))
1185 return;
1186
1187 if (unlikely(is_flush_fua)) {
1188 blk_mq_bio_to_request(rq, bio);
1189 blk_insert_flush(rq);
1190 goto run_queue;
1191 }
1192
1193 if (is_sync) {
1194 int ret;
1195
1196 blk_mq_bio_to_request(rq, bio);
1197 blk_mq_start_request(rq, true);
1198
1199 /*
1200 * For OK queue, we are done. For error, kill it. Any other
1201 * error (busy), just add it to our list as we previously
1202 * would have done
1203 */
1204 ret = q->mq_ops->queue_rq(data.hctx, rq);
1205 if (ret == BLK_MQ_RQ_QUEUE_OK)
1206 goto done;
1207 else {
1208 __blk_mq_requeue_request(rq);
1209
1210 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1211 rq->errors = -EIO;
1212 blk_mq_end_io(rq, rq->errors);
1213 goto done;
1214 }
1215 }
1216 }
1217
1218 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1219 /*
1220 * For a SYNC request, send it to the hardware immediately. For
1221 * an ASYNC request, just ensure that we run it later on. The
1222 * latter allows for merging opportunities and more efficient
1223 * dispatching.
1224 */
1225run_queue:
1226 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1227 }
1228done:
1229 blk_mq_put_ctx(data.ctx);
1230}
1231
1232/*
1233 * Single hardware queue variant. This will attempt to use any per-process
1234 * plug for merging and IO deferral.
1235 */
1236static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1237{
1238 const int is_sync = rw_is_sync(bio->bi_rw);
1239 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1240 unsigned int use_plug, request_count = 0;
1241 struct blk_map_ctx data;
1242 struct request *rq;
1243
1244 /*
1245 * If we have multiple hardware queues, just go directly to
1246 * one of those for sync IO.
1247 */
1248 use_plug = !is_flush_fua && !is_sync;
1249
1250 blk_queue_bounce(q, &bio);
1251
1252 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1253 bio_endio(bio, -EIO);
1254 return;
1255 }
1256
1257 if (use_plug && !blk_queue_nomerges(q) &&
1258 blk_attempt_plug_merge(q, bio, &request_count))
1259 return;
1260
1261 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001262 if (unlikely(!rq))
1263 return;
Jens Axboe320ae512013-10-24 09:20:05 +01001264
1265 if (unlikely(is_flush_fua)) {
1266 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001267 blk_insert_flush(rq);
1268 goto run_queue;
1269 }
1270
1271 /*
1272 * A task plug currently exists. Since this is completely lockless,
1273 * utilize that to temporarily store requests until the task is
1274 * either done or scheduled away.
1275 */
1276 if (use_plug) {
1277 struct blk_plug *plug = current->plug;
1278
1279 if (plug) {
1280 blk_mq_bio_to_request(rq, bio);
Shaohua Li92f399c2013-10-29 12:01:03 -06001281 if (list_empty(&plug->mq_list))
Jens Axboe320ae512013-10-24 09:20:05 +01001282 trace_block_plug(q);
1283 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1284 blk_flush_plug_list(plug, false);
1285 trace_block_plug(q);
1286 }
1287 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe07068d52014-05-22 10:40:51 -06001288 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001289 return;
1290 }
1291 }
1292
Jens Axboe07068d52014-05-22 10:40:51 -06001293 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1294 /*
1295 * For a SYNC request, send it to the hardware immediately. For
1296 * an ASYNC request, just ensure that we run it later on. The
1297 * latter allows for merging opportunities and more efficient
1298 * dispatching.
1299 */
1300run_queue:
1301 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001302 }
1303
Jens Axboe07068d52014-05-22 10:40:51 -06001304 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001305}
1306
1307/*
1308 * Default mapping to a software queue, since we use one per CPU.
1309 */
1310struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1311{
1312 return q->queue_hw_ctx[q->mq_map[cpu]];
1313}
1314EXPORT_SYMBOL(blk_mq_map_queue);
1315
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001316static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1317 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001318{
1319 struct page *page;
1320
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001321 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001322 int i;
1323
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001324 for (i = 0; i < tags->nr_tags; i++) {
1325 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001326 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001327 set->ops->exit_request(set->driver_data, tags->rqs[i],
1328 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001329 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001330 }
1331 }
1332
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001333 while (!list_empty(&tags->page_list)) {
1334 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001335 list_del_init(&page->lru);
Jens Axboe320ae512013-10-24 09:20:05 +01001336 __free_pages(page, page->private);
1337 }
1338
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001339 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001340
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001341 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001342}
1343
1344static size_t order_to_size(unsigned int order)
1345{
Ming Lei4ca08502014-04-19 18:00:18 +08001346 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001347}
1348
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001349static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1350 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001351{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001352 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001353 unsigned int i, j, entries_per_page, max_order = 4;
1354 size_t rq_size, left;
1355
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001356 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1357 set->numa_node);
1358 if (!tags)
1359 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001360
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001361 INIT_LIST_HEAD(&tags->page_list);
1362
Jens Axboea5164402014-09-10 09:02:03 -06001363 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1364 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1365 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001366 if (!tags->rqs) {
1367 blk_mq_free_tags(tags);
1368 return NULL;
1369 }
Jens Axboe320ae512013-10-24 09:20:05 +01001370
1371 /*
1372 * rq_size is the size of the request plus driver payload, rounded
1373 * to the cacheline size
1374 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001375 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001376 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001377 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001378
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001379 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001380 int this_order = max_order;
1381 struct page *page;
1382 int to_do;
1383 void *p;
1384
1385 while (left < order_to_size(this_order - 1) && this_order)
1386 this_order--;
1387
1388 do {
Jens Axboea5164402014-09-10 09:02:03 -06001389 page = alloc_pages_node(set->numa_node,
1390 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1391 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001392 if (page)
1393 break;
1394 if (!this_order--)
1395 break;
1396 if (order_to_size(this_order) < rq_size)
1397 break;
1398 } while (1);
1399
1400 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001401 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001402
1403 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001404 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001405
1406 p = page_address(page);
1407 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001408 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001409 left -= to_do * rq_size;
1410 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001411 tags->rqs[i] = p;
David Hildenbrand683d0e12014-09-18 11:04:31 +02001412 tags->rqs[i]->atomic_flags = 0;
1413 tags->rqs[i]->cmd_flags = 0;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001414 if (set->ops->init_request) {
1415 if (set->ops->init_request(set->driver_data,
1416 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001417 set->numa_node)) {
1418 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001419 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001420 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001421 }
1422
Jens Axboe320ae512013-10-24 09:20:05 +01001423 p += rq_size;
1424 i++;
1425 }
1426 }
1427
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001428 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001429
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001430fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001431 blk_mq_free_rq_map(set, tags, hctx_idx);
1432 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001433}
1434
Jens Axboe1429d7c2014-05-19 09:23:55 -06001435static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1436{
1437 kfree(bitmap->map);
1438}
1439
1440static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1441{
1442 unsigned int bpw = 8, total, num_maps, i;
1443
1444 bitmap->bits_per_word = bpw;
1445
1446 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1447 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1448 GFP_KERNEL, node);
1449 if (!bitmap->map)
1450 return -ENOMEM;
1451
1452 bitmap->map_size = num_maps;
1453
1454 total = nr_cpu_ids;
1455 for (i = 0; i < num_maps; i++) {
1456 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1457 total -= bitmap->map[i].depth;
1458 }
1459
1460 return 0;
1461}
1462
Jens Axboe484b4062014-05-21 14:01:15 -06001463static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1464{
1465 struct request_queue *q = hctx->queue;
1466 struct blk_mq_ctx *ctx;
1467 LIST_HEAD(tmp);
1468
1469 /*
1470 * Move ctx entries to new CPU, if this one is going away.
1471 */
1472 ctx = __blk_mq_get_ctx(q, cpu);
1473
1474 spin_lock(&ctx->lock);
1475 if (!list_empty(&ctx->rq_list)) {
1476 list_splice_init(&ctx->rq_list, &tmp);
1477 blk_mq_hctx_clear_pending(hctx, ctx);
1478 }
1479 spin_unlock(&ctx->lock);
1480
1481 if (list_empty(&tmp))
1482 return NOTIFY_OK;
1483
1484 ctx = blk_mq_get_ctx(q);
1485 spin_lock(&ctx->lock);
1486
1487 while (!list_empty(&tmp)) {
1488 struct request *rq;
1489
1490 rq = list_first_entry(&tmp, struct request, queuelist);
1491 rq->mq_ctx = ctx;
1492 list_move_tail(&rq->queuelist, &ctx->rq_list);
1493 }
1494
1495 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1496 blk_mq_hctx_mark_pending(hctx, ctx);
1497
1498 spin_unlock(&ctx->lock);
1499
1500 blk_mq_run_hw_queue(hctx, true);
1501 blk_mq_put_ctx(ctx);
1502 return NOTIFY_OK;
1503}
1504
1505static int blk_mq_hctx_cpu_online(struct blk_mq_hw_ctx *hctx, int cpu)
1506{
1507 struct request_queue *q = hctx->queue;
1508 struct blk_mq_tag_set *set = q->tag_set;
1509
1510 if (set->tags[hctx->queue_num])
1511 return NOTIFY_OK;
1512
1513 set->tags[hctx->queue_num] = blk_mq_init_rq_map(set, hctx->queue_num);
1514 if (!set->tags[hctx->queue_num])
1515 return NOTIFY_STOP;
1516
1517 hctx->tags = set->tags[hctx->queue_num];
1518 return NOTIFY_OK;
1519}
1520
1521static int blk_mq_hctx_notify(void *data, unsigned long action,
1522 unsigned int cpu)
1523{
1524 struct blk_mq_hw_ctx *hctx = data;
1525
1526 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1527 return blk_mq_hctx_cpu_offline(hctx, cpu);
1528 else if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
1529 return blk_mq_hctx_cpu_online(hctx, cpu);
1530
1531 return NOTIFY_OK;
1532}
1533
Ming Lei624dbe42014-05-27 23:35:13 +08001534static void blk_mq_exit_hw_queues(struct request_queue *q,
1535 struct blk_mq_tag_set *set, int nr_queue)
1536{
1537 struct blk_mq_hw_ctx *hctx;
1538 unsigned int i;
1539
1540 queue_for_each_hw_ctx(q, hctx, i) {
1541 if (i == nr_queue)
1542 break;
1543
Jens Axboef899fed2014-06-04 09:11:53 -06001544 blk_mq_tag_idle(hctx);
1545
Ming Lei624dbe42014-05-27 23:35:13 +08001546 if (set->ops->exit_hctx)
1547 set->ops->exit_hctx(hctx, i);
1548
1549 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1550 kfree(hctx->ctxs);
1551 blk_mq_free_bitmap(&hctx->ctx_map);
1552 }
1553
1554}
1555
1556static void blk_mq_free_hw_queues(struct request_queue *q,
1557 struct blk_mq_tag_set *set)
1558{
1559 struct blk_mq_hw_ctx *hctx;
1560 unsigned int i;
1561
1562 queue_for_each_hw_ctx(q, hctx, i) {
1563 free_cpumask_var(hctx->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001564 kfree(hctx);
Ming Lei624dbe42014-05-27 23:35:13 +08001565 }
1566}
1567
Jens Axboe320ae512013-10-24 09:20:05 +01001568static int blk_mq_init_hw_queues(struct request_queue *q,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001569 struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001570{
1571 struct blk_mq_hw_ctx *hctx;
Ming Lei624dbe42014-05-27 23:35:13 +08001572 unsigned int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001573
1574 /*
1575 * Initialize hardware queues
1576 */
1577 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001578 int node;
1579
1580 node = hctx->numa_node;
1581 if (node == NUMA_NO_NODE)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001582 node = hctx->numa_node = set->numa_node;
Jens Axboe320ae512013-10-24 09:20:05 +01001583
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001584 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1585 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
Jens Axboe320ae512013-10-24 09:20:05 +01001586 spin_lock_init(&hctx->lock);
1587 INIT_LIST_HEAD(&hctx->dispatch);
1588 hctx->queue = q;
1589 hctx->queue_num = i;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001590 hctx->flags = set->flags;
1591 hctx->cmd_size = set->cmd_size;
Jens Axboe320ae512013-10-24 09:20:05 +01001592
1593 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1594 blk_mq_hctx_notify, hctx);
1595 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1596
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001597 hctx->tags = set->tags[i];
Jens Axboe320ae512013-10-24 09:20:05 +01001598
1599 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001600 * Allocate space for all possible cpus to avoid allocation at
Jens Axboe320ae512013-10-24 09:20:05 +01001601 * runtime
1602 */
1603 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1604 GFP_KERNEL, node);
1605 if (!hctx->ctxs)
1606 break;
1607
Jens Axboe1429d7c2014-05-19 09:23:55 -06001608 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
Jens Axboe320ae512013-10-24 09:20:05 +01001609 break;
1610
Jens Axboe320ae512013-10-24 09:20:05 +01001611 hctx->nr_ctx = 0;
1612
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001613 if (set->ops->init_hctx &&
1614 set->ops->init_hctx(hctx, set->driver_data, i))
Jens Axboe320ae512013-10-24 09:20:05 +01001615 break;
1616 }
1617
1618 if (i == q->nr_hw_queues)
1619 return 0;
1620
1621 /*
1622 * Init failed
1623 */
Ming Lei624dbe42014-05-27 23:35:13 +08001624 blk_mq_exit_hw_queues(q, set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001625
1626 return 1;
1627}
1628
1629static void blk_mq_init_cpu_queues(struct request_queue *q,
1630 unsigned int nr_hw_queues)
1631{
1632 unsigned int i;
1633
1634 for_each_possible_cpu(i) {
1635 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1636 struct blk_mq_hw_ctx *hctx;
1637
1638 memset(__ctx, 0, sizeof(*__ctx));
1639 __ctx->cpu = i;
1640 spin_lock_init(&__ctx->lock);
1641 INIT_LIST_HEAD(&__ctx->rq_list);
1642 __ctx->queue = q;
1643
1644 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001645 if (!cpu_online(i))
1646 continue;
1647
Jens Axboee4043dc2014-04-09 10:18:23 -06001648 hctx = q->mq_ops->map_queue(q, i);
1649 cpumask_set_cpu(i, hctx->cpumask);
1650 hctx->nr_ctx++;
1651
Jens Axboe320ae512013-10-24 09:20:05 +01001652 /*
1653 * Set local node, IFF we have more than one hw queue. If
1654 * not, we remain on the home node of the device
1655 */
1656 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1657 hctx->numa_node = cpu_to_node(i);
1658 }
1659}
1660
1661static void blk_mq_map_swqueue(struct request_queue *q)
1662{
1663 unsigned int i;
1664 struct blk_mq_hw_ctx *hctx;
1665 struct blk_mq_ctx *ctx;
1666
1667 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001668 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001669 hctx->nr_ctx = 0;
1670 }
1671
1672 /*
1673 * Map software to hardware queues
1674 */
1675 queue_for_each_ctx(q, ctx, i) {
1676 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboee4043dc2014-04-09 10:18:23 -06001677 if (!cpu_online(i))
1678 continue;
1679
Jens Axboe320ae512013-10-24 09:20:05 +01001680 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001681 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001682 ctx->index_hw = hctx->nr_ctx;
1683 hctx->ctxs[hctx->nr_ctx++] = ctx;
1684 }
Jens Axboe506e9312014-05-07 10:26:44 -06001685
1686 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001687 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001688 * If no software queues are mapped to this hardware queue,
1689 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001690 */
1691 if (!hctx->nr_ctx) {
1692 struct blk_mq_tag_set *set = q->tag_set;
1693
1694 if (set->tags[i]) {
1695 blk_mq_free_rq_map(set, set->tags[i], i);
1696 set->tags[i] = NULL;
1697 hctx->tags = NULL;
1698 }
1699 continue;
1700 }
1701
1702 /*
1703 * Initialize batch roundrobin counts
1704 */
Jens Axboe506e9312014-05-07 10:26:44 -06001705 hctx->next_cpu = cpumask_first(hctx->cpumask);
1706 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1707 }
Jens Axboe320ae512013-10-24 09:20:05 +01001708}
1709
Jens Axboe0d2602c2014-05-13 15:10:52 -06001710static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1711{
1712 struct blk_mq_hw_ctx *hctx;
1713 struct request_queue *q;
1714 bool shared;
1715 int i;
1716
1717 if (set->tag_list.next == set->tag_list.prev)
1718 shared = false;
1719 else
1720 shared = true;
1721
1722 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1723 blk_mq_freeze_queue(q);
1724
1725 queue_for_each_hw_ctx(q, hctx, i) {
1726 if (shared)
1727 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1728 else
1729 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1730 }
1731 blk_mq_unfreeze_queue(q);
1732 }
1733}
1734
1735static void blk_mq_del_queue_tag_set(struct request_queue *q)
1736{
1737 struct blk_mq_tag_set *set = q->tag_set;
1738
Jens Axboe0d2602c2014-05-13 15:10:52 -06001739 mutex_lock(&set->tag_list_lock);
1740 list_del_init(&q->tag_set_list);
1741 blk_mq_update_tag_set_depth(set);
1742 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001743}
1744
1745static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1746 struct request_queue *q)
1747{
1748 q->tag_set = set;
1749
1750 mutex_lock(&set->tag_list_lock);
1751 list_add_tail(&q->tag_set_list, &set->tag_list);
1752 blk_mq_update_tag_set_depth(set);
1753 mutex_unlock(&set->tag_list_lock);
1754}
1755
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001756struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001757{
1758 struct blk_mq_hw_ctx **hctxs;
Ming Leie6cdb092014-06-03 11:24:06 +08001759 struct blk_mq_ctx __percpu *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001760 struct request_queue *q;
Jens Axboef14bbe72014-05-27 12:06:53 -06001761 unsigned int *map;
Jens Axboe320ae512013-10-24 09:20:05 +01001762 int i;
1763
Jens Axboe320ae512013-10-24 09:20:05 +01001764 ctx = alloc_percpu(struct blk_mq_ctx);
1765 if (!ctx)
1766 return ERR_PTR(-ENOMEM);
1767
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001768 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1769 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001770
1771 if (!hctxs)
1772 goto err_percpu;
1773
Jens Axboef14bbe72014-05-27 12:06:53 -06001774 map = blk_mq_make_queue_map(set);
1775 if (!map)
1776 goto err_map;
1777
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001778 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboef14bbe72014-05-27 12:06:53 -06001779 int node = blk_mq_hw_queue_to_node(map, i);
1780
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001781 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1782 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001783 if (!hctxs[i])
1784 goto err_hctxs;
1785
Jens Axboee4043dc2014-04-09 10:18:23 -06001786 if (!zalloc_cpumask_var(&hctxs[i]->cpumask, GFP_KERNEL))
1787 goto err_hctxs;
1788
Jens Axboe0d2602c2014-05-13 15:10:52 -06001789 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001790 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001791 hctxs[i]->queue_num = i;
1792 }
1793
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001794 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001795 if (!q)
1796 goto err_hctxs;
1797
Tejun Heo17497ac2014-09-24 13:31:50 -04001798 /*
1799 * Init percpu_ref in atomic mode so that it's faster to shutdown.
1800 * See blk_register_queue() for details.
1801 */
Tejun Heoa34375e2014-09-08 09:51:30 +09001802 if (percpu_ref_init(&q->mq_usage_counter, blk_mq_usage_counter_release,
Tejun Heo17497ac2014-09-24 13:31:50 -04001803 PERCPU_REF_INIT_ATOMIC, GFP_KERNEL))
Ming Lei3d2936f2014-05-27 23:35:14 +08001804 goto err_map;
1805
Jens Axboe320ae512013-10-24 09:20:05 +01001806 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1807 blk_queue_rq_timeout(q, 30000);
1808
1809 q->nr_queues = nr_cpu_ids;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001810 q->nr_hw_queues = set->nr_hw_queues;
Jens Axboef14bbe72014-05-27 12:06:53 -06001811 q->mq_map = map;
Jens Axboe320ae512013-10-24 09:20:05 +01001812
1813 q->queue_ctx = ctx;
1814 q->queue_hw_ctx = hctxs;
1815
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001816 q->mq_ops = set->ops;
Jens Axboe94eddfb2013-11-19 09:25:07 -07001817 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001818
Jens Axboe05f1dd52014-05-29 09:53:32 -06001819 if (!(set->flags & BLK_MQ_F_SG_MERGE))
1820 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
1821
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001822 q->sg_reserved_size = INT_MAX;
1823
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001824 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
1825 INIT_LIST_HEAD(&q->requeue_list);
1826 spin_lock_init(&q->requeue_lock);
1827
Jens Axboe07068d52014-05-22 10:40:51 -06001828 if (q->nr_hw_queues > 1)
1829 blk_queue_make_request(q, blk_mq_make_request);
1830 else
1831 blk_queue_make_request(q, blk_sq_make_request);
1832
Jens Axboe87ee7b12014-04-24 08:51:47 -06001833 blk_queue_rq_timed_out(q, blk_mq_rq_timed_out);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001834 if (set->timeout)
1835 blk_queue_rq_timeout(q, set->timeout);
Jens Axboe320ae512013-10-24 09:20:05 +01001836
Jens Axboeeba71762014-05-20 15:17:27 -06001837 /*
1838 * Do this after blk_queue_make_request() overrides it...
1839 */
1840 q->nr_requests = set->queue_depth;
1841
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001842 if (set->ops->complete)
1843 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001844
Jens Axboe320ae512013-10-24 09:20:05 +01001845 blk_mq_init_flush(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001846 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001847
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001848 q->flush_rq = kzalloc(round_up(sizeof(struct request) +
1849 set->cmd_size, cache_line_size()),
1850 GFP_KERNEL);
Christoph Hellwig18741982014-02-10 09:29:00 -07001851 if (!q->flush_rq)
Jens Axboe320ae512013-10-24 09:20:05 +01001852 goto err_hw;
1853
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001854 if (blk_mq_init_hw_queues(q, set))
Christoph Hellwig18741982014-02-10 09:29:00 -07001855 goto err_flush_rq;
1856
Jens Axboe320ae512013-10-24 09:20:05 +01001857 mutex_lock(&all_q_mutex);
1858 list_add_tail(&q->all_q_node, &all_q_list);
1859 mutex_unlock(&all_q_mutex);
1860
Jens Axboe0d2602c2014-05-13 15:10:52 -06001861 blk_mq_add_queue_tag_set(set, q);
1862
Jens Axboe484b4062014-05-21 14:01:15 -06001863 blk_mq_map_swqueue(q);
1864
Jens Axboe320ae512013-10-24 09:20:05 +01001865 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07001866
1867err_flush_rq:
1868 kfree(q->flush_rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001869err_hw:
Jens Axboe320ae512013-10-24 09:20:05 +01001870 blk_cleanup_queue(q);
1871err_hctxs:
Jens Axboef14bbe72014-05-27 12:06:53 -06001872 kfree(map);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001873 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboe320ae512013-10-24 09:20:05 +01001874 if (!hctxs[i])
1875 break;
Jens Axboee4043dc2014-04-09 10:18:23 -06001876 free_cpumask_var(hctxs[i]->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001877 kfree(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001878 }
Jens Axboef14bbe72014-05-27 12:06:53 -06001879err_map:
Jens Axboe320ae512013-10-24 09:20:05 +01001880 kfree(hctxs);
1881err_percpu:
1882 free_percpu(ctx);
1883 return ERR_PTR(-ENOMEM);
1884}
1885EXPORT_SYMBOL(blk_mq_init_queue);
1886
1887void blk_mq_free_queue(struct request_queue *q)
1888{
Ming Lei624dbe42014-05-27 23:35:13 +08001889 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001890
Jens Axboe0d2602c2014-05-13 15:10:52 -06001891 blk_mq_del_queue_tag_set(q);
1892
Ming Lei624dbe42014-05-27 23:35:13 +08001893 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1894 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01001895
Tejun Heoadd703f2014-07-01 10:34:38 -06001896 percpu_ref_exit(&q->mq_usage_counter);
Ming Lei3d2936f2014-05-27 23:35:14 +08001897
Jens Axboe320ae512013-10-24 09:20:05 +01001898 free_percpu(q->queue_ctx);
1899 kfree(q->queue_hw_ctx);
1900 kfree(q->mq_map);
1901
1902 q->queue_ctx = NULL;
1903 q->queue_hw_ctx = NULL;
1904 q->mq_map = NULL;
1905
1906 mutex_lock(&all_q_mutex);
1907 list_del_init(&q->all_q_node);
1908 mutex_unlock(&all_q_mutex);
1909}
Jens Axboe320ae512013-10-24 09:20:05 +01001910
1911/* Basically redo blk_mq_init_queue with queue frozen */
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001912static void blk_mq_queue_reinit(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01001913{
1914 blk_mq_freeze_queue(q);
1915
Jens Axboe67aec142014-05-30 08:25:36 -06001916 blk_mq_sysfs_unregister(q);
1917
Jens Axboe320ae512013-10-24 09:20:05 +01001918 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1919
1920 /*
1921 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1922 * we should change hctx numa_node according to new topology (this
1923 * involves free and re-allocate memory, worthy doing?)
1924 */
1925
1926 blk_mq_map_swqueue(q);
1927
Jens Axboe67aec142014-05-30 08:25:36 -06001928 blk_mq_sysfs_register(q);
1929
Jens Axboe320ae512013-10-24 09:20:05 +01001930 blk_mq_unfreeze_queue(q);
1931}
1932
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001933static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1934 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01001935{
1936 struct request_queue *q;
1937
1938 /*
Jens Axboe9fccfed2014-05-08 14:50:19 -06001939 * Before new mappings are established, hotadded cpu might already
1940 * start handling requests. This doesn't break anything as we map
1941 * offline CPUs to first hardware queue. We will re-init the queue
1942 * below to get optimal settings.
Jens Axboe320ae512013-10-24 09:20:05 +01001943 */
1944 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1945 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1946 return NOTIFY_OK;
1947
1948 mutex_lock(&all_q_mutex);
1949 list_for_each_entry(q, &all_q_list, all_q_node)
1950 blk_mq_queue_reinit(q);
1951 mutex_unlock(&all_q_mutex);
1952 return NOTIFY_OK;
1953}
1954
Jens Axboea5164402014-09-10 09:02:03 -06001955static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
1956{
1957 int i;
1958
1959 for (i = 0; i < set->nr_hw_queues; i++) {
1960 set->tags[i] = blk_mq_init_rq_map(set, i);
1961 if (!set->tags[i])
1962 goto out_unwind;
1963 }
1964
1965 return 0;
1966
1967out_unwind:
1968 while (--i >= 0)
1969 blk_mq_free_rq_map(set, set->tags[i], i);
1970
Jens Axboea5164402014-09-10 09:02:03 -06001971 return -ENOMEM;
1972}
1973
1974/*
1975 * Allocate the request maps associated with this tag_set. Note that this
1976 * may reduce the depth asked for, if memory is tight. set->queue_depth
1977 * will be updated to reflect the allocated depth.
1978 */
1979static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
1980{
1981 unsigned int depth;
1982 int err;
1983
1984 depth = set->queue_depth;
1985 do {
1986 err = __blk_mq_alloc_rq_maps(set);
1987 if (!err)
1988 break;
1989
1990 set->queue_depth >>= 1;
1991 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
1992 err = -ENOMEM;
1993 break;
1994 }
1995 } while (set->queue_depth);
1996
1997 if (!set->queue_depth || err) {
1998 pr_err("blk-mq: failed to allocate request map\n");
1999 return -ENOMEM;
2000 }
2001
2002 if (depth != set->queue_depth)
2003 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2004 depth, set->queue_depth);
2005
2006 return 0;
2007}
2008
Jens Axboea4391c62014-06-05 15:21:56 -06002009/*
2010 * Alloc a tag set to be associated with one or more request queues.
2011 * May fail with EINVAL for various error conditions. May adjust the
2012 * requested depth down, if if it too large. In that case, the set
2013 * value will be stored in set->queue_depth.
2014 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002015int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2016{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002017 if (!set->nr_hw_queues)
2018 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002019 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002020 return -EINVAL;
2021 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2022 return -EINVAL;
2023
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002024 if (!set->nr_hw_queues || !set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002025 return -EINVAL;
2026
Jens Axboea4391c62014-06-05 15:21:56 -06002027 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2028 pr_info("blk-mq: reduced tag depth to %u\n",
2029 BLK_MQ_MAX_DEPTH);
2030 set->queue_depth = BLK_MQ_MAX_DEPTH;
2031 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002032
Ming Lei48479002014-04-19 18:00:17 +08002033 set->tags = kmalloc_node(set->nr_hw_queues *
2034 sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002035 GFP_KERNEL, set->numa_node);
2036 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002037 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002038
Jens Axboea5164402014-09-10 09:02:03 -06002039 if (blk_mq_alloc_rq_maps(set))
2040 goto enomem;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002041
Jens Axboe0d2602c2014-05-13 15:10:52 -06002042 mutex_init(&set->tag_list_lock);
2043 INIT_LIST_HEAD(&set->tag_list);
2044
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002045 return 0;
Jens Axboea5164402014-09-10 09:02:03 -06002046enomem:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002047 kfree(set->tags);
2048 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002049 return -ENOMEM;
2050}
2051EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2052
2053void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2054{
2055 int i;
2056
Jens Axboe484b4062014-05-21 14:01:15 -06002057 for (i = 0; i < set->nr_hw_queues; i++) {
2058 if (set->tags[i])
2059 blk_mq_free_rq_map(set, set->tags[i], i);
2060 }
2061
Ming Lei981bd182014-04-24 00:07:34 +08002062 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002063 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002064}
2065EXPORT_SYMBOL(blk_mq_free_tag_set);
2066
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002067int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2068{
2069 struct blk_mq_tag_set *set = q->tag_set;
2070 struct blk_mq_hw_ctx *hctx;
2071 int i, ret;
2072
2073 if (!set || nr > set->queue_depth)
2074 return -EINVAL;
2075
2076 ret = 0;
2077 queue_for_each_hw_ctx(q, hctx, i) {
2078 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2079 if (ret)
2080 break;
2081 }
2082
2083 if (!ret)
2084 q->nr_requests = nr;
2085
2086 return ret;
2087}
2088
Jens Axboe676141e2014-03-20 13:29:18 -06002089void blk_mq_disable_hotplug(void)
2090{
2091 mutex_lock(&all_q_mutex);
2092}
2093
2094void blk_mq_enable_hotplug(void)
2095{
2096 mutex_unlock(&all_q_mutex);
2097}
2098
Jens Axboe320ae512013-10-24 09:20:05 +01002099static int __init blk_mq_init(void)
2100{
Jens Axboe320ae512013-10-24 09:20:05 +01002101 blk_mq_cpu_init();
2102
Tejun Heoadd703f2014-07-01 10:34:38 -06002103 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002104
2105 return 0;
2106}
2107subsys_initcall(blk_mq_init);