blob: 07851753a0490d1185df21721f55385f12c3caee [file] [log] [blame]
Jens Axboe320ae512013-10-24 09:20:05 +01001#include <linux/kernel.h>
2#include <linux/module.h>
3#include <linux/backing-dev.h>
4#include <linux/bio.h>
5#include <linux/blkdev.h>
6#include <linux/mm.h>
7#include <linux/init.h>
8#include <linux/slab.h>
9#include <linux/workqueue.h>
10#include <linux/smp.h>
11#include <linux/llist.h>
12#include <linux/list_sort.h>
13#include <linux/cpu.h>
14#include <linux/cache.h>
15#include <linux/sched/sysctl.h>
16#include <linux/delay.h>
17
18#include <trace/events/block.h>
19
20#include <linux/blk-mq.h>
21#include "blk.h"
22#include "blk-mq.h"
23#include "blk-mq-tag.h"
24
25static DEFINE_MUTEX(all_q_mutex);
26static LIST_HEAD(all_q_list);
27
28static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx);
29
Jens Axboe320ae512013-10-24 09:20:05 +010030static struct blk_mq_ctx *__blk_mq_get_ctx(struct request_queue *q,
31 unsigned int cpu)
32{
33 return per_cpu_ptr(q->queue_ctx, cpu);
34}
35
36/*
37 * This assumes per-cpu software queueing queues. They could be per-node
38 * as well, for instance. For now this is hardcoded as-is. Note that we don't
39 * care about preemption, since we know the ctx's are persistent. This does
40 * mean that we can't rely on ctx always matching the currently running CPU.
41 */
42static struct blk_mq_ctx *blk_mq_get_ctx(struct request_queue *q)
43{
44 return __blk_mq_get_ctx(q, get_cpu());
45}
46
47static void blk_mq_put_ctx(struct blk_mq_ctx *ctx)
48{
49 put_cpu();
50}
51
52/*
53 * Check if any of the ctx's have pending work in this hardware queue
54 */
55static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
56{
57 unsigned int i;
58
Jens Axboe1429d7c2014-05-19 09:23:55 -060059 for (i = 0; i < hctx->ctx_map.map_size; i++)
60 if (hctx->ctx_map.map[i].word)
Jens Axboe320ae512013-10-24 09:20:05 +010061 return true;
62
63 return false;
64}
65
Jens Axboe1429d7c2014-05-19 09:23:55 -060066static inline struct blk_align_bitmap *get_bm(struct blk_mq_hw_ctx *hctx,
67 struct blk_mq_ctx *ctx)
68{
69 return &hctx->ctx_map.map[ctx->index_hw / hctx->ctx_map.bits_per_word];
70}
71
72#define CTX_TO_BIT(hctx, ctx) \
73 ((ctx)->index_hw & ((hctx)->ctx_map.bits_per_word - 1))
74
Jens Axboe320ae512013-10-24 09:20:05 +010075/*
76 * Mark this ctx as having pending work in this hardware queue
77 */
78static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
79 struct blk_mq_ctx *ctx)
80{
Jens Axboe1429d7c2014-05-19 09:23:55 -060081 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
82
83 if (!test_bit(CTX_TO_BIT(hctx, ctx), &bm->word))
84 set_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
85}
86
87static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
88 struct blk_mq_ctx *ctx)
89{
90 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
91
92 clear_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
Jens Axboe320ae512013-10-24 09:20:05 +010093}
94
Christoph Hellwig081241e2014-02-20 15:32:36 -080095static struct request *__blk_mq_alloc_request(struct blk_mq_hw_ctx *hctx,
Jens Axboe4bb659b2014-05-09 09:36:49 -060096 struct blk_mq_ctx *ctx,
Christoph Hellwig081241e2014-02-20 15:32:36 -080097 gfp_t gfp, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +010098{
99 struct request *rq;
100 unsigned int tag;
101
Jens Axboe0d2602c2014-05-13 15:10:52 -0600102 tag = blk_mq_get_tag(hctx, &ctx->last_tag, gfp, reserved);
Jens Axboe320ae512013-10-24 09:20:05 +0100103 if (tag != BLK_MQ_TAG_FAIL) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600104 rq = hctx->tags->rqs[tag];
Jens Axboe0d2602c2014-05-13 15:10:52 -0600105
106 rq->cmd_flags = 0;
107 if (blk_mq_tag_busy(hctx)) {
108 rq->cmd_flags = REQ_MQ_INFLIGHT;
109 atomic_inc(&hctx->nr_active);
110 }
111
Jens Axboe320ae512013-10-24 09:20:05 +0100112 rq->tag = tag;
Jens Axboe320ae512013-10-24 09:20:05 +0100113 return rq;
114 }
115
116 return NULL;
117}
118
119static int blk_mq_queue_enter(struct request_queue *q)
120{
121 int ret;
122
123 __percpu_counter_add(&q->mq_usage_counter, 1, 1000000);
124 smp_wmb();
125 /* we have problems to freeze the queue if it's initializing */
126 if (!blk_queue_bypass(q) || !blk_queue_init_done(q))
127 return 0;
128
129 __percpu_counter_add(&q->mq_usage_counter, -1, 1000000);
130
131 spin_lock_irq(q->queue_lock);
132 ret = wait_event_interruptible_lock_irq(q->mq_freeze_wq,
Ming Lei43a5e4e2013-12-26 21:31:35 +0800133 !blk_queue_bypass(q) || blk_queue_dying(q),
134 *q->queue_lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100135 /* inc usage with lock hold to avoid freeze_queue runs here */
Ming Lei43a5e4e2013-12-26 21:31:35 +0800136 if (!ret && !blk_queue_dying(q))
Jens Axboe320ae512013-10-24 09:20:05 +0100137 __percpu_counter_add(&q->mq_usage_counter, 1, 1000000);
Ming Lei43a5e4e2013-12-26 21:31:35 +0800138 else if (blk_queue_dying(q))
139 ret = -ENODEV;
Jens Axboe320ae512013-10-24 09:20:05 +0100140 spin_unlock_irq(q->queue_lock);
141
142 return ret;
143}
144
145static void blk_mq_queue_exit(struct request_queue *q)
146{
147 __percpu_counter_add(&q->mq_usage_counter, -1, 1000000);
148}
149
Ming Lei43a5e4e2013-12-26 21:31:35 +0800150static void __blk_mq_drain_queue(struct request_queue *q)
151{
152 while (true) {
153 s64 count;
154
155 spin_lock_irq(q->queue_lock);
156 count = percpu_counter_sum(&q->mq_usage_counter);
157 spin_unlock_irq(q->queue_lock);
158
159 if (count == 0)
160 break;
161 blk_mq_run_queues(q, false);
162 msleep(10);
163 }
164}
165
Jens Axboe320ae512013-10-24 09:20:05 +0100166/*
167 * Guarantee no request is in use, so we can change any data structure of
168 * the queue afterward.
169 */
170static void blk_mq_freeze_queue(struct request_queue *q)
171{
172 bool drain;
173
174 spin_lock_irq(q->queue_lock);
175 drain = !q->bypass_depth++;
176 queue_flag_set(QUEUE_FLAG_BYPASS, q);
177 spin_unlock_irq(q->queue_lock);
178
Ming Lei43a5e4e2013-12-26 21:31:35 +0800179 if (drain)
180 __blk_mq_drain_queue(q);
181}
Jens Axboe320ae512013-10-24 09:20:05 +0100182
Ming Lei43a5e4e2013-12-26 21:31:35 +0800183void blk_mq_drain_queue(struct request_queue *q)
184{
185 __blk_mq_drain_queue(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100186}
187
188static void blk_mq_unfreeze_queue(struct request_queue *q)
189{
190 bool wake = false;
191
192 spin_lock_irq(q->queue_lock);
193 if (!--q->bypass_depth) {
194 queue_flag_clear(QUEUE_FLAG_BYPASS, q);
195 wake = true;
196 }
197 WARN_ON_ONCE(q->bypass_depth < 0);
198 spin_unlock_irq(q->queue_lock);
199 if (wake)
200 wake_up_all(&q->mq_freeze_wq);
201}
202
203bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
204{
205 return blk_mq_has_free_tags(hctx->tags);
206}
207EXPORT_SYMBOL(blk_mq_can_queue);
208
Jens Axboe94eddfb2013-11-19 09:25:07 -0700209static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
210 struct request *rq, unsigned int rw_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100211{
Jens Axboe94eddfb2013-11-19 09:25:07 -0700212 if (blk_queue_io_stat(q))
213 rw_flags |= REQ_IO_STAT;
214
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200215 INIT_LIST_HEAD(&rq->queuelist);
216 /* csd/requeue_work/fifo_time is initialized before use */
217 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100218 rq->mq_ctx = ctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600219 rq->cmd_flags |= rw_flags;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200220 rq->cmd_type = 0;
221 /* do not touch atomic flags, it needs atomic ops against the timer */
222 rq->cpu = -1;
223 rq->__data_len = 0;
224 rq->__sector = (sector_t) -1;
225 rq->bio = NULL;
226 rq->biotail = NULL;
227 INIT_HLIST_NODE(&rq->hash);
228 RB_CLEAR_NODE(&rq->rb_node);
229 memset(&rq->flush, 0, max(sizeof(rq->flush), sizeof(rq->elv)));
230 rq->rq_disk = NULL;
231 rq->part = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700232 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200233#ifdef CONFIG_BLK_CGROUP
234 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700235 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200236 rq->io_start_time_ns = 0;
237#endif
238 rq->nr_phys_segments = 0;
239#if defined(CONFIG_BLK_DEV_INTEGRITY)
240 rq->nr_integrity_segments = 0;
241#endif
242 rq->ioprio = 0;
243 rq->special = NULL;
244 /* tag was already set */
245 rq->errors = 0;
246 memset(rq->__cmd, 0, sizeof(rq->__cmd));
247 rq->cmd = rq->__cmd;
248 rq->cmd_len = BLK_MAX_CDB;
249
250 rq->extra_len = 0;
251 rq->sense_len = 0;
252 rq->resid_len = 0;
253 rq->sense = NULL;
254
255 rq->deadline = 0;
256 INIT_LIST_HEAD(&rq->timeout_list);
257 rq->timeout = 0;
258 rq->retries = 0;
259 rq->end_io = NULL;
260 rq->end_io_data = NULL;
261 rq->next_rq = NULL;
262
Jens Axboe320ae512013-10-24 09:20:05 +0100263 ctx->rq_dispatched[rw_is_sync(rw_flags)]++;
264}
265
Jens Axboe320ae512013-10-24 09:20:05 +0100266static struct request *blk_mq_alloc_request_pinned(struct request_queue *q,
267 int rw, gfp_t gfp,
268 bool reserved)
269{
270 struct request *rq;
271
272 do {
273 struct blk_mq_ctx *ctx = blk_mq_get_ctx(q);
274 struct blk_mq_hw_ctx *hctx = q->mq_ops->map_queue(q, ctx->cpu);
275
Jens Axboe4bb659b2014-05-09 09:36:49 -0600276 rq = __blk_mq_alloc_request(hctx, ctx, gfp & ~__GFP_WAIT,
277 reserved);
Jens Axboe320ae512013-10-24 09:20:05 +0100278 if (rq) {
Jens Axboe94eddfb2013-11-19 09:25:07 -0700279 blk_mq_rq_ctx_init(q, ctx, rq, rw);
Jens Axboe320ae512013-10-24 09:20:05 +0100280 break;
Jeff Moyer959a35f2013-12-03 14:23:00 -0700281 }
Jens Axboe320ae512013-10-24 09:20:05 +0100282
Jens Axboee4043dc2014-04-09 10:18:23 -0600283 if (gfp & __GFP_WAIT) {
284 __blk_mq_run_hw_queue(hctx);
285 blk_mq_put_ctx(ctx);
286 } else {
287 blk_mq_put_ctx(ctx);
Jeff Moyer959a35f2013-12-03 14:23:00 -0700288 break;
Jens Axboee4043dc2014-04-09 10:18:23 -0600289 }
Jeff Moyer959a35f2013-12-03 14:23:00 -0700290
Jens Axboe0d2602c2014-05-13 15:10:52 -0600291 blk_mq_wait_for_tags(hctx, reserved);
Jens Axboe320ae512013-10-24 09:20:05 +0100292 } while (1);
293
294 return rq;
295}
296
Christoph Hellwig18741982014-02-10 09:29:00 -0700297struct request *blk_mq_alloc_request(struct request_queue *q, int rw, gfp_t gfp)
Jens Axboe320ae512013-10-24 09:20:05 +0100298{
299 struct request *rq;
300
301 if (blk_mq_queue_enter(q))
302 return NULL;
303
Christoph Hellwig18741982014-02-10 09:29:00 -0700304 rq = blk_mq_alloc_request_pinned(q, rw, gfp, false);
Jeff Moyer959a35f2013-12-03 14:23:00 -0700305 if (rq)
306 blk_mq_put_ctx(rq->mq_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100307 return rq;
308}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600309EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100310
311struct request *blk_mq_alloc_reserved_request(struct request_queue *q, int rw,
312 gfp_t gfp)
313{
314 struct request *rq;
315
316 if (blk_mq_queue_enter(q))
317 return NULL;
318
319 rq = blk_mq_alloc_request_pinned(q, rw, gfp, true);
Jeff Moyer959a35f2013-12-03 14:23:00 -0700320 if (rq)
321 blk_mq_put_ctx(rq->mq_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100322 return rq;
323}
324EXPORT_SYMBOL(blk_mq_alloc_reserved_request);
325
Jens Axboe320ae512013-10-24 09:20:05 +0100326static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
327 struct blk_mq_ctx *ctx, struct request *rq)
328{
329 const int tag = rq->tag;
330 struct request_queue *q = rq->q;
331
Jens Axboe0d2602c2014-05-13 15:10:52 -0600332 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
333 atomic_dec(&hctx->nr_active);
334
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200335 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600336 blk_mq_put_tag(hctx, tag, &ctx->last_tag);
Jens Axboe320ae512013-10-24 09:20:05 +0100337 blk_mq_queue_exit(q);
338}
339
340void blk_mq_free_request(struct request *rq)
341{
342 struct blk_mq_ctx *ctx = rq->mq_ctx;
343 struct blk_mq_hw_ctx *hctx;
344 struct request_queue *q = rq->q;
345
346 ctx->rq_completed[rq_is_sync(rq)]++;
347
348 hctx = q->mq_ops->map_queue(q, ctx->cpu);
349 __blk_mq_free_request(hctx, ctx, rq);
350}
351
Christoph Hellwig8727af42014-04-14 10:30:08 +0200352/*
353 * Clone all relevant state from a request that has been put on hold in
354 * the flush state machine into the preallocated flush request that hangs
355 * off the request queue.
356 *
357 * For a driver the flush request should be invisible, that's why we are
358 * impersonating the original request here.
359 */
360void blk_mq_clone_flush_request(struct request *flush_rq,
361 struct request *orig_rq)
362{
363 struct blk_mq_hw_ctx *hctx =
364 orig_rq->q->mq_ops->map_queue(orig_rq->q, orig_rq->mq_ctx->cpu);
365
366 flush_rq->mq_ctx = orig_rq->mq_ctx;
367 flush_rq->tag = orig_rq->tag;
368 memcpy(blk_mq_rq_to_pdu(flush_rq), blk_mq_rq_to_pdu(orig_rq),
369 hctx->cmd_size);
370}
371
Christoph Hellwig63151a42014-04-16 09:44:52 +0200372inline void __blk_mq_end_io(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100373{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700374 blk_account_io_done(rq);
375
Christoph Hellwig91b63632014-04-16 09:44:53 +0200376 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100377 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200378 } else {
379 if (unlikely(blk_bidi_rq(rq)))
380 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100381 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200382 }
Jens Axboe320ae512013-10-24 09:20:05 +0100383}
Christoph Hellwig63151a42014-04-16 09:44:52 +0200384EXPORT_SYMBOL(__blk_mq_end_io);
385
386void blk_mq_end_io(struct request *rq, int error)
387{
388 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
389 BUG();
390 __blk_mq_end_io(rq, error);
391}
392EXPORT_SYMBOL(blk_mq_end_io);
Jens Axboe320ae512013-10-24 09:20:05 +0100393
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800394static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100395{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800396 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100397
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800398 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100399}
400
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800401void __blk_mq_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100402{
403 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700404 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100405 int cpu;
406
Christoph Hellwig38535202014-04-25 02:32:53 -0700407 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800408 rq->q->softirq_done_fn(rq);
409 return;
410 }
Jens Axboe320ae512013-10-24 09:20:05 +0100411
412 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700413 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
414 shared = cpus_share_cache(cpu, ctx->cpu);
415
416 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800417 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800418 rq->csd.info = rq;
419 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100420 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800421 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800422 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800423 }
Jens Axboe320ae512013-10-24 09:20:05 +0100424 put_cpu();
425}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800426
427/**
428 * blk_mq_complete_request - end I/O on a request
429 * @rq: the request being processed
430 *
431 * Description:
432 * Ends all I/O on a request. It does not handle partial completions.
433 * The actual completion happens out-of-order, through a IPI handler.
434 **/
435void blk_mq_complete_request(struct request *rq)
436{
437 if (unlikely(blk_should_fake_timeout(rq->q)))
438 return;
439 if (!blk_mark_rq_complete(rq))
440 __blk_mq_complete_request(rq);
441}
442EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100443
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800444static void blk_mq_start_request(struct request *rq, bool last)
Jens Axboe320ae512013-10-24 09:20:05 +0100445{
446 struct request_queue *q = rq->q;
447
448 trace_block_rq_issue(q, rq);
449
Christoph Hellwig742ee692014-04-14 10:30:06 +0200450 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200451 if (unlikely(blk_bidi_rq(rq)))
452 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200453
Jens Axboe320ae512013-10-24 09:20:05 +0100454 /*
455 * Just mark start time and set the started bit. Due to memory
456 * ordering, we know we'll see the correct deadline as long as
Jens Axboec22d9d82014-05-23 14:14:57 -0600457 * REQ_ATOMIC_STARTED is seen. Use the default queue timeout,
458 * unless one has been set in the request.
Jens Axboe320ae512013-10-24 09:20:05 +0100459 */
Jens Axboec22d9d82014-05-23 14:14:57 -0600460 if (!rq->timeout)
461 rq->deadline = jiffies + q->rq_timeout;
462 else
463 rq->deadline = jiffies + rq->timeout;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600464
465 /*
466 * Mark us as started and clear complete. Complete might have been
467 * set if requeue raced with timeout, which then marked it as
468 * complete. So be sure to clear complete again when we start
469 * the request, otherwise we'll ignore the completion event.
470 */
Jens Axboe320ae512013-10-24 09:20:05 +0100471 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600472 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800473
474 if (q->dma_drain_size && blk_rq_bytes(rq)) {
475 /*
476 * Make sure space for the drain appears. We know we can do
477 * this because max_hw_segments has been adjusted to be one
478 * fewer than the device can handle.
479 */
480 rq->nr_phys_segments++;
481 }
482
483 /*
484 * Flag the last request in the series so that drivers know when IO
485 * should be kicked off, if they don't do it on a per-request basis.
486 *
487 * Note: the flag isn't the only condition drivers should do kick off.
488 * If drive is busy, the last request might not have the bit set.
489 */
490 if (last)
491 rq->cmd_flags |= REQ_END;
Jens Axboe320ae512013-10-24 09:20:05 +0100492}
493
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200494static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100495{
496 struct request_queue *q = rq->q;
497
498 trace_block_rq_requeue(q, rq);
499 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800500
501 rq->cmd_flags &= ~REQ_END;
502
503 if (q->dma_drain_size && blk_rq_bytes(rq))
504 rq->nr_phys_segments--;
Jens Axboe320ae512013-10-24 09:20:05 +0100505}
506
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200507void blk_mq_requeue_request(struct request *rq)
508{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200509 __blk_mq_requeue_request(rq);
510 blk_clear_rq_complete(rq);
511
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200512 BUG_ON(blk_queued_rq(rq));
513 blk_mq_insert_request(rq, true, true, false);
514}
515EXPORT_SYMBOL(blk_mq_requeue_request);
516
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600517struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
518{
519 return tags->rqs[tag];
520}
521EXPORT_SYMBOL(blk_mq_tag_to_rq);
522
Jens Axboe320ae512013-10-24 09:20:05 +0100523struct blk_mq_timeout_data {
524 struct blk_mq_hw_ctx *hctx;
525 unsigned long *next;
526 unsigned int *next_set;
527};
528
529static void blk_mq_timeout_check(void *__data, unsigned long *free_tags)
530{
531 struct blk_mq_timeout_data *data = __data;
532 struct blk_mq_hw_ctx *hctx = data->hctx;
533 unsigned int tag;
534
535 /* It may not be in flight yet (this is where
536 * the REQ_ATOMIC_STARTED flag comes in). The requests are
537 * statically allocated, so we know it's always safe to access the
538 * memory associated with a bit offset into ->rqs[].
539 */
540 tag = 0;
541 do {
542 struct request *rq;
543
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600544 tag = find_next_zero_bit(free_tags, hctx->tags->nr_tags, tag);
545 if (tag >= hctx->tags->nr_tags)
Jens Axboe320ae512013-10-24 09:20:05 +0100546 break;
547
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600548 rq = blk_mq_tag_to_rq(hctx->tags, tag++);
549 if (rq->q != hctx->queue)
550 continue;
Jens Axboe320ae512013-10-24 09:20:05 +0100551 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
552 continue;
553
554 blk_rq_check_expired(rq, data->next, data->next_set);
555 } while (1);
556}
557
558static void blk_mq_hw_ctx_check_timeout(struct blk_mq_hw_ctx *hctx,
559 unsigned long *next,
560 unsigned int *next_set)
561{
562 struct blk_mq_timeout_data data = {
563 .hctx = hctx,
564 .next = next,
565 .next_set = next_set,
566 };
567
568 /*
569 * Ask the tagging code to iterate busy requests, so we can
570 * check them for timeout.
571 */
572 blk_mq_tag_busy_iter(hctx->tags, blk_mq_timeout_check, &data);
573}
574
Jens Axboe87ee7b12014-04-24 08:51:47 -0600575static enum blk_eh_timer_return blk_mq_rq_timed_out(struct request *rq)
576{
577 struct request_queue *q = rq->q;
578
579 /*
580 * We know that complete is set at this point. If STARTED isn't set
581 * anymore, then the request isn't active and the "timeout" should
582 * just be ignored. This can happen due to the bitflag ordering.
583 * Timeout first checks if STARTED is set, and if it is, assumes
584 * the request is active. But if we race with completion, then
585 * we both flags will get cleared. So check here again, and ignore
586 * a timeout event with a request that isn't active.
587 */
588 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
589 return BLK_EH_NOT_HANDLED;
590
591 if (!q->mq_ops->timeout)
592 return BLK_EH_RESET_TIMER;
593
594 return q->mq_ops->timeout(rq);
595}
596
Jens Axboe320ae512013-10-24 09:20:05 +0100597static void blk_mq_rq_timer(unsigned long data)
598{
599 struct request_queue *q = (struct request_queue *) data;
600 struct blk_mq_hw_ctx *hctx;
601 unsigned long next = 0;
602 int i, next_set = 0;
603
Jens Axboe484b4062014-05-21 14:01:15 -0600604 queue_for_each_hw_ctx(q, hctx, i) {
605 /*
606 * If not software queues are currently mapped to this
607 * hardware queue, there's nothing to check
608 */
609 if (!hctx->nr_ctx || !hctx->tags)
610 continue;
611
Jens Axboe320ae512013-10-24 09:20:05 +0100612 blk_mq_hw_ctx_check_timeout(hctx, &next, &next_set);
Jens Axboe484b4062014-05-21 14:01:15 -0600613 }
Jens Axboe320ae512013-10-24 09:20:05 +0100614
Jens Axboe0d2602c2014-05-13 15:10:52 -0600615 if (next_set) {
616 next = blk_rq_timeout(round_jiffies_up(next));
617 mod_timer(&q->timeout, next);
618 } else {
619 queue_for_each_hw_ctx(q, hctx, i)
620 blk_mq_tag_idle(hctx);
621 }
Jens Axboe320ae512013-10-24 09:20:05 +0100622}
623
624/*
625 * Reverse check our software queue for entries that we could potentially
626 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
627 * too much time checking for merges.
628 */
629static bool blk_mq_attempt_merge(struct request_queue *q,
630 struct blk_mq_ctx *ctx, struct bio *bio)
631{
632 struct request *rq;
633 int checked = 8;
634
635 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
636 int el_ret;
637
638 if (!checked--)
639 break;
640
641 if (!blk_rq_merge_ok(rq, bio))
642 continue;
643
644 el_ret = blk_try_merge(rq, bio);
645 if (el_ret == ELEVATOR_BACK_MERGE) {
646 if (bio_attempt_back_merge(q, rq, bio)) {
647 ctx->rq_merged++;
648 return true;
649 }
650 break;
651 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
652 if (bio_attempt_front_merge(q, rq, bio)) {
653 ctx->rq_merged++;
654 return true;
655 }
656 break;
657 }
658 }
659
660 return false;
661}
662
Jens Axboe320ae512013-10-24 09:20:05 +0100663/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600664 * Process software queues that have been marked busy, splicing them
665 * to the for-dispatch
666 */
667static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
668{
669 struct blk_mq_ctx *ctx;
670 int i;
671
672 for (i = 0; i < hctx->ctx_map.map_size; i++) {
673 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
674 unsigned int off, bit;
675
676 if (!bm->word)
677 continue;
678
679 bit = 0;
680 off = i * hctx->ctx_map.bits_per_word;
681 do {
682 bit = find_next_bit(&bm->word, bm->depth, bit);
683 if (bit >= bm->depth)
684 break;
685
686 ctx = hctx->ctxs[bit + off];
687 clear_bit(bit, &bm->word);
688 spin_lock(&ctx->lock);
689 list_splice_tail_init(&ctx->rq_list, list);
690 spin_unlock(&ctx->lock);
691
692 bit++;
693 } while (1);
694 }
695}
696
697/*
Jens Axboe320ae512013-10-24 09:20:05 +0100698 * Run this hardware queue, pulling any software queues mapped to it in.
699 * Note that this function currently has various problems around ordering
700 * of IO. In particular, we'd like FIFO behaviour on handling existing
701 * items on the hctx->dispatch list. Ignore that for now.
702 */
703static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
704{
705 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100706 struct request *rq;
707 LIST_HEAD(rq_list);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600708 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100709
Jens Axboefd1270d2014-04-16 09:23:48 -0600710 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
Jens Axboee4043dc2014-04-09 10:18:23 -0600711
Jens Axboe5d12f902014-03-19 15:25:02 -0600712 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100713 return;
714
715 hctx->run++;
716
717 /*
718 * Touch any software queue that has pending entries.
719 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600720 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100721
722 /*
723 * If we have previous entries on our dispatch list, grab them
724 * and stuff them at the front for more fair dispatch.
725 */
726 if (!list_empty_careful(&hctx->dispatch)) {
727 spin_lock(&hctx->lock);
728 if (!list_empty(&hctx->dispatch))
729 list_splice_init(&hctx->dispatch, &rq_list);
730 spin_unlock(&hctx->lock);
731 }
732
733 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100734 * Now process all the entries, sending them to the driver.
735 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600736 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100737 while (!list_empty(&rq_list)) {
738 int ret;
739
740 rq = list_first_entry(&rq_list, struct request, queuelist);
741 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100742
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800743 blk_mq_start_request(rq, list_empty(&rq_list));
Jens Axboe320ae512013-10-24 09:20:05 +0100744
745 ret = q->mq_ops->queue_rq(hctx, rq);
746 switch (ret) {
747 case BLK_MQ_RQ_QUEUE_OK:
748 queued++;
749 continue;
750 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100751 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200752 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100753 break;
754 default:
755 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100756 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800757 rq->errors = -EIO;
Jens Axboe320ae512013-10-24 09:20:05 +0100758 blk_mq_end_io(rq, rq->errors);
759 break;
760 }
761
762 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
763 break;
764 }
765
766 if (!queued)
767 hctx->dispatched[0]++;
768 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
769 hctx->dispatched[ilog2(queued) + 1]++;
770
771 /*
772 * Any items that need requeuing? Stuff them into hctx->dispatch,
773 * that is where we will continue on next queue run.
774 */
775 if (!list_empty(&rq_list)) {
776 spin_lock(&hctx->lock);
777 list_splice(&rq_list, &hctx->dispatch);
778 spin_unlock(&hctx->lock);
779 }
780}
781
Jens Axboe506e9312014-05-07 10:26:44 -0600782/*
783 * It'd be great if the workqueue API had a way to pass
784 * in a mask and had some smarts for more clever placement.
785 * For now we just round-robin here, switching for every
786 * BLK_MQ_CPU_WORK_BATCH queued items.
787 */
788static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
789{
790 int cpu = hctx->next_cpu;
791
792 if (--hctx->next_cpu_batch <= 0) {
793 int next_cpu;
794
795 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
796 if (next_cpu >= nr_cpu_ids)
797 next_cpu = cpumask_first(hctx->cpumask);
798
799 hctx->next_cpu = next_cpu;
800 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
801 }
802
803 return cpu;
804}
805
Jens Axboe320ae512013-10-24 09:20:05 +0100806void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
807{
Jens Axboe5d12f902014-03-19 15:25:02 -0600808 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100809 return;
810
Jens Axboee4043dc2014-04-09 10:18:23 -0600811 if (!async && cpumask_test_cpu(smp_processor_id(), hctx->cpumask))
Jens Axboe320ae512013-10-24 09:20:05 +0100812 __blk_mq_run_hw_queue(hctx);
Jens Axboee4043dc2014-04-09 10:18:23 -0600813 else if (hctx->queue->nr_hw_queues == 1)
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600814 kblockd_schedule_delayed_work(&hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600815 else {
816 unsigned int cpu;
817
Jens Axboe506e9312014-05-07 10:26:44 -0600818 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600819 kblockd_schedule_delayed_work_on(cpu, &hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600820 }
Jens Axboe320ae512013-10-24 09:20:05 +0100821}
822
823void blk_mq_run_queues(struct request_queue *q, bool async)
824{
825 struct blk_mq_hw_ctx *hctx;
826 int i;
827
828 queue_for_each_hw_ctx(q, hctx, i) {
829 if ((!blk_mq_hctx_has_pending(hctx) &&
830 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600831 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100832 continue;
833
Jens Axboee4043dc2014-04-09 10:18:23 -0600834 preempt_disable();
Jens Axboe320ae512013-10-24 09:20:05 +0100835 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600836 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100837 }
838}
839EXPORT_SYMBOL(blk_mq_run_queues);
840
841void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
842{
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600843 cancel_delayed_work(&hctx->run_work);
844 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100845 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
846}
847EXPORT_SYMBOL(blk_mq_stop_hw_queue);
848
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100849void blk_mq_stop_hw_queues(struct request_queue *q)
850{
851 struct blk_mq_hw_ctx *hctx;
852 int i;
853
854 queue_for_each_hw_ctx(q, hctx, i)
855 blk_mq_stop_hw_queue(hctx);
856}
857EXPORT_SYMBOL(blk_mq_stop_hw_queues);
858
Jens Axboe320ae512013-10-24 09:20:05 +0100859void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
860{
861 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600862
863 preempt_disable();
Jens Axboe320ae512013-10-24 09:20:05 +0100864 __blk_mq_run_hw_queue(hctx);
Jens Axboee4043dc2014-04-09 10:18:23 -0600865 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100866}
867EXPORT_SYMBOL(blk_mq_start_hw_queue);
868
Christoph Hellwig2f268552014-04-16 09:44:56 +0200869void blk_mq_start_hw_queues(struct request_queue *q)
870{
871 struct blk_mq_hw_ctx *hctx;
872 int i;
873
874 queue_for_each_hw_ctx(q, hctx, i)
875 blk_mq_start_hw_queue(hctx);
876}
877EXPORT_SYMBOL(blk_mq_start_hw_queues);
878
879
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200880void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100881{
882 struct blk_mq_hw_ctx *hctx;
883 int i;
884
885 queue_for_each_hw_ctx(q, hctx, i) {
886 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
887 continue;
888
889 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600890 preempt_disable();
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200891 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600892 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100893 }
894}
895EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
896
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600897static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100898{
899 struct blk_mq_hw_ctx *hctx;
900
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600901 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600902
Jens Axboe320ae512013-10-24 09:20:05 +0100903 __blk_mq_run_hw_queue(hctx);
904}
905
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600906static void blk_mq_delay_work_fn(struct work_struct *work)
907{
908 struct blk_mq_hw_ctx *hctx;
909
910 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
911
912 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
913 __blk_mq_run_hw_queue(hctx);
914}
915
916void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
917{
918 unsigned long tmo = msecs_to_jiffies(msecs);
919
920 if (hctx->queue->nr_hw_queues == 1)
921 kblockd_schedule_delayed_work(&hctx->delay_work, tmo);
922 else {
923 unsigned int cpu;
924
Jens Axboe506e9312014-05-07 10:26:44 -0600925 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600926 kblockd_schedule_delayed_work_on(cpu, &hctx->delay_work, tmo);
927 }
928}
929EXPORT_SYMBOL(blk_mq_delay_queue);
930
Jens Axboe320ae512013-10-24 09:20:05 +0100931static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800932 struct request *rq, bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +0100933{
934 struct blk_mq_ctx *ctx = rq->mq_ctx;
935
Jens Axboe01b983c2013-11-19 18:59:10 -0700936 trace_block_rq_insert(hctx->queue, rq);
937
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800938 if (at_head)
939 list_add(&rq->queuelist, &ctx->rq_list);
940 else
941 list_add_tail(&rq->queuelist, &ctx->rq_list);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600942
Jens Axboe320ae512013-10-24 09:20:05 +0100943 blk_mq_hctx_mark_pending(hctx, ctx);
944
945 /*
946 * We do this early, to ensure we are on the right CPU.
947 */
Jens Axboe87ee7b12014-04-24 08:51:47 -0600948 blk_add_timer(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100949}
950
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600951void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
952 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100953{
954 struct request_queue *q = rq->q;
955 struct blk_mq_hw_ctx *hctx;
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600956 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100957
958 current_ctx = blk_mq_get_ctx(q);
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600959 if (!cpu_online(ctx->cpu))
960 rq->mq_ctx = ctx = current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100961
Jens Axboe320ae512013-10-24 09:20:05 +0100962 hctx = q->mq_ops->map_queue(q, ctx->cpu);
963
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600964 if (rq->cmd_flags & (REQ_FLUSH | REQ_FUA) &&
965 !(rq->cmd_flags & (REQ_FLUSH_SEQ))) {
966 blk_insert_flush(rq);
967 } else {
968 spin_lock(&ctx->lock);
969 __blk_mq_insert_request(hctx, rq, at_head);
970 spin_unlock(&ctx->lock);
971 }
Jens Axboe320ae512013-10-24 09:20:05 +0100972
Jens Axboe320ae512013-10-24 09:20:05 +0100973 if (run_queue)
974 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600975
976 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100977}
978
979static void blk_mq_insert_requests(struct request_queue *q,
980 struct blk_mq_ctx *ctx,
981 struct list_head *list,
982 int depth,
983 bool from_schedule)
984
985{
986 struct blk_mq_hw_ctx *hctx;
987 struct blk_mq_ctx *current_ctx;
988
989 trace_block_unplug(q, depth, !from_schedule);
990
991 current_ctx = blk_mq_get_ctx(q);
992
993 if (!cpu_online(ctx->cpu))
994 ctx = current_ctx;
995 hctx = q->mq_ops->map_queue(q, ctx->cpu);
996
997 /*
998 * preemption doesn't flush plug list, so it's possible ctx->cpu is
999 * offline now
1000 */
1001 spin_lock(&ctx->lock);
1002 while (!list_empty(list)) {
1003 struct request *rq;
1004
1005 rq = list_first_entry(list, struct request, queuelist);
1006 list_del_init(&rq->queuelist);
1007 rq->mq_ctx = ctx;
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001008 __blk_mq_insert_request(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001009 }
1010 spin_unlock(&ctx->lock);
1011
Jens Axboe320ae512013-10-24 09:20:05 +01001012 blk_mq_run_hw_queue(hctx, from_schedule);
Jens Axboee4043dc2014-04-09 10:18:23 -06001013 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001014}
1015
1016static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1017{
1018 struct request *rqa = container_of(a, struct request, queuelist);
1019 struct request *rqb = container_of(b, struct request, queuelist);
1020
1021 return !(rqa->mq_ctx < rqb->mq_ctx ||
1022 (rqa->mq_ctx == rqb->mq_ctx &&
1023 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1024}
1025
1026void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1027{
1028 struct blk_mq_ctx *this_ctx;
1029 struct request_queue *this_q;
1030 struct request *rq;
1031 LIST_HEAD(list);
1032 LIST_HEAD(ctx_list);
1033 unsigned int depth;
1034
1035 list_splice_init(&plug->mq_list, &list);
1036
1037 list_sort(NULL, &list, plug_ctx_cmp);
1038
1039 this_q = NULL;
1040 this_ctx = NULL;
1041 depth = 0;
1042
1043 while (!list_empty(&list)) {
1044 rq = list_entry_rq(list.next);
1045 list_del_init(&rq->queuelist);
1046 BUG_ON(!rq->q);
1047 if (rq->mq_ctx != this_ctx) {
1048 if (this_ctx) {
1049 blk_mq_insert_requests(this_q, this_ctx,
1050 &ctx_list, depth,
1051 from_schedule);
1052 }
1053
1054 this_ctx = rq->mq_ctx;
1055 this_q = rq->q;
1056 depth = 0;
1057 }
1058
1059 depth++;
1060 list_add_tail(&rq->queuelist, &ctx_list);
1061 }
1062
1063 /*
1064 * If 'this_ctx' is set, we know we have entries to complete
1065 * on 'ctx_list'. Do those.
1066 */
1067 if (this_ctx) {
1068 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1069 from_schedule);
1070 }
1071}
1072
1073static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1074{
1075 init_request_from_bio(rq, bio);
1076 blk_account_io_start(rq, 1);
1077}
1078
Jens Axboe07068d52014-05-22 10:40:51 -06001079static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1080 struct blk_mq_ctx *ctx,
1081 struct request *rq, struct bio *bio)
1082{
1083 struct request_queue *q = hctx->queue;
1084
1085 if (!(hctx->flags & BLK_MQ_F_SHOULD_MERGE)) {
1086 blk_mq_bio_to_request(rq, bio);
1087 spin_lock(&ctx->lock);
1088insert_rq:
1089 __blk_mq_insert_request(hctx, rq, false);
1090 spin_unlock(&ctx->lock);
1091 return false;
1092 } else {
1093 spin_lock(&ctx->lock);
1094 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1095 blk_mq_bio_to_request(rq, bio);
1096 goto insert_rq;
1097 }
1098
1099 spin_unlock(&ctx->lock);
1100 __blk_mq_free_request(hctx, ctx, rq);
1101 return true;
1102 }
1103}
1104
1105struct blk_map_ctx {
1106 struct blk_mq_hw_ctx *hctx;
1107 struct blk_mq_ctx *ctx;
1108};
1109
1110static struct request *blk_mq_map_request(struct request_queue *q,
1111 struct bio *bio,
1112 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001113{
1114 struct blk_mq_hw_ctx *hctx;
1115 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001116 struct request *rq;
Jens Axboe07068d52014-05-22 10:40:51 -06001117 int rw = bio_data_dir(bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001118
Jens Axboe07068d52014-05-22 10:40:51 -06001119 if (unlikely(blk_mq_queue_enter(q))) {
Nicholas Bellinger14ec77f2014-02-07 13:45:39 -07001120 bio_endio(bio, -EIO);
Jens Axboe07068d52014-05-22 10:40:51 -06001121 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001122 }
1123
1124 ctx = blk_mq_get_ctx(q);
1125 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1126
Jens Axboe07068d52014-05-22 10:40:51 -06001127 if (rw_is_sync(bio->bi_rw))
Shaohua Li27fbf4e2014-02-19 20:20:21 +08001128 rw |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001129
Jens Axboe320ae512013-10-24 09:20:05 +01001130 trace_block_getrq(q, bio, rw);
Jens Axboe4bb659b2014-05-09 09:36:49 -06001131 rq = __blk_mq_alloc_request(hctx, ctx, GFP_ATOMIC, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001132 if (likely(rq))
Christoph Hellwig18741982014-02-10 09:29:00 -07001133 blk_mq_rq_ctx_init(q, ctx, rq, rw);
Jens Axboe320ae512013-10-24 09:20:05 +01001134 else {
1135 blk_mq_put_ctx(ctx);
1136 trace_block_sleeprq(q, bio, rw);
Christoph Hellwig18741982014-02-10 09:29:00 -07001137 rq = blk_mq_alloc_request_pinned(q, rw, __GFP_WAIT|GFP_ATOMIC,
1138 false);
Jens Axboe320ae512013-10-24 09:20:05 +01001139 ctx = rq->mq_ctx;
1140 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1141 }
1142
1143 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001144 data->hctx = hctx;
1145 data->ctx = ctx;
1146 return rq;
1147}
1148
1149/*
1150 * Multiple hardware queue variant. This will not use per-process plugs,
1151 * but will attempt to bypass the hctx queueing if we can go straight to
1152 * hardware for SYNC IO.
1153 */
1154static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1155{
1156 const int is_sync = rw_is_sync(bio->bi_rw);
1157 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1158 struct blk_map_ctx data;
1159 struct request *rq;
1160
1161 blk_queue_bounce(q, &bio);
1162
1163 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1164 bio_endio(bio, -EIO);
1165 return;
1166 }
1167
1168 rq = blk_mq_map_request(q, bio, &data);
1169 if (unlikely(!rq))
1170 return;
1171
1172 if (unlikely(is_flush_fua)) {
1173 blk_mq_bio_to_request(rq, bio);
1174 blk_insert_flush(rq);
1175 goto run_queue;
1176 }
1177
1178 if (is_sync) {
1179 int ret;
1180
1181 blk_mq_bio_to_request(rq, bio);
1182 blk_mq_start_request(rq, true);
1183
1184 /*
1185 * For OK queue, we are done. For error, kill it. Any other
1186 * error (busy), just add it to our list as we previously
1187 * would have done
1188 */
1189 ret = q->mq_ops->queue_rq(data.hctx, rq);
1190 if (ret == BLK_MQ_RQ_QUEUE_OK)
1191 goto done;
1192 else {
1193 __blk_mq_requeue_request(rq);
1194
1195 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1196 rq->errors = -EIO;
1197 blk_mq_end_io(rq, rq->errors);
1198 goto done;
1199 }
1200 }
1201 }
1202
1203 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1204 /*
1205 * For a SYNC request, send it to the hardware immediately. For
1206 * an ASYNC request, just ensure that we run it later on. The
1207 * latter allows for merging opportunities and more efficient
1208 * dispatching.
1209 */
1210run_queue:
1211 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1212 }
1213done:
1214 blk_mq_put_ctx(data.ctx);
1215}
1216
1217/*
1218 * Single hardware queue variant. This will attempt to use any per-process
1219 * plug for merging and IO deferral.
1220 */
1221static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1222{
1223 const int is_sync = rw_is_sync(bio->bi_rw);
1224 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1225 unsigned int use_plug, request_count = 0;
1226 struct blk_map_ctx data;
1227 struct request *rq;
1228
1229 /*
1230 * If we have multiple hardware queues, just go directly to
1231 * one of those for sync IO.
1232 */
1233 use_plug = !is_flush_fua && !is_sync;
1234
1235 blk_queue_bounce(q, &bio);
1236
1237 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1238 bio_endio(bio, -EIO);
1239 return;
1240 }
1241
1242 if (use_plug && !blk_queue_nomerges(q) &&
1243 blk_attempt_plug_merge(q, bio, &request_count))
1244 return;
1245
1246 rq = blk_mq_map_request(q, bio, &data);
Jens Axboe320ae512013-10-24 09:20:05 +01001247
1248 if (unlikely(is_flush_fua)) {
1249 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001250 blk_insert_flush(rq);
1251 goto run_queue;
1252 }
1253
1254 /*
1255 * A task plug currently exists. Since this is completely lockless,
1256 * utilize that to temporarily store requests until the task is
1257 * either done or scheduled away.
1258 */
1259 if (use_plug) {
1260 struct blk_plug *plug = current->plug;
1261
1262 if (plug) {
1263 blk_mq_bio_to_request(rq, bio);
Shaohua Li92f399c2013-10-29 12:01:03 -06001264 if (list_empty(&plug->mq_list))
Jens Axboe320ae512013-10-24 09:20:05 +01001265 trace_block_plug(q);
1266 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1267 blk_flush_plug_list(plug, false);
1268 trace_block_plug(q);
1269 }
1270 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe07068d52014-05-22 10:40:51 -06001271 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001272 return;
1273 }
1274 }
1275
Jens Axboe07068d52014-05-22 10:40:51 -06001276 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1277 /*
1278 * For a SYNC request, send it to the hardware immediately. For
1279 * an ASYNC request, just ensure that we run it later on. The
1280 * latter allows for merging opportunities and more efficient
1281 * dispatching.
1282 */
1283run_queue:
1284 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001285 }
1286
Jens Axboe07068d52014-05-22 10:40:51 -06001287 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001288}
1289
1290/*
1291 * Default mapping to a software queue, since we use one per CPU.
1292 */
1293struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1294{
1295 return q->queue_hw_ctx[q->mq_map[cpu]];
1296}
1297EXPORT_SYMBOL(blk_mq_map_queue);
1298
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001299struct blk_mq_hw_ctx *blk_mq_alloc_single_hw_queue(struct blk_mq_tag_set *set,
Jens Axboe320ae512013-10-24 09:20:05 +01001300 unsigned int hctx_index)
1301{
Jens Axboe4bb659b2014-05-09 09:36:49 -06001302 return kzalloc_node(sizeof(struct blk_mq_hw_ctx), GFP_KERNEL,
1303 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001304}
1305EXPORT_SYMBOL(blk_mq_alloc_single_hw_queue);
1306
1307void blk_mq_free_single_hw_queue(struct blk_mq_hw_ctx *hctx,
1308 unsigned int hctx_index)
1309{
1310 kfree(hctx);
1311}
1312EXPORT_SYMBOL(blk_mq_free_single_hw_queue);
1313
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001314static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1315 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001316{
1317 struct page *page;
1318
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001319 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001320 int i;
1321
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001322 for (i = 0; i < tags->nr_tags; i++) {
1323 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001324 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001325 set->ops->exit_request(set->driver_data, tags->rqs[i],
1326 hctx_idx, i);
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001327 }
1328 }
1329
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001330 while (!list_empty(&tags->page_list)) {
1331 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001332 list_del_init(&page->lru);
Jens Axboe320ae512013-10-24 09:20:05 +01001333 __free_pages(page, page->private);
1334 }
1335
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001336 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001337
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001338 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001339}
1340
1341static size_t order_to_size(unsigned int order)
1342{
Ming Lei4ca08502014-04-19 18:00:18 +08001343 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001344}
1345
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001346static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1347 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001348{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001349 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001350 unsigned int i, j, entries_per_page, max_order = 4;
1351 size_t rq_size, left;
1352
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001353 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1354 set->numa_node);
1355 if (!tags)
1356 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001357
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001358 INIT_LIST_HEAD(&tags->page_list);
1359
1360 tags->rqs = kmalloc_node(set->queue_depth * sizeof(struct request *),
1361 GFP_KERNEL, set->numa_node);
1362 if (!tags->rqs) {
1363 blk_mq_free_tags(tags);
1364 return NULL;
1365 }
Jens Axboe320ae512013-10-24 09:20:05 +01001366
1367 /*
1368 * rq_size is the size of the request plus driver payload, rounded
1369 * to the cacheline size
1370 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001371 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001372 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001373 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001374
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001375 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001376 int this_order = max_order;
1377 struct page *page;
1378 int to_do;
1379 void *p;
1380
1381 while (left < order_to_size(this_order - 1) && this_order)
1382 this_order--;
1383
1384 do {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001385 page = alloc_pages_node(set->numa_node, GFP_KERNEL,
1386 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001387 if (page)
1388 break;
1389 if (!this_order--)
1390 break;
1391 if (order_to_size(this_order) < rq_size)
1392 break;
1393 } while (1);
1394
1395 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001396 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001397
1398 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001399 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001400
1401 p = page_address(page);
1402 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001403 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001404 left -= to_do * rq_size;
1405 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001406 tags->rqs[i] = p;
1407 if (set->ops->init_request) {
1408 if (set->ops->init_request(set->driver_data,
1409 tags->rqs[i], hctx_idx, i,
1410 set->numa_node))
1411 goto fail;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001412 }
1413
Jens Axboe320ae512013-10-24 09:20:05 +01001414 p += rq_size;
1415 i++;
1416 }
1417 }
1418
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001419 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001420
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001421fail:
1422 pr_warn("%s: failed to allocate requests\n", __func__);
1423 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
1536 if (set->ops->exit_hctx)
1537 set->ops->exit_hctx(hctx, i);
1538
1539 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1540 kfree(hctx->ctxs);
1541 blk_mq_free_bitmap(&hctx->ctx_map);
1542 }
1543
1544}
1545
1546static void blk_mq_free_hw_queues(struct request_queue *q,
1547 struct blk_mq_tag_set *set)
1548{
1549 struct blk_mq_hw_ctx *hctx;
1550 unsigned int i;
1551
1552 queue_for_each_hw_ctx(q, hctx, i) {
1553 free_cpumask_var(hctx->cpumask);
1554 set->ops->free_hctx(hctx, i);
1555 }
1556}
1557
Jens Axboe320ae512013-10-24 09:20:05 +01001558static int blk_mq_init_hw_queues(struct request_queue *q,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001559 struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001560{
1561 struct blk_mq_hw_ctx *hctx;
Ming Lei624dbe42014-05-27 23:35:13 +08001562 unsigned int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001563
1564 /*
1565 * Initialize hardware queues
1566 */
1567 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe320ae512013-10-24 09:20:05 +01001568 int node;
1569
1570 node = hctx->numa_node;
1571 if (node == NUMA_NO_NODE)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001572 node = hctx->numa_node = set->numa_node;
Jens Axboe320ae512013-10-24 09:20:05 +01001573
Christoph Hellwig70f4db62014-04-16 10:48:08 -06001574 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1575 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
Jens Axboe320ae512013-10-24 09:20:05 +01001576 spin_lock_init(&hctx->lock);
1577 INIT_LIST_HEAD(&hctx->dispatch);
1578 hctx->queue = q;
1579 hctx->queue_num = i;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001580 hctx->flags = set->flags;
1581 hctx->cmd_size = set->cmd_size;
Jens Axboe320ae512013-10-24 09:20:05 +01001582
1583 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1584 blk_mq_hctx_notify, hctx);
1585 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1586
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001587 hctx->tags = set->tags[i];
Jens Axboe320ae512013-10-24 09:20:05 +01001588
1589 /*
1590 * Allocate space for all possible cpus to avoid allocation in
1591 * runtime
1592 */
1593 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1594 GFP_KERNEL, node);
1595 if (!hctx->ctxs)
1596 break;
1597
Jens Axboe1429d7c2014-05-19 09:23:55 -06001598 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
Jens Axboe320ae512013-10-24 09:20:05 +01001599 break;
1600
Jens Axboe320ae512013-10-24 09:20:05 +01001601 hctx->nr_ctx = 0;
1602
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001603 if (set->ops->init_hctx &&
1604 set->ops->init_hctx(hctx, set->driver_data, i))
Jens Axboe320ae512013-10-24 09:20:05 +01001605 break;
1606 }
1607
1608 if (i == q->nr_hw_queues)
1609 return 0;
1610
1611 /*
1612 * Init failed
1613 */
Ming Lei624dbe42014-05-27 23:35:13 +08001614 blk_mq_exit_hw_queues(q, set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001615
1616 return 1;
1617}
1618
1619static void blk_mq_init_cpu_queues(struct request_queue *q,
1620 unsigned int nr_hw_queues)
1621{
1622 unsigned int i;
1623
1624 for_each_possible_cpu(i) {
1625 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1626 struct blk_mq_hw_ctx *hctx;
1627
1628 memset(__ctx, 0, sizeof(*__ctx));
1629 __ctx->cpu = i;
1630 spin_lock_init(&__ctx->lock);
1631 INIT_LIST_HEAD(&__ctx->rq_list);
1632 __ctx->queue = q;
1633
1634 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001635 if (!cpu_online(i))
1636 continue;
1637
Jens Axboee4043dc2014-04-09 10:18:23 -06001638 hctx = q->mq_ops->map_queue(q, i);
1639 cpumask_set_cpu(i, hctx->cpumask);
1640 hctx->nr_ctx++;
1641
Jens Axboe320ae512013-10-24 09:20:05 +01001642 /*
1643 * Set local node, IFF we have more than one hw queue. If
1644 * not, we remain on the home node of the device
1645 */
1646 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1647 hctx->numa_node = cpu_to_node(i);
1648 }
1649}
1650
1651static void blk_mq_map_swqueue(struct request_queue *q)
1652{
1653 unsigned int i;
1654 struct blk_mq_hw_ctx *hctx;
1655 struct blk_mq_ctx *ctx;
1656
1657 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001658 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001659 hctx->nr_ctx = 0;
1660 }
1661
1662 /*
1663 * Map software to hardware queues
1664 */
1665 queue_for_each_ctx(q, ctx, i) {
1666 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboee4043dc2014-04-09 10:18:23 -06001667 if (!cpu_online(i))
1668 continue;
1669
Jens Axboe320ae512013-10-24 09:20:05 +01001670 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001671 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001672 ctx->index_hw = hctx->nr_ctx;
1673 hctx->ctxs[hctx->nr_ctx++] = ctx;
1674 }
Jens Axboe506e9312014-05-07 10:26:44 -06001675
1676 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001677 /*
1678 * If not software queues are mapped to this hardware queue,
1679 * disable it and free the request entries
1680 */
1681 if (!hctx->nr_ctx) {
1682 struct blk_mq_tag_set *set = q->tag_set;
1683
1684 if (set->tags[i]) {
1685 blk_mq_free_rq_map(set, set->tags[i], i);
1686 set->tags[i] = NULL;
1687 hctx->tags = NULL;
1688 }
1689 continue;
1690 }
1691
1692 /*
1693 * Initialize batch roundrobin counts
1694 */
Jens Axboe506e9312014-05-07 10:26:44 -06001695 hctx->next_cpu = cpumask_first(hctx->cpumask);
1696 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1697 }
Jens Axboe320ae512013-10-24 09:20:05 +01001698}
1699
Jens Axboe0d2602c2014-05-13 15:10:52 -06001700static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1701{
1702 struct blk_mq_hw_ctx *hctx;
1703 struct request_queue *q;
1704 bool shared;
1705 int i;
1706
1707 if (set->tag_list.next == set->tag_list.prev)
1708 shared = false;
1709 else
1710 shared = true;
1711
1712 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1713 blk_mq_freeze_queue(q);
1714
1715 queue_for_each_hw_ctx(q, hctx, i) {
1716 if (shared)
1717 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1718 else
1719 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1720 }
1721 blk_mq_unfreeze_queue(q);
1722 }
1723}
1724
1725static void blk_mq_del_queue_tag_set(struct request_queue *q)
1726{
1727 struct blk_mq_tag_set *set = q->tag_set;
1728
1729 blk_mq_freeze_queue(q);
1730
1731 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);
1735
1736 blk_mq_unfreeze_queue(q);
1737}
1738
1739static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1740 struct request_queue *q)
1741{
1742 q->tag_set = set;
1743
1744 mutex_lock(&set->tag_list_lock);
1745 list_add_tail(&q->tag_set_list, &set->tag_list);
1746 blk_mq_update_tag_set_depth(set);
1747 mutex_unlock(&set->tag_list_lock);
1748}
1749
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001750struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001751{
1752 struct blk_mq_hw_ctx **hctxs;
1753 struct blk_mq_ctx *ctx;
1754 struct request_queue *q;
1755 int i;
1756
Jens Axboe320ae512013-10-24 09:20:05 +01001757 ctx = alloc_percpu(struct blk_mq_ctx);
1758 if (!ctx)
1759 return ERR_PTR(-ENOMEM);
1760
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001761 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1762 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001763
1764 if (!hctxs)
1765 goto err_percpu;
1766
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001767 for (i = 0; i < set->nr_hw_queues; i++) {
1768 hctxs[i] = set->ops->alloc_hctx(set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001769 if (!hctxs[i])
1770 goto err_hctxs;
1771
Jens Axboee4043dc2014-04-09 10:18:23 -06001772 if (!zalloc_cpumask_var(&hctxs[i]->cpumask, GFP_KERNEL))
1773 goto err_hctxs;
1774
Jens Axboe0d2602c2014-05-13 15:10:52 -06001775 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01001776 hctxs[i]->numa_node = NUMA_NO_NODE;
1777 hctxs[i]->queue_num = i;
1778 }
1779
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001780 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001781 if (!q)
1782 goto err_hctxs;
1783
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001784 q->mq_map = blk_mq_make_queue_map(set);
Jens Axboe320ae512013-10-24 09:20:05 +01001785 if (!q->mq_map)
1786 goto err_map;
1787
1788 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1789 blk_queue_rq_timeout(q, 30000);
1790
1791 q->nr_queues = nr_cpu_ids;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001792 q->nr_hw_queues = set->nr_hw_queues;
Jens Axboe320ae512013-10-24 09:20:05 +01001793
1794 q->queue_ctx = ctx;
1795 q->queue_hw_ctx = hctxs;
1796
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001797 q->mq_ops = set->ops;
Jens Axboe94eddfb2013-11-19 09:25:07 -07001798 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001799
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001800 q->sg_reserved_size = INT_MAX;
1801
Jens Axboe07068d52014-05-22 10:40:51 -06001802 if (q->nr_hw_queues > 1)
1803 blk_queue_make_request(q, blk_mq_make_request);
1804 else
1805 blk_queue_make_request(q, blk_sq_make_request);
1806
Jens Axboe87ee7b12014-04-24 08:51:47 -06001807 blk_queue_rq_timed_out(q, blk_mq_rq_timed_out);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001808 if (set->timeout)
1809 blk_queue_rq_timeout(q, set->timeout);
Jens Axboe320ae512013-10-24 09:20:05 +01001810
Jens Axboeeba71762014-05-20 15:17:27 -06001811 /*
1812 * Do this after blk_queue_make_request() overrides it...
1813 */
1814 q->nr_requests = set->queue_depth;
1815
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001816 if (set->ops->complete)
1817 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001818
Jens Axboe320ae512013-10-24 09:20:05 +01001819 blk_mq_init_flush(q);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001820 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001821
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001822 q->flush_rq = kzalloc(round_up(sizeof(struct request) +
1823 set->cmd_size, cache_line_size()),
1824 GFP_KERNEL);
Christoph Hellwig18741982014-02-10 09:29:00 -07001825 if (!q->flush_rq)
Jens Axboe320ae512013-10-24 09:20:05 +01001826 goto err_hw;
1827
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001828 if (blk_mq_init_hw_queues(q, set))
Christoph Hellwig18741982014-02-10 09:29:00 -07001829 goto err_flush_rq;
1830
Jens Axboe320ae512013-10-24 09:20:05 +01001831 mutex_lock(&all_q_mutex);
1832 list_add_tail(&q->all_q_node, &all_q_list);
1833 mutex_unlock(&all_q_mutex);
1834
Jens Axboe0d2602c2014-05-13 15:10:52 -06001835 blk_mq_add_queue_tag_set(set, q);
1836
Jens Axboe484b4062014-05-21 14:01:15 -06001837 blk_mq_map_swqueue(q);
1838
Jens Axboe320ae512013-10-24 09:20:05 +01001839 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07001840
1841err_flush_rq:
1842 kfree(q->flush_rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001843err_hw:
1844 kfree(q->mq_map);
1845err_map:
1846 blk_cleanup_queue(q);
1847err_hctxs:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001848 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboe320ae512013-10-24 09:20:05 +01001849 if (!hctxs[i])
1850 break;
Jens Axboee4043dc2014-04-09 10:18:23 -06001851 free_cpumask_var(hctxs[i]->cpumask);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001852 set->ops->free_hctx(hctxs[i], i);
Jens Axboe320ae512013-10-24 09:20:05 +01001853 }
1854 kfree(hctxs);
1855err_percpu:
1856 free_percpu(ctx);
1857 return ERR_PTR(-ENOMEM);
1858}
1859EXPORT_SYMBOL(blk_mq_init_queue);
1860
1861void blk_mq_free_queue(struct request_queue *q)
1862{
Ming Lei624dbe42014-05-27 23:35:13 +08001863 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001864
Jens Axboe0d2602c2014-05-13 15:10:52 -06001865 blk_mq_del_queue_tag_set(q);
1866
Ming Lei624dbe42014-05-27 23:35:13 +08001867 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1868 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01001869
1870 free_percpu(q->queue_ctx);
1871 kfree(q->queue_hw_ctx);
1872 kfree(q->mq_map);
1873
1874 q->queue_ctx = NULL;
1875 q->queue_hw_ctx = NULL;
1876 q->mq_map = NULL;
1877
1878 mutex_lock(&all_q_mutex);
1879 list_del_init(&q->all_q_node);
1880 mutex_unlock(&all_q_mutex);
1881}
Jens Axboe320ae512013-10-24 09:20:05 +01001882
1883/* Basically redo blk_mq_init_queue with queue frozen */
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001884static void blk_mq_queue_reinit(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01001885{
1886 blk_mq_freeze_queue(q);
1887
1888 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1889
1890 /*
1891 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1892 * we should change hctx numa_node according to new topology (this
1893 * involves free and re-allocate memory, worthy doing?)
1894 */
1895
1896 blk_mq_map_swqueue(q);
1897
1898 blk_mq_unfreeze_queue(q);
1899}
1900
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001901static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1902 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01001903{
1904 struct request_queue *q;
1905
1906 /*
Jens Axboe9fccfed2014-05-08 14:50:19 -06001907 * Before new mappings are established, hotadded cpu might already
1908 * start handling requests. This doesn't break anything as we map
1909 * offline CPUs to first hardware queue. We will re-init the queue
1910 * below to get optimal settings.
Jens Axboe320ae512013-10-24 09:20:05 +01001911 */
1912 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1913 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1914 return NOTIFY_OK;
1915
1916 mutex_lock(&all_q_mutex);
1917 list_for_each_entry(q, &all_q_list, all_q_node)
1918 blk_mq_queue_reinit(q);
1919 mutex_unlock(&all_q_mutex);
1920 return NOTIFY_OK;
1921}
1922
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001923int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
1924{
1925 int i;
1926
1927 if (!set->nr_hw_queues)
1928 return -EINVAL;
1929 if (!set->queue_depth || set->queue_depth > BLK_MQ_MAX_DEPTH)
1930 return -EINVAL;
1931 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
1932 return -EINVAL;
1933
1934 if (!set->nr_hw_queues ||
1935 !set->ops->queue_rq || !set->ops->map_queue ||
1936 !set->ops->alloc_hctx || !set->ops->free_hctx)
1937 return -EINVAL;
1938
1939
Ming Lei48479002014-04-19 18:00:17 +08001940 set->tags = kmalloc_node(set->nr_hw_queues *
1941 sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001942 GFP_KERNEL, set->numa_node);
1943 if (!set->tags)
1944 goto out;
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
Jens Axboe0d2602c2014-05-13 15:10:52 -06001952 mutex_init(&set->tag_list_lock);
1953 INIT_LIST_HEAD(&set->tag_list);
1954
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001955 return 0;
1956
1957out_unwind:
1958 while (--i >= 0)
1959 blk_mq_free_rq_map(set, set->tags[i], i);
1960out:
1961 return -ENOMEM;
1962}
1963EXPORT_SYMBOL(blk_mq_alloc_tag_set);
1964
1965void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
1966{
1967 int i;
1968
Jens Axboe484b4062014-05-21 14:01:15 -06001969 for (i = 0; i < set->nr_hw_queues; i++) {
1970 if (set->tags[i])
1971 blk_mq_free_rq_map(set, set->tags[i], i);
1972 }
1973
Ming Lei981bd182014-04-24 00:07:34 +08001974 kfree(set->tags);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001975}
1976EXPORT_SYMBOL(blk_mq_free_tag_set);
1977
Jens Axboee3a2b3f2014-05-20 11:49:02 -06001978int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
1979{
1980 struct blk_mq_tag_set *set = q->tag_set;
1981 struct blk_mq_hw_ctx *hctx;
1982 int i, ret;
1983
1984 if (!set || nr > set->queue_depth)
1985 return -EINVAL;
1986
1987 ret = 0;
1988 queue_for_each_hw_ctx(q, hctx, i) {
1989 ret = blk_mq_tag_update_depth(hctx->tags, nr);
1990 if (ret)
1991 break;
1992 }
1993
1994 if (!ret)
1995 q->nr_requests = nr;
1996
1997 return ret;
1998}
1999
Jens Axboe676141e2014-03-20 13:29:18 -06002000void blk_mq_disable_hotplug(void)
2001{
2002 mutex_lock(&all_q_mutex);
2003}
2004
2005void blk_mq_enable_hotplug(void)
2006{
2007 mutex_unlock(&all_q_mutex);
2008}
2009
Jens Axboe320ae512013-10-24 09:20:05 +01002010static int __init blk_mq_init(void)
2011{
Jens Axboe320ae512013-10-24 09:20:05 +01002012 blk_mq_cpu_init();
2013
2014 /* Must be called after percpu_counter_hotcpu_callback() */
2015 hotcpu_notifier(blk_mq_queue_reinit_notify, -10);
2016
2017 return 0;
2018}
2019subsys_initcall(blk_mq_init);