blob: 4347aa2be6ae5610dee9b04a8ec5f64db40fe2d4 [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 Leicb96a422014-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 Leicb96a422014-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 Leicb96a422014-06-01 00:43:37 +0800205 rq = data->hctx->tags->rqs[tag];
Christoph Hellwig5dee8572014-05-27 20:59:47 +0200206
Ming Leicb96a422014-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 Leicb96a422014-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 Leicb96a422014-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 Leicb96a422014-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 Leicb96a422014-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 Leicb96a422014-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 Leicb96a422014-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 */
592 if (!hctx->nr_ctx || !hctx->tags)
593 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{
791 int cpu = hctx->next_cpu;
792
793 if (--hctx->next_cpu_batch <= 0) {
794 int next_cpu;
795
796 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
797 if (next_cpu >= nr_cpu_ids)
798 next_cpu = cpumask_first(hctx->cpumask);
799
800 hctx->next_cpu = next_cpu;
801 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
802 }
803
804 return cpu;
805}
806
Jens Axboe320ae512013-10-24 09:20:05 +0100807void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
808{
Jens Axboe5d12f902014-03-19 15:25:02 -0600809 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100810 return;
811
Paolo Bonzini398205b2014-11-07 23:03:59 +0100812 if (!async) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100813 int cpu = get_cpu();
814 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100815 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100816 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100817 return;
818 }
819
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100820 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100821 }
822
823 if (hctx->queue->nr_hw_queues == 1)
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600824 kblockd_schedule_delayed_work(&hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600825 else {
826 unsigned int cpu;
827
Jens Axboe506e9312014-05-07 10:26:44 -0600828 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600829 kblockd_schedule_delayed_work_on(cpu, &hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600830 }
Jens Axboe320ae512013-10-24 09:20:05 +0100831}
832
833void blk_mq_run_queues(struct request_queue *q, bool async)
834{
835 struct blk_mq_hw_ctx *hctx;
836 int i;
837
838 queue_for_each_hw_ctx(q, hctx, i) {
839 if ((!blk_mq_hctx_has_pending(hctx) &&
840 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600841 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100842 continue;
843
844 blk_mq_run_hw_queue(hctx, async);
845 }
846}
847EXPORT_SYMBOL(blk_mq_run_queues);
848
849void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
850{
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600851 cancel_delayed_work(&hctx->run_work);
852 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100853 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
854}
855EXPORT_SYMBOL(blk_mq_stop_hw_queue);
856
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100857void blk_mq_stop_hw_queues(struct request_queue *q)
858{
859 struct blk_mq_hw_ctx *hctx;
860 int i;
861
862 queue_for_each_hw_ctx(q, hctx, i)
863 blk_mq_stop_hw_queue(hctx);
864}
865EXPORT_SYMBOL(blk_mq_stop_hw_queues);
866
Jens Axboe320ae512013-10-24 09:20:05 +0100867void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
868{
869 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600870
Jens Axboe0ffbce82014-06-25 08:22:34 -0600871 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100872}
873EXPORT_SYMBOL(blk_mq_start_hw_queue);
874
Christoph Hellwig2f268552014-04-16 09:44:56 +0200875void blk_mq_start_hw_queues(struct request_queue *q)
876{
877 struct blk_mq_hw_ctx *hctx;
878 int i;
879
880 queue_for_each_hw_ctx(q, hctx, i)
881 blk_mq_start_hw_queue(hctx);
882}
883EXPORT_SYMBOL(blk_mq_start_hw_queues);
884
885
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200886void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100887{
888 struct blk_mq_hw_ctx *hctx;
889 int i;
890
891 queue_for_each_hw_ctx(q, hctx, i) {
892 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
893 continue;
894
895 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200896 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100897 }
898}
899EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
900
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600901static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100902{
903 struct blk_mq_hw_ctx *hctx;
904
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600905 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600906
Jens Axboe320ae512013-10-24 09:20:05 +0100907 __blk_mq_run_hw_queue(hctx);
908}
909
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600910static void blk_mq_delay_work_fn(struct work_struct *work)
911{
912 struct blk_mq_hw_ctx *hctx;
913
914 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
915
916 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
917 __blk_mq_run_hw_queue(hctx);
918}
919
920void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
921{
922 unsigned long tmo = msecs_to_jiffies(msecs);
923
924 if (hctx->queue->nr_hw_queues == 1)
925 kblockd_schedule_delayed_work(&hctx->delay_work, tmo);
926 else {
927 unsigned int cpu;
928
Jens Axboe506e9312014-05-07 10:26:44 -0600929 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600930 kblockd_schedule_delayed_work_on(cpu, &hctx->delay_work, tmo);
931 }
932}
933EXPORT_SYMBOL(blk_mq_delay_queue);
934
Jens Axboe320ae512013-10-24 09:20:05 +0100935static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800936 struct request *rq, bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +0100937{
938 struct blk_mq_ctx *ctx = rq->mq_ctx;
939
Jens Axboe01b983c2013-11-19 18:59:10 -0700940 trace_block_rq_insert(hctx->queue, rq);
941
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800942 if (at_head)
943 list_add(&rq->queuelist, &ctx->rq_list);
944 else
945 list_add_tail(&rq->queuelist, &ctx->rq_list);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600946
Jens Axboe320ae512013-10-24 09:20:05 +0100947 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100948}
949
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600950void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
951 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100952{
953 struct request_queue *q = rq->q;
954 struct blk_mq_hw_ctx *hctx;
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600955 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100956
957 current_ctx = blk_mq_get_ctx(q);
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600958 if (!cpu_online(ctx->cpu))
959 rq->mq_ctx = ctx = current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100960
Jens Axboe320ae512013-10-24 09:20:05 +0100961 hctx = q->mq_ops->map_queue(q, ctx->cpu);
962
Christoph Hellwiga57a1782014-09-16 14:44:07 -0700963 spin_lock(&ctx->lock);
964 __blk_mq_insert_request(hctx, rq, at_head);
965 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100966
Jens Axboe320ae512013-10-24 09:20:05 +0100967 if (run_queue)
968 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600969
970 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100971}
972
973static void blk_mq_insert_requests(struct request_queue *q,
974 struct blk_mq_ctx *ctx,
975 struct list_head *list,
976 int depth,
977 bool from_schedule)
978
979{
980 struct blk_mq_hw_ctx *hctx;
981 struct blk_mq_ctx *current_ctx;
982
983 trace_block_unplug(q, depth, !from_schedule);
984
985 current_ctx = blk_mq_get_ctx(q);
986
987 if (!cpu_online(ctx->cpu))
988 ctx = current_ctx;
989 hctx = q->mq_ops->map_queue(q, ctx->cpu);
990
991 /*
992 * preemption doesn't flush plug list, so it's possible ctx->cpu is
993 * offline now
994 */
995 spin_lock(&ctx->lock);
996 while (!list_empty(list)) {
997 struct request *rq;
998
999 rq = list_first_entry(list, struct request, queuelist);
1000 list_del_init(&rq->queuelist);
1001 rq->mq_ctx = ctx;
Christoph Hellwig72a0a362014-02-07 10:22:36 -08001002 __blk_mq_insert_request(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001003 }
1004 spin_unlock(&ctx->lock);
1005
Jens Axboe320ae512013-10-24 09:20:05 +01001006 blk_mq_run_hw_queue(hctx, from_schedule);
Jens Axboee4043dc2014-04-09 10:18:23 -06001007 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001008}
1009
1010static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1011{
1012 struct request *rqa = container_of(a, struct request, queuelist);
1013 struct request *rqb = container_of(b, struct request, queuelist);
1014
1015 return !(rqa->mq_ctx < rqb->mq_ctx ||
1016 (rqa->mq_ctx == rqb->mq_ctx &&
1017 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1018}
1019
1020void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1021{
1022 struct blk_mq_ctx *this_ctx;
1023 struct request_queue *this_q;
1024 struct request *rq;
1025 LIST_HEAD(list);
1026 LIST_HEAD(ctx_list);
1027 unsigned int depth;
1028
1029 list_splice_init(&plug->mq_list, &list);
1030
1031 list_sort(NULL, &list, plug_ctx_cmp);
1032
1033 this_q = NULL;
1034 this_ctx = NULL;
1035 depth = 0;
1036
1037 while (!list_empty(&list)) {
1038 rq = list_entry_rq(list.next);
1039 list_del_init(&rq->queuelist);
1040 BUG_ON(!rq->q);
1041 if (rq->mq_ctx != this_ctx) {
1042 if (this_ctx) {
1043 blk_mq_insert_requests(this_q, this_ctx,
1044 &ctx_list, depth,
1045 from_schedule);
1046 }
1047
1048 this_ctx = rq->mq_ctx;
1049 this_q = rq->q;
1050 depth = 0;
1051 }
1052
1053 depth++;
1054 list_add_tail(&rq->queuelist, &ctx_list);
1055 }
1056
1057 /*
1058 * If 'this_ctx' is set, we know we have entries to complete
1059 * on 'ctx_list'. Do those.
1060 */
1061 if (this_ctx) {
1062 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1063 from_schedule);
1064 }
1065}
1066
1067static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1068{
1069 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001070
Jens Axboe3ee32372014-06-09 09:36:53 -06001071 if (blk_do_io_stat(rq))
Jens Axboe4b570522014-05-29 11:00:11 -06001072 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001073}
1074
Jens Axboe274a5842014-08-15 12:44:08 -06001075static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1076{
1077 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1078 !blk_queue_nomerges(hctx->queue);
1079}
1080
Jens Axboe07068d52014-05-22 10:40:51 -06001081static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1082 struct blk_mq_ctx *ctx,
1083 struct request *rq, struct bio *bio)
1084{
Jens Axboe274a5842014-08-15 12:44:08 -06001085 if (!hctx_allow_merges(hctx)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001086 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 {
Jens Axboe274a5842014-08-15 12:44:08 -06001093 struct request_queue *q = hctx->queue;
1094
Jens Axboe07068d52014-05-22 10:40:51 -06001095 spin_lock(&ctx->lock);
1096 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1097 blk_mq_bio_to_request(rq, bio);
1098 goto insert_rq;
1099 }
1100
1101 spin_unlock(&ctx->lock);
1102 __blk_mq_free_request(hctx, ctx, rq);
1103 return true;
1104 }
1105}
1106
1107struct blk_map_ctx {
1108 struct blk_mq_hw_ctx *hctx;
1109 struct blk_mq_ctx *ctx;
1110};
1111
1112static struct request *blk_mq_map_request(struct request_queue *q,
1113 struct bio *bio,
1114 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001115{
1116 struct blk_mq_hw_ctx *hctx;
1117 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001118 struct request *rq;
Jens Axboe07068d52014-05-22 10:40:51 -06001119 int rw = bio_data_dir(bio);
Ming Leicb96a422014-06-01 00:43:37 +08001120 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001121
Jens Axboe07068d52014-05-22 10:40:51 -06001122 if (unlikely(blk_mq_queue_enter(q))) {
Nicholas Bellinger14ec77f2014-02-07 13:45:39 -07001123 bio_endio(bio, -EIO);
Jens Axboe07068d52014-05-22 10:40:51 -06001124 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001125 }
1126
1127 ctx = blk_mq_get_ctx(q);
1128 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1129
Jens Axboe07068d52014-05-22 10:40:51 -06001130 if (rw_is_sync(bio->bi_rw))
Shaohua Li27fbf4e2014-02-19 20:20:21 +08001131 rw |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001132
Jens Axboe320ae512013-10-24 09:20:05 +01001133 trace_block_getrq(q, bio, rw);
Ming Leicb96a422014-06-01 00:43:37 +08001134 blk_mq_set_alloc_data(&alloc_data, q, GFP_ATOMIC, false, ctx,
1135 hctx);
1136 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001137 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001138 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001139 blk_mq_put_ctx(ctx);
1140 trace_block_sleeprq(q, bio, rw);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001141
1142 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001143 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +08001144 blk_mq_set_alloc_data(&alloc_data, q,
1145 __GFP_WAIT|GFP_ATOMIC, false, ctx, hctx);
1146 rq = __blk_mq_alloc_request(&alloc_data, rw);
1147 ctx = alloc_data.ctx;
1148 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001149 }
1150
1151 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001152 data->hctx = hctx;
1153 data->ctx = ctx;
1154 return rq;
1155}
1156
1157/*
1158 * Multiple hardware queue variant. This will not use per-process plugs,
1159 * but will attempt to bypass the hctx queueing if we can go straight to
1160 * hardware for SYNC IO.
1161 */
1162static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1163{
1164 const int is_sync = rw_is_sync(bio->bi_rw);
1165 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1166 struct blk_map_ctx data;
1167 struct request *rq;
1168
1169 blk_queue_bounce(q, &bio);
1170
1171 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1172 bio_endio(bio, -EIO);
1173 return;
1174 }
1175
1176 rq = blk_mq_map_request(q, bio, &data);
1177 if (unlikely(!rq))
1178 return;
1179
1180 if (unlikely(is_flush_fua)) {
1181 blk_mq_bio_to_request(rq, bio);
1182 blk_insert_flush(rq);
1183 goto run_queue;
1184 }
1185
Jens Axboee167dfb2014-10-29 11:18:26 -06001186 /*
1187 * If the driver supports defer issued based on 'last', then
1188 * queue it up like normal since we can potentially save some
1189 * CPU this way.
1190 */
1191 if (is_sync && !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
Jens Axboe74c45052014-10-29 11:14:52 -06001192 struct blk_mq_queue_data bd = {
1193 .rq = rq,
1194 .list = NULL,
1195 .last = 1
1196 };
Jens Axboe07068d52014-05-22 10:40:51 -06001197 int ret;
1198
1199 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001200
1201 /*
1202 * For OK queue, we are done. For error, kill it. Any other
1203 * error (busy), just add it to our list as we previously
1204 * would have done
1205 */
Jens Axboe74c45052014-10-29 11:14:52 -06001206 ret = q->mq_ops->queue_rq(data.hctx, &bd);
Jens Axboe07068d52014-05-22 10:40:51 -06001207 if (ret == BLK_MQ_RQ_QUEUE_OK)
1208 goto done;
1209 else {
1210 __blk_mq_requeue_request(rq);
1211
1212 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1213 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -07001214 blk_mq_end_request(rq, rq->errors);
Jens Axboe07068d52014-05-22 10:40:51 -06001215 goto done;
1216 }
1217 }
1218 }
1219
1220 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1221 /*
1222 * For a SYNC request, send it to the hardware immediately. For
1223 * an ASYNC request, just ensure that we run it later on. The
1224 * latter allows for merging opportunities and more efficient
1225 * dispatching.
1226 */
1227run_queue:
1228 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1229 }
1230done:
1231 blk_mq_put_ctx(data.ctx);
1232}
1233
1234/*
1235 * Single hardware queue variant. This will attempt to use any per-process
1236 * plug for merging and IO deferral.
1237 */
1238static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1239{
1240 const int is_sync = rw_is_sync(bio->bi_rw);
1241 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1242 unsigned int use_plug, request_count = 0;
1243 struct blk_map_ctx data;
1244 struct request *rq;
1245
1246 /*
1247 * If we have multiple hardware queues, just go directly to
1248 * one of those for sync IO.
1249 */
1250 use_plug = !is_flush_fua && !is_sync;
1251
1252 blk_queue_bounce(q, &bio);
1253
1254 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1255 bio_endio(bio, -EIO);
1256 return;
1257 }
1258
1259 if (use_plug && !blk_queue_nomerges(q) &&
1260 blk_attempt_plug_merge(q, bio, &request_count))
1261 return;
1262
1263 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001264 if (unlikely(!rq))
1265 return;
Jens Axboe320ae512013-10-24 09:20:05 +01001266
1267 if (unlikely(is_flush_fua)) {
1268 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001269 blk_insert_flush(rq);
1270 goto run_queue;
1271 }
1272
1273 /*
1274 * A task plug currently exists. Since this is completely lockless,
1275 * utilize that to temporarily store requests until the task is
1276 * either done or scheduled away.
1277 */
1278 if (use_plug) {
1279 struct blk_plug *plug = current->plug;
1280
1281 if (plug) {
1282 blk_mq_bio_to_request(rq, bio);
Shaohua Li92f399c2013-10-29 12:01:03 -06001283 if (list_empty(&plug->mq_list))
Jens Axboe320ae512013-10-24 09:20:05 +01001284 trace_block_plug(q);
1285 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1286 blk_flush_plug_list(plug, false);
1287 trace_block_plug(q);
1288 }
1289 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe07068d52014-05-22 10:40:51 -06001290 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001291 return;
1292 }
1293 }
1294
Jens Axboe07068d52014-05-22 10:40:51 -06001295 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1296 /*
1297 * For a SYNC request, send it to the hardware immediately. For
1298 * an ASYNC request, just ensure that we run it later on. The
1299 * latter allows for merging opportunities and more efficient
1300 * dispatching.
1301 */
1302run_queue:
1303 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001304 }
1305
Jens Axboe07068d52014-05-22 10:40:51 -06001306 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001307}
1308
1309/*
1310 * Default mapping to a software queue, since we use one per CPU.
1311 */
1312struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1313{
1314 return q->queue_hw_ctx[q->mq_map[cpu]];
1315}
1316EXPORT_SYMBOL(blk_mq_map_queue);
1317
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001318static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1319 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001320{
1321 struct page *page;
1322
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001323 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001324 int i;
1325
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001326 for (i = 0; i < tags->nr_tags; i++) {
1327 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001328 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001329 set->ops->exit_request(set->driver_data, tags->rqs[i],
1330 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001331 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001332 }
1333 }
1334
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001335 while (!list_empty(&tags->page_list)) {
1336 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001337 list_del_init(&page->lru);
Jens Axboe320ae512013-10-24 09:20:05 +01001338 __free_pages(page, page->private);
1339 }
1340
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001341 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001342
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001343 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001344}
1345
1346static size_t order_to_size(unsigned int order)
1347{
Ming Lei4ca08502014-04-19 18:00:18 +08001348 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001349}
1350
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001351static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1352 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001353{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001354 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001355 unsigned int i, j, entries_per_page, max_order = 4;
1356 size_t rq_size, left;
1357
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001358 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1359 set->numa_node);
1360 if (!tags)
1361 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001362
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001363 INIT_LIST_HEAD(&tags->page_list);
1364
Jens Axboea5164402014-09-10 09:02:03 -06001365 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1366 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1367 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001368 if (!tags->rqs) {
1369 blk_mq_free_tags(tags);
1370 return NULL;
1371 }
Jens Axboe320ae512013-10-24 09:20:05 +01001372
1373 /*
1374 * rq_size is the size of the request plus driver payload, rounded
1375 * to the cacheline size
1376 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001377 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001378 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001379 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001380
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001381 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001382 int this_order = max_order;
1383 struct page *page;
1384 int to_do;
1385 void *p;
1386
1387 while (left < order_to_size(this_order - 1) && this_order)
1388 this_order--;
1389
1390 do {
Jens Axboea5164402014-09-10 09:02:03 -06001391 page = alloc_pages_node(set->numa_node,
1392 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1393 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001394 if (page)
1395 break;
1396 if (!this_order--)
1397 break;
1398 if (order_to_size(this_order) < rq_size)
1399 break;
1400 } while (1);
1401
1402 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001403 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001404
1405 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001406 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001407
1408 p = page_address(page);
1409 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001410 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001411 left -= to_do * rq_size;
1412 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001413 tags->rqs[i] = p;
David Hildenbrand683d0e12014-09-18 11:04:31 +02001414 tags->rqs[i]->atomic_flags = 0;
1415 tags->rqs[i]->cmd_flags = 0;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001416 if (set->ops->init_request) {
1417 if (set->ops->init_request(set->driver_data,
1418 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001419 set->numa_node)) {
1420 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001421 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001422 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001423 }
1424
Jens Axboe320ae512013-10-24 09:20:05 +01001425 p += rq_size;
1426 i++;
1427 }
1428 }
1429
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001430 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001431
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001432fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001433 blk_mq_free_rq_map(set, tags, hctx_idx);
1434 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001435}
1436
Jens Axboe1429d7c2014-05-19 09:23:55 -06001437static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1438{
1439 kfree(bitmap->map);
1440}
1441
1442static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1443{
1444 unsigned int bpw = 8, total, num_maps, i;
1445
1446 bitmap->bits_per_word = bpw;
1447
1448 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1449 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1450 GFP_KERNEL, node);
1451 if (!bitmap->map)
1452 return -ENOMEM;
1453
1454 bitmap->map_size = num_maps;
1455
1456 total = nr_cpu_ids;
1457 for (i = 0; i < num_maps; i++) {
1458 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1459 total -= bitmap->map[i].depth;
1460 }
1461
1462 return 0;
1463}
1464
Jens Axboe484b4062014-05-21 14:01:15 -06001465static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1466{
1467 struct request_queue *q = hctx->queue;
1468 struct blk_mq_ctx *ctx;
1469 LIST_HEAD(tmp);
1470
1471 /*
1472 * Move ctx entries to new CPU, if this one is going away.
1473 */
1474 ctx = __blk_mq_get_ctx(q, cpu);
1475
1476 spin_lock(&ctx->lock);
1477 if (!list_empty(&ctx->rq_list)) {
1478 list_splice_init(&ctx->rq_list, &tmp);
1479 blk_mq_hctx_clear_pending(hctx, ctx);
1480 }
1481 spin_unlock(&ctx->lock);
1482
1483 if (list_empty(&tmp))
1484 return NOTIFY_OK;
1485
1486 ctx = blk_mq_get_ctx(q);
1487 spin_lock(&ctx->lock);
1488
1489 while (!list_empty(&tmp)) {
1490 struct request *rq;
1491
1492 rq = list_first_entry(&tmp, struct request, queuelist);
1493 rq->mq_ctx = ctx;
1494 list_move_tail(&rq->queuelist, &ctx->rq_list);
1495 }
1496
1497 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1498 blk_mq_hctx_mark_pending(hctx, ctx);
1499
1500 spin_unlock(&ctx->lock);
1501
1502 blk_mq_run_hw_queue(hctx, true);
1503 blk_mq_put_ctx(ctx);
1504 return NOTIFY_OK;
1505}
1506
1507static int blk_mq_hctx_cpu_online(struct blk_mq_hw_ctx *hctx, int cpu)
1508{
1509 struct request_queue *q = hctx->queue;
1510 struct blk_mq_tag_set *set = q->tag_set;
1511
1512 if (set->tags[hctx->queue_num])
1513 return NOTIFY_OK;
1514
1515 set->tags[hctx->queue_num] = blk_mq_init_rq_map(set, hctx->queue_num);
1516 if (!set->tags[hctx->queue_num])
1517 return NOTIFY_STOP;
1518
1519 hctx->tags = set->tags[hctx->queue_num];
1520 return NOTIFY_OK;
1521}
1522
1523static int blk_mq_hctx_notify(void *data, unsigned long action,
1524 unsigned int cpu)
1525{
1526 struct blk_mq_hw_ctx *hctx = data;
1527
1528 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1529 return blk_mq_hctx_cpu_offline(hctx, cpu);
1530 else if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
1531 return blk_mq_hctx_cpu_online(hctx, cpu);
1532
1533 return NOTIFY_OK;
1534}
1535
Ming Lei08e98fc2014-09-25 23:23:38 +08001536static void blk_mq_exit_hctx(struct request_queue *q,
1537 struct blk_mq_tag_set *set,
1538 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1539{
Ming Leif70ced02014-09-25 23:23:47 +08001540 unsigned flush_start_tag = set->queue_depth;
1541
Ming Lei08e98fc2014-09-25 23:23:38 +08001542 blk_mq_tag_idle(hctx);
1543
Ming Leif70ced02014-09-25 23:23:47 +08001544 if (set->ops->exit_request)
1545 set->ops->exit_request(set->driver_data,
1546 hctx->fq->flush_rq, hctx_idx,
1547 flush_start_tag + hctx_idx);
1548
Ming Lei08e98fc2014-09-25 23:23:38 +08001549 if (set->ops->exit_hctx)
1550 set->ops->exit_hctx(hctx, hctx_idx);
1551
1552 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
Ming Leif70ced02014-09-25 23:23:47 +08001553 blk_free_flush_queue(hctx->fq);
Ming Lei08e98fc2014-09-25 23:23:38 +08001554 kfree(hctx->ctxs);
1555 blk_mq_free_bitmap(&hctx->ctx_map);
1556}
1557
Ming Lei624dbe42014-05-27 23:35:13 +08001558static void blk_mq_exit_hw_queues(struct request_queue *q,
1559 struct blk_mq_tag_set *set, int nr_queue)
1560{
1561 struct blk_mq_hw_ctx *hctx;
1562 unsigned int i;
1563
1564 queue_for_each_hw_ctx(q, hctx, i) {
1565 if (i == nr_queue)
1566 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001567 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001568 }
Ming Lei624dbe42014-05-27 23:35:13 +08001569}
1570
1571static void blk_mq_free_hw_queues(struct request_queue *q,
1572 struct blk_mq_tag_set *set)
1573{
1574 struct blk_mq_hw_ctx *hctx;
1575 unsigned int i;
1576
1577 queue_for_each_hw_ctx(q, hctx, i) {
1578 free_cpumask_var(hctx->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001579 kfree(hctx);
Ming Lei624dbe42014-05-27 23:35:13 +08001580 }
1581}
1582
Ming Lei08e98fc2014-09-25 23:23:38 +08001583static int blk_mq_init_hctx(struct request_queue *q,
1584 struct blk_mq_tag_set *set,
1585 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1586{
1587 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001588 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001589
1590 node = hctx->numa_node;
1591 if (node == NUMA_NO_NODE)
1592 node = hctx->numa_node = set->numa_node;
1593
1594 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1595 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1596 spin_lock_init(&hctx->lock);
1597 INIT_LIST_HEAD(&hctx->dispatch);
1598 hctx->queue = q;
1599 hctx->queue_num = hctx_idx;
1600 hctx->flags = set->flags;
1601 hctx->cmd_size = set->cmd_size;
1602
1603 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1604 blk_mq_hctx_notify, hctx);
1605 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1606
1607 hctx->tags = set->tags[hctx_idx];
1608
1609 /*
1610 * Allocate space for all possible cpus to avoid allocation at
1611 * runtime
1612 */
1613 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1614 GFP_KERNEL, node);
1615 if (!hctx->ctxs)
1616 goto unregister_cpu_notifier;
1617
1618 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
1619 goto free_ctxs;
1620
1621 hctx->nr_ctx = 0;
1622
1623 if (set->ops->init_hctx &&
1624 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1625 goto free_bitmap;
1626
Ming Leif70ced02014-09-25 23:23:47 +08001627 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1628 if (!hctx->fq)
1629 goto exit_hctx;
1630
1631 if (set->ops->init_request &&
1632 set->ops->init_request(set->driver_data,
1633 hctx->fq->flush_rq, hctx_idx,
1634 flush_start_tag + hctx_idx, node))
1635 goto free_fq;
1636
Ming Lei08e98fc2014-09-25 23:23:38 +08001637 return 0;
1638
Ming Leif70ced02014-09-25 23:23:47 +08001639 free_fq:
1640 kfree(hctx->fq);
1641 exit_hctx:
1642 if (set->ops->exit_hctx)
1643 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001644 free_bitmap:
1645 blk_mq_free_bitmap(&hctx->ctx_map);
1646 free_ctxs:
1647 kfree(hctx->ctxs);
1648 unregister_cpu_notifier:
1649 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1650
1651 return -1;
1652}
1653
Jens Axboe320ae512013-10-24 09:20:05 +01001654static int blk_mq_init_hw_queues(struct request_queue *q,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001655 struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001656{
1657 struct blk_mq_hw_ctx *hctx;
Ming Lei624dbe42014-05-27 23:35:13 +08001658 unsigned int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001659
1660 /*
1661 * Initialize hardware queues
1662 */
1663 queue_for_each_hw_ctx(q, hctx, i) {
Ming Lei08e98fc2014-09-25 23:23:38 +08001664 if (blk_mq_init_hctx(q, set, hctx, i))
Jens Axboe320ae512013-10-24 09:20:05 +01001665 break;
1666 }
1667
1668 if (i == q->nr_hw_queues)
1669 return 0;
1670
1671 /*
1672 * Init failed
1673 */
Ming Lei624dbe42014-05-27 23:35:13 +08001674 blk_mq_exit_hw_queues(q, set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001675
1676 return 1;
1677}
1678
1679static void blk_mq_init_cpu_queues(struct request_queue *q,
1680 unsigned int nr_hw_queues)
1681{
1682 unsigned int i;
1683
1684 for_each_possible_cpu(i) {
1685 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1686 struct blk_mq_hw_ctx *hctx;
1687
1688 memset(__ctx, 0, sizeof(*__ctx));
1689 __ctx->cpu = i;
1690 spin_lock_init(&__ctx->lock);
1691 INIT_LIST_HEAD(&__ctx->rq_list);
1692 __ctx->queue = q;
1693
1694 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001695 if (!cpu_online(i))
1696 continue;
1697
Jens Axboee4043dc2014-04-09 10:18:23 -06001698 hctx = q->mq_ops->map_queue(q, i);
1699 cpumask_set_cpu(i, hctx->cpumask);
1700 hctx->nr_ctx++;
1701
Jens Axboe320ae512013-10-24 09:20:05 +01001702 /*
1703 * Set local node, IFF we have more than one hw queue. If
1704 * not, we remain on the home node of the device
1705 */
1706 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1707 hctx->numa_node = cpu_to_node(i);
1708 }
1709}
1710
1711static void blk_mq_map_swqueue(struct request_queue *q)
1712{
1713 unsigned int i;
1714 struct blk_mq_hw_ctx *hctx;
1715 struct blk_mq_ctx *ctx;
1716
1717 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001718 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001719 hctx->nr_ctx = 0;
1720 }
1721
1722 /*
1723 * Map software to hardware queues
1724 */
1725 queue_for_each_ctx(q, ctx, i) {
1726 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboee4043dc2014-04-09 10:18:23 -06001727 if (!cpu_online(i))
1728 continue;
1729
Jens Axboe320ae512013-10-24 09:20:05 +01001730 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001731 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001732 ctx->index_hw = hctx->nr_ctx;
1733 hctx->ctxs[hctx->nr_ctx++] = ctx;
1734 }
Jens Axboe506e9312014-05-07 10:26:44 -06001735
1736 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001737 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001738 * If no software queues are mapped to this hardware queue,
1739 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001740 */
1741 if (!hctx->nr_ctx) {
1742 struct blk_mq_tag_set *set = q->tag_set;
1743
1744 if (set->tags[i]) {
1745 blk_mq_free_rq_map(set, set->tags[i], i);
1746 set->tags[i] = NULL;
1747 hctx->tags = NULL;
1748 }
1749 continue;
1750 }
1751
1752 /*
1753 * Initialize batch roundrobin counts
1754 */
Jens Axboe506e9312014-05-07 10:26:44 -06001755 hctx->next_cpu = cpumask_first(hctx->cpumask);
1756 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1757 }
Jens Axboe320ae512013-10-24 09:20:05 +01001758}
1759
Jens Axboe0d2602c2014-05-13 15:10:52 -06001760static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1761{
1762 struct blk_mq_hw_ctx *hctx;
1763 struct request_queue *q;
1764 bool shared;
1765 int i;
1766
1767 if (set->tag_list.next == set->tag_list.prev)
1768 shared = false;
1769 else
1770 shared = true;
1771
1772 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1773 blk_mq_freeze_queue(q);
1774
1775 queue_for_each_hw_ctx(q, hctx, i) {
1776 if (shared)
1777 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1778 else
1779 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1780 }
1781 blk_mq_unfreeze_queue(q);
1782 }
1783}
1784
1785static void blk_mq_del_queue_tag_set(struct request_queue *q)
1786{
1787 struct blk_mq_tag_set *set = q->tag_set;
1788
Jens Axboe0d2602c2014-05-13 15:10:52 -06001789 mutex_lock(&set->tag_list_lock);
1790 list_del_init(&q->tag_set_list);
1791 blk_mq_update_tag_set_depth(set);
1792 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001793}
1794
1795static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1796 struct request_queue *q)
1797{
1798 q->tag_set = set;
1799
1800 mutex_lock(&set->tag_list_lock);
1801 list_add_tail(&q->tag_set_list, &set->tag_list);
1802 blk_mq_update_tag_set_depth(set);
1803 mutex_unlock(&set->tag_list_lock);
1804}
1805
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001806struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001807{
1808 struct blk_mq_hw_ctx **hctxs;
Ming Leie6cdb092014-06-03 11:24:06 +08001809 struct blk_mq_ctx __percpu *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001810 struct request_queue *q;
Jens Axboef14bbe72014-05-27 12:06:53 -06001811 unsigned int *map;
Jens Axboe320ae512013-10-24 09:20:05 +01001812 int i;
1813
Jens Axboe320ae512013-10-24 09:20:05 +01001814 ctx = alloc_percpu(struct blk_mq_ctx);
1815 if (!ctx)
1816 return ERR_PTR(-ENOMEM);
1817
Jens Axboeaedcd722014-09-17 08:27:03 -06001818 /*
1819 * If a crashdump is active, then we are potentially in a very
1820 * memory constrained environment. Limit us to 1 queue and
1821 * 64 tags to prevent using too much memory.
1822 */
1823 if (is_kdump_kernel()) {
1824 set->nr_hw_queues = 1;
1825 set->queue_depth = min(64U, set->queue_depth);
1826 }
1827
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001828 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1829 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001830
1831 if (!hctxs)
1832 goto err_percpu;
1833
Jens Axboef14bbe72014-05-27 12:06:53 -06001834 map = blk_mq_make_queue_map(set);
1835 if (!map)
1836 goto err_map;
1837
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001838 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboef14bbe72014-05-27 12:06:53 -06001839 int node = blk_mq_hw_queue_to_node(map, i);
1840
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001841 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1842 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001843 if (!hctxs[i])
1844 goto err_hctxs;
1845
Jens Axboea86073e2014-10-13 15:41:54 -06001846 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
1847 node))
Jens Axboee4043dc2014-04-09 10:18:23 -06001848 goto err_hctxs;
1849
Jens Axboe0d2602c2014-05-13 15:10:52 -06001850 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001851 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001852 hctxs[i]->queue_num = i;
1853 }
1854
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001855 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001856 if (!q)
1857 goto err_hctxs;
1858
Tejun Heo17497ac2014-09-24 13:31:50 -04001859 /*
1860 * Init percpu_ref in atomic mode so that it's faster to shutdown.
1861 * See blk_register_queue() for details.
1862 */
Tejun Heoa34375e2014-09-08 09:51:30 +09001863 if (percpu_ref_init(&q->mq_usage_counter, blk_mq_usage_counter_release,
Tejun Heo17497ac2014-09-24 13:31:50 -04001864 PERCPU_REF_INIT_ATOMIC, GFP_KERNEL))
Ming Lei3d2936f2014-05-27 23:35:14 +08001865 goto err_map;
1866
Jens Axboe320ae512013-10-24 09:20:05 +01001867 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1868 blk_queue_rq_timeout(q, 30000);
1869
1870 q->nr_queues = nr_cpu_ids;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001871 q->nr_hw_queues = set->nr_hw_queues;
Jens Axboef14bbe72014-05-27 12:06:53 -06001872 q->mq_map = map;
Jens Axboe320ae512013-10-24 09:20:05 +01001873
1874 q->queue_ctx = ctx;
1875 q->queue_hw_ctx = hctxs;
1876
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001877 q->mq_ops = set->ops;
Jens Axboe94eddfb2013-11-19 09:25:07 -07001878 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001879
Jens Axboe05f1dd52014-05-29 09:53:32 -06001880 if (!(set->flags & BLK_MQ_F_SG_MERGE))
1881 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
1882
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001883 q->sg_reserved_size = INT_MAX;
1884
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001885 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
1886 INIT_LIST_HEAD(&q->requeue_list);
1887 spin_lock_init(&q->requeue_lock);
1888
Jens Axboe07068d52014-05-22 10:40:51 -06001889 if (q->nr_hw_queues > 1)
1890 blk_queue_make_request(q, blk_mq_make_request);
1891 else
1892 blk_queue_make_request(q, blk_sq_make_request);
1893
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001894 if (set->timeout)
1895 blk_queue_rq_timeout(q, set->timeout);
Jens Axboe320ae512013-10-24 09:20:05 +01001896
Jens Axboeeba71762014-05-20 15:17:27 -06001897 /*
1898 * Do this after blk_queue_make_request() overrides it...
1899 */
1900 q->nr_requests = set->queue_depth;
1901
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001902 if (set->ops->complete)
1903 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001904
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001905 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001906
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001907 if (blk_mq_init_hw_queues(q, set))
Ming Lei1bcb1ea2014-09-25 23:23:39 +08001908 goto err_hw;
Christoph Hellwig18741982014-02-10 09:29:00 -07001909
Jens Axboe320ae512013-10-24 09:20:05 +01001910 mutex_lock(&all_q_mutex);
1911 list_add_tail(&q->all_q_node, &all_q_list);
1912 mutex_unlock(&all_q_mutex);
1913
Jens Axboe0d2602c2014-05-13 15:10:52 -06001914 blk_mq_add_queue_tag_set(set, q);
1915
Jens Axboe484b4062014-05-21 14:01:15 -06001916 blk_mq_map_swqueue(q);
1917
Jens Axboe320ae512013-10-24 09:20:05 +01001918 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07001919
Jens Axboe320ae512013-10-24 09:20:05 +01001920err_hw:
Jens Axboe320ae512013-10-24 09:20:05 +01001921 blk_cleanup_queue(q);
1922err_hctxs:
Jens Axboef14bbe72014-05-27 12:06:53 -06001923 kfree(map);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001924 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboe320ae512013-10-24 09:20:05 +01001925 if (!hctxs[i])
1926 break;
Jens Axboee4043dc2014-04-09 10:18:23 -06001927 free_cpumask_var(hctxs[i]->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001928 kfree(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001929 }
Jens Axboef14bbe72014-05-27 12:06:53 -06001930err_map:
Jens Axboe320ae512013-10-24 09:20:05 +01001931 kfree(hctxs);
1932err_percpu:
1933 free_percpu(ctx);
1934 return ERR_PTR(-ENOMEM);
1935}
1936EXPORT_SYMBOL(blk_mq_init_queue);
1937
1938void blk_mq_free_queue(struct request_queue *q)
1939{
Ming Lei624dbe42014-05-27 23:35:13 +08001940 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001941
Jens Axboe0d2602c2014-05-13 15:10:52 -06001942 blk_mq_del_queue_tag_set(q);
1943
Ming Lei624dbe42014-05-27 23:35:13 +08001944 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1945 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01001946
Tejun Heoadd703f2014-07-01 10:34:38 -06001947 percpu_ref_exit(&q->mq_usage_counter);
Ming Lei3d2936f2014-05-27 23:35:14 +08001948
Jens Axboe320ae512013-10-24 09:20:05 +01001949 free_percpu(q->queue_ctx);
1950 kfree(q->queue_hw_ctx);
1951 kfree(q->mq_map);
1952
1953 q->queue_ctx = NULL;
1954 q->queue_hw_ctx = NULL;
1955 q->mq_map = NULL;
1956
1957 mutex_lock(&all_q_mutex);
1958 list_del_init(&q->all_q_node);
1959 mutex_unlock(&all_q_mutex);
1960}
Jens Axboe320ae512013-10-24 09:20:05 +01001961
1962/* Basically redo blk_mq_init_queue with queue frozen */
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001963static void blk_mq_queue_reinit(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01001964{
1965 blk_mq_freeze_queue(q);
1966
Jens Axboe67aec142014-05-30 08:25:36 -06001967 blk_mq_sysfs_unregister(q);
1968
Jens Axboe320ae512013-10-24 09:20:05 +01001969 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1970
1971 /*
1972 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1973 * we should change hctx numa_node according to new topology (this
1974 * involves free and re-allocate memory, worthy doing?)
1975 */
1976
1977 blk_mq_map_swqueue(q);
1978
Jens Axboe67aec142014-05-30 08:25:36 -06001979 blk_mq_sysfs_register(q);
1980
Jens Axboe320ae512013-10-24 09:20:05 +01001981 blk_mq_unfreeze_queue(q);
1982}
1983
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001984static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1985 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01001986{
1987 struct request_queue *q;
1988
1989 /*
Jens Axboe9fccfed2014-05-08 14:50:19 -06001990 * Before new mappings are established, hotadded cpu might already
1991 * start handling requests. This doesn't break anything as we map
1992 * offline CPUs to first hardware queue. We will re-init the queue
1993 * below to get optimal settings.
Jens Axboe320ae512013-10-24 09:20:05 +01001994 */
1995 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1996 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1997 return NOTIFY_OK;
1998
1999 mutex_lock(&all_q_mutex);
2000 list_for_each_entry(q, &all_q_list, all_q_node)
2001 blk_mq_queue_reinit(q);
2002 mutex_unlock(&all_q_mutex);
2003 return NOTIFY_OK;
2004}
2005
Jens Axboea5164402014-09-10 09:02:03 -06002006static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2007{
2008 int i;
2009
2010 for (i = 0; i < set->nr_hw_queues; i++) {
2011 set->tags[i] = blk_mq_init_rq_map(set, i);
2012 if (!set->tags[i])
2013 goto out_unwind;
2014 }
2015
2016 return 0;
2017
2018out_unwind:
2019 while (--i >= 0)
2020 blk_mq_free_rq_map(set, set->tags[i], i);
2021
Jens Axboea5164402014-09-10 09:02:03 -06002022 return -ENOMEM;
2023}
2024
2025/*
2026 * Allocate the request maps associated with this tag_set. Note that this
2027 * may reduce the depth asked for, if memory is tight. set->queue_depth
2028 * will be updated to reflect the allocated depth.
2029 */
2030static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2031{
2032 unsigned int depth;
2033 int err;
2034
2035 depth = set->queue_depth;
2036 do {
2037 err = __blk_mq_alloc_rq_maps(set);
2038 if (!err)
2039 break;
2040
2041 set->queue_depth >>= 1;
2042 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2043 err = -ENOMEM;
2044 break;
2045 }
2046 } while (set->queue_depth);
2047
2048 if (!set->queue_depth || err) {
2049 pr_err("blk-mq: failed to allocate request map\n");
2050 return -ENOMEM;
2051 }
2052
2053 if (depth != set->queue_depth)
2054 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2055 depth, set->queue_depth);
2056
2057 return 0;
2058}
2059
Jens Axboea4391c62014-06-05 15:21:56 -06002060/*
2061 * Alloc a tag set to be associated with one or more request queues.
2062 * May fail with EINVAL for various error conditions. May adjust the
2063 * requested depth down, if if it too large. In that case, the set
2064 * value will be stored in set->queue_depth.
2065 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002066int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2067{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002068 if (!set->nr_hw_queues)
2069 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002070 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002071 return -EINVAL;
2072 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2073 return -EINVAL;
2074
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002075 if (!set->nr_hw_queues || !set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002076 return -EINVAL;
2077
Jens Axboea4391c62014-06-05 15:21:56 -06002078 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2079 pr_info("blk-mq: reduced tag depth to %u\n",
2080 BLK_MQ_MAX_DEPTH);
2081 set->queue_depth = BLK_MQ_MAX_DEPTH;
2082 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002083
Ming Lei48479002014-04-19 18:00:17 +08002084 set->tags = kmalloc_node(set->nr_hw_queues *
2085 sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002086 GFP_KERNEL, set->numa_node);
2087 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002088 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002089
Jens Axboea5164402014-09-10 09:02:03 -06002090 if (blk_mq_alloc_rq_maps(set))
2091 goto enomem;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002092
Jens Axboe0d2602c2014-05-13 15:10:52 -06002093 mutex_init(&set->tag_list_lock);
2094 INIT_LIST_HEAD(&set->tag_list);
2095
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002096 return 0;
Jens Axboea5164402014-09-10 09:02:03 -06002097enomem:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002098 kfree(set->tags);
2099 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002100 return -ENOMEM;
2101}
2102EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2103
2104void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2105{
2106 int i;
2107
Jens Axboe484b4062014-05-21 14:01:15 -06002108 for (i = 0; i < set->nr_hw_queues; i++) {
2109 if (set->tags[i])
2110 blk_mq_free_rq_map(set, set->tags[i], i);
2111 }
2112
Ming Lei981bd182014-04-24 00:07:34 +08002113 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002114 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002115}
2116EXPORT_SYMBOL(blk_mq_free_tag_set);
2117
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002118int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2119{
2120 struct blk_mq_tag_set *set = q->tag_set;
2121 struct blk_mq_hw_ctx *hctx;
2122 int i, ret;
2123
2124 if (!set || nr > set->queue_depth)
2125 return -EINVAL;
2126
2127 ret = 0;
2128 queue_for_each_hw_ctx(q, hctx, i) {
2129 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2130 if (ret)
2131 break;
2132 }
2133
2134 if (!ret)
2135 q->nr_requests = nr;
2136
2137 return ret;
2138}
2139
Jens Axboe676141e2014-03-20 13:29:18 -06002140void blk_mq_disable_hotplug(void)
2141{
2142 mutex_lock(&all_q_mutex);
2143}
2144
2145void blk_mq_enable_hotplug(void)
2146{
2147 mutex_unlock(&all_q_mutex);
2148}
2149
Jens Axboe320ae512013-10-24 09:20:05 +01002150static int __init blk_mq_init(void)
2151{
Jens Axboe320ae512013-10-24 09:20:05 +01002152 blk_mq_cpu_init();
2153
Tejun Heoadd703f2014-07-01 10:34:38 -06002154 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002155
2156 return 0;
2157}
2158subsys_initcall(blk_mq_init);