blob: b21a3b6f7b659b06ce9644746823ae66b807dcd3 [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>
Jens Axboeaedcd722014-09-17 08:27:03 -060023#include <linux/crash_dump.h>
Jens Axboe320ae512013-10-24 09:20:05 +010024
25#include <trace/events/block.h>
26
27#include <linux/blk-mq.h>
28#include "blk.h"
29#include "blk-mq.h"
30#include "blk-mq-tag.h"
31
32static DEFINE_MUTEX(all_q_mutex);
33static LIST_HEAD(all_q_list);
34
35static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx);
36
Jens Axboe320ae512013-10-24 09:20:05 +010037/*
38 * Check if any of the ctx's have pending work in this hardware queue
39 */
40static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
41{
42 unsigned int i;
43
Jens Axboe1429d7c2014-05-19 09:23:55 -060044 for (i = 0; i < hctx->ctx_map.map_size; i++)
45 if (hctx->ctx_map.map[i].word)
Jens Axboe320ae512013-10-24 09:20:05 +010046 return true;
47
48 return false;
49}
50
Jens Axboe1429d7c2014-05-19 09:23:55 -060051static inline struct blk_align_bitmap *get_bm(struct blk_mq_hw_ctx *hctx,
52 struct blk_mq_ctx *ctx)
53{
54 return &hctx->ctx_map.map[ctx->index_hw / hctx->ctx_map.bits_per_word];
55}
56
57#define CTX_TO_BIT(hctx, ctx) \
58 ((ctx)->index_hw & ((hctx)->ctx_map.bits_per_word - 1))
59
Jens Axboe320ae512013-10-24 09:20:05 +010060/*
61 * Mark this ctx as having pending work in this hardware queue
62 */
63static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
64 struct blk_mq_ctx *ctx)
65{
Jens Axboe1429d7c2014-05-19 09:23:55 -060066 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
67
68 if (!test_bit(CTX_TO_BIT(hctx, ctx), &bm->word))
69 set_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
70}
71
72static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
73 struct blk_mq_ctx *ctx)
74{
75 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
76
77 clear_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
Jens Axboe320ae512013-10-24 09:20:05 +010078}
79
Jens Axboe320ae512013-10-24 09:20:05 +010080static int blk_mq_queue_enter(struct request_queue *q)
81{
Tejun Heoadd703f2014-07-01 10:34:38 -060082 while (true) {
83 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +010084
Tejun Heoadd703f2014-07-01 10:34:38 -060085 if (percpu_ref_tryget_live(&q->mq_usage_counter))
86 return 0;
Keith Busch3b632cf2014-06-06 10:22:07 -060087
Tejun Heoadd703f2014-07-01 10:34:38 -060088 ret = wait_event_interruptible(q->mq_freeze_wq,
89 !q->mq_freeze_depth || blk_queue_dying(q));
90 if (blk_queue_dying(q))
91 return -ENODEV;
92 if (ret)
93 return ret;
94 }
Jens Axboe320ae512013-10-24 09:20:05 +010095}
96
97static void blk_mq_queue_exit(struct request_queue *q)
98{
Tejun Heoadd703f2014-07-01 10:34:38 -060099 percpu_ref_put(&q->mq_usage_counter);
100}
101
102static void blk_mq_usage_counter_release(struct percpu_ref *ref)
103{
104 struct request_queue *q =
105 container_of(ref, struct request_queue, mq_usage_counter);
106
107 wake_up_all(&q->mq_freeze_wq);
Jens Axboe320ae512013-10-24 09:20:05 +0100108}
109
Tejun Heo72d6f022014-07-01 10:33:02 -0600110/*
111 * Guarantee no request is in use, so we can change any data structure of
112 * the queue afterward.
113 */
114void blk_mq_freeze_queue(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +0800115{
Tejun Heocddd5d12014-08-16 08:02:24 -0400116 bool freeze;
117
Tejun Heo72d6f022014-07-01 10:33:02 -0600118 spin_lock_irq(q->queue_lock);
Tejun Heocddd5d12014-08-16 08:02:24 -0400119 freeze = !q->mq_freeze_depth++;
Tejun Heo72d6f022014-07-01 10:33:02 -0600120 spin_unlock_irq(q->queue_lock);
121
Tejun Heocddd5d12014-08-16 08:02:24 -0400122 if (freeze) {
Tejun Heo9eca8042014-09-24 13:07:33 -0400123 percpu_ref_kill(&q->mq_usage_counter);
Tejun Heocddd5d12014-08-16 08:02:24 -0400124 blk_mq_run_queues(q, false);
125 }
Tejun Heoadd703f2014-07-01 10:34:38 -0600126 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->mq_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +0800127}
128
Jens Axboe320ae512013-10-24 09:20:05 +0100129static void blk_mq_unfreeze_queue(struct request_queue *q)
130{
Tejun Heocddd5d12014-08-16 08:02:24 -0400131 bool wake;
Jens Axboe320ae512013-10-24 09:20:05 +0100132
133 spin_lock_irq(q->queue_lock);
Tejun Heo780db202014-07-01 10:31:13 -0600134 wake = !--q->mq_freeze_depth;
135 WARN_ON_ONCE(q->mq_freeze_depth < 0);
Jens Axboe320ae512013-10-24 09:20:05 +0100136 spin_unlock_irq(q->queue_lock);
Tejun Heoadd703f2014-07-01 10:34:38 -0600137 if (wake) {
138 percpu_ref_reinit(&q->mq_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100139 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600140 }
Jens Axboe320ae512013-10-24 09:20:05 +0100141}
142
143bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
144{
145 return blk_mq_has_free_tags(hctx->tags);
146}
147EXPORT_SYMBOL(blk_mq_can_queue);
148
Jens Axboe94eddfb2013-11-19 09:25:07 -0700149static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
150 struct request *rq, unsigned int rw_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100151{
Jens Axboe94eddfb2013-11-19 09:25:07 -0700152 if (blk_queue_io_stat(q))
153 rw_flags |= REQ_IO_STAT;
154
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200155 INIT_LIST_HEAD(&rq->queuelist);
156 /* csd/requeue_work/fifo_time is initialized before use */
157 rq->q = q;
Jens Axboe320ae512013-10-24 09:20:05 +0100158 rq->mq_ctx = ctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600159 rq->cmd_flags |= rw_flags;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200160 /* do not touch atomic flags, it needs atomic ops against the timer */
161 rq->cpu = -1;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200162 INIT_HLIST_NODE(&rq->hash);
163 RB_CLEAR_NODE(&rq->rb_node);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200164 rq->rq_disk = NULL;
165 rq->part = NULL;
Jens Axboe3ee32372014-06-09 09:36:53 -0600166 rq->start_time = jiffies;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200167#ifdef CONFIG_BLK_CGROUP
168 rq->rl = NULL;
Ming Lei0fec08b2014-01-03 10:00:08 -0700169 set_start_time_ns(rq);
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200170 rq->io_start_time_ns = 0;
171#endif
172 rq->nr_phys_segments = 0;
173#if defined(CONFIG_BLK_DEV_INTEGRITY)
174 rq->nr_integrity_segments = 0;
175#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200176 rq->special = NULL;
177 /* tag was already set */
178 rq->errors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200179
Tony Battersby6f4a16262014-08-22 15:53:39 -0400180 rq->cmd = rq->__cmd;
181
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200182 rq->extra_len = 0;
183 rq->sense_len = 0;
184 rq->resid_len = 0;
185 rq->sense = NULL;
186
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200187 INIT_LIST_HEAD(&rq->timeout_list);
Jens Axboef6be4fb2014-06-06 11:03:48 -0600188 rq->timeout = 0;
189
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200190 rq->end_io = NULL;
191 rq->end_io_data = NULL;
192 rq->next_rq = NULL;
193
Jens Axboe320ae512013-10-24 09:20:05 +0100194 ctx->rq_dispatched[rw_is_sync(rw_flags)]++;
195}
196
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200197static struct request *
Ming Leicb96a42c2014-06-01 00:43:37 +0800198__blk_mq_alloc_request(struct blk_mq_alloc_data *data, int rw)
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200199{
200 struct request *rq;
201 unsigned int tag;
202
Ming Leicb96a42c2014-06-01 00:43:37 +0800203 tag = blk_mq_get_tag(data);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200204 if (tag != BLK_MQ_TAG_FAIL) {
Ming Leicb96a42c2014-06-01 00:43:37 +0800205 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200206
Ming Leicb96a42c2014-06-01 00:43:37 +0800207 if (blk_mq_tag_busy(data->hctx)) {
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200208 rq->cmd_flags = REQ_MQ_INFLIGHT;
Ming Leicb96a42c2014-06-01 00:43:37 +0800209 atomic_inc(&data->hctx->nr_active);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200210 }
211
212 rq->tag = tag;
Ming Leicb96a42c2014-06-01 00:43:37 +0800213 blk_mq_rq_ctx_init(data->q, data->ctx, rq, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200214 return rq;
215 }
216
217 return NULL;
218}
219
Christoph Hellwig4ce01dd2014-05-27 20:59:46 +0200220struct request *blk_mq_alloc_request(struct request_queue *q, int rw, gfp_t gfp,
221 bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100222{
Christoph Hellwigd8525642014-05-27 20:59:50 +0200223 struct blk_mq_ctx *ctx;
224 struct blk_mq_hw_ctx *hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100225 struct request *rq;
Ming Leicb96a42c2014-06-01 00:43:37 +0800226 struct blk_mq_alloc_data alloc_data;
Joe Lawrencea492f072014-08-28 08:15:21 -0600227 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100228
Joe Lawrencea492f072014-08-28 08:15:21 -0600229 ret = blk_mq_queue_enter(q);
230 if (ret)
231 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100232
Christoph Hellwigd8525642014-05-27 20:59:50 +0200233 ctx = blk_mq_get_ctx(q);
234 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a42c2014-06-01 00:43:37 +0800235 blk_mq_set_alloc_data(&alloc_data, q, gfp & ~__GFP_WAIT,
236 reserved, ctx, hctx);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200237
Ming Leicb96a42c2014-06-01 00:43:37 +0800238 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwigd8525642014-05-27 20:59:50 +0200239 if (!rq && (gfp & __GFP_WAIT)) {
240 __blk_mq_run_hw_queue(hctx);
241 blk_mq_put_ctx(ctx);
242
243 ctx = blk_mq_get_ctx(q);
244 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a42c2014-06-01 00:43:37 +0800245 blk_mq_set_alloc_data(&alloc_data, q, gfp, reserved, ctx,
246 hctx);
247 rq = __blk_mq_alloc_request(&alloc_data, rw);
248 ctx = alloc_data.ctx;
Christoph Hellwigd8525642014-05-27 20:59:50 +0200249 }
250 blk_mq_put_ctx(ctx);
Joe Lawrencea492f072014-08-28 08:15:21 -0600251 if (!rq)
252 return ERR_PTR(-EWOULDBLOCK);
Jens Axboe320ae512013-10-24 09:20:05 +0100253 return rq;
254}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600255EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100256
Jens Axboe320ae512013-10-24 09:20:05 +0100257static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
258 struct blk_mq_ctx *ctx, struct request *rq)
259{
260 const int tag = rq->tag;
261 struct request_queue *q = rq->q;
262
Jens Axboe0d2602c2014-05-13 15:10:52 -0600263 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
264 atomic_dec(&hctx->nr_active);
David Hildenbrand683d0e12014-09-18 11:04:31 +0200265 rq->cmd_flags = 0;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600266
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200267 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600268 blk_mq_put_tag(hctx, tag, &ctx->last_tag);
Jens Axboe320ae512013-10-24 09:20:05 +0100269 blk_mq_queue_exit(q);
270}
271
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700272void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100273{
274 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700275
276 ctx->rq_completed[rq_is_sync(rq)]++;
277 __blk_mq_free_request(hctx, ctx, rq);
278
279}
280EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
281
282void blk_mq_free_request(struct request *rq)
283{
Jens Axboe320ae512013-10-24 09:20:05 +0100284 struct blk_mq_hw_ctx *hctx;
285 struct request_queue *q = rq->q;
286
Jens Axboe7c7f2f22014-11-17 10:41:57 -0700287 hctx = q->mq_ops->map_queue(q, rq->mq_ctx->cpu);
288 blk_mq_free_hctx_request(hctx, rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100289}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700290EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100291
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700292inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100293{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700294 blk_account_io_done(rq);
295
Christoph Hellwig91b63632014-04-16 09:44:53 +0200296 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100297 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200298 } else {
299 if (unlikely(blk_bidi_rq(rq)))
300 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100301 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200302 }
Jens Axboe320ae512013-10-24 09:20:05 +0100303}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700304EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200305
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700306void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200307{
308 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
309 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700310 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200311}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700312EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100313
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800314static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100315{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800316 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100317
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800318 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100319}
320
Jens Axboeed851862014-05-30 21:20:50 -0600321static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100322{
323 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700324 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100325 int cpu;
326
Christoph Hellwig38535202014-04-25 02:32:53 -0700327 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800328 rq->q->softirq_done_fn(rq);
329 return;
330 }
Jens Axboe320ae512013-10-24 09:20:05 +0100331
332 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700333 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
334 shared = cpus_share_cache(cpu, ctx->cpu);
335
336 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800337 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800338 rq->csd.info = rq;
339 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100340 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800341 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800342 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800343 }
Jens Axboe320ae512013-10-24 09:20:05 +0100344 put_cpu();
345}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800346
Jens Axboeed851862014-05-30 21:20:50 -0600347void __blk_mq_complete_request(struct request *rq)
348{
349 struct request_queue *q = rq->q;
350
351 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700352 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600353 else
354 blk_mq_ipi_complete_request(rq);
355}
356
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800357/**
358 * blk_mq_complete_request - end I/O on a request
359 * @rq: the request being processed
360 *
361 * Description:
362 * Ends all I/O on a request. It does not handle partial completions.
363 * The actual completion happens out-of-order, through a IPI handler.
364 **/
365void blk_mq_complete_request(struct request *rq)
366{
Jens Axboe95f09682014-05-27 17:46:48 -0600367 struct request_queue *q = rq->q;
368
369 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800370 return;
Jens Axboeed851862014-05-30 21:20:50 -0600371 if (!blk_mark_rq_complete(rq))
372 __blk_mq_complete_request(rq);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800373}
374EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100375
Christoph Hellwige2490072014-09-13 16:40:09 -0700376void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100377{
378 struct request_queue *q = rq->q;
379
380 trace_block_rq_issue(q, rq);
381
Christoph Hellwig742ee692014-04-14 10:30:06 +0200382 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200383 if (unlikely(blk_bidi_rq(rq)))
384 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200385
Ming Lei2b8393b2014-06-10 00:16:41 +0800386 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600387
388 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600389 * Ensure that ->deadline is visible before set the started
390 * flag and clear the completed flag.
391 */
392 smp_mb__before_atomic();
393
394 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600395 * Mark us as started and clear complete. Complete might have been
396 * set if requeue raced with timeout, which then marked it as
397 * complete. So be sure to clear complete again when we start
398 * the request, otherwise we'll ignore the completion event.
399 */
Jens Axboe4b570522014-05-29 11:00:11 -0600400 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
401 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
402 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
403 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800404
405 if (q->dma_drain_size && blk_rq_bytes(rq)) {
406 /*
407 * Make sure space for the drain appears. We know we can do
408 * this because max_hw_segments has been adjusted to be one
409 * fewer than the device can handle.
410 */
411 rq->nr_phys_segments++;
412 }
Jens Axboe320ae512013-10-24 09:20:05 +0100413}
Christoph Hellwige2490072014-09-13 16:40:09 -0700414EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100415
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200416static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100417{
418 struct request_queue *q = rq->q;
419
420 trace_block_rq_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800421
Christoph Hellwige2490072014-09-13 16:40:09 -0700422 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
423 if (q->dma_drain_size && blk_rq_bytes(rq))
424 rq->nr_phys_segments--;
425 }
Jens Axboe320ae512013-10-24 09:20:05 +0100426}
427
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200428void blk_mq_requeue_request(struct request *rq)
429{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200430 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200431
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200432 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600433 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200434}
435EXPORT_SYMBOL(blk_mq_requeue_request);
436
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600437static void blk_mq_requeue_work(struct work_struct *work)
438{
439 struct request_queue *q =
440 container_of(work, struct request_queue, requeue_work);
441 LIST_HEAD(rq_list);
442 struct request *rq, *next;
443 unsigned long flags;
444
445 spin_lock_irqsave(&q->requeue_lock, flags);
446 list_splice_init(&q->requeue_list, &rq_list);
447 spin_unlock_irqrestore(&q->requeue_lock, flags);
448
449 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
450 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
451 continue;
452
453 rq->cmd_flags &= ~REQ_SOFTBARRIER;
454 list_del_init(&rq->queuelist);
455 blk_mq_insert_request(rq, true, false, false);
456 }
457
458 while (!list_empty(&rq_list)) {
459 rq = list_entry(rq_list.next, struct request, queuelist);
460 list_del_init(&rq->queuelist);
461 blk_mq_insert_request(rq, false, false, false);
462 }
463
Jens Axboe8b957412014-09-19 13:10:29 -0600464 /*
465 * Use the start variant of queue running here, so that running
466 * the requeue work will kick stopped queues.
467 */
468 blk_mq_start_hw_queues(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600469}
470
471void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
472{
473 struct request_queue *q = rq->q;
474 unsigned long flags;
475
476 /*
477 * We abuse this flag that is otherwise used by the I/O scheduler to
478 * request head insertation from the workqueue.
479 */
480 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
481
482 spin_lock_irqsave(&q->requeue_lock, flags);
483 if (at_head) {
484 rq->cmd_flags |= REQ_SOFTBARRIER;
485 list_add(&rq->queuelist, &q->requeue_list);
486 } else {
487 list_add_tail(&rq->queuelist, &q->requeue_list);
488 }
489 spin_unlock_irqrestore(&q->requeue_lock, flags);
490}
491EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
492
493void blk_mq_kick_requeue_list(struct request_queue *q)
494{
495 kblockd_schedule_work(&q->requeue_work);
496}
497EXPORT_SYMBOL(blk_mq_kick_requeue_list);
498
Ming Lei7c94e1c2014-09-25 23:23:43 +0800499static inline bool is_flush_request(struct request *rq,
500 struct blk_flush_queue *fq, unsigned int tag)
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600501{
Jens Axboe0e62f512014-06-04 10:23:49 -0600502 return ((rq->cmd_flags & REQ_FLUSH_SEQ) &&
Ming Lei7c94e1c2014-09-25 23:23:43 +0800503 fq->flush_rq->tag == tag);
Jens Axboe0e62f512014-06-04 10:23:49 -0600504}
Shaohua Li22302372014-05-30 08:06:42 -0600505
Jens Axboe0e62f512014-06-04 10:23:49 -0600506struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
507{
508 struct request *rq = tags->rqs[tag];
Ming Leie97c2932014-09-25 23:23:46 +0800509 /* mq_ctx of flush rq is always cloned from the corresponding req */
510 struct blk_flush_queue *fq = blk_get_flush_queue(rq->q, rq->mq_ctx);
Shaohua Li22302372014-05-30 08:06:42 -0600511
Ming Lei7c94e1c2014-09-25 23:23:43 +0800512 if (!is_flush_request(rq, fq, tag))
Jens Axboe0e62f512014-06-04 10:23:49 -0600513 return rq;
514
Ming Lei7c94e1c2014-09-25 23:23:43 +0800515 return fq->flush_rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600516}
517EXPORT_SYMBOL(blk_mq_tag_to_rq);
518
Jens Axboe320ae512013-10-24 09:20:05 +0100519struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700520 unsigned long next;
521 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100522};
523
Christoph Hellwig90415832014-09-22 10:21:48 -0600524void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100525{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700526 struct blk_mq_ops *ops = req->q->mq_ops;
527 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600528
529 /*
530 * We know that complete is set at this point. If STARTED isn't set
531 * anymore, then the request isn't active and the "timeout" should
532 * just be ignored. This can happen due to the bitflag ordering.
533 * Timeout first checks if STARTED is set, and if it is, assumes
534 * the request is active. But if we race with completion, then
535 * we both flags will get cleared. So check here again, and ignore
536 * a timeout event with a request that isn't active.
537 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700538 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
539 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600540
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700541 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700542 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600543
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700544 switch (ret) {
545 case BLK_EH_HANDLED:
546 __blk_mq_complete_request(req);
547 break;
548 case BLK_EH_RESET_TIMER:
549 blk_add_timer(req);
550 blk_clear_rq_complete(req);
551 break;
552 case BLK_EH_NOT_HANDLED:
553 break;
554 default:
555 printk(KERN_ERR "block: bad eh return: %d\n", ret);
556 break;
557 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600558}
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700559
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700560static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
561 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100562{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700563 struct blk_mq_timeout_data *data = priv;
564
Jens Axboe320ae512013-10-24 09:20:05 +0100565 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700566 return;
Jens Axboe320ae512013-10-24 09:20:05 +0100567
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700568 if (time_after_eq(jiffies, rq->deadline)) {
569 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700570 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700571 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
572 data->next = rq->deadline;
573 data->next_set = 1;
574 }
Jens Axboe320ae512013-10-24 09:20:05 +0100575}
576
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700577static void blk_mq_rq_timer(unsigned long priv)
Jens Axboe320ae512013-10-24 09:20:05 +0100578{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700579 struct request_queue *q = (struct request_queue *)priv;
580 struct blk_mq_timeout_data data = {
581 .next = 0,
582 .next_set = 0,
583 };
Jens Axboe320ae512013-10-24 09:20:05 +0100584 struct blk_mq_hw_ctx *hctx;
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700585 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100586
Jens Axboe484b4062014-05-21 14:01:15 -0600587 queue_for_each_hw_ctx(q, hctx, i) {
588 /*
589 * If not software queues are currently mapped to this
590 * hardware queue, there's nothing to check
591 */
Ming Lei19c66e52014-12-03 19:38:04 +0800592 if (!blk_mq_hw_queue_mapped(hctx))
Jens Axboe484b4062014-05-21 14:01:15 -0600593 continue;
594
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700595 blk_mq_tag_busy_iter(hctx, blk_mq_check_expired, &data);
Jens Axboe484b4062014-05-21 14:01:15 -0600596 }
Jens Axboe320ae512013-10-24 09:20:05 +0100597
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700598 if (data.next_set) {
599 data.next = blk_rq_timeout(round_jiffies_up(data.next));
600 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600601 } else {
602 queue_for_each_hw_ctx(q, hctx, i)
603 blk_mq_tag_idle(hctx);
604 }
Jens Axboe320ae512013-10-24 09:20:05 +0100605}
606
607/*
608 * Reverse check our software queue for entries that we could potentially
609 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
610 * too much time checking for merges.
611 */
612static bool blk_mq_attempt_merge(struct request_queue *q,
613 struct blk_mq_ctx *ctx, struct bio *bio)
614{
615 struct request *rq;
616 int checked = 8;
617
618 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
619 int el_ret;
620
621 if (!checked--)
622 break;
623
624 if (!blk_rq_merge_ok(rq, bio))
625 continue;
626
627 el_ret = blk_try_merge(rq, bio);
628 if (el_ret == ELEVATOR_BACK_MERGE) {
629 if (bio_attempt_back_merge(q, rq, bio)) {
630 ctx->rq_merged++;
631 return true;
632 }
633 break;
634 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
635 if (bio_attempt_front_merge(q, rq, bio)) {
636 ctx->rq_merged++;
637 return true;
638 }
639 break;
640 }
641 }
642
643 return false;
644}
645
Jens Axboe320ae512013-10-24 09:20:05 +0100646/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600647 * Process software queues that have been marked busy, splicing them
648 * to the for-dispatch
649 */
650static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
651{
652 struct blk_mq_ctx *ctx;
653 int i;
654
655 for (i = 0; i < hctx->ctx_map.map_size; i++) {
656 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
657 unsigned int off, bit;
658
659 if (!bm->word)
660 continue;
661
662 bit = 0;
663 off = i * hctx->ctx_map.bits_per_word;
664 do {
665 bit = find_next_bit(&bm->word, bm->depth, bit);
666 if (bit >= bm->depth)
667 break;
668
669 ctx = hctx->ctxs[bit + off];
670 clear_bit(bit, &bm->word);
671 spin_lock(&ctx->lock);
672 list_splice_tail_init(&ctx->rq_list, list);
673 spin_unlock(&ctx->lock);
674
675 bit++;
676 } while (1);
677 }
678}
679
680/*
Jens Axboe320ae512013-10-24 09:20:05 +0100681 * Run this hardware queue, pulling any software queues mapped to it in.
682 * Note that this function currently has various problems around ordering
683 * of IO. In particular, we'd like FIFO behaviour on handling existing
684 * items on the hctx->dispatch list. Ignore that for now.
685 */
686static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
687{
688 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100689 struct request *rq;
690 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600691 LIST_HEAD(driver_list);
692 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600693 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100694
Jens Axboefd1270d2014-04-16 09:23:48 -0600695 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
Jens Axboee4043dc2014-04-09 10:18:23 -0600696
Jens Axboe5d12f902014-03-19 15:25:02 -0600697 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100698 return;
699
700 hctx->run++;
701
702 /*
703 * Touch any software queue that has pending entries.
704 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600705 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100706
707 /*
708 * If we have previous entries on our dispatch list, grab them
709 * and stuff them at the front for more fair dispatch.
710 */
711 if (!list_empty_careful(&hctx->dispatch)) {
712 spin_lock(&hctx->lock);
713 if (!list_empty(&hctx->dispatch))
714 list_splice_init(&hctx->dispatch, &rq_list);
715 spin_unlock(&hctx->lock);
716 }
717
718 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600719 * Start off with dptr being NULL, so we start the first request
720 * immediately, even if we have more pending.
721 */
722 dptr = NULL;
723
724 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100725 * Now process all the entries, sending them to the driver.
726 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600727 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100728 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600729 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100730 int ret;
731
732 rq = list_first_entry(&rq_list, struct request, queuelist);
733 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100734
Jens Axboe74c45052014-10-29 11:14:52 -0600735 bd.rq = rq;
736 bd.list = dptr;
737 bd.last = list_empty(&rq_list);
738
739 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100740 switch (ret) {
741 case BLK_MQ_RQ_QUEUE_OK:
742 queued++;
743 continue;
744 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100745 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200746 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100747 break;
748 default:
749 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100750 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800751 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700752 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100753 break;
754 }
755
756 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
757 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600758
759 /*
760 * We've done the first request. If we have more than 1
761 * left in the list, set dptr to defer issue.
762 */
763 if (!dptr && rq_list.next != rq_list.prev)
764 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100765 }
766
767 if (!queued)
768 hctx->dispatched[0]++;
769 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
770 hctx->dispatched[ilog2(queued) + 1]++;
771
772 /*
773 * Any items that need requeuing? Stuff them into hctx->dispatch,
774 * that is where we will continue on next queue run.
775 */
776 if (!list_empty(&rq_list)) {
777 spin_lock(&hctx->lock);
778 list_splice(&rq_list, &hctx->dispatch);
779 spin_unlock(&hctx->lock);
780 }
781}
782
Jens Axboe506e9312014-05-07 10:26:44 -0600783/*
784 * It'd be great if the workqueue API had a way to pass
785 * in a mask and had some smarts for more clever placement.
786 * For now we just round-robin here, switching for every
787 * BLK_MQ_CPU_WORK_BATCH queued items.
788 */
789static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
790{
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100791 if (hctx->queue->nr_hw_queues == 1)
792 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -0600793
794 if (--hctx->next_cpu_batch <= 0) {
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100795 int cpu = hctx->next_cpu, next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600796
797 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
798 if (next_cpu >= nr_cpu_ids)
799 next_cpu = cpumask_first(hctx->cpumask);
800
801 hctx->next_cpu = next_cpu;
802 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100803
804 return cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600805 }
806
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100807 return hctx->next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -0600808}
809
Jens Axboe320ae512013-10-24 09:20:05 +0100810void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
811{
Ming Lei19c66e52014-12-03 19:38:04 +0800812 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state) ||
813 !blk_mq_hw_queue_mapped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +0100814 return;
815
Paolo Bonzini398205b2014-11-07 23:03:59 +0100816 if (!async) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100817 int cpu = get_cpu();
818 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100819 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100820 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100821 return;
822 }
823
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100824 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100825 }
826
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100827 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
828 &hctx->run_work, 0);
Jens Axboe320ae512013-10-24 09:20:05 +0100829}
830
831void blk_mq_run_queues(struct request_queue *q, bool async)
832{
833 struct blk_mq_hw_ctx *hctx;
834 int i;
835
836 queue_for_each_hw_ctx(q, hctx, i) {
837 if ((!blk_mq_hctx_has_pending(hctx) &&
838 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600839 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100840 continue;
841
842 blk_mq_run_hw_queue(hctx, async);
843 }
844}
845EXPORT_SYMBOL(blk_mq_run_queues);
846
847void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
848{
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600849 cancel_delayed_work(&hctx->run_work);
850 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100851 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
852}
853EXPORT_SYMBOL(blk_mq_stop_hw_queue);
854
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100855void blk_mq_stop_hw_queues(struct request_queue *q)
856{
857 struct blk_mq_hw_ctx *hctx;
858 int i;
859
860 queue_for_each_hw_ctx(q, hctx, i)
861 blk_mq_stop_hw_queue(hctx);
862}
863EXPORT_SYMBOL(blk_mq_stop_hw_queues);
864
Jens Axboe320ae512013-10-24 09:20:05 +0100865void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
866{
867 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600868
Jens Axboe0ffbce82014-06-25 08:22:34 -0600869 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100870}
871EXPORT_SYMBOL(blk_mq_start_hw_queue);
872
Christoph Hellwig2f268552014-04-16 09:44:56 +0200873void blk_mq_start_hw_queues(struct request_queue *q)
874{
875 struct blk_mq_hw_ctx *hctx;
876 int i;
877
878 queue_for_each_hw_ctx(q, hctx, i)
879 blk_mq_start_hw_queue(hctx);
880}
881EXPORT_SYMBOL(blk_mq_start_hw_queues);
882
883
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200884void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100885{
886 struct blk_mq_hw_ctx *hctx;
887 int i;
888
889 queue_for_each_hw_ctx(q, hctx, i) {
890 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
891 continue;
892
893 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200894 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100895 }
896}
897EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
898
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600899static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100900{
901 struct blk_mq_hw_ctx *hctx;
902
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600903 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600904
Jens Axboe320ae512013-10-24 09:20:05 +0100905 __blk_mq_run_hw_queue(hctx);
906}
907
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600908static void blk_mq_delay_work_fn(struct work_struct *work)
909{
910 struct blk_mq_hw_ctx *hctx;
911
912 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
913
914 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
915 __blk_mq_run_hw_queue(hctx);
916}
917
918void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
919{
Ming Lei19c66e52014-12-03 19:38:04 +0800920 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
921 return;
922
Christoph Hellwigb657d7e2014-11-24 09:27:23 +0100923 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
924 &hctx->delay_work, msecs_to_jiffies(msecs));
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600925}
926EXPORT_SYMBOL(blk_mq_delay_queue);
927
Jens Axboe320ae512013-10-24 09:20:05 +0100928static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800929 struct request *rq, bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +0100930{
931 struct blk_mq_ctx *ctx = rq->mq_ctx;
932
Jens Axboe01b983c2013-11-19 18:59:10 -0700933 trace_block_rq_insert(hctx->queue, rq);
934
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800935 if (at_head)
936 list_add(&rq->queuelist, &ctx->rq_list);
937 else
938 list_add_tail(&rq->queuelist, &ctx->rq_list);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600939
Jens Axboe320ae512013-10-24 09:20:05 +0100940 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100941}
942
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600943void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
944 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100945{
946 struct request_queue *q = rq->q;
947 struct blk_mq_hw_ctx *hctx;
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600948 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100949
950 current_ctx = blk_mq_get_ctx(q);
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600951 if (!cpu_online(ctx->cpu))
952 rq->mq_ctx = ctx = current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100953
Jens Axboe320ae512013-10-24 09:20:05 +0100954 hctx = q->mq_ops->map_queue(q, ctx->cpu);
955
Christoph Hellwiga57a1782014-09-16 14:44:07 -0700956 spin_lock(&ctx->lock);
957 __blk_mq_insert_request(hctx, rq, at_head);
958 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100959
Jens Axboe320ae512013-10-24 09:20:05 +0100960 if (run_queue)
961 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600962
963 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100964}
965
966static void blk_mq_insert_requests(struct request_queue *q,
967 struct blk_mq_ctx *ctx,
968 struct list_head *list,
969 int depth,
970 bool from_schedule)
971
972{
973 struct blk_mq_hw_ctx *hctx;
974 struct blk_mq_ctx *current_ctx;
975
976 trace_block_unplug(q, depth, !from_schedule);
977
978 current_ctx = blk_mq_get_ctx(q);
979
980 if (!cpu_online(ctx->cpu))
981 ctx = current_ctx;
982 hctx = q->mq_ops->map_queue(q, ctx->cpu);
983
984 /*
985 * preemption doesn't flush plug list, so it's possible ctx->cpu is
986 * offline now
987 */
988 spin_lock(&ctx->lock);
989 while (!list_empty(list)) {
990 struct request *rq;
991
992 rq = list_first_entry(list, struct request, queuelist);
993 list_del_init(&rq->queuelist);
994 rq->mq_ctx = ctx;
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800995 __blk_mq_insert_request(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100996 }
997 spin_unlock(&ctx->lock);
998
Jens Axboe320ae512013-10-24 09:20:05 +0100999 blk_mq_run_hw_queue(hctx, from_schedule);
Jens Axboee4043dc2014-04-09 10:18:23 -06001000 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001001}
1002
1003static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1004{
1005 struct request *rqa = container_of(a, struct request, queuelist);
1006 struct request *rqb = container_of(b, struct request, queuelist);
1007
1008 return !(rqa->mq_ctx < rqb->mq_ctx ||
1009 (rqa->mq_ctx == rqb->mq_ctx &&
1010 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1011}
1012
1013void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1014{
1015 struct blk_mq_ctx *this_ctx;
1016 struct request_queue *this_q;
1017 struct request *rq;
1018 LIST_HEAD(list);
1019 LIST_HEAD(ctx_list);
1020 unsigned int depth;
1021
1022 list_splice_init(&plug->mq_list, &list);
1023
1024 list_sort(NULL, &list, plug_ctx_cmp);
1025
1026 this_q = NULL;
1027 this_ctx = NULL;
1028 depth = 0;
1029
1030 while (!list_empty(&list)) {
1031 rq = list_entry_rq(list.next);
1032 list_del_init(&rq->queuelist);
1033 BUG_ON(!rq->q);
1034 if (rq->mq_ctx != this_ctx) {
1035 if (this_ctx) {
1036 blk_mq_insert_requests(this_q, this_ctx,
1037 &ctx_list, depth,
1038 from_schedule);
1039 }
1040
1041 this_ctx = rq->mq_ctx;
1042 this_q = rq->q;
1043 depth = 0;
1044 }
1045
1046 depth++;
1047 list_add_tail(&rq->queuelist, &ctx_list);
1048 }
1049
1050 /*
1051 * If 'this_ctx' is set, we know we have entries to complete
1052 * on 'ctx_list'. Do those.
1053 */
1054 if (this_ctx) {
1055 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1056 from_schedule);
1057 }
1058}
1059
1060static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1061{
1062 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001063
Jens Axboe3ee32372014-06-09 09:36:53 -06001064 if (blk_do_io_stat(rq))
Jens Axboe4b570522014-05-29 11:00:11 -06001065 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001066}
1067
Jens Axboe274a5842014-08-15 12:44:08 -06001068static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1069{
1070 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1071 !blk_queue_nomerges(hctx->queue);
1072}
1073
Jens Axboe07068d52014-05-22 10:40:51 -06001074static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1075 struct blk_mq_ctx *ctx,
1076 struct request *rq, struct bio *bio)
1077{
Jens Axboe274a5842014-08-15 12:44:08 -06001078 if (!hctx_allow_merges(hctx)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001079 blk_mq_bio_to_request(rq, bio);
1080 spin_lock(&ctx->lock);
1081insert_rq:
1082 __blk_mq_insert_request(hctx, rq, false);
1083 spin_unlock(&ctx->lock);
1084 return false;
1085 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001086 struct request_queue *q = hctx->queue;
1087
Jens Axboe07068d52014-05-22 10:40:51 -06001088 spin_lock(&ctx->lock);
1089 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1090 blk_mq_bio_to_request(rq, bio);
1091 goto insert_rq;
1092 }
1093
1094 spin_unlock(&ctx->lock);
1095 __blk_mq_free_request(hctx, ctx, rq);
1096 return true;
1097 }
1098}
1099
1100struct blk_map_ctx {
1101 struct blk_mq_hw_ctx *hctx;
1102 struct blk_mq_ctx *ctx;
1103};
1104
1105static struct request *blk_mq_map_request(struct request_queue *q,
1106 struct bio *bio,
1107 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001108{
1109 struct blk_mq_hw_ctx *hctx;
1110 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001111 struct request *rq;
Jens Axboe07068d52014-05-22 10:40:51 -06001112 int rw = bio_data_dir(bio);
Ming Leicb96a42c2014-06-01 00:43:37 +08001113 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001114
Jens Axboe07068d52014-05-22 10:40:51 -06001115 if (unlikely(blk_mq_queue_enter(q))) {
Nicholas Bellinger14ec77f2014-02-07 13:45:39 -07001116 bio_endio(bio, -EIO);
Jens Axboe07068d52014-05-22 10:40:51 -06001117 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001118 }
1119
1120 ctx = blk_mq_get_ctx(q);
1121 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1122
Jens Axboe07068d52014-05-22 10:40:51 -06001123 if (rw_is_sync(bio->bi_rw))
Shaohua Li27fbf4e82014-02-19 20:20:21 +08001124 rw |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001125
Jens Axboe320ae512013-10-24 09:20:05 +01001126 trace_block_getrq(q, bio, rw);
Ming Leicb96a42c2014-06-01 00:43:37 +08001127 blk_mq_set_alloc_data(&alloc_data, q, GFP_ATOMIC, false, ctx,
1128 hctx);
1129 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001130 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001131 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001132 blk_mq_put_ctx(ctx);
1133 trace_block_sleeprq(q, bio, rw);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001134
1135 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001136 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a42c2014-06-01 00:43:37 +08001137 blk_mq_set_alloc_data(&alloc_data, q,
1138 __GFP_WAIT|GFP_ATOMIC, false, ctx, hctx);
1139 rq = __blk_mq_alloc_request(&alloc_data, rw);
1140 ctx = alloc_data.ctx;
1141 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001142 }
1143
1144 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001145 data->hctx = hctx;
1146 data->ctx = ctx;
1147 return rq;
1148}
1149
1150/*
1151 * Multiple hardware queue variant. This will not use per-process plugs,
1152 * but will attempt to bypass the hctx queueing if we can go straight to
1153 * hardware for SYNC IO.
1154 */
1155static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1156{
1157 const int is_sync = rw_is_sync(bio->bi_rw);
1158 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1159 struct blk_map_ctx data;
1160 struct request *rq;
1161
1162 blk_queue_bounce(q, &bio);
1163
1164 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1165 bio_endio(bio, -EIO);
1166 return;
1167 }
1168
1169 rq = blk_mq_map_request(q, bio, &data);
1170 if (unlikely(!rq))
1171 return;
1172
1173 if (unlikely(is_flush_fua)) {
1174 blk_mq_bio_to_request(rq, bio);
1175 blk_insert_flush(rq);
1176 goto run_queue;
1177 }
1178
Jens Axboee167dfb2014-10-29 11:18:26 -06001179 /*
1180 * If the driver supports defer issued based on 'last', then
1181 * queue it up like normal since we can potentially save some
1182 * CPU this way.
1183 */
1184 if (is_sync && !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
Jens Axboe74c45052014-10-29 11:14:52 -06001185 struct blk_mq_queue_data bd = {
1186 .rq = rq,
1187 .list = NULL,
1188 .last = 1
1189 };
Jens Axboe07068d52014-05-22 10:40:51 -06001190 int ret;
1191
1192 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001193
1194 /*
1195 * For OK queue, we are done. For error, kill it. Any other
1196 * error (busy), just add it to our list as we previously
1197 * would have done
1198 */
Jens Axboe74c45052014-10-29 11:14:52 -06001199 ret = q->mq_ops->queue_rq(data.hctx, &bd);
Jens Axboe07068d52014-05-22 10:40:51 -06001200 if (ret == BLK_MQ_RQ_QUEUE_OK)
1201 goto done;
1202 else {
1203 __blk_mq_requeue_request(rq);
1204
1205 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1206 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -07001207 blk_mq_end_request(rq, rq->errors);
Jens Axboe07068d52014-05-22 10:40:51 -06001208 goto done;
1209 }
1210 }
1211 }
1212
1213 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1214 /*
1215 * For a SYNC request, send it to the hardware immediately. For
1216 * an ASYNC request, just ensure that we run it later on. The
1217 * latter allows for merging opportunities and more efficient
1218 * dispatching.
1219 */
1220run_queue:
1221 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1222 }
1223done:
1224 blk_mq_put_ctx(data.ctx);
1225}
1226
1227/*
1228 * Single hardware queue variant. This will attempt to use any per-process
1229 * plug for merging and IO deferral.
1230 */
1231static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1232{
1233 const int is_sync = rw_is_sync(bio->bi_rw);
1234 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1235 unsigned int use_plug, request_count = 0;
1236 struct blk_map_ctx data;
1237 struct request *rq;
1238
1239 /*
1240 * If we have multiple hardware queues, just go directly to
1241 * one of those for sync IO.
1242 */
1243 use_plug = !is_flush_fua && !is_sync;
1244
1245 blk_queue_bounce(q, &bio);
1246
1247 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1248 bio_endio(bio, -EIO);
1249 return;
1250 }
1251
1252 if (use_plug && !blk_queue_nomerges(q) &&
1253 blk_attempt_plug_merge(q, bio, &request_count))
1254 return;
1255
1256 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001257 if (unlikely(!rq))
1258 return;
Jens Axboe320ae512013-10-24 09:20:05 +01001259
1260 if (unlikely(is_flush_fua)) {
1261 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001262 blk_insert_flush(rq);
1263 goto run_queue;
1264 }
1265
1266 /*
1267 * A task plug currently exists. Since this is completely lockless,
1268 * utilize that to temporarily store requests until the task is
1269 * either done or scheduled away.
1270 */
1271 if (use_plug) {
1272 struct blk_plug *plug = current->plug;
1273
1274 if (plug) {
1275 blk_mq_bio_to_request(rq, bio);
Shaohua Li92f399c2013-10-29 12:01:03 -06001276 if (list_empty(&plug->mq_list))
Jens Axboe320ae512013-10-24 09:20:05 +01001277 trace_block_plug(q);
1278 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1279 blk_flush_plug_list(plug, false);
1280 trace_block_plug(q);
1281 }
1282 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe07068d52014-05-22 10:40:51 -06001283 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001284 return;
1285 }
1286 }
1287
Jens Axboe07068d52014-05-22 10:40:51 -06001288 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1289 /*
1290 * For a SYNC request, send it to the hardware immediately. For
1291 * an ASYNC request, just ensure that we run it later on. The
1292 * latter allows for merging opportunities and more efficient
1293 * dispatching.
1294 */
1295run_queue:
1296 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001297 }
1298
Jens Axboe07068d52014-05-22 10:40:51 -06001299 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001300}
1301
1302/*
1303 * Default mapping to a software queue, since we use one per CPU.
1304 */
1305struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1306{
1307 return q->queue_hw_ctx[q->mq_map[cpu]];
1308}
1309EXPORT_SYMBOL(blk_mq_map_queue);
1310
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001311static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1312 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001313{
1314 struct page *page;
1315
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001316 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001317 int i;
1318
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001319 for (i = 0; i < tags->nr_tags; i++) {
1320 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001321 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001322 set->ops->exit_request(set->driver_data, tags->rqs[i],
1323 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001324 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001325 }
1326 }
1327
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001328 while (!list_empty(&tags->page_list)) {
1329 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001330 list_del_init(&page->lru);
Jens Axboe320ae512013-10-24 09:20:05 +01001331 __free_pages(page, page->private);
1332 }
1333
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001334 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001335
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001336 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001337}
1338
1339static size_t order_to_size(unsigned int order)
1340{
Ming Lei4ca08502014-04-19 18:00:18 +08001341 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001342}
1343
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001344static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1345 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001346{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001347 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001348 unsigned int i, j, entries_per_page, max_order = 4;
1349 size_t rq_size, left;
1350
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001351 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1352 set->numa_node);
1353 if (!tags)
1354 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001355
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001356 INIT_LIST_HEAD(&tags->page_list);
1357
Jens Axboea5164402014-09-10 09:02:03 -06001358 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1359 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1360 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001361 if (!tags->rqs) {
1362 blk_mq_free_tags(tags);
1363 return NULL;
1364 }
Jens Axboe320ae512013-10-24 09:20:05 +01001365
1366 /*
1367 * rq_size is the size of the request plus driver payload, rounded
1368 * to the cacheline size
1369 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001370 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001371 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001372 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001373
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001374 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001375 int this_order = max_order;
1376 struct page *page;
1377 int to_do;
1378 void *p;
1379
1380 while (left < order_to_size(this_order - 1) && this_order)
1381 this_order--;
1382
1383 do {
Jens Axboea5164402014-09-10 09:02:03 -06001384 page = alloc_pages_node(set->numa_node,
1385 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
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;
David Hildenbrand683d0e12014-09-18 11:04:31 +02001407 tags->rqs[i]->atomic_flags = 0;
1408 tags->rqs[i]->cmd_flags = 0;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001409 if (set->ops->init_request) {
1410 if (set->ops->init_request(set->driver_data,
1411 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001412 set->numa_node)) {
1413 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001414 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001415 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001416 }
1417
Jens Axboe320ae512013-10-24 09:20:05 +01001418 p += rq_size;
1419 i++;
1420 }
1421 }
1422
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001423 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001424
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001425fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001426 blk_mq_free_rq_map(set, tags, hctx_idx);
1427 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001428}
1429
Jens Axboe1429d7c2014-05-19 09:23:55 -06001430static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1431{
1432 kfree(bitmap->map);
1433}
1434
1435static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1436{
1437 unsigned int bpw = 8, total, num_maps, i;
1438
1439 bitmap->bits_per_word = bpw;
1440
1441 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1442 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1443 GFP_KERNEL, node);
1444 if (!bitmap->map)
1445 return -ENOMEM;
1446
1447 bitmap->map_size = num_maps;
1448
1449 total = nr_cpu_ids;
1450 for (i = 0; i < num_maps; i++) {
1451 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1452 total -= bitmap->map[i].depth;
1453 }
1454
1455 return 0;
1456}
1457
Jens Axboe484b4062014-05-21 14:01:15 -06001458static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1459{
1460 struct request_queue *q = hctx->queue;
1461 struct blk_mq_ctx *ctx;
1462 LIST_HEAD(tmp);
1463
1464 /*
1465 * Move ctx entries to new CPU, if this one is going away.
1466 */
1467 ctx = __blk_mq_get_ctx(q, cpu);
1468
1469 spin_lock(&ctx->lock);
1470 if (!list_empty(&ctx->rq_list)) {
1471 list_splice_init(&ctx->rq_list, &tmp);
1472 blk_mq_hctx_clear_pending(hctx, ctx);
1473 }
1474 spin_unlock(&ctx->lock);
1475
1476 if (list_empty(&tmp))
1477 return NOTIFY_OK;
1478
1479 ctx = blk_mq_get_ctx(q);
1480 spin_lock(&ctx->lock);
1481
1482 while (!list_empty(&tmp)) {
1483 struct request *rq;
1484
1485 rq = list_first_entry(&tmp, struct request, queuelist);
1486 rq->mq_ctx = ctx;
1487 list_move_tail(&rq->queuelist, &ctx->rq_list);
1488 }
1489
1490 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1491 blk_mq_hctx_mark_pending(hctx, ctx);
1492
1493 spin_unlock(&ctx->lock);
1494
1495 blk_mq_run_hw_queue(hctx, true);
1496 blk_mq_put_ctx(ctx);
1497 return NOTIFY_OK;
1498}
1499
1500static int blk_mq_hctx_cpu_online(struct blk_mq_hw_ctx *hctx, int cpu)
1501{
1502 struct request_queue *q = hctx->queue;
1503 struct blk_mq_tag_set *set = q->tag_set;
1504
1505 if (set->tags[hctx->queue_num])
1506 return NOTIFY_OK;
1507
1508 set->tags[hctx->queue_num] = blk_mq_init_rq_map(set, hctx->queue_num);
1509 if (!set->tags[hctx->queue_num])
1510 return NOTIFY_STOP;
1511
1512 hctx->tags = set->tags[hctx->queue_num];
1513 return NOTIFY_OK;
1514}
1515
1516static int blk_mq_hctx_notify(void *data, unsigned long action,
1517 unsigned int cpu)
1518{
1519 struct blk_mq_hw_ctx *hctx = data;
1520
1521 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1522 return blk_mq_hctx_cpu_offline(hctx, cpu);
1523 else if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
1524 return blk_mq_hctx_cpu_online(hctx, cpu);
1525
1526 return NOTIFY_OK;
1527}
1528
Ming Lei08e98fc2014-09-25 23:23:38 +08001529static void blk_mq_exit_hctx(struct request_queue *q,
1530 struct blk_mq_tag_set *set,
1531 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1532{
Ming Leif70ced02014-09-25 23:23:47 +08001533 unsigned flush_start_tag = set->queue_depth;
1534
Ming Lei08e98fc2014-09-25 23:23:38 +08001535 blk_mq_tag_idle(hctx);
1536
Ming Leif70ced02014-09-25 23:23:47 +08001537 if (set->ops->exit_request)
1538 set->ops->exit_request(set->driver_data,
1539 hctx->fq->flush_rq, hctx_idx,
1540 flush_start_tag + hctx_idx);
1541
Ming Lei08e98fc2014-09-25 23:23:38 +08001542 if (set->ops->exit_hctx)
1543 set->ops->exit_hctx(hctx, hctx_idx);
1544
1545 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
Ming Leif70ced02014-09-25 23:23:47 +08001546 blk_free_flush_queue(hctx->fq);
Ming Lei08e98fc2014-09-25 23:23:38 +08001547 kfree(hctx->ctxs);
1548 blk_mq_free_bitmap(&hctx->ctx_map);
1549}
1550
Ming Lei624dbe42014-05-27 23:35:13 +08001551static void blk_mq_exit_hw_queues(struct request_queue *q,
1552 struct blk_mq_tag_set *set, int nr_queue)
1553{
1554 struct blk_mq_hw_ctx *hctx;
1555 unsigned int i;
1556
1557 queue_for_each_hw_ctx(q, hctx, i) {
1558 if (i == nr_queue)
1559 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001560 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001561 }
Ming Lei624dbe42014-05-27 23:35:13 +08001562}
1563
1564static void blk_mq_free_hw_queues(struct request_queue *q,
1565 struct blk_mq_tag_set *set)
1566{
1567 struct blk_mq_hw_ctx *hctx;
1568 unsigned int i;
1569
1570 queue_for_each_hw_ctx(q, hctx, i) {
1571 free_cpumask_var(hctx->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001572 kfree(hctx);
Ming Lei624dbe42014-05-27 23:35:13 +08001573 }
1574}
1575
Ming Lei08e98fc2014-09-25 23:23:38 +08001576static int blk_mq_init_hctx(struct request_queue *q,
1577 struct blk_mq_tag_set *set,
1578 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1579{
1580 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001581 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001582
1583 node = hctx->numa_node;
1584 if (node == NUMA_NO_NODE)
1585 node = hctx->numa_node = set->numa_node;
1586
1587 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1588 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1589 spin_lock_init(&hctx->lock);
1590 INIT_LIST_HEAD(&hctx->dispatch);
1591 hctx->queue = q;
1592 hctx->queue_num = hctx_idx;
1593 hctx->flags = set->flags;
1594 hctx->cmd_size = set->cmd_size;
1595
1596 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1597 blk_mq_hctx_notify, hctx);
1598 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1599
1600 hctx->tags = set->tags[hctx_idx];
1601
1602 /*
1603 * Allocate space for all possible cpus to avoid allocation at
1604 * runtime
1605 */
1606 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1607 GFP_KERNEL, node);
1608 if (!hctx->ctxs)
1609 goto unregister_cpu_notifier;
1610
1611 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
1612 goto free_ctxs;
1613
1614 hctx->nr_ctx = 0;
1615
1616 if (set->ops->init_hctx &&
1617 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1618 goto free_bitmap;
1619
Ming Leif70ced02014-09-25 23:23:47 +08001620 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1621 if (!hctx->fq)
1622 goto exit_hctx;
1623
1624 if (set->ops->init_request &&
1625 set->ops->init_request(set->driver_data,
1626 hctx->fq->flush_rq, hctx_idx,
1627 flush_start_tag + hctx_idx, node))
1628 goto free_fq;
1629
Ming Lei08e98fc2014-09-25 23:23:38 +08001630 return 0;
1631
Ming Leif70ced02014-09-25 23:23:47 +08001632 free_fq:
1633 kfree(hctx->fq);
1634 exit_hctx:
1635 if (set->ops->exit_hctx)
1636 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001637 free_bitmap:
1638 blk_mq_free_bitmap(&hctx->ctx_map);
1639 free_ctxs:
1640 kfree(hctx->ctxs);
1641 unregister_cpu_notifier:
1642 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1643
1644 return -1;
1645}
1646
Jens Axboe320ae512013-10-24 09:20:05 +01001647static int blk_mq_init_hw_queues(struct request_queue *q,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001648 struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001649{
1650 struct blk_mq_hw_ctx *hctx;
Ming Lei624dbe42014-05-27 23:35:13 +08001651 unsigned int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001652
1653 /*
1654 * Initialize hardware queues
1655 */
1656 queue_for_each_hw_ctx(q, hctx, i) {
Ming Lei08e98fc2014-09-25 23:23:38 +08001657 if (blk_mq_init_hctx(q, set, hctx, i))
Jens Axboe320ae512013-10-24 09:20:05 +01001658 break;
1659 }
1660
1661 if (i == q->nr_hw_queues)
1662 return 0;
1663
1664 /*
1665 * Init failed
1666 */
Ming Lei624dbe42014-05-27 23:35:13 +08001667 blk_mq_exit_hw_queues(q, set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001668
1669 return 1;
1670}
1671
1672static void blk_mq_init_cpu_queues(struct request_queue *q,
1673 unsigned int nr_hw_queues)
1674{
1675 unsigned int i;
1676
1677 for_each_possible_cpu(i) {
1678 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1679 struct blk_mq_hw_ctx *hctx;
1680
1681 memset(__ctx, 0, sizeof(*__ctx));
1682 __ctx->cpu = i;
1683 spin_lock_init(&__ctx->lock);
1684 INIT_LIST_HEAD(&__ctx->rq_list);
1685 __ctx->queue = q;
1686
1687 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001688 if (!cpu_online(i))
1689 continue;
1690
Jens Axboee4043dc2014-04-09 10:18:23 -06001691 hctx = q->mq_ops->map_queue(q, i);
1692 cpumask_set_cpu(i, hctx->cpumask);
1693 hctx->nr_ctx++;
1694
Jens Axboe320ae512013-10-24 09:20:05 +01001695 /*
1696 * Set local node, IFF we have more than one hw queue. If
1697 * not, we remain on the home node of the device
1698 */
1699 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1700 hctx->numa_node = cpu_to_node(i);
1701 }
1702}
1703
1704static void blk_mq_map_swqueue(struct request_queue *q)
1705{
1706 unsigned int i;
1707 struct blk_mq_hw_ctx *hctx;
1708 struct blk_mq_ctx *ctx;
1709
1710 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001711 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001712 hctx->nr_ctx = 0;
1713 }
1714
1715 /*
1716 * Map software to hardware queues
1717 */
1718 queue_for_each_ctx(q, ctx, i) {
1719 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboee4043dc2014-04-09 10:18:23 -06001720 if (!cpu_online(i))
1721 continue;
1722
Jens Axboe320ae512013-10-24 09:20:05 +01001723 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001724 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001725 ctx->index_hw = hctx->nr_ctx;
1726 hctx->ctxs[hctx->nr_ctx++] = ctx;
1727 }
Jens Axboe506e9312014-05-07 10:26:44 -06001728
1729 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001730 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001731 * If no software queues are mapped to this hardware queue,
1732 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001733 */
1734 if (!hctx->nr_ctx) {
1735 struct blk_mq_tag_set *set = q->tag_set;
1736
1737 if (set->tags[i]) {
1738 blk_mq_free_rq_map(set, set->tags[i], i);
1739 set->tags[i] = NULL;
1740 hctx->tags = NULL;
1741 }
1742 continue;
1743 }
1744
1745 /*
1746 * Initialize batch roundrobin counts
1747 */
Jens Axboe506e9312014-05-07 10:26:44 -06001748 hctx->next_cpu = cpumask_first(hctx->cpumask);
1749 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1750 }
Jens Axboe320ae512013-10-24 09:20:05 +01001751}
1752
Jens Axboe0d2602c2014-05-13 15:10:52 -06001753static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1754{
1755 struct blk_mq_hw_ctx *hctx;
1756 struct request_queue *q;
1757 bool shared;
1758 int i;
1759
1760 if (set->tag_list.next == set->tag_list.prev)
1761 shared = false;
1762 else
1763 shared = true;
1764
1765 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1766 blk_mq_freeze_queue(q);
1767
1768 queue_for_each_hw_ctx(q, hctx, i) {
1769 if (shared)
1770 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1771 else
1772 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1773 }
1774 blk_mq_unfreeze_queue(q);
1775 }
1776}
1777
1778static void blk_mq_del_queue_tag_set(struct request_queue *q)
1779{
1780 struct blk_mq_tag_set *set = q->tag_set;
1781
Jens Axboe0d2602c2014-05-13 15:10:52 -06001782 mutex_lock(&set->tag_list_lock);
1783 list_del_init(&q->tag_set_list);
1784 blk_mq_update_tag_set_depth(set);
1785 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001786}
1787
1788static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1789 struct request_queue *q)
1790{
1791 q->tag_set = set;
1792
1793 mutex_lock(&set->tag_list_lock);
1794 list_add_tail(&q->tag_set_list, &set->tag_list);
1795 blk_mq_update_tag_set_depth(set);
1796 mutex_unlock(&set->tag_list_lock);
1797}
1798
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001799struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001800{
1801 struct blk_mq_hw_ctx **hctxs;
Ming Leie6cdb092014-06-03 11:24:06 +08001802 struct blk_mq_ctx __percpu *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001803 struct request_queue *q;
Jens Axboef14bbe72014-05-27 12:06:53 -06001804 unsigned int *map;
Jens Axboe320ae512013-10-24 09:20:05 +01001805 int i;
1806
Jens Axboe320ae512013-10-24 09:20:05 +01001807 ctx = alloc_percpu(struct blk_mq_ctx);
1808 if (!ctx)
1809 return ERR_PTR(-ENOMEM);
1810
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001811 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1812 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001813
1814 if (!hctxs)
1815 goto err_percpu;
1816
Jens Axboef14bbe72014-05-27 12:06:53 -06001817 map = blk_mq_make_queue_map(set);
1818 if (!map)
1819 goto err_map;
1820
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001821 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboef14bbe72014-05-27 12:06:53 -06001822 int node = blk_mq_hw_queue_to_node(map, i);
1823
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001824 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1825 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001826 if (!hctxs[i])
1827 goto err_hctxs;
1828
Jens Axboea86073e2014-10-13 15:41:54 -06001829 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
1830 node))
Jens Axboee4043dc2014-04-09 10:18:23 -06001831 goto err_hctxs;
1832
Jens Axboe0d2602c2014-05-13 15:10:52 -06001833 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001834 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001835 hctxs[i]->queue_num = i;
1836 }
1837
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001838 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001839 if (!q)
1840 goto err_hctxs;
1841
Tejun Heo17497ac2014-09-24 13:31:50 -04001842 /*
1843 * Init percpu_ref in atomic mode so that it's faster to shutdown.
1844 * See blk_register_queue() for details.
1845 */
Tejun Heoa34375e2014-09-08 09:51:30 +09001846 if (percpu_ref_init(&q->mq_usage_counter, blk_mq_usage_counter_release,
Tejun Heo17497ac2014-09-24 13:31:50 -04001847 PERCPU_REF_INIT_ATOMIC, GFP_KERNEL))
Ming Lei3d2936f2014-05-27 23:35:14 +08001848 goto err_map;
1849
Jens Axboe320ae512013-10-24 09:20:05 +01001850 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1851 blk_queue_rq_timeout(q, 30000);
1852
1853 q->nr_queues = nr_cpu_ids;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001854 q->nr_hw_queues = set->nr_hw_queues;
Jens Axboef14bbe72014-05-27 12:06:53 -06001855 q->mq_map = map;
Jens Axboe320ae512013-10-24 09:20:05 +01001856
1857 q->queue_ctx = ctx;
1858 q->queue_hw_ctx = hctxs;
1859
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001860 q->mq_ops = set->ops;
Jens Axboe94eddfb2013-11-19 09:25:07 -07001861 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001862
Jens Axboe05f1dd52014-05-29 09:53:32 -06001863 if (!(set->flags & BLK_MQ_F_SG_MERGE))
1864 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
1865
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001866 q->sg_reserved_size = INT_MAX;
1867
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001868 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
1869 INIT_LIST_HEAD(&q->requeue_list);
1870 spin_lock_init(&q->requeue_lock);
1871
Jens Axboe07068d52014-05-22 10:40:51 -06001872 if (q->nr_hw_queues > 1)
1873 blk_queue_make_request(q, blk_mq_make_request);
1874 else
1875 blk_queue_make_request(q, blk_sq_make_request);
1876
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001877 if (set->timeout)
1878 blk_queue_rq_timeout(q, set->timeout);
Jens Axboe320ae512013-10-24 09:20:05 +01001879
Jens Axboeeba71762014-05-20 15:17:27 -06001880 /*
1881 * Do this after blk_queue_make_request() overrides it...
1882 */
1883 q->nr_requests = set->queue_depth;
1884
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001885 if (set->ops->complete)
1886 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001887
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001888 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001889
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001890 if (blk_mq_init_hw_queues(q, set))
Ming Lei1bcb1ea2014-09-25 23:23:39 +08001891 goto err_hw;
Christoph Hellwig18741982014-02-10 09:29:00 -07001892
Jens Axboe320ae512013-10-24 09:20:05 +01001893 mutex_lock(&all_q_mutex);
1894 list_add_tail(&q->all_q_node, &all_q_list);
1895 mutex_unlock(&all_q_mutex);
1896
Jens Axboe0d2602c2014-05-13 15:10:52 -06001897 blk_mq_add_queue_tag_set(set, q);
1898
Jens Axboe484b4062014-05-21 14:01:15 -06001899 blk_mq_map_swqueue(q);
1900
Jens Axboe320ae512013-10-24 09:20:05 +01001901 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07001902
Jens Axboe320ae512013-10-24 09:20:05 +01001903err_hw:
Jens Axboe320ae512013-10-24 09:20:05 +01001904 blk_cleanup_queue(q);
1905err_hctxs:
Jens Axboef14bbe72014-05-27 12:06:53 -06001906 kfree(map);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001907 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboe320ae512013-10-24 09:20:05 +01001908 if (!hctxs[i])
1909 break;
Jens Axboee4043dc2014-04-09 10:18:23 -06001910 free_cpumask_var(hctxs[i]->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001911 kfree(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001912 }
Jens Axboef14bbe72014-05-27 12:06:53 -06001913err_map:
Jens Axboe320ae512013-10-24 09:20:05 +01001914 kfree(hctxs);
1915err_percpu:
1916 free_percpu(ctx);
1917 return ERR_PTR(-ENOMEM);
1918}
1919EXPORT_SYMBOL(blk_mq_init_queue);
1920
1921void blk_mq_free_queue(struct request_queue *q)
1922{
Ming Lei624dbe42014-05-27 23:35:13 +08001923 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001924
Jens Axboe0d2602c2014-05-13 15:10:52 -06001925 blk_mq_del_queue_tag_set(q);
1926
Ming Lei624dbe42014-05-27 23:35:13 +08001927 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1928 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01001929
Tejun Heoadd703f2014-07-01 10:34:38 -06001930 percpu_ref_exit(&q->mq_usage_counter);
Ming Lei3d2936f2014-05-27 23:35:14 +08001931
Jens Axboe320ae512013-10-24 09:20:05 +01001932 free_percpu(q->queue_ctx);
1933 kfree(q->queue_hw_ctx);
1934 kfree(q->mq_map);
1935
1936 q->queue_ctx = NULL;
1937 q->queue_hw_ctx = NULL;
1938 q->mq_map = NULL;
1939
1940 mutex_lock(&all_q_mutex);
1941 list_del_init(&q->all_q_node);
1942 mutex_unlock(&all_q_mutex);
1943}
Jens Axboe320ae512013-10-24 09:20:05 +01001944
1945/* Basically redo blk_mq_init_queue with queue frozen */
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001946static void blk_mq_queue_reinit(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01001947{
1948 blk_mq_freeze_queue(q);
1949
Jens Axboe67aec142014-05-30 08:25:36 -06001950 blk_mq_sysfs_unregister(q);
1951
Jens Axboe320ae512013-10-24 09:20:05 +01001952 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1953
1954 /*
1955 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1956 * we should change hctx numa_node according to new topology (this
1957 * involves free and re-allocate memory, worthy doing?)
1958 */
1959
1960 blk_mq_map_swqueue(q);
1961
Jens Axboe67aec142014-05-30 08:25:36 -06001962 blk_mq_sysfs_register(q);
1963
Jens Axboe320ae512013-10-24 09:20:05 +01001964 blk_mq_unfreeze_queue(q);
1965}
1966
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001967static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1968 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01001969{
1970 struct request_queue *q;
1971
1972 /*
Jens Axboe9fccfed2014-05-08 14:50:19 -06001973 * Before new mappings are established, hotadded cpu might already
1974 * start handling requests. This doesn't break anything as we map
1975 * offline CPUs to first hardware queue. We will re-init the queue
1976 * below to get optimal settings.
Jens Axboe320ae512013-10-24 09:20:05 +01001977 */
1978 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1979 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1980 return NOTIFY_OK;
1981
1982 mutex_lock(&all_q_mutex);
1983 list_for_each_entry(q, &all_q_list, all_q_node)
1984 blk_mq_queue_reinit(q);
1985 mutex_unlock(&all_q_mutex);
1986 return NOTIFY_OK;
1987}
1988
Jens Axboea5164402014-09-10 09:02:03 -06001989static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
1990{
1991 int i;
1992
1993 for (i = 0; i < set->nr_hw_queues; i++) {
1994 set->tags[i] = blk_mq_init_rq_map(set, i);
1995 if (!set->tags[i])
1996 goto out_unwind;
1997 }
1998
1999 return 0;
2000
2001out_unwind:
2002 while (--i >= 0)
2003 blk_mq_free_rq_map(set, set->tags[i], i);
2004
Jens Axboea5164402014-09-10 09:02:03 -06002005 return -ENOMEM;
2006}
2007
2008/*
2009 * Allocate the request maps associated with this tag_set. Note that this
2010 * may reduce the depth asked for, if memory is tight. set->queue_depth
2011 * will be updated to reflect the allocated depth.
2012 */
2013static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2014{
2015 unsigned int depth;
2016 int err;
2017
2018 depth = set->queue_depth;
2019 do {
2020 err = __blk_mq_alloc_rq_maps(set);
2021 if (!err)
2022 break;
2023
2024 set->queue_depth >>= 1;
2025 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2026 err = -ENOMEM;
2027 break;
2028 }
2029 } while (set->queue_depth);
2030
2031 if (!set->queue_depth || err) {
2032 pr_err("blk-mq: failed to allocate request map\n");
2033 return -ENOMEM;
2034 }
2035
2036 if (depth != set->queue_depth)
2037 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2038 depth, set->queue_depth);
2039
2040 return 0;
2041}
2042
Jens Axboea4391c62014-06-05 15:21:56 -06002043/*
2044 * Alloc a tag set to be associated with one or more request queues.
2045 * May fail with EINVAL for various error conditions. May adjust the
2046 * requested depth down, if if it too large. In that case, the set
2047 * value will be stored in set->queue_depth.
2048 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002049int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2050{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002051 if (!set->nr_hw_queues)
2052 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002053 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002054 return -EINVAL;
2055 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2056 return -EINVAL;
2057
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002058 if (!set->nr_hw_queues || !set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002059 return -EINVAL;
2060
Jens Axboea4391c62014-06-05 15:21:56 -06002061 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2062 pr_info("blk-mq: reduced tag depth to %u\n",
2063 BLK_MQ_MAX_DEPTH);
2064 set->queue_depth = BLK_MQ_MAX_DEPTH;
2065 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002066
Shaohua Li6637fad2014-11-30 16:00:58 -08002067 /*
2068 * If a crashdump is active, then we are potentially in a very
2069 * memory constrained environment. Limit us to 1 queue and
2070 * 64 tags to prevent using too much memory.
2071 */
2072 if (is_kdump_kernel()) {
2073 set->nr_hw_queues = 1;
2074 set->queue_depth = min(64U, set->queue_depth);
2075 }
2076
Ming Lei484790052014-04-19 18:00:17 +08002077 set->tags = kmalloc_node(set->nr_hw_queues *
2078 sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002079 GFP_KERNEL, set->numa_node);
2080 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002081 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002082
Jens Axboea5164402014-09-10 09:02:03 -06002083 if (blk_mq_alloc_rq_maps(set))
2084 goto enomem;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002085
Jens Axboe0d2602c2014-05-13 15:10:52 -06002086 mutex_init(&set->tag_list_lock);
2087 INIT_LIST_HEAD(&set->tag_list);
2088
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002089 return 0;
Jens Axboea5164402014-09-10 09:02:03 -06002090enomem:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002091 kfree(set->tags);
2092 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002093 return -ENOMEM;
2094}
2095EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2096
2097void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2098{
2099 int i;
2100
Jens Axboe484b4062014-05-21 14:01:15 -06002101 for (i = 0; i < set->nr_hw_queues; i++) {
2102 if (set->tags[i])
2103 blk_mq_free_rq_map(set, set->tags[i], i);
2104 }
2105
Ming Lei981bd182014-04-24 00:07:34 +08002106 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002107 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002108}
2109EXPORT_SYMBOL(blk_mq_free_tag_set);
2110
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002111int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2112{
2113 struct blk_mq_tag_set *set = q->tag_set;
2114 struct blk_mq_hw_ctx *hctx;
2115 int i, ret;
2116
2117 if (!set || nr > set->queue_depth)
2118 return -EINVAL;
2119
2120 ret = 0;
2121 queue_for_each_hw_ctx(q, hctx, i) {
2122 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2123 if (ret)
2124 break;
2125 }
2126
2127 if (!ret)
2128 q->nr_requests = nr;
2129
2130 return ret;
2131}
2132
Jens Axboe676141e2014-03-20 13:29:18 -06002133void blk_mq_disable_hotplug(void)
2134{
2135 mutex_lock(&all_q_mutex);
2136}
2137
2138void blk_mq_enable_hotplug(void)
2139{
2140 mutex_unlock(&all_q_mutex);
2141}
2142
Jens Axboe320ae512013-10-24 09:20:05 +01002143static int __init blk_mq_init(void)
2144{
Jens Axboe320ae512013-10-24 09:20:05 +01002145 blk_mq_cpu_init();
2146
Tejun Heoadd703f2014-07-01 10:34:38 -06002147 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002148
2149 return 0;
2150}
2151subsys_initcall(blk_mq_init);