blob: 8b309e81ed0fda22812787c93b23a2d568f1f966 [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
272void blk_mq_free_request(struct request *rq)
273{
274 struct blk_mq_ctx *ctx = rq->mq_ctx;
275 struct blk_mq_hw_ctx *hctx;
276 struct request_queue *q = rq->q;
277
278 ctx->rq_completed[rq_is_sync(rq)]++;
279
280 hctx = q->mq_ops->map_queue(q, ctx->cpu);
281 __blk_mq_free_request(hctx, ctx, rq);
282}
283
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700284inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100285{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700286 blk_account_io_done(rq);
287
Christoph Hellwig91b63632014-04-16 09:44:53 +0200288 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100289 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200290 } else {
291 if (unlikely(blk_bidi_rq(rq)))
292 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100293 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200294 }
Jens Axboe320ae512013-10-24 09:20:05 +0100295}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700296EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200297
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700298void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200299{
300 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
301 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700302 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200303}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700304EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100305
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800306static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100307{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800308 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100309
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800310 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100311}
312
Jens Axboeed851862014-05-30 21:20:50 -0600313static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100314{
315 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700316 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100317 int cpu;
318
Christoph Hellwig38535202014-04-25 02:32:53 -0700319 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800320 rq->q->softirq_done_fn(rq);
321 return;
322 }
Jens Axboe320ae512013-10-24 09:20:05 +0100323
324 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700325 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
326 shared = cpus_share_cache(cpu, ctx->cpu);
327
328 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800329 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800330 rq->csd.info = rq;
331 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100332 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800333 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800334 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800335 }
Jens Axboe320ae512013-10-24 09:20:05 +0100336 put_cpu();
337}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800338
Jens Axboeed851862014-05-30 21:20:50 -0600339void __blk_mq_complete_request(struct request *rq)
340{
341 struct request_queue *q = rq->q;
342
343 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700344 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600345 else
346 blk_mq_ipi_complete_request(rq);
347}
348
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800349/**
350 * blk_mq_complete_request - end I/O on a request
351 * @rq: the request being processed
352 *
353 * Description:
354 * Ends all I/O on a request. It does not handle partial completions.
355 * The actual completion happens out-of-order, through a IPI handler.
356 **/
357void blk_mq_complete_request(struct request *rq)
358{
Jens Axboe95f09682014-05-27 17:46:48 -0600359 struct request_queue *q = rq->q;
360
361 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800362 return;
Jens Axboeed851862014-05-30 21:20:50 -0600363 if (!blk_mark_rq_complete(rq))
364 __blk_mq_complete_request(rq);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800365}
366EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100367
Christoph Hellwige2490072014-09-13 16:40:09 -0700368void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100369{
370 struct request_queue *q = rq->q;
371
372 trace_block_rq_issue(q, rq);
373
Christoph Hellwig742ee692014-04-14 10:30:06 +0200374 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200375 if (unlikely(blk_bidi_rq(rq)))
376 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200377
Ming Lei2b8393b2014-06-10 00:16:41 +0800378 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600379
380 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600381 * Ensure that ->deadline is visible before set the started
382 * flag and clear the completed flag.
383 */
384 smp_mb__before_atomic();
385
386 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600387 * Mark us as started and clear complete. Complete might have been
388 * set if requeue raced with timeout, which then marked it as
389 * complete. So be sure to clear complete again when we start
390 * the request, otherwise we'll ignore the completion event.
391 */
Jens Axboe4b570522014-05-29 11:00:11 -0600392 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
393 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
394 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
395 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800396
397 if (q->dma_drain_size && blk_rq_bytes(rq)) {
398 /*
399 * Make sure space for the drain appears. We know we can do
400 * this because max_hw_segments has been adjusted to be one
401 * fewer than the device can handle.
402 */
403 rq->nr_phys_segments++;
404 }
Jens Axboe320ae512013-10-24 09:20:05 +0100405}
Christoph Hellwige2490072014-09-13 16:40:09 -0700406EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100407
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200408static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100409{
410 struct request_queue *q = rq->q;
411
412 trace_block_rq_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800413
Christoph Hellwige2490072014-09-13 16:40:09 -0700414 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
415 if (q->dma_drain_size && blk_rq_bytes(rq))
416 rq->nr_phys_segments--;
417 }
Jens Axboe320ae512013-10-24 09:20:05 +0100418}
419
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200420void blk_mq_requeue_request(struct request *rq)
421{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200422 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200423
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200424 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600425 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200426}
427EXPORT_SYMBOL(blk_mq_requeue_request);
428
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600429static void blk_mq_requeue_work(struct work_struct *work)
430{
431 struct request_queue *q =
432 container_of(work, struct request_queue, requeue_work);
433 LIST_HEAD(rq_list);
434 struct request *rq, *next;
435 unsigned long flags;
436
437 spin_lock_irqsave(&q->requeue_lock, flags);
438 list_splice_init(&q->requeue_list, &rq_list);
439 spin_unlock_irqrestore(&q->requeue_lock, flags);
440
441 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
442 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
443 continue;
444
445 rq->cmd_flags &= ~REQ_SOFTBARRIER;
446 list_del_init(&rq->queuelist);
447 blk_mq_insert_request(rq, true, false, false);
448 }
449
450 while (!list_empty(&rq_list)) {
451 rq = list_entry(rq_list.next, struct request, queuelist);
452 list_del_init(&rq->queuelist);
453 blk_mq_insert_request(rq, false, false, false);
454 }
455
Jens Axboe8b957412014-09-19 13:10:29 -0600456 /*
457 * Use the start variant of queue running here, so that running
458 * the requeue work will kick stopped queues.
459 */
460 blk_mq_start_hw_queues(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600461}
462
463void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
464{
465 struct request_queue *q = rq->q;
466 unsigned long flags;
467
468 /*
469 * We abuse this flag that is otherwise used by the I/O scheduler to
470 * request head insertation from the workqueue.
471 */
472 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
473
474 spin_lock_irqsave(&q->requeue_lock, flags);
475 if (at_head) {
476 rq->cmd_flags |= REQ_SOFTBARRIER;
477 list_add(&rq->queuelist, &q->requeue_list);
478 } else {
479 list_add_tail(&rq->queuelist, &q->requeue_list);
480 }
481 spin_unlock_irqrestore(&q->requeue_lock, flags);
482}
483EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
484
485void blk_mq_kick_requeue_list(struct request_queue *q)
486{
487 kblockd_schedule_work(&q->requeue_work);
488}
489EXPORT_SYMBOL(blk_mq_kick_requeue_list);
490
Ming Lei7c94e1c2014-09-25 23:23:43 +0800491static inline bool is_flush_request(struct request *rq,
492 struct blk_flush_queue *fq, unsigned int tag)
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600493{
Jens Axboe0e62f512014-06-04 10:23:49 -0600494 return ((rq->cmd_flags & REQ_FLUSH_SEQ) &&
Ming Lei7c94e1c2014-09-25 23:23:43 +0800495 fq->flush_rq->tag == tag);
Jens Axboe0e62f512014-06-04 10:23:49 -0600496}
Shaohua Li22302372014-05-30 08:06:42 -0600497
Jens Axboe0e62f512014-06-04 10:23:49 -0600498struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
499{
500 struct request *rq = tags->rqs[tag];
Ming Leie97c2932014-09-25 23:23:46 +0800501 /* mq_ctx of flush rq is always cloned from the corresponding req */
502 struct blk_flush_queue *fq = blk_get_flush_queue(rq->q, rq->mq_ctx);
Shaohua Li22302372014-05-30 08:06:42 -0600503
Ming Lei7c94e1c2014-09-25 23:23:43 +0800504 if (!is_flush_request(rq, fq, tag))
Jens Axboe0e62f512014-06-04 10:23:49 -0600505 return rq;
506
Ming Lei7c94e1c2014-09-25 23:23:43 +0800507 return fq->flush_rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600508}
509EXPORT_SYMBOL(blk_mq_tag_to_rq);
510
Jens Axboe320ae512013-10-24 09:20:05 +0100511struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700512 unsigned long next;
513 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100514};
515
Christoph Hellwig90415832014-09-22 10:21:48 -0600516void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100517{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700518 struct blk_mq_ops *ops = req->q->mq_ops;
519 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600520
521 /*
522 * We know that complete is set at this point. If STARTED isn't set
523 * anymore, then the request isn't active and the "timeout" should
524 * just be ignored. This can happen due to the bitflag ordering.
525 * Timeout first checks if STARTED is set, and if it is, assumes
526 * the request is active. But if we race with completion, then
527 * we both flags will get cleared. So check here again, and ignore
528 * a timeout event with a request that isn't active.
529 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700530 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
531 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600532
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700533 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700534 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600535
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700536 switch (ret) {
537 case BLK_EH_HANDLED:
538 __blk_mq_complete_request(req);
539 break;
540 case BLK_EH_RESET_TIMER:
541 blk_add_timer(req);
542 blk_clear_rq_complete(req);
543 break;
544 case BLK_EH_NOT_HANDLED:
545 break;
546 default:
547 printk(KERN_ERR "block: bad eh return: %d\n", ret);
548 break;
549 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600550}
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700551
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700552static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
553 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100554{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700555 struct blk_mq_timeout_data *data = priv;
556
Jens Axboe320ae512013-10-24 09:20:05 +0100557 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700558 return;
Jens Axboe320ae512013-10-24 09:20:05 +0100559
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700560 if (time_after_eq(jiffies, rq->deadline)) {
561 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700562 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700563 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
564 data->next = rq->deadline;
565 data->next_set = 1;
566 }
Jens Axboe320ae512013-10-24 09:20:05 +0100567}
568
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700569static void blk_mq_rq_timer(unsigned long priv)
Jens Axboe320ae512013-10-24 09:20:05 +0100570{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700571 struct request_queue *q = (struct request_queue *)priv;
572 struct blk_mq_timeout_data data = {
573 .next = 0,
574 .next_set = 0,
575 };
Jens Axboe320ae512013-10-24 09:20:05 +0100576 struct blk_mq_hw_ctx *hctx;
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700577 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100578
Jens Axboe484b4062014-05-21 14:01:15 -0600579 queue_for_each_hw_ctx(q, hctx, i) {
580 /*
581 * If not software queues are currently mapped to this
582 * hardware queue, there's nothing to check
583 */
584 if (!hctx->nr_ctx || !hctx->tags)
585 continue;
586
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700587 blk_mq_tag_busy_iter(hctx, blk_mq_check_expired, &data);
Jens Axboe484b4062014-05-21 14:01:15 -0600588 }
Jens Axboe320ae512013-10-24 09:20:05 +0100589
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700590 if (data.next_set) {
591 data.next = blk_rq_timeout(round_jiffies_up(data.next));
592 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600593 } else {
594 queue_for_each_hw_ctx(q, hctx, i)
595 blk_mq_tag_idle(hctx);
596 }
Jens Axboe320ae512013-10-24 09:20:05 +0100597}
598
599/*
600 * Reverse check our software queue for entries that we could potentially
601 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
602 * too much time checking for merges.
603 */
604static bool blk_mq_attempt_merge(struct request_queue *q,
605 struct blk_mq_ctx *ctx, struct bio *bio)
606{
607 struct request *rq;
608 int checked = 8;
609
610 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
611 int el_ret;
612
613 if (!checked--)
614 break;
615
616 if (!blk_rq_merge_ok(rq, bio))
617 continue;
618
619 el_ret = blk_try_merge(rq, bio);
620 if (el_ret == ELEVATOR_BACK_MERGE) {
621 if (bio_attempt_back_merge(q, rq, bio)) {
622 ctx->rq_merged++;
623 return true;
624 }
625 break;
626 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
627 if (bio_attempt_front_merge(q, rq, bio)) {
628 ctx->rq_merged++;
629 return true;
630 }
631 break;
632 }
633 }
634
635 return false;
636}
637
Jens Axboe320ae512013-10-24 09:20:05 +0100638/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600639 * Process software queues that have been marked busy, splicing them
640 * to the for-dispatch
641 */
642static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
643{
644 struct blk_mq_ctx *ctx;
645 int i;
646
647 for (i = 0; i < hctx->ctx_map.map_size; i++) {
648 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
649 unsigned int off, bit;
650
651 if (!bm->word)
652 continue;
653
654 bit = 0;
655 off = i * hctx->ctx_map.bits_per_word;
656 do {
657 bit = find_next_bit(&bm->word, bm->depth, bit);
658 if (bit >= bm->depth)
659 break;
660
661 ctx = hctx->ctxs[bit + off];
662 clear_bit(bit, &bm->word);
663 spin_lock(&ctx->lock);
664 list_splice_tail_init(&ctx->rq_list, list);
665 spin_unlock(&ctx->lock);
666
667 bit++;
668 } while (1);
669 }
670}
671
672/*
Jens Axboe320ae512013-10-24 09:20:05 +0100673 * Run this hardware queue, pulling any software queues mapped to it in.
674 * Note that this function currently has various problems around ordering
675 * of IO. In particular, we'd like FIFO behaviour on handling existing
676 * items on the hctx->dispatch list. Ignore that for now.
677 */
678static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
679{
680 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100681 struct request *rq;
682 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600683 LIST_HEAD(driver_list);
684 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600685 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100686
Jens Axboefd1270d2014-04-16 09:23:48 -0600687 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
Jens Axboee4043dc2014-04-09 10:18:23 -0600688
Jens Axboe5d12f902014-03-19 15:25:02 -0600689 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100690 return;
691
692 hctx->run++;
693
694 /*
695 * Touch any software queue that has pending entries.
696 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600697 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100698
699 /*
700 * If we have previous entries on our dispatch list, grab them
701 * and stuff them at the front for more fair dispatch.
702 */
703 if (!list_empty_careful(&hctx->dispatch)) {
704 spin_lock(&hctx->lock);
705 if (!list_empty(&hctx->dispatch))
706 list_splice_init(&hctx->dispatch, &rq_list);
707 spin_unlock(&hctx->lock);
708 }
709
710 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600711 * Start off with dptr being NULL, so we start the first request
712 * immediately, even if we have more pending.
713 */
714 dptr = NULL;
715
716 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100717 * Now process all the entries, sending them to the driver.
718 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600719 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100720 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600721 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100722 int ret;
723
724 rq = list_first_entry(&rq_list, struct request, queuelist);
725 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100726
Jens Axboe74c45052014-10-29 11:14:52 -0600727 bd.rq = rq;
728 bd.list = dptr;
729 bd.last = list_empty(&rq_list);
730
731 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100732 switch (ret) {
733 case BLK_MQ_RQ_QUEUE_OK:
734 queued++;
735 continue;
736 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100737 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200738 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100739 break;
740 default:
741 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100742 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800743 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700744 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100745 break;
746 }
747
748 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
749 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600750
751 /*
752 * We've done the first request. If we have more than 1
753 * left in the list, set dptr to defer issue.
754 */
755 if (!dptr && rq_list.next != rq_list.prev)
756 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100757 }
758
759 if (!queued)
760 hctx->dispatched[0]++;
761 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
762 hctx->dispatched[ilog2(queued) + 1]++;
763
764 /*
765 * Any items that need requeuing? Stuff them into hctx->dispatch,
766 * that is where we will continue on next queue run.
767 */
768 if (!list_empty(&rq_list)) {
769 spin_lock(&hctx->lock);
770 list_splice(&rq_list, &hctx->dispatch);
771 spin_unlock(&hctx->lock);
772 }
773}
774
Jens Axboe506e9312014-05-07 10:26:44 -0600775/*
776 * It'd be great if the workqueue API had a way to pass
777 * in a mask and had some smarts for more clever placement.
778 * For now we just round-robin here, switching for every
779 * BLK_MQ_CPU_WORK_BATCH queued items.
780 */
781static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
782{
783 int cpu = hctx->next_cpu;
784
785 if (--hctx->next_cpu_batch <= 0) {
786 int next_cpu;
787
788 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
789 if (next_cpu >= nr_cpu_ids)
790 next_cpu = cpumask_first(hctx->cpumask);
791
792 hctx->next_cpu = next_cpu;
793 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
794 }
795
796 return cpu;
797}
798
Jens Axboe320ae512013-10-24 09:20:05 +0100799void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
800{
Jens Axboe5d12f902014-03-19 15:25:02 -0600801 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100802 return;
803
Paolo Bonzini398205b2014-11-07 23:03:59 +0100804 if (!async) {
805 preempt_disable();
806 if (cpumask_test_cpu(smp_processor_id(), hctx->cpumask)) {
807 __blk_mq_run_hw_queue(hctx);
808 preempt_enable();
809 return;
810 }
811
812 preempt_enable();
813 }
814
815 if (hctx->queue->nr_hw_queues == 1)
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600816 kblockd_schedule_delayed_work(&hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600817 else {
818 unsigned int cpu;
819
Jens Axboe506e9312014-05-07 10:26:44 -0600820 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600821 kblockd_schedule_delayed_work_on(cpu, &hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600822 }
Jens Axboe320ae512013-10-24 09:20:05 +0100823}
824
825void blk_mq_run_queues(struct request_queue *q, bool async)
826{
827 struct blk_mq_hw_ctx *hctx;
828 int i;
829
830 queue_for_each_hw_ctx(q, hctx, i) {
831 if ((!blk_mq_hctx_has_pending(hctx) &&
832 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600833 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100834 continue;
835
836 blk_mq_run_hw_queue(hctx, async);
837 }
838}
839EXPORT_SYMBOL(blk_mq_run_queues);
840
841void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
842{
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600843 cancel_delayed_work(&hctx->run_work);
844 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100845 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
846}
847EXPORT_SYMBOL(blk_mq_stop_hw_queue);
848
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100849void blk_mq_stop_hw_queues(struct request_queue *q)
850{
851 struct blk_mq_hw_ctx *hctx;
852 int i;
853
854 queue_for_each_hw_ctx(q, hctx, i)
855 blk_mq_stop_hw_queue(hctx);
856}
857EXPORT_SYMBOL(blk_mq_stop_hw_queues);
858
Jens Axboe320ae512013-10-24 09:20:05 +0100859void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
860{
861 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600862
Jens Axboe0ffbce82014-06-25 08:22:34 -0600863 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100864}
865EXPORT_SYMBOL(blk_mq_start_hw_queue);
866
Christoph Hellwig2f268552014-04-16 09:44:56 +0200867void blk_mq_start_hw_queues(struct request_queue *q)
868{
869 struct blk_mq_hw_ctx *hctx;
870 int i;
871
872 queue_for_each_hw_ctx(q, hctx, i)
873 blk_mq_start_hw_queue(hctx);
874}
875EXPORT_SYMBOL(blk_mq_start_hw_queues);
876
877
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200878void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100879{
880 struct blk_mq_hw_ctx *hctx;
881 int i;
882
883 queue_for_each_hw_ctx(q, hctx, i) {
884 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
885 continue;
886
887 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200888 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100889 }
890}
891EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
892
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600893static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100894{
895 struct blk_mq_hw_ctx *hctx;
896
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600897 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600898
Jens Axboe320ae512013-10-24 09:20:05 +0100899 __blk_mq_run_hw_queue(hctx);
900}
901
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600902static void blk_mq_delay_work_fn(struct work_struct *work)
903{
904 struct blk_mq_hw_ctx *hctx;
905
906 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
907
908 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
909 __blk_mq_run_hw_queue(hctx);
910}
911
912void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
913{
914 unsigned long tmo = msecs_to_jiffies(msecs);
915
916 if (hctx->queue->nr_hw_queues == 1)
917 kblockd_schedule_delayed_work(&hctx->delay_work, tmo);
918 else {
919 unsigned int cpu;
920
Jens Axboe506e9312014-05-07 10:26:44 -0600921 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600922 kblockd_schedule_delayed_work_on(cpu, &hctx->delay_work, tmo);
923 }
924}
925EXPORT_SYMBOL(blk_mq_delay_queue);
926
Jens Axboe320ae512013-10-24 09:20:05 +0100927static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800928 struct request *rq, bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +0100929{
930 struct blk_mq_ctx *ctx = rq->mq_ctx;
931
Jens Axboe01b983c2013-11-19 18:59:10 -0700932 trace_block_rq_insert(hctx->queue, rq);
933
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800934 if (at_head)
935 list_add(&rq->queuelist, &ctx->rq_list);
936 else
937 list_add_tail(&rq->queuelist, &ctx->rq_list);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600938
Jens Axboe320ae512013-10-24 09:20:05 +0100939 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100940}
941
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600942void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
943 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100944{
945 struct request_queue *q = rq->q;
946 struct blk_mq_hw_ctx *hctx;
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600947 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100948
949 current_ctx = blk_mq_get_ctx(q);
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600950 if (!cpu_online(ctx->cpu))
951 rq->mq_ctx = ctx = current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100952
Jens Axboe320ae512013-10-24 09:20:05 +0100953 hctx = q->mq_ops->map_queue(q, ctx->cpu);
954
Christoph Hellwiga57a1782014-09-16 14:44:07 -0700955 spin_lock(&ctx->lock);
956 __blk_mq_insert_request(hctx, rq, at_head);
957 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100958
Jens Axboe320ae512013-10-24 09:20:05 +0100959 if (run_queue)
960 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600961
962 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100963}
964
965static void blk_mq_insert_requests(struct request_queue *q,
966 struct blk_mq_ctx *ctx,
967 struct list_head *list,
968 int depth,
969 bool from_schedule)
970
971{
972 struct blk_mq_hw_ctx *hctx;
973 struct blk_mq_ctx *current_ctx;
974
975 trace_block_unplug(q, depth, !from_schedule);
976
977 current_ctx = blk_mq_get_ctx(q);
978
979 if (!cpu_online(ctx->cpu))
980 ctx = current_ctx;
981 hctx = q->mq_ops->map_queue(q, ctx->cpu);
982
983 /*
984 * preemption doesn't flush plug list, so it's possible ctx->cpu is
985 * offline now
986 */
987 spin_lock(&ctx->lock);
988 while (!list_empty(list)) {
989 struct request *rq;
990
991 rq = list_first_entry(list, struct request, queuelist);
992 list_del_init(&rq->queuelist);
993 rq->mq_ctx = ctx;
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800994 __blk_mq_insert_request(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100995 }
996 spin_unlock(&ctx->lock);
997
Jens Axboe320ae512013-10-24 09:20:05 +0100998 blk_mq_run_hw_queue(hctx, from_schedule);
Jens Axboee4043dc2014-04-09 10:18:23 -0600999 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001000}
1001
1002static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1003{
1004 struct request *rqa = container_of(a, struct request, queuelist);
1005 struct request *rqb = container_of(b, struct request, queuelist);
1006
1007 return !(rqa->mq_ctx < rqb->mq_ctx ||
1008 (rqa->mq_ctx == rqb->mq_ctx &&
1009 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1010}
1011
1012void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1013{
1014 struct blk_mq_ctx *this_ctx;
1015 struct request_queue *this_q;
1016 struct request *rq;
1017 LIST_HEAD(list);
1018 LIST_HEAD(ctx_list);
1019 unsigned int depth;
1020
1021 list_splice_init(&plug->mq_list, &list);
1022
1023 list_sort(NULL, &list, plug_ctx_cmp);
1024
1025 this_q = NULL;
1026 this_ctx = NULL;
1027 depth = 0;
1028
1029 while (!list_empty(&list)) {
1030 rq = list_entry_rq(list.next);
1031 list_del_init(&rq->queuelist);
1032 BUG_ON(!rq->q);
1033 if (rq->mq_ctx != this_ctx) {
1034 if (this_ctx) {
1035 blk_mq_insert_requests(this_q, this_ctx,
1036 &ctx_list, depth,
1037 from_schedule);
1038 }
1039
1040 this_ctx = rq->mq_ctx;
1041 this_q = rq->q;
1042 depth = 0;
1043 }
1044
1045 depth++;
1046 list_add_tail(&rq->queuelist, &ctx_list);
1047 }
1048
1049 /*
1050 * If 'this_ctx' is set, we know we have entries to complete
1051 * on 'ctx_list'. Do those.
1052 */
1053 if (this_ctx) {
1054 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1055 from_schedule);
1056 }
1057}
1058
1059static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1060{
1061 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001062
Jens Axboe3ee32372014-06-09 09:36:53 -06001063 if (blk_do_io_stat(rq))
Jens Axboe4b570522014-05-29 11:00:11 -06001064 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001065}
1066
Jens Axboe274a5842014-08-15 12:44:08 -06001067static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1068{
1069 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1070 !blk_queue_nomerges(hctx->queue);
1071}
1072
Jens Axboe07068d52014-05-22 10:40:51 -06001073static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1074 struct blk_mq_ctx *ctx,
1075 struct request *rq, struct bio *bio)
1076{
Jens Axboe274a5842014-08-15 12:44:08 -06001077 if (!hctx_allow_merges(hctx)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001078 blk_mq_bio_to_request(rq, bio);
1079 spin_lock(&ctx->lock);
1080insert_rq:
1081 __blk_mq_insert_request(hctx, rq, false);
1082 spin_unlock(&ctx->lock);
1083 return false;
1084 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001085 struct request_queue *q = hctx->queue;
1086
Jens Axboe07068d52014-05-22 10:40:51 -06001087 spin_lock(&ctx->lock);
1088 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1089 blk_mq_bio_to_request(rq, bio);
1090 goto insert_rq;
1091 }
1092
1093 spin_unlock(&ctx->lock);
1094 __blk_mq_free_request(hctx, ctx, rq);
1095 return true;
1096 }
1097}
1098
1099struct blk_map_ctx {
1100 struct blk_mq_hw_ctx *hctx;
1101 struct blk_mq_ctx *ctx;
1102};
1103
1104static struct request *blk_mq_map_request(struct request_queue *q,
1105 struct bio *bio,
1106 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001107{
1108 struct blk_mq_hw_ctx *hctx;
1109 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001110 struct request *rq;
Jens Axboe07068d52014-05-22 10:40:51 -06001111 int rw = bio_data_dir(bio);
Ming Leicb96a422014-06-01 00:43:37 +08001112 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001113
Jens Axboe07068d52014-05-22 10:40:51 -06001114 if (unlikely(blk_mq_queue_enter(q))) {
Nicholas Bellinger14ec77f2014-02-07 13:45:39 -07001115 bio_endio(bio, -EIO);
Jens Axboe07068d52014-05-22 10:40:51 -06001116 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001117 }
1118
1119 ctx = blk_mq_get_ctx(q);
1120 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1121
Jens Axboe07068d52014-05-22 10:40:51 -06001122 if (rw_is_sync(bio->bi_rw))
Shaohua Li27fbf4e2014-02-19 20:20:21 +08001123 rw |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001124
Jens Axboe320ae512013-10-24 09:20:05 +01001125 trace_block_getrq(q, bio, rw);
Ming Leicb96a422014-06-01 00:43:37 +08001126 blk_mq_set_alloc_data(&alloc_data, q, GFP_ATOMIC, false, ctx,
1127 hctx);
1128 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001129 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001130 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001131 blk_mq_put_ctx(ctx);
1132 trace_block_sleeprq(q, bio, rw);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001133
1134 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001135 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +08001136 blk_mq_set_alloc_data(&alloc_data, q,
1137 __GFP_WAIT|GFP_ATOMIC, false, ctx, hctx);
1138 rq = __blk_mq_alloc_request(&alloc_data, rw);
1139 ctx = alloc_data.ctx;
1140 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001141 }
1142
1143 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001144 data->hctx = hctx;
1145 data->ctx = ctx;
1146 return rq;
1147}
1148
1149/*
1150 * Multiple hardware queue variant. This will not use per-process plugs,
1151 * but will attempt to bypass the hctx queueing if we can go straight to
1152 * hardware for SYNC IO.
1153 */
1154static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1155{
1156 const int is_sync = rw_is_sync(bio->bi_rw);
1157 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1158 struct blk_map_ctx data;
1159 struct request *rq;
1160
1161 blk_queue_bounce(q, &bio);
1162
1163 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1164 bio_endio(bio, -EIO);
1165 return;
1166 }
1167
1168 rq = blk_mq_map_request(q, bio, &data);
1169 if (unlikely(!rq))
1170 return;
1171
1172 if (unlikely(is_flush_fua)) {
1173 blk_mq_bio_to_request(rq, bio);
1174 blk_insert_flush(rq);
1175 goto run_queue;
1176 }
1177
Jens Axboee167dfb2014-10-29 11:18:26 -06001178 /*
1179 * If the driver supports defer issued based on 'last', then
1180 * queue it up like normal since we can potentially save some
1181 * CPU this way.
1182 */
1183 if (is_sync && !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
Jens Axboe74c45052014-10-29 11:14:52 -06001184 struct blk_mq_queue_data bd = {
1185 .rq = rq,
1186 .list = NULL,
1187 .last = 1
1188 };
Jens Axboe07068d52014-05-22 10:40:51 -06001189 int ret;
1190
1191 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001192
1193 /*
1194 * For OK queue, we are done. For error, kill it. Any other
1195 * error (busy), just add it to our list as we previously
1196 * would have done
1197 */
Jens Axboe74c45052014-10-29 11:14:52 -06001198 ret = q->mq_ops->queue_rq(data.hctx, &bd);
Jens Axboe07068d52014-05-22 10:40:51 -06001199 if (ret == BLK_MQ_RQ_QUEUE_OK)
1200 goto done;
1201 else {
1202 __blk_mq_requeue_request(rq);
1203
1204 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1205 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -07001206 blk_mq_end_request(rq, rq->errors);
Jens Axboe07068d52014-05-22 10:40:51 -06001207 goto done;
1208 }
1209 }
1210 }
1211
1212 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1213 /*
1214 * For a SYNC request, send it to the hardware immediately. For
1215 * an ASYNC request, just ensure that we run it later on. The
1216 * latter allows for merging opportunities and more efficient
1217 * dispatching.
1218 */
1219run_queue:
1220 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1221 }
1222done:
1223 blk_mq_put_ctx(data.ctx);
1224}
1225
1226/*
1227 * Single hardware queue variant. This will attempt to use any per-process
1228 * plug for merging and IO deferral.
1229 */
1230static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1231{
1232 const int is_sync = rw_is_sync(bio->bi_rw);
1233 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1234 unsigned int use_plug, request_count = 0;
1235 struct blk_map_ctx data;
1236 struct request *rq;
1237
1238 /*
1239 * If we have multiple hardware queues, just go directly to
1240 * one of those for sync IO.
1241 */
1242 use_plug = !is_flush_fua && !is_sync;
1243
1244 blk_queue_bounce(q, &bio);
1245
1246 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1247 bio_endio(bio, -EIO);
1248 return;
1249 }
1250
1251 if (use_plug && !blk_queue_nomerges(q) &&
1252 blk_attempt_plug_merge(q, bio, &request_count))
1253 return;
1254
1255 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001256 if (unlikely(!rq))
1257 return;
Jens Axboe320ae512013-10-24 09:20:05 +01001258
1259 if (unlikely(is_flush_fua)) {
1260 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001261 blk_insert_flush(rq);
1262 goto run_queue;
1263 }
1264
1265 /*
1266 * A task plug currently exists. Since this is completely lockless,
1267 * utilize that to temporarily store requests until the task is
1268 * either done or scheduled away.
1269 */
1270 if (use_plug) {
1271 struct blk_plug *plug = current->plug;
1272
1273 if (plug) {
1274 blk_mq_bio_to_request(rq, bio);
Shaohua Li92f399c2013-10-29 12:01:03 -06001275 if (list_empty(&plug->mq_list))
Jens Axboe320ae512013-10-24 09:20:05 +01001276 trace_block_plug(q);
1277 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1278 blk_flush_plug_list(plug, false);
1279 trace_block_plug(q);
1280 }
1281 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe07068d52014-05-22 10:40:51 -06001282 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001283 return;
1284 }
1285 }
1286
Jens Axboe07068d52014-05-22 10:40:51 -06001287 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1288 /*
1289 * For a SYNC request, send it to the hardware immediately. For
1290 * an ASYNC request, just ensure that we run it later on. The
1291 * latter allows for merging opportunities and more efficient
1292 * dispatching.
1293 */
1294run_queue:
1295 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001296 }
1297
Jens Axboe07068d52014-05-22 10:40:51 -06001298 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001299}
1300
1301/*
1302 * Default mapping to a software queue, since we use one per CPU.
1303 */
1304struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1305{
1306 return q->queue_hw_ctx[q->mq_map[cpu]];
1307}
1308EXPORT_SYMBOL(blk_mq_map_queue);
1309
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001310static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1311 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001312{
1313 struct page *page;
1314
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001315 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001316 int i;
1317
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001318 for (i = 0; i < tags->nr_tags; i++) {
1319 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001320 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001321 set->ops->exit_request(set->driver_data, tags->rqs[i],
1322 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001323 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001324 }
1325 }
1326
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001327 while (!list_empty(&tags->page_list)) {
1328 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001329 list_del_init(&page->lru);
Jens Axboe320ae512013-10-24 09:20:05 +01001330 __free_pages(page, page->private);
1331 }
1332
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001333 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001334
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001335 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001336}
1337
1338static size_t order_to_size(unsigned int order)
1339{
Ming Lei4ca08502014-04-19 18:00:18 +08001340 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001341}
1342
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001343static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1344 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001345{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001346 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001347 unsigned int i, j, entries_per_page, max_order = 4;
1348 size_t rq_size, left;
1349
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001350 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1351 set->numa_node);
1352 if (!tags)
1353 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001354
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001355 INIT_LIST_HEAD(&tags->page_list);
1356
Jens Axboea5164402014-09-10 09:02:03 -06001357 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1358 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1359 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001360 if (!tags->rqs) {
1361 blk_mq_free_tags(tags);
1362 return NULL;
1363 }
Jens Axboe320ae512013-10-24 09:20:05 +01001364
1365 /*
1366 * rq_size is the size of the request plus driver payload, rounded
1367 * to the cacheline size
1368 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001369 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001370 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001371 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001372
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001373 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001374 int this_order = max_order;
1375 struct page *page;
1376 int to_do;
1377 void *p;
1378
1379 while (left < order_to_size(this_order - 1) && this_order)
1380 this_order--;
1381
1382 do {
Jens Axboea5164402014-09-10 09:02:03 -06001383 page = alloc_pages_node(set->numa_node,
1384 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1385 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001386 if (page)
1387 break;
1388 if (!this_order--)
1389 break;
1390 if (order_to_size(this_order) < rq_size)
1391 break;
1392 } while (1);
1393
1394 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001395 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001396
1397 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001398 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001399
1400 p = page_address(page);
1401 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001402 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001403 left -= to_do * rq_size;
1404 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001405 tags->rqs[i] = p;
David Hildenbrand683d0e12014-09-18 11:04:31 +02001406 tags->rqs[i]->atomic_flags = 0;
1407 tags->rqs[i]->cmd_flags = 0;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001408 if (set->ops->init_request) {
1409 if (set->ops->init_request(set->driver_data,
1410 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001411 set->numa_node)) {
1412 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001413 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001414 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001415 }
1416
Jens Axboe320ae512013-10-24 09:20:05 +01001417 p += rq_size;
1418 i++;
1419 }
1420 }
1421
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001422 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001423
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001424fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001425 blk_mq_free_rq_map(set, tags, hctx_idx);
1426 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001427}
1428
Jens Axboe1429d7c2014-05-19 09:23:55 -06001429static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1430{
1431 kfree(bitmap->map);
1432}
1433
1434static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1435{
1436 unsigned int bpw = 8, total, num_maps, i;
1437
1438 bitmap->bits_per_word = bpw;
1439
1440 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1441 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1442 GFP_KERNEL, node);
1443 if (!bitmap->map)
1444 return -ENOMEM;
1445
1446 bitmap->map_size = num_maps;
1447
1448 total = nr_cpu_ids;
1449 for (i = 0; i < num_maps; i++) {
1450 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1451 total -= bitmap->map[i].depth;
1452 }
1453
1454 return 0;
1455}
1456
Jens Axboe484b4062014-05-21 14:01:15 -06001457static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1458{
1459 struct request_queue *q = hctx->queue;
1460 struct blk_mq_ctx *ctx;
1461 LIST_HEAD(tmp);
1462
1463 /*
1464 * Move ctx entries to new CPU, if this one is going away.
1465 */
1466 ctx = __blk_mq_get_ctx(q, cpu);
1467
1468 spin_lock(&ctx->lock);
1469 if (!list_empty(&ctx->rq_list)) {
1470 list_splice_init(&ctx->rq_list, &tmp);
1471 blk_mq_hctx_clear_pending(hctx, ctx);
1472 }
1473 spin_unlock(&ctx->lock);
1474
1475 if (list_empty(&tmp))
1476 return NOTIFY_OK;
1477
1478 ctx = blk_mq_get_ctx(q);
1479 spin_lock(&ctx->lock);
1480
1481 while (!list_empty(&tmp)) {
1482 struct request *rq;
1483
1484 rq = list_first_entry(&tmp, struct request, queuelist);
1485 rq->mq_ctx = ctx;
1486 list_move_tail(&rq->queuelist, &ctx->rq_list);
1487 }
1488
1489 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1490 blk_mq_hctx_mark_pending(hctx, ctx);
1491
1492 spin_unlock(&ctx->lock);
1493
1494 blk_mq_run_hw_queue(hctx, true);
1495 blk_mq_put_ctx(ctx);
1496 return NOTIFY_OK;
1497}
1498
1499static int blk_mq_hctx_cpu_online(struct blk_mq_hw_ctx *hctx, int cpu)
1500{
1501 struct request_queue *q = hctx->queue;
1502 struct blk_mq_tag_set *set = q->tag_set;
1503
1504 if (set->tags[hctx->queue_num])
1505 return NOTIFY_OK;
1506
1507 set->tags[hctx->queue_num] = blk_mq_init_rq_map(set, hctx->queue_num);
1508 if (!set->tags[hctx->queue_num])
1509 return NOTIFY_STOP;
1510
1511 hctx->tags = set->tags[hctx->queue_num];
1512 return NOTIFY_OK;
1513}
1514
1515static int blk_mq_hctx_notify(void *data, unsigned long action,
1516 unsigned int cpu)
1517{
1518 struct blk_mq_hw_ctx *hctx = data;
1519
1520 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1521 return blk_mq_hctx_cpu_offline(hctx, cpu);
1522 else if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
1523 return blk_mq_hctx_cpu_online(hctx, cpu);
1524
1525 return NOTIFY_OK;
1526}
1527
Ming Lei08e98fc2014-09-25 23:23:38 +08001528static void blk_mq_exit_hctx(struct request_queue *q,
1529 struct blk_mq_tag_set *set,
1530 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1531{
Ming Leif70ced02014-09-25 23:23:47 +08001532 unsigned flush_start_tag = set->queue_depth;
1533
Ming Lei08e98fc2014-09-25 23:23:38 +08001534 blk_mq_tag_idle(hctx);
1535
Ming Leif70ced02014-09-25 23:23:47 +08001536 if (set->ops->exit_request)
1537 set->ops->exit_request(set->driver_data,
1538 hctx->fq->flush_rq, hctx_idx,
1539 flush_start_tag + hctx_idx);
1540
Ming Lei08e98fc2014-09-25 23:23:38 +08001541 if (set->ops->exit_hctx)
1542 set->ops->exit_hctx(hctx, hctx_idx);
1543
1544 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
Ming Leif70ced02014-09-25 23:23:47 +08001545 blk_free_flush_queue(hctx->fq);
Ming Lei08e98fc2014-09-25 23:23:38 +08001546 kfree(hctx->ctxs);
1547 blk_mq_free_bitmap(&hctx->ctx_map);
1548}
1549
Ming Lei624dbe42014-05-27 23:35:13 +08001550static void blk_mq_exit_hw_queues(struct request_queue *q,
1551 struct blk_mq_tag_set *set, int nr_queue)
1552{
1553 struct blk_mq_hw_ctx *hctx;
1554 unsigned int i;
1555
1556 queue_for_each_hw_ctx(q, hctx, i) {
1557 if (i == nr_queue)
1558 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001559 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001560 }
Ming Lei624dbe42014-05-27 23:35:13 +08001561}
1562
1563static void blk_mq_free_hw_queues(struct request_queue *q,
1564 struct blk_mq_tag_set *set)
1565{
1566 struct blk_mq_hw_ctx *hctx;
1567 unsigned int i;
1568
1569 queue_for_each_hw_ctx(q, hctx, i) {
1570 free_cpumask_var(hctx->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001571 kfree(hctx);
Ming Lei624dbe42014-05-27 23:35:13 +08001572 }
1573}
1574
Ming Lei08e98fc2014-09-25 23:23:38 +08001575static int blk_mq_init_hctx(struct request_queue *q,
1576 struct blk_mq_tag_set *set,
1577 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1578{
1579 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001580 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001581
1582 node = hctx->numa_node;
1583 if (node == NUMA_NO_NODE)
1584 node = hctx->numa_node = set->numa_node;
1585
1586 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1587 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1588 spin_lock_init(&hctx->lock);
1589 INIT_LIST_HEAD(&hctx->dispatch);
1590 hctx->queue = q;
1591 hctx->queue_num = hctx_idx;
1592 hctx->flags = set->flags;
1593 hctx->cmd_size = set->cmd_size;
1594
1595 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1596 blk_mq_hctx_notify, hctx);
1597 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1598
1599 hctx->tags = set->tags[hctx_idx];
1600
1601 /*
1602 * Allocate space for all possible cpus to avoid allocation at
1603 * runtime
1604 */
1605 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1606 GFP_KERNEL, node);
1607 if (!hctx->ctxs)
1608 goto unregister_cpu_notifier;
1609
1610 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
1611 goto free_ctxs;
1612
1613 hctx->nr_ctx = 0;
1614
1615 if (set->ops->init_hctx &&
1616 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1617 goto free_bitmap;
1618
Ming Leif70ced02014-09-25 23:23:47 +08001619 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1620 if (!hctx->fq)
1621 goto exit_hctx;
1622
1623 if (set->ops->init_request &&
1624 set->ops->init_request(set->driver_data,
1625 hctx->fq->flush_rq, hctx_idx,
1626 flush_start_tag + hctx_idx, node))
1627 goto free_fq;
1628
Ming Lei08e98fc2014-09-25 23:23:38 +08001629 return 0;
1630
Ming Leif70ced02014-09-25 23:23:47 +08001631 free_fq:
1632 kfree(hctx->fq);
1633 exit_hctx:
1634 if (set->ops->exit_hctx)
1635 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001636 free_bitmap:
1637 blk_mq_free_bitmap(&hctx->ctx_map);
1638 free_ctxs:
1639 kfree(hctx->ctxs);
1640 unregister_cpu_notifier:
1641 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1642
1643 return -1;
1644}
1645
Jens Axboe320ae512013-10-24 09:20:05 +01001646static int blk_mq_init_hw_queues(struct request_queue *q,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001647 struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001648{
1649 struct blk_mq_hw_ctx *hctx;
Ming Lei624dbe42014-05-27 23:35:13 +08001650 unsigned int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001651
1652 /*
1653 * Initialize hardware queues
1654 */
1655 queue_for_each_hw_ctx(q, hctx, i) {
Ming Lei08e98fc2014-09-25 23:23:38 +08001656 if (blk_mq_init_hctx(q, set, hctx, i))
Jens Axboe320ae512013-10-24 09:20:05 +01001657 break;
1658 }
1659
1660 if (i == q->nr_hw_queues)
1661 return 0;
1662
1663 /*
1664 * Init failed
1665 */
Ming Lei624dbe42014-05-27 23:35:13 +08001666 blk_mq_exit_hw_queues(q, set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001667
1668 return 1;
1669}
1670
1671static void blk_mq_init_cpu_queues(struct request_queue *q,
1672 unsigned int nr_hw_queues)
1673{
1674 unsigned int i;
1675
1676 for_each_possible_cpu(i) {
1677 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1678 struct blk_mq_hw_ctx *hctx;
1679
1680 memset(__ctx, 0, sizeof(*__ctx));
1681 __ctx->cpu = i;
1682 spin_lock_init(&__ctx->lock);
1683 INIT_LIST_HEAD(&__ctx->rq_list);
1684 __ctx->queue = q;
1685
1686 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001687 if (!cpu_online(i))
1688 continue;
1689
Jens Axboee4043dc2014-04-09 10:18:23 -06001690 hctx = q->mq_ops->map_queue(q, i);
1691 cpumask_set_cpu(i, hctx->cpumask);
1692 hctx->nr_ctx++;
1693
Jens Axboe320ae512013-10-24 09:20:05 +01001694 /*
1695 * Set local node, IFF we have more than one hw queue. If
1696 * not, we remain on the home node of the device
1697 */
1698 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1699 hctx->numa_node = cpu_to_node(i);
1700 }
1701}
1702
1703static void blk_mq_map_swqueue(struct request_queue *q)
1704{
1705 unsigned int i;
1706 struct blk_mq_hw_ctx *hctx;
1707 struct blk_mq_ctx *ctx;
1708
1709 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001710 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001711 hctx->nr_ctx = 0;
1712 }
1713
1714 /*
1715 * Map software to hardware queues
1716 */
1717 queue_for_each_ctx(q, ctx, i) {
1718 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboee4043dc2014-04-09 10:18:23 -06001719 if (!cpu_online(i))
1720 continue;
1721
Jens Axboe320ae512013-10-24 09:20:05 +01001722 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001723 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001724 ctx->index_hw = hctx->nr_ctx;
1725 hctx->ctxs[hctx->nr_ctx++] = ctx;
1726 }
Jens Axboe506e9312014-05-07 10:26:44 -06001727
1728 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001729 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001730 * If no software queues are mapped to this hardware queue,
1731 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001732 */
1733 if (!hctx->nr_ctx) {
1734 struct blk_mq_tag_set *set = q->tag_set;
1735
1736 if (set->tags[i]) {
1737 blk_mq_free_rq_map(set, set->tags[i], i);
1738 set->tags[i] = NULL;
1739 hctx->tags = NULL;
1740 }
1741 continue;
1742 }
1743
1744 /*
1745 * Initialize batch roundrobin counts
1746 */
Jens Axboe506e9312014-05-07 10:26:44 -06001747 hctx->next_cpu = cpumask_first(hctx->cpumask);
1748 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1749 }
Jens Axboe320ae512013-10-24 09:20:05 +01001750}
1751
Jens Axboe0d2602c2014-05-13 15:10:52 -06001752static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1753{
1754 struct blk_mq_hw_ctx *hctx;
1755 struct request_queue *q;
1756 bool shared;
1757 int i;
1758
1759 if (set->tag_list.next == set->tag_list.prev)
1760 shared = false;
1761 else
1762 shared = true;
1763
1764 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1765 blk_mq_freeze_queue(q);
1766
1767 queue_for_each_hw_ctx(q, hctx, i) {
1768 if (shared)
1769 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1770 else
1771 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1772 }
1773 blk_mq_unfreeze_queue(q);
1774 }
1775}
1776
1777static void blk_mq_del_queue_tag_set(struct request_queue *q)
1778{
1779 struct blk_mq_tag_set *set = q->tag_set;
1780
Jens Axboe0d2602c2014-05-13 15:10:52 -06001781 mutex_lock(&set->tag_list_lock);
1782 list_del_init(&q->tag_set_list);
1783 blk_mq_update_tag_set_depth(set);
1784 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001785}
1786
1787static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1788 struct request_queue *q)
1789{
1790 q->tag_set = set;
1791
1792 mutex_lock(&set->tag_list_lock);
1793 list_add_tail(&q->tag_set_list, &set->tag_list);
1794 blk_mq_update_tag_set_depth(set);
1795 mutex_unlock(&set->tag_list_lock);
1796}
1797
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001798struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001799{
1800 struct blk_mq_hw_ctx **hctxs;
Ming Leie6cdb092014-06-03 11:24:06 +08001801 struct blk_mq_ctx __percpu *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001802 struct request_queue *q;
Jens Axboef14bbe72014-05-27 12:06:53 -06001803 unsigned int *map;
Jens Axboe320ae512013-10-24 09:20:05 +01001804 int i;
1805
Jens Axboe320ae512013-10-24 09:20:05 +01001806 ctx = alloc_percpu(struct blk_mq_ctx);
1807 if (!ctx)
1808 return ERR_PTR(-ENOMEM);
1809
Jens Axboeaedcd722014-09-17 08:27:03 -06001810 /*
1811 * If a crashdump is active, then we are potentially in a very
1812 * memory constrained environment. Limit us to 1 queue and
1813 * 64 tags to prevent using too much memory.
1814 */
1815 if (is_kdump_kernel()) {
1816 set->nr_hw_queues = 1;
1817 set->queue_depth = min(64U, set->queue_depth);
1818 }
1819
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001820 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1821 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001822
1823 if (!hctxs)
1824 goto err_percpu;
1825
Jens Axboef14bbe72014-05-27 12:06:53 -06001826 map = blk_mq_make_queue_map(set);
1827 if (!map)
1828 goto err_map;
1829
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001830 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboef14bbe72014-05-27 12:06:53 -06001831 int node = blk_mq_hw_queue_to_node(map, i);
1832
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001833 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1834 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001835 if (!hctxs[i])
1836 goto err_hctxs;
1837
Jens Axboea86073e2014-10-13 15:41:54 -06001838 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
1839 node))
Jens Axboee4043dc2014-04-09 10:18:23 -06001840 goto err_hctxs;
1841
Jens Axboe0d2602c2014-05-13 15:10:52 -06001842 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001843 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001844 hctxs[i]->queue_num = i;
1845 }
1846
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001847 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001848 if (!q)
1849 goto err_hctxs;
1850
Tejun Heo17497ac2014-09-24 13:31:50 -04001851 /*
1852 * Init percpu_ref in atomic mode so that it's faster to shutdown.
1853 * See blk_register_queue() for details.
1854 */
Tejun Heoa34375e2014-09-08 09:51:30 +09001855 if (percpu_ref_init(&q->mq_usage_counter, blk_mq_usage_counter_release,
Tejun Heo17497ac2014-09-24 13:31:50 -04001856 PERCPU_REF_INIT_ATOMIC, GFP_KERNEL))
Ming Lei3d2936f2014-05-27 23:35:14 +08001857 goto err_map;
1858
Jens Axboe320ae512013-10-24 09:20:05 +01001859 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1860 blk_queue_rq_timeout(q, 30000);
1861
1862 q->nr_queues = nr_cpu_ids;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001863 q->nr_hw_queues = set->nr_hw_queues;
Jens Axboef14bbe72014-05-27 12:06:53 -06001864 q->mq_map = map;
Jens Axboe320ae512013-10-24 09:20:05 +01001865
1866 q->queue_ctx = ctx;
1867 q->queue_hw_ctx = hctxs;
1868
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001869 q->mq_ops = set->ops;
Jens Axboe94eddfb2013-11-19 09:25:07 -07001870 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001871
Jens Axboe05f1dd52014-05-29 09:53:32 -06001872 if (!(set->flags & BLK_MQ_F_SG_MERGE))
1873 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
1874
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001875 q->sg_reserved_size = INT_MAX;
1876
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001877 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
1878 INIT_LIST_HEAD(&q->requeue_list);
1879 spin_lock_init(&q->requeue_lock);
1880
Jens Axboe07068d52014-05-22 10:40:51 -06001881 if (q->nr_hw_queues > 1)
1882 blk_queue_make_request(q, blk_mq_make_request);
1883 else
1884 blk_queue_make_request(q, blk_sq_make_request);
1885
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001886 if (set->timeout)
1887 blk_queue_rq_timeout(q, set->timeout);
Jens Axboe320ae512013-10-24 09:20:05 +01001888
Jens Axboeeba71762014-05-20 15:17:27 -06001889 /*
1890 * Do this after blk_queue_make_request() overrides it...
1891 */
1892 q->nr_requests = set->queue_depth;
1893
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001894 if (set->ops->complete)
1895 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001896
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001897 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001898
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001899 if (blk_mq_init_hw_queues(q, set))
Ming Lei1bcb1ea2014-09-25 23:23:39 +08001900 goto err_hw;
Christoph Hellwig18741982014-02-10 09:29:00 -07001901
Jens Axboe320ae512013-10-24 09:20:05 +01001902 mutex_lock(&all_q_mutex);
1903 list_add_tail(&q->all_q_node, &all_q_list);
1904 mutex_unlock(&all_q_mutex);
1905
Jens Axboe0d2602c2014-05-13 15:10:52 -06001906 blk_mq_add_queue_tag_set(set, q);
1907
Jens Axboe484b4062014-05-21 14:01:15 -06001908 blk_mq_map_swqueue(q);
1909
Jens Axboe320ae512013-10-24 09:20:05 +01001910 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07001911
Jens Axboe320ae512013-10-24 09:20:05 +01001912err_hw:
Jens Axboe320ae512013-10-24 09:20:05 +01001913 blk_cleanup_queue(q);
1914err_hctxs:
Jens Axboef14bbe72014-05-27 12:06:53 -06001915 kfree(map);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001916 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboe320ae512013-10-24 09:20:05 +01001917 if (!hctxs[i])
1918 break;
Jens Axboee4043dc2014-04-09 10:18:23 -06001919 free_cpumask_var(hctxs[i]->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001920 kfree(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001921 }
Jens Axboef14bbe72014-05-27 12:06:53 -06001922err_map:
Jens Axboe320ae512013-10-24 09:20:05 +01001923 kfree(hctxs);
1924err_percpu:
1925 free_percpu(ctx);
1926 return ERR_PTR(-ENOMEM);
1927}
1928EXPORT_SYMBOL(blk_mq_init_queue);
1929
1930void blk_mq_free_queue(struct request_queue *q)
1931{
Ming Lei624dbe42014-05-27 23:35:13 +08001932 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001933
Jens Axboe0d2602c2014-05-13 15:10:52 -06001934 blk_mq_del_queue_tag_set(q);
1935
Ming Lei624dbe42014-05-27 23:35:13 +08001936 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1937 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01001938
Tejun Heoadd703f2014-07-01 10:34:38 -06001939 percpu_ref_exit(&q->mq_usage_counter);
Ming Lei3d2936f2014-05-27 23:35:14 +08001940
Jens Axboe320ae512013-10-24 09:20:05 +01001941 free_percpu(q->queue_ctx);
1942 kfree(q->queue_hw_ctx);
1943 kfree(q->mq_map);
1944
1945 q->queue_ctx = NULL;
1946 q->queue_hw_ctx = NULL;
1947 q->mq_map = NULL;
1948
1949 mutex_lock(&all_q_mutex);
1950 list_del_init(&q->all_q_node);
1951 mutex_unlock(&all_q_mutex);
1952}
Jens Axboe320ae512013-10-24 09:20:05 +01001953
1954/* Basically redo blk_mq_init_queue with queue frozen */
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001955static void blk_mq_queue_reinit(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01001956{
1957 blk_mq_freeze_queue(q);
1958
Jens Axboe67aec142014-05-30 08:25:36 -06001959 blk_mq_sysfs_unregister(q);
1960
Jens Axboe320ae512013-10-24 09:20:05 +01001961 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1962
1963 /*
1964 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1965 * we should change hctx numa_node according to new topology (this
1966 * involves free and re-allocate memory, worthy doing?)
1967 */
1968
1969 blk_mq_map_swqueue(q);
1970
Jens Axboe67aec142014-05-30 08:25:36 -06001971 blk_mq_sysfs_register(q);
1972
Jens Axboe320ae512013-10-24 09:20:05 +01001973 blk_mq_unfreeze_queue(q);
1974}
1975
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001976static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1977 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01001978{
1979 struct request_queue *q;
1980
1981 /*
Jens Axboe9fccfed2014-05-08 14:50:19 -06001982 * Before new mappings are established, hotadded cpu might already
1983 * start handling requests. This doesn't break anything as we map
1984 * offline CPUs to first hardware queue. We will re-init the queue
1985 * below to get optimal settings.
Jens Axboe320ae512013-10-24 09:20:05 +01001986 */
1987 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1988 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1989 return NOTIFY_OK;
1990
1991 mutex_lock(&all_q_mutex);
1992 list_for_each_entry(q, &all_q_list, all_q_node)
1993 blk_mq_queue_reinit(q);
1994 mutex_unlock(&all_q_mutex);
1995 return NOTIFY_OK;
1996}
1997
Jens Axboea5164402014-09-10 09:02:03 -06001998static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
1999{
2000 int i;
2001
2002 for (i = 0; i < set->nr_hw_queues; i++) {
2003 set->tags[i] = blk_mq_init_rq_map(set, i);
2004 if (!set->tags[i])
2005 goto out_unwind;
2006 }
2007
2008 return 0;
2009
2010out_unwind:
2011 while (--i >= 0)
2012 blk_mq_free_rq_map(set, set->tags[i], i);
2013
Jens Axboea5164402014-09-10 09:02:03 -06002014 return -ENOMEM;
2015}
2016
2017/*
2018 * Allocate the request maps associated with this tag_set. Note that this
2019 * may reduce the depth asked for, if memory is tight. set->queue_depth
2020 * will be updated to reflect the allocated depth.
2021 */
2022static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2023{
2024 unsigned int depth;
2025 int err;
2026
2027 depth = set->queue_depth;
2028 do {
2029 err = __blk_mq_alloc_rq_maps(set);
2030 if (!err)
2031 break;
2032
2033 set->queue_depth >>= 1;
2034 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2035 err = -ENOMEM;
2036 break;
2037 }
2038 } while (set->queue_depth);
2039
2040 if (!set->queue_depth || err) {
2041 pr_err("blk-mq: failed to allocate request map\n");
2042 return -ENOMEM;
2043 }
2044
2045 if (depth != set->queue_depth)
2046 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2047 depth, set->queue_depth);
2048
2049 return 0;
2050}
2051
Jens Axboea4391c62014-06-05 15:21:56 -06002052/*
2053 * Alloc a tag set to be associated with one or more request queues.
2054 * May fail with EINVAL for various error conditions. May adjust the
2055 * requested depth down, if if it too large. In that case, the set
2056 * value will be stored in set->queue_depth.
2057 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002058int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2059{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002060 if (!set->nr_hw_queues)
2061 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002062 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002063 return -EINVAL;
2064 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2065 return -EINVAL;
2066
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002067 if (!set->nr_hw_queues || !set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002068 return -EINVAL;
2069
Jens Axboea4391c62014-06-05 15:21:56 -06002070 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2071 pr_info("blk-mq: reduced tag depth to %u\n",
2072 BLK_MQ_MAX_DEPTH);
2073 set->queue_depth = BLK_MQ_MAX_DEPTH;
2074 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002075
Ming Lei48479002014-04-19 18:00:17 +08002076 set->tags = kmalloc_node(set->nr_hw_queues *
2077 sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002078 GFP_KERNEL, set->numa_node);
2079 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002080 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002081
Jens Axboea5164402014-09-10 09:02:03 -06002082 if (blk_mq_alloc_rq_maps(set))
2083 goto enomem;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002084
Jens Axboe0d2602c2014-05-13 15:10:52 -06002085 mutex_init(&set->tag_list_lock);
2086 INIT_LIST_HEAD(&set->tag_list);
2087
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002088 return 0;
Jens Axboea5164402014-09-10 09:02:03 -06002089enomem:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002090 kfree(set->tags);
2091 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002092 return -ENOMEM;
2093}
2094EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2095
2096void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2097{
2098 int i;
2099
Jens Axboe484b4062014-05-21 14:01:15 -06002100 for (i = 0; i < set->nr_hw_queues; i++) {
2101 if (set->tags[i])
2102 blk_mq_free_rq_map(set, set->tags[i], i);
2103 }
2104
Ming Lei981bd182014-04-24 00:07:34 +08002105 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002106 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002107}
2108EXPORT_SYMBOL(blk_mq_free_tag_set);
2109
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002110int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2111{
2112 struct blk_mq_tag_set *set = q->tag_set;
2113 struct blk_mq_hw_ctx *hctx;
2114 int i, ret;
2115
2116 if (!set || nr > set->queue_depth)
2117 return -EINVAL;
2118
2119 ret = 0;
2120 queue_for_each_hw_ctx(q, hctx, i) {
2121 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2122 if (ret)
2123 break;
2124 }
2125
2126 if (!ret)
2127 q->nr_requests = nr;
2128
2129 return ret;
2130}
2131
Jens Axboe676141e2014-03-20 13:29:18 -06002132void blk_mq_disable_hotplug(void)
2133{
2134 mutex_lock(&all_q_mutex);
2135}
2136
2137void blk_mq_enable_hotplug(void)
2138{
2139 mutex_unlock(&all_q_mutex);
2140}
2141
Jens Axboe320ae512013-10-24 09:20:05 +01002142static int __init blk_mq_init(void)
2143{
Jens Axboe320ae512013-10-24 09:20:05 +01002144 blk_mq_cpu_init();
2145
Tejun Heoadd703f2014-07-01 10:34:38 -06002146 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002147
2148 return 0;
2149}
2150subsys_initcall(blk_mq_init);