blob: fdf12152946e2cf167e4bbf8ef19028d0fadaa1d [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}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700283EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100284
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700285inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100286{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700287 blk_account_io_done(rq);
288
Christoph Hellwig91b63632014-04-16 09:44:53 +0200289 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100290 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200291 } else {
292 if (unlikely(blk_bidi_rq(rq)))
293 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100294 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200295 }
Jens Axboe320ae512013-10-24 09:20:05 +0100296}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700297EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200298
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700299void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200300{
301 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
302 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700303 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200304}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700305EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100306
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800307static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100308{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800309 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100310
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800311 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100312}
313
Jens Axboeed851862014-05-30 21:20:50 -0600314static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100315{
316 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700317 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100318 int cpu;
319
Christoph Hellwig38535202014-04-25 02:32:53 -0700320 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800321 rq->q->softirq_done_fn(rq);
322 return;
323 }
Jens Axboe320ae512013-10-24 09:20:05 +0100324
325 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700326 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
327 shared = cpus_share_cache(cpu, ctx->cpu);
328
329 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800330 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800331 rq->csd.info = rq;
332 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100333 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800334 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800335 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800336 }
Jens Axboe320ae512013-10-24 09:20:05 +0100337 put_cpu();
338}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800339
Jens Axboeed851862014-05-30 21:20:50 -0600340void __blk_mq_complete_request(struct request *rq)
341{
342 struct request_queue *q = rq->q;
343
344 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700345 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600346 else
347 blk_mq_ipi_complete_request(rq);
348}
349
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800350/**
351 * blk_mq_complete_request - end I/O on a request
352 * @rq: the request being processed
353 *
354 * Description:
355 * Ends all I/O on a request. It does not handle partial completions.
356 * The actual completion happens out-of-order, through a IPI handler.
357 **/
358void blk_mq_complete_request(struct request *rq)
359{
Jens Axboe95f09682014-05-27 17:46:48 -0600360 struct request_queue *q = rq->q;
361
362 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800363 return;
Jens Axboeed851862014-05-30 21:20:50 -0600364 if (!blk_mark_rq_complete(rq))
365 __blk_mq_complete_request(rq);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800366}
367EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100368
Christoph Hellwige2490072014-09-13 16:40:09 -0700369void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100370{
371 struct request_queue *q = rq->q;
372
373 trace_block_rq_issue(q, rq);
374
Christoph Hellwig742ee692014-04-14 10:30:06 +0200375 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200376 if (unlikely(blk_bidi_rq(rq)))
377 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200378
Ming Lei2b8393b2014-06-10 00:16:41 +0800379 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600380
381 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600382 * Ensure that ->deadline is visible before set the started
383 * flag and clear the completed flag.
384 */
385 smp_mb__before_atomic();
386
387 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600388 * Mark us as started and clear complete. Complete might have been
389 * set if requeue raced with timeout, which then marked it as
390 * complete. So be sure to clear complete again when we start
391 * the request, otherwise we'll ignore the completion event.
392 */
Jens Axboe4b570522014-05-29 11:00:11 -0600393 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
394 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
395 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
396 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800397
398 if (q->dma_drain_size && blk_rq_bytes(rq)) {
399 /*
400 * Make sure space for the drain appears. We know we can do
401 * this because max_hw_segments has been adjusted to be one
402 * fewer than the device can handle.
403 */
404 rq->nr_phys_segments++;
405 }
Jens Axboe320ae512013-10-24 09:20:05 +0100406}
Christoph Hellwige2490072014-09-13 16:40:09 -0700407EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100408
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200409static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100410{
411 struct request_queue *q = rq->q;
412
413 trace_block_rq_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800414
Christoph Hellwige2490072014-09-13 16:40:09 -0700415 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
416 if (q->dma_drain_size && blk_rq_bytes(rq))
417 rq->nr_phys_segments--;
418 }
Jens Axboe320ae512013-10-24 09:20:05 +0100419}
420
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200421void blk_mq_requeue_request(struct request *rq)
422{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200423 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200424
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200425 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600426 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200427}
428EXPORT_SYMBOL(blk_mq_requeue_request);
429
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600430static void blk_mq_requeue_work(struct work_struct *work)
431{
432 struct request_queue *q =
433 container_of(work, struct request_queue, requeue_work);
434 LIST_HEAD(rq_list);
435 struct request *rq, *next;
436 unsigned long flags;
437
438 spin_lock_irqsave(&q->requeue_lock, flags);
439 list_splice_init(&q->requeue_list, &rq_list);
440 spin_unlock_irqrestore(&q->requeue_lock, flags);
441
442 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
443 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
444 continue;
445
446 rq->cmd_flags &= ~REQ_SOFTBARRIER;
447 list_del_init(&rq->queuelist);
448 blk_mq_insert_request(rq, true, false, false);
449 }
450
451 while (!list_empty(&rq_list)) {
452 rq = list_entry(rq_list.next, struct request, queuelist);
453 list_del_init(&rq->queuelist);
454 blk_mq_insert_request(rq, false, false, false);
455 }
456
Jens Axboe8b957412014-09-19 13:10:29 -0600457 /*
458 * Use the start variant of queue running here, so that running
459 * the requeue work will kick stopped queues.
460 */
461 blk_mq_start_hw_queues(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600462}
463
464void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
465{
466 struct request_queue *q = rq->q;
467 unsigned long flags;
468
469 /*
470 * We abuse this flag that is otherwise used by the I/O scheduler to
471 * request head insertation from the workqueue.
472 */
473 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
474
475 spin_lock_irqsave(&q->requeue_lock, flags);
476 if (at_head) {
477 rq->cmd_flags |= REQ_SOFTBARRIER;
478 list_add(&rq->queuelist, &q->requeue_list);
479 } else {
480 list_add_tail(&rq->queuelist, &q->requeue_list);
481 }
482 spin_unlock_irqrestore(&q->requeue_lock, flags);
483}
484EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
485
486void blk_mq_kick_requeue_list(struct request_queue *q)
487{
488 kblockd_schedule_work(&q->requeue_work);
489}
490EXPORT_SYMBOL(blk_mq_kick_requeue_list);
491
Ming Lei7c94e1c2014-09-25 23:23:43 +0800492static inline bool is_flush_request(struct request *rq,
493 struct blk_flush_queue *fq, unsigned int tag)
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600494{
Jens Axboe0e62f512014-06-04 10:23:49 -0600495 return ((rq->cmd_flags & REQ_FLUSH_SEQ) &&
Ming Lei7c94e1c2014-09-25 23:23:43 +0800496 fq->flush_rq->tag == tag);
Jens Axboe0e62f512014-06-04 10:23:49 -0600497}
Shaohua Li22302372014-05-30 08:06:42 -0600498
Jens Axboe0e62f512014-06-04 10:23:49 -0600499struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
500{
501 struct request *rq = tags->rqs[tag];
Ming Leie97c2932014-09-25 23:23:46 +0800502 /* mq_ctx of flush rq is always cloned from the corresponding req */
503 struct blk_flush_queue *fq = blk_get_flush_queue(rq->q, rq->mq_ctx);
Shaohua Li22302372014-05-30 08:06:42 -0600504
Ming Lei7c94e1c2014-09-25 23:23:43 +0800505 if (!is_flush_request(rq, fq, tag))
Jens Axboe0e62f512014-06-04 10:23:49 -0600506 return rq;
507
Ming Lei7c94e1c2014-09-25 23:23:43 +0800508 return fq->flush_rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600509}
510EXPORT_SYMBOL(blk_mq_tag_to_rq);
511
Jens Axboe320ae512013-10-24 09:20:05 +0100512struct blk_mq_timeout_data {
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700513 unsigned long next;
514 unsigned int next_set;
Jens Axboe320ae512013-10-24 09:20:05 +0100515};
516
Christoph Hellwig90415832014-09-22 10:21:48 -0600517void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100518{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700519 struct blk_mq_ops *ops = req->q->mq_ops;
520 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600521
522 /*
523 * We know that complete is set at this point. If STARTED isn't set
524 * anymore, then the request isn't active and the "timeout" should
525 * just be ignored. This can happen due to the bitflag ordering.
526 * Timeout first checks if STARTED is set, and if it is, assumes
527 * the request is active. But if we race with completion, then
528 * we both flags will get cleared. So check here again, and ignore
529 * a timeout event with a request that isn't active.
530 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700531 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
532 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600533
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700534 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700535 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600536
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700537 switch (ret) {
538 case BLK_EH_HANDLED:
539 __blk_mq_complete_request(req);
540 break;
541 case BLK_EH_RESET_TIMER:
542 blk_add_timer(req);
543 blk_clear_rq_complete(req);
544 break;
545 case BLK_EH_NOT_HANDLED:
546 break;
547 default:
548 printk(KERN_ERR "block: bad eh return: %d\n", ret);
549 break;
550 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600551}
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700552
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700553static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
554 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100555{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700556 struct blk_mq_timeout_data *data = priv;
557
Jens Axboe320ae512013-10-24 09:20:05 +0100558 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700559 return;
Jens Axboe320ae512013-10-24 09:20:05 +0100560
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700561 if (time_after_eq(jiffies, rq->deadline)) {
562 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700563 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700564 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
565 data->next = rq->deadline;
566 data->next_set = 1;
567 }
Jens Axboe320ae512013-10-24 09:20:05 +0100568}
569
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700570static void blk_mq_rq_timer(unsigned long priv)
Jens Axboe320ae512013-10-24 09:20:05 +0100571{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700572 struct request_queue *q = (struct request_queue *)priv;
573 struct blk_mq_timeout_data data = {
574 .next = 0,
575 .next_set = 0,
576 };
Jens Axboe320ae512013-10-24 09:20:05 +0100577 struct blk_mq_hw_ctx *hctx;
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700578 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100579
Jens Axboe484b4062014-05-21 14:01:15 -0600580 queue_for_each_hw_ctx(q, hctx, i) {
581 /*
582 * If not software queues are currently mapped to this
583 * hardware queue, there's nothing to check
584 */
585 if (!hctx->nr_ctx || !hctx->tags)
586 continue;
587
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700588 blk_mq_tag_busy_iter(hctx, blk_mq_check_expired, &data);
Jens Axboe484b4062014-05-21 14:01:15 -0600589 }
Jens Axboe320ae512013-10-24 09:20:05 +0100590
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700591 if (data.next_set) {
592 data.next = blk_rq_timeout(round_jiffies_up(data.next));
593 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600594 } else {
595 queue_for_each_hw_ctx(q, hctx, i)
596 blk_mq_tag_idle(hctx);
597 }
Jens Axboe320ae512013-10-24 09:20:05 +0100598}
599
600/*
601 * Reverse check our software queue for entries that we could potentially
602 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
603 * too much time checking for merges.
604 */
605static bool blk_mq_attempt_merge(struct request_queue *q,
606 struct blk_mq_ctx *ctx, struct bio *bio)
607{
608 struct request *rq;
609 int checked = 8;
610
611 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
612 int el_ret;
613
614 if (!checked--)
615 break;
616
617 if (!blk_rq_merge_ok(rq, bio))
618 continue;
619
620 el_ret = blk_try_merge(rq, bio);
621 if (el_ret == ELEVATOR_BACK_MERGE) {
622 if (bio_attempt_back_merge(q, rq, bio)) {
623 ctx->rq_merged++;
624 return true;
625 }
626 break;
627 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
628 if (bio_attempt_front_merge(q, rq, bio)) {
629 ctx->rq_merged++;
630 return true;
631 }
632 break;
633 }
634 }
635
636 return false;
637}
638
Jens Axboe320ae512013-10-24 09:20:05 +0100639/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600640 * Process software queues that have been marked busy, splicing them
641 * to the for-dispatch
642 */
643static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
644{
645 struct blk_mq_ctx *ctx;
646 int i;
647
648 for (i = 0; i < hctx->ctx_map.map_size; i++) {
649 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
650 unsigned int off, bit;
651
652 if (!bm->word)
653 continue;
654
655 bit = 0;
656 off = i * hctx->ctx_map.bits_per_word;
657 do {
658 bit = find_next_bit(&bm->word, bm->depth, bit);
659 if (bit >= bm->depth)
660 break;
661
662 ctx = hctx->ctxs[bit + off];
663 clear_bit(bit, &bm->word);
664 spin_lock(&ctx->lock);
665 list_splice_tail_init(&ctx->rq_list, list);
666 spin_unlock(&ctx->lock);
667
668 bit++;
669 } while (1);
670 }
671}
672
673/*
Jens Axboe320ae512013-10-24 09:20:05 +0100674 * Run this hardware queue, pulling any software queues mapped to it in.
675 * Note that this function currently has various problems around ordering
676 * of IO. In particular, we'd like FIFO behaviour on handling existing
677 * items on the hctx->dispatch list. Ignore that for now.
678 */
679static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
680{
681 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100682 struct request *rq;
683 LIST_HEAD(rq_list);
Jens Axboe74c45052014-10-29 11:14:52 -0600684 LIST_HEAD(driver_list);
685 struct list_head *dptr;
Jens Axboe1429d7c2014-05-19 09:23:55 -0600686 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100687
Jens Axboefd1270d2014-04-16 09:23:48 -0600688 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
Jens Axboee4043dc2014-04-09 10:18:23 -0600689
Jens Axboe5d12f902014-03-19 15:25:02 -0600690 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100691 return;
692
693 hctx->run++;
694
695 /*
696 * Touch any software queue that has pending entries.
697 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600698 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100699
700 /*
701 * If we have previous entries on our dispatch list, grab them
702 * and stuff them at the front for more fair dispatch.
703 */
704 if (!list_empty_careful(&hctx->dispatch)) {
705 spin_lock(&hctx->lock);
706 if (!list_empty(&hctx->dispatch))
707 list_splice_init(&hctx->dispatch, &rq_list);
708 spin_unlock(&hctx->lock);
709 }
710
711 /*
Jens Axboe74c45052014-10-29 11:14:52 -0600712 * Start off with dptr being NULL, so we start the first request
713 * immediately, even if we have more pending.
714 */
715 dptr = NULL;
716
717 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100718 * Now process all the entries, sending them to the driver.
719 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600720 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100721 while (!list_empty(&rq_list)) {
Jens Axboe74c45052014-10-29 11:14:52 -0600722 struct blk_mq_queue_data bd;
Jens Axboe320ae512013-10-24 09:20:05 +0100723 int ret;
724
725 rq = list_first_entry(&rq_list, struct request, queuelist);
726 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100727
Jens Axboe74c45052014-10-29 11:14:52 -0600728 bd.rq = rq;
729 bd.list = dptr;
730 bd.last = list_empty(&rq_list);
731
732 ret = q->mq_ops->queue_rq(hctx, &bd);
Jens Axboe320ae512013-10-24 09:20:05 +0100733 switch (ret) {
734 case BLK_MQ_RQ_QUEUE_OK:
735 queued++;
736 continue;
737 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100738 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200739 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100740 break;
741 default:
742 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100743 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800744 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700745 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100746 break;
747 }
748
749 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
750 break;
Jens Axboe74c45052014-10-29 11:14:52 -0600751
752 /*
753 * We've done the first request. If we have more than 1
754 * left in the list, set dptr to defer issue.
755 */
756 if (!dptr && rq_list.next != rq_list.prev)
757 dptr = &driver_list;
Jens Axboe320ae512013-10-24 09:20:05 +0100758 }
759
760 if (!queued)
761 hctx->dispatched[0]++;
762 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
763 hctx->dispatched[ilog2(queued) + 1]++;
764
765 /*
766 * Any items that need requeuing? Stuff them into hctx->dispatch,
767 * that is where we will continue on next queue run.
768 */
769 if (!list_empty(&rq_list)) {
770 spin_lock(&hctx->lock);
771 list_splice(&rq_list, &hctx->dispatch);
772 spin_unlock(&hctx->lock);
773 }
774}
775
Jens Axboe506e9312014-05-07 10:26:44 -0600776/*
777 * It'd be great if the workqueue API had a way to pass
778 * in a mask and had some smarts for more clever placement.
779 * For now we just round-robin here, switching for every
780 * BLK_MQ_CPU_WORK_BATCH queued items.
781 */
782static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
783{
784 int cpu = hctx->next_cpu;
785
786 if (--hctx->next_cpu_batch <= 0) {
787 int next_cpu;
788
789 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
790 if (next_cpu >= nr_cpu_ids)
791 next_cpu = cpumask_first(hctx->cpumask);
792
793 hctx->next_cpu = next_cpu;
794 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
795 }
796
797 return cpu;
798}
799
Jens Axboe320ae512013-10-24 09:20:05 +0100800void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
801{
Jens Axboe5d12f902014-03-19 15:25:02 -0600802 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100803 return;
804
Paolo Bonzini398205b2014-11-07 23:03:59 +0100805 if (!async) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100806 int cpu = get_cpu();
807 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +0100808 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100809 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100810 return;
811 }
812
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +0100813 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +0100814 }
815
816 if (hctx->queue->nr_hw_queues == 1)
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600817 kblockd_schedule_delayed_work(&hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600818 else {
819 unsigned int cpu;
820
Jens Axboe506e9312014-05-07 10:26:44 -0600821 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600822 kblockd_schedule_delayed_work_on(cpu, &hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600823 }
Jens Axboe320ae512013-10-24 09:20:05 +0100824}
825
826void blk_mq_run_queues(struct request_queue *q, bool async)
827{
828 struct blk_mq_hw_ctx *hctx;
829 int i;
830
831 queue_for_each_hw_ctx(q, hctx, i) {
832 if ((!blk_mq_hctx_has_pending(hctx) &&
833 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600834 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100835 continue;
836
837 blk_mq_run_hw_queue(hctx, async);
838 }
839}
840EXPORT_SYMBOL(blk_mq_run_queues);
841
842void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
843{
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600844 cancel_delayed_work(&hctx->run_work);
845 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100846 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
847}
848EXPORT_SYMBOL(blk_mq_stop_hw_queue);
849
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100850void blk_mq_stop_hw_queues(struct request_queue *q)
851{
852 struct blk_mq_hw_ctx *hctx;
853 int i;
854
855 queue_for_each_hw_ctx(q, hctx, i)
856 blk_mq_stop_hw_queue(hctx);
857}
858EXPORT_SYMBOL(blk_mq_stop_hw_queues);
859
Jens Axboe320ae512013-10-24 09:20:05 +0100860void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
861{
862 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600863
Jens Axboe0ffbce82014-06-25 08:22:34 -0600864 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100865}
866EXPORT_SYMBOL(blk_mq_start_hw_queue);
867
Christoph Hellwig2f268552014-04-16 09:44:56 +0200868void blk_mq_start_hw_queues(struct request_queue *q)
869{
870 struct blk_mq_hw_ctx *hctx;
871 int i;
872
873 queue_for_each_hw_ctx(q, hctx, i)
874 blk_mq_start_hw_queue(hctx);
875}
876EXPORT_SYMBOL(blk_mq_start_hw_queues);
877
878
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200879void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100880{
881 struct blk_mq_hw_ctx *hctx;
882 int i;
883
884 queue_for_each_hw_ctx(q, hctx, i) {
885 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
886 continue;
887
888 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200889 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +0100890 }
891}
892EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
893
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600894static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100895{
896 struct blk_mq_hw_ctx *hctx;
897
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600898 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600899
Jens Axboe320ae512013-10-24 09:20:05 +0100900 __blk_mq_run_hw_queue(hctx);
901}
902
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600903static void blk_mq_delay_work_fn(struct work_struct *work)
904{
905 struct blk_mq_hw_ctx *hctx;
906
907 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
908
909 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
910 __blk_mq_run_hw_queue(hctx);
911}
912
913void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
914{
915 unsigned long tmo = msecs_to_jiffies(msecs);
916
917 if (hctx->queue->nr_hw_queues == 1)
918 kblockd_schedule_delayed_work(&hctx->delay_work, tmo);
919 else {
920 unsigned int cpu;
921
Jens Axboe506e9312014-05-07 10:26:44 -0600922 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600923 kblockd_schedule_delayed_work_on(cpu, &hctx->delay_work, tmo);
924 }
925}
926EXPORT_SYMBOL(blk_mq_delay_queue);
927
Jens Axboe320ae512013-10-24 09:20:05 +0100928static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800929 struct request *rq, bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +0100930{
931 struct blk_mq_ctx *ctx = rq->mq_ctx;
932
Jens Axboe01b983c2013-11-19 18:59:10 -0700933 trace_block_rq_insert(hctx->queue, rq);
934
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800935 if (at_head)
936 list_add(&rq->queuelist, &ctx->rq_list);
937 else
938 list_add_tail(&rq->queuelist, &ctx->rq_list);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600939
Jens Axboe320ae512013-10-24 09:20:05 +0100940 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100941}
942
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600943void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
944 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100945{
946 struct request_queue *q = rq->q;
947 struct blk_mq_hw_ctx *hctx;
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600948 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100949
950 current_ctx = blk_mq_get_ctx(q);
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600951 if (!cpu_online(ctx->cpu))
952 rq->mq_ctx = ctx = current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100953
Jens Axboe320ae512013-10-24 09:20:05 +0100954 hctx = q->mq_ops->map_queue(q, ctx->cpu);
955
Christoph Hellwiga57a1782014-09-16 14:44:07 -0700956 spin_lock(&ctx->lock);
957 __blk_mq_insert_request(hctx, rq, at_head);
958 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100959
Jens Axboe320ae512013-10-24 09:20:05 +0100960 if (run_queue)
961 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600962
963 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100964}
965
966static void blk_mq_insert_requests(struct request_queue *q,
967 struct blk_mq_ctx *ctx,
968 struct list_head *list,
969 int depth,
970 bool from_schedule)
971
972{
973 struct blk_mq_hw_ctx *hctx;
974 struct blk_mq_ctx *current_ctx;
975
976 trace_block_unplug(q, depth, !from_schedule);
977
978 current_ctx = blk_mq_get_ctx(q);
979
980 if (!cpu_online(ctx->cpu))
981 ctx = current_ctx;
982 hctx = q->mq_ops->map_queue(q, ctx->cpu);
983
984 /*
985 * preemption doesn't flush plug list, so it's possible ctx->cpu is
986 * offline now
987 */
988 spin_lock(&ctx->lock);
989 while (!list_empty(list)) {
990 struct request *rq;
991
992 rq = list_first_entry(list, struct request, queuelist);
993 list_del_init(&rq->queuelist);
994 rq->mq_ctx = ctx;
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800995 __blk_mq_insert_request(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100996 }
997 spin_unlock(&ctx->lock);
998
Jens Axboe320ae512013-10-24 09:20:05 +0100999 blk_mq_run_hw_queue(hctx, from_schedule);
Jens Axboee4043dc2014-04-09 10:18:23 -06001000 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001001}
1002
1003static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1004{
1005 struct request *rqa = container_of(a, struct request, queuelist);
1006 struct request *rqb = container_of(b, struct request, queuelist);
1007
1008 return !(rqa->mq_ctx < rqb->mq_ctx ||
1009 (rqa->mq_ctx == rqb->mq_ctx &&
1010 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1011}
1012
1013void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1014{
1015 struct blk_mq_ctx *this_ctx;
1016 struct request_queue *this_q;
1017 struct request *rq;
1018 LIST_HEAD(list);
1019 LIST_HEAD(ctx_list);
1020 unsigned int depth;
1021
1022 list_splice_init(&plug->mq_list, &list);
1023
1024 list_sort(NULL, &list, plug_ctx_cmp);
1025
1026 this_q = NULL;
1027 this_ctx = NULL;
1028 depth = 0;
1029
1030 while (!list_empty(&list)) {
1031 rq = list_entry_rq(list.next);
1032 list_del_init(&rq->queuelist);
1033 BUG_ON(!rq->q);
1034 if (rq->mq_ctx != this_ctx) {
1035 if (this_ctx) {
1036 blk_mq_insert_requests(this_q, this_ctx,
1037 &ctx_list, depth,
1038 from_schedule);
1039 }
1040
1041 this_ctx = rq->mq_ctx;
1042 this_q = rq->q;
1043 depth = 0;
1044 }
1045
1046 depth++;
1047 list_add_tail(&rq->queuelist, &ctx_list);
1048 }
1049
1050 /*
1051 * If 'this_ctx' is set, we know we have entries to complete
1052 * on 'ctx_list'. Do those.
1053 */
1054 if (this_ctx) {
1055 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1056 from_schedule);
1057 }
1058}
1059
1060static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1061{
1062 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001063
Jens Axboe3ee32372014-06-09 09:36:53 -06001064 if (blk_do_io_stat(rq))
Jens Axboe4b570522014-05-29 11:00:11 -06001065 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001066}
1067
Jens Axboe274a5842014-08-15 12:44:08 -06001068static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1069{
1070 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1071 !blk_queue_nomerges(hctx->queue);
1072}
1073
Jens Axboe07068d52014-05-22 10:40:51 -06001074static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1075 struct blk_mq_ctx *ctx,
1076 struct request *rq, struct bio *bio)
1077{
Jens Axboe274a5842014-08-15 12:44:08 -06001078 if (!hctx_allow_merges(hctx)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001079 blk_mq_bio_to_request(rq, bio);
1080 spin_lock(&ctx->lock);
1081insert_rq:
1082 __blk_mq_insert_request(hctx, rq, false);
1083 spin_unlock(&ctx->lock);
1084 return false;
1085 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001086 struct request_queue *q = hctx->queue;
1087
Jens Axboe07068d52014-05-22 10:40:51 -06001088 spin_lock(&ctx->lock);
1089 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1090 blk_mq_bio_to_request(rq, bio);
1091 goto insert_rq;
1092 }
1093
1094 spin_unlock(&ctx->lock);
1095 __blk_mq_free_request(hctx, ctx, rq);
1096 return true;
1097 }
1098}
1099
1100struct blk_map_ctx {
1101 struct blk_mq_hw_ctx *hctx;
1102 struct blk_mq_ctx *ctx;
1103};
1104
1105static struct request *blk_mq_map_request(struct request_queue *q,
1106 struct bio *bio,
1107 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001108{
1109 struct blk_mq_hw_ctx *hctx;
1110 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001111 struct request *rq;
Jens Axboe07068d52014-05-22 10:40:51 -06001112 int rw = bio_data_dir(bio);
Ming Leicb96a422014-06-01 00:43:37 +08001113 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001114
Jens Axboe07068d52014-05-22 10:40:51 -06001115 if (unlikely(blk_mq_queue_enter(q))) {
Nicholas Bellinger14ec77f2014-02-07 13:45:39 -07001116 bio_endio(bio, -EIO);
Jens Axboe07068d52014-05-22 10:40:51 -06001117 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001118 }
1119
1120 ctx = blk_mq_get_ctx(q);
1121 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1122
Jens Axboe07068d52014-05-22 10:40:51 -06001123 if (rw_is_sync(bio->bi_rw))
Shaohua Li27fbf4e2014-02-19 20:20:21 +08001124 rw |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001125
Jens Axboe320ae512013-10-24 09:20:05 +01001126 trace_block_getrq(q, bio, rw);
Ming Leicb96a422014-06-01 00:43:37 +08001127 blk_mq_set_alloc_data(&alloc_data, q, GFP_ATOMIC, false, ctx,
1128 hctx);
1129 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001130 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001131 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001132 blk_mq_put_ctx(ctx);
1133 trace_block_sleeprq(q, bio, rw);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001134
1135 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001136 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +08001137 blk_mq_set_alloc_data(&alloc_data, q,
1138 __GFP_WAIT|GFP_ATOMIC, false, ctx, hctx);
1139 rq = __blk_mq_alloc_request(&alloc_data, rw);
1140 ctx = alloc_data.ctx;
1141 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001142 }
1143
1144 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001145 data->hctx = hctx;
1146 data->ctx = ctx;
1147 return rq;
1148}
1149
1150/*
1151 * Multiple hardware queue variant. This will not use per-process plugs,
1152 * but will attempt to bypass the hctx queueing if we can go straight to
1153 * hardware for SYNC IO.
1154 */
1155static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1156{
1157 const int is_sync = rw_is_sync(bio->bi_rw);
1158 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1159 struct blk_map_ctx data;
1160 struct request *rq;
1161
1162 blk_queue_bounce(q, &bio);
1163
1164 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1165 bio_endio(bio, -EIO);
1166 return;
1167 }
1168
1169 rq = blk_mq_map_request(q, bio, &data);
1170 if (unlikely(!rq))
1171 return;
1172
1173 if (unlikely(is_flush_fua)) {
1174 blk_mq_bio_to_request(rq, bio);
1175 blk_insert_flush(rq);
1176 goto run_queue;
1177 }
1178
Jens Axboee167dfb2014-10-29 11:18:26 -06001179 /*
1180 * If the driver supports defer issued based on 'last', then
1181 * queue it up like normal since we can potentially save some
1182 * CPU this way.
1183 */
1184 if (is_sync && !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
Jens Axboe74c45052014-10-29 11:14:52 -06001185 struct blk_mq_queue_data bd = {
1186 .rq = rq,
1187 .list = NULL,
1188 .last = 1
1189 };
Jens Axboe07068d52014-05-22 10:40:51 -06001190 int ret;
1191
1192 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001193
1194 /*
1195 * For OK queue, we are done. For error, kill it. Any other
1196 * error (busy), just add it to our list as we previously
1197 * would have done
1198 */
Jens Axboe74c45052014-10-29 11:14:52 -06001199 ret = q->mq_ops->queue_rq(data.hctx, &bd);
Jens Axboe07068d52014-05-22 10:40:51 -06001200 if (ret == BLK_MQ_RQ_QUEUE_OK)
1201 goto done;
1202 else {
1203 __blk_mq_requeue_request(rq);
1204
1205 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1206 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -07001207 blk_mq_end_request(rq, rq->errors);
Jens Axboe07068d52014-05-22 10:40:51 -06001208 goto done;
1209 }
1210 }
1211 }
1212
1213 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1214 /*
1215 * For a SYNC request, send it to the hardware immediately. For
1216 * an ASYNC request, just ensure that we run it later on. The
1217 * latter allows for merging opportunities and more efficient
1218 * dispatching.
1219 */
1220run_queue:
1221 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1222 }
1223done:
1224 blk_mq_put_ctx(data.ctx);
1225}
1226
1227/*
1228 * Single hardware queue variant. This will attempt to use any per-process
1229 * plug for merging and IO deferral.
1230 */
1231static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1232{
1233 const int is_sync = rw_is_sync(bio->bi_rw);
1234 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1235 unsigned int use_plug, request_count = 0;
1236 struct blk_map_ctx data;
1237 struct request *rq;
1238
1239 /*
1240 * If we have multiple hardware queues, just go directly to
1241 * one of those for sync IO.
1242 */
1243 use_plug = !is_flush_fua && !is_sync;
1244
1245 blk_queue_bounce(q, &bio);
1246
1247 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1248 bio_endio(bio, -EIO);
1249 return;
1250 }
1251
1252 if (use_plug && !blk_queue_nomerges(q) &&
1253 blk_attempt_plug_merge(q, bio, &request_count))
1254 return;
1255
1256 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001257 if (unlikely(!rq))
1258 return;
Jens Axboe320ae512013-10-24 09:20:05 +01001259
1260 if (unlikely(is_flush_fua)) {
1261 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001262 blk_insert_flush(rq);
1263 goto run_queue;
1264 }
1265
1266 /*
1267 * A task plug currently exists. Since this is completely lockless,
1268 * utilize that to temporarily store requests until the task is
1269 * either done or scheduled away.
1270 */
1271 if (use_plug) {
1272 struct blk_plug *plug = current->plug;
1273
1274 if (plug) {
1275 blk_mq_bio_to_request(rq, bio);
Shaohua Li92f399c2013-10-29 12:01:03 -06001276 if (list_empty(&plug->mq_list))
Jens Axboe320ae512013-10-24 09:20:05 +01001277 trace_block_plug(q);
1278 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1279 blk_flush_plug_list(plug, false);
1280 trace_block_plug(q);
1281 }
1282 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe07068d52014-05-22 10:40:51 -06001283 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001284 return;
1285 }
1286 }
1287
Jens Axboe07068d52014-05-22 10:40:51 -06001288 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1289 /*
1290 * For a SYNC request, send it to the hardware immediately. For
1291 * an ASYNC request, just ensure that we run it later on. The
1292 * latter allows for merging opportunities and more efficient
1293 * dispatching.
1294 */
1295run_queue:
1296 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001297 }
1298
Jens Axboe07068d52014-05-22 10:40:51 -06001299 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001300}
1301
1302/*
1303 * Default mapping to a software queue, since we use one per CPU.
1304 */
1305struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1306{
1307 return q->queue_hw_ctx[q->mq_map[cpu]];
1308}
1309EXPORT_SYMBOL(blk_mq_map_queue);
1310
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001311static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1312 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001313{
1314 struct page *page;
1315
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001316 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001317 int i;
1318
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001319 for (i = 0; i < tags->nr_tags; i++) {
1320 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001321 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001322 set->ops->exit_request(set->driver_data, tags->rqs[i],
1323 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001324 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001325 }
1326 }
1327
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001328 while (!list_empty(&tags->page_list)) {
1329 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001330 list_del_init(&page->lru);
Jens Axboe320ae512013-10-24 09:20:05 +01001331 __free_pages(page, page->private);
1332 }
1333
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001334 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001335
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001336 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001337}
1338
1339static size_t order_to_size(unsigned int order)
1340{
Ming Lei4ca08502014-04-19 18:00:18 +08001341 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001342}
1343
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001344static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1345 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001346{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001347 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001348 unsigned int i, j, entries_per_page, max_order = 4;
1349 size_t rq_size, left;
1350
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001351 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1352 set->numa_node);
1353 if (!tags)
1354 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001355
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001356 INIT_LIST_HEAD(&tags->page_list);
1357
Jens Axboea5164402014-09-10 09:02:03 -06001358 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1359 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1360 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001361 if (!tags->rqs) {
1362 blk_mq_free_tags(tags);
1363 return NULL;
1364 }
Jens Axboe320ae512013-10-24 09:20:05 +01001365
1366 /*
1367 * rq_size is the size of the request plus driver payload, rounded
1368 * to the cacheline size
1369 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001370 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001371 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001372 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001373
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001374 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001375 int this_order = max_order;
1376 struct page *page;
1377 int to_do;
1378 void *p;
1379
1380 while (left < order_to_size(this_order - 1) && this_order)
1381 this_order--;
1382
1383 do {
Jens Axboea5164402014-09-10 09:02:03 -06001384 page = alloc_pages_node(set->numa_node,
1385 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1386 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001387 if (page)
1388 break;
1389 if (!this_order--)
1390 break;
1391 if (order_to_size(this_order) < rq_size)
1392 break;
1393 } while (1);
1394
1395 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001396 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001397
1398 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001399 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001400
1401 p = page_address(page);
1402 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001403 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001404 left -= to_do * rq_size;
1405 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001406 tags->rqs[i] = p;
David Hildenbrand683d0e12014-09-18 11:04:31 +02001407 tags->rqs[i]->atomic_flags = 0;
1408 tags->rqs[i]->cmd_flags = 0;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001409 if (set->ops->init_request) {
1410 if (set->ops->init_request(set->driver_data,
1411 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001412 set->numa_node)) {
1413 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001414 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001415 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001416 }
1417
Jens Axboe320ae512013-10-24 09:20:05 +01001418 p += rq_size;
1419 i++;
1420 }
1421 }
1422
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001423 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001424
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001425fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001426 blk_mq_free_rq_map(set, tags, hctx_idx);
1427 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001428}
1429
Jens Axboe1429d7c2014-05-19 09:23:55 -06001430static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1431{
1432 kfree(bitmap->map);
1433}
1434
1435static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1436{
1437 unsigned int bpw = 8, total, num_maps, i;
1438
1439 bitmap->bits_per_word = bpw;
1440
1441 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1442 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1443 GFP_KERNEL, node);
1444 if (!bitmap->map)
1445 return -ENOMEM;
1446
1447 bitmap->map_size = num_maps;
1448
1449 total = nr_cpu_ids;
1450 for (i = 0; i < num_maps; i++) {
1451 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1452 total -= bitmap->map[i].depth;
1453 }
1454
1455 return 0;
1456}
1457
Jens Axboe484b4062014-05-21 14:01:15 -06001458static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1459{
1460 struct request_queue *q = hctx->queue;
1461 struct blk_mq_ctx *ctx;
1462 LIST_HEAD(tmp);
1463
1464 /*
1465 * Move ctx entries to new CPU, if this one is going away.
1466 */
1467 ctx = __blk_mq_get_ctx(q, cpu);
1468
1469 spin_lock(&ctx->lock);
1470 if (!list_empty(&ctx->rq_list)) {
1471 list_splice_init(&ctx->rq_list, &tmp);
1472 blk_mq_hctx_clear_pending(hctx, ctx);
1473 }
1474 spin_unlock(&ctx->lock);
1475
1476 if (list_empty(&tmp))
1477 return NOTIFY_OK;
1478
1479 ctx = blk_mq_get_ctx(q);
1480 spin_lock(&ctx->lock);
1481
1482 while (!list_empty(&tmp)) {
1483 struct request *rq;
1484
1485 rq = list_first_entry(&tmp, struct request, queuelist);
1486 rq->mq_ctx = ctx;
1487 list_move_tail(&rq->queuelist, &ctx->rq_list);
1488 }
1489
1490 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1491 blk_mq_hctx_mark_pending(hctx, ctx);
1492
1493 spin_unlock(&ctx->lock);
1494
1495 blk_mq_run_hw_queue(hctx, true);
1496 blk_mq_put_ctx(ctx);
1497 return NOTIFY_OK;
1498}
1499
1500static int blk_mq_hctx_cpu_online(struct blk_mq_hw_ctx *hctx, int cpu)
1501{
1502 struct request_queue *q = hctx->queue;
1503 struct blk_mq_tag_set *set = q->tag_set;
1504
1505 if (set->tags[hctx->queue_num])
1506 return NOTIFY_OK;
1507
1508 set->tags[hctx->queue_num] = blk_mq_init_rq_map(set, hctx->queue_num);
1509 if (!set->tags[hctx->queue_num])
1510 return NOTIFY_STOP;
1511
1512 hctx->tags = set->tags[hctx->queue_num];
1513 return NOTIFY_OK;
1514}
1515
1516static int blk_mq_hctx_notify(void *data, unsigned long action,
1517 unsigned int cpu)
1518{
1519 struct blk_mq_hw_ctx *hctx = data;
1520
1521 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1522 return blk_mq_hctx_cpu_offline(hctx, cpu);
1523 else if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
1524 return blk_mq_hctx_cpu_online(hctx, cpu);
1525
1526 return NOTIFY_OK;
1527}
1528
Ming Lei08e98fc2014-09-25 23:23:38 +08001529static void blk_mq_exit_hctx(struct request_queue *q,
1530 struct blk_mq_tag_set *set,
1531 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1532{
Ming Leif70ced02014-09-25 23:23:47 +08001533 unsigned flush_start_tag = set->queue_depth;
1534
Ming Lei08e98fc2014-09-25 23:23:38 +08001535 blk_mq_tag_idle(hctx);
1536
Ming Leif70ced02014-09-25 23:23:47 +08001537 if (set->ops->exit_request)
1538 set->ops->exit_request(set->driver_data,
1539 hctx->fq->flush_rq, hctx_idx,
1540 flush_start_tag + hctx_idx);
1541
Ming Lei08e98fc2014-09-25 23:23:38 +08001542 if (set->ops->exit_hctx)
1543 set->ops->exit_hctx(hctx, hctx_idx);
1544
1545 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
Ming Leif70ced02014-09-25 23:23:47 +08001546 blk_free_flush_queue(hctx->fq);
Ming Lei08e98fc2014-09-25 23:23:38 +08001547 kfree(hctx->ctxs);
1548 blk_mq_free_bitmap(&hctx->ctx_map);
1549}
1550
Ming Lei624dbe42014-05-27 23:35:13 +08001551static void blk_mq_exit_hw_queues(struct request_queue *q,
1552 struct blk_mq_tag_set *set, int nr_queue)
1553{
1554 struct blk_mq_hw_ctx *hctx;
1555 unsigned int i;
1556
1557 queue_for_each_hw_ctx(q, hctx, i) {
1558 if (i == nr_queue)
1559 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001560 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001561 }
Ming Lei624dbe42014-05-27 23:35:13 +08001562}
1563
1564static void blk_mq_free_hw_queues(struct request_queue *q,
1565 struct blk_mq_tag_set *set)
1566{
1567 struct blk_mq_hw_ctx *hctx;
1568 unsigned int i;
1569
1570 queue_for_each_hw_ctx(q, hctx, i) {
1571 free_cpumask_var(hctx->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001572 kfree(hctx);
Ming Lei624dbe42014-05-27 23:35:13 +08001573 }
1574}
1575
Ming Lei08e98fc2014-09-25 23:23:38 +08001576static int blk_mq_init_hctx(struct request_queue *q,
1577 struct blk_mq_tag_set *set,
1578 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1579{
1580 int node;
Ming Leif70ced02014-09-25 23:23:47 +08001581 unsigned flush_start_tag = set->queue_depth;
Ming Lei08e98fc2014-09-25 23:23:38 +08001582
1583 node = hctx->numa_node;
1584 if (node == NUMA_NO_NODE)
1585 node = hctx->numa_node = set->numa_node;
1586
1587 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1588 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1589 spin_lock_init(&hctx->lock);
1590 INIT_LIST_HEAD(&hctx->dispatch);
1591 hctx->queue = q;
1592 hctx->queue_num = hctx_idx;
1593 hctx->flags = set->flags;
1594 hctx->cmd_size = set->cmd_size;
1595
1596 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1597 blk_mq_hctx_notify, hctx);
1598 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1599
1600 hctx->tags = set->tags[hctx_idx];
1601
1602 /*
1603 * Allocate space for all possible cpus to avoid allocation at
1604 * runtime
1605 */
1606 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1607 GFP_KERNEL, node);
1608 if (!hctx->ctxs)
1609 goto unregister_cpu_notifier;
1610
1611 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
1612 goto free_ctxs;
1613
1614 hctx->nr_ctx = 0;
1615
1616 if (set->ops->init_hctx &&
1617 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1618 goto free_bitmap;
1619
Ming Leif70ced02014-09-25 23:23:47 +08001620 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1621 if (!hctx->fq)
1622 goto exit_hctx;
1623
1624 if (set->ops->init_request &&
1625 set->ops->init_request(set->driver_data,
1626 hctx->fq->flush_rq, hctx_idx,
1627 flush_start_tag + hctx_idx, node))
1628 goto free_fq;
1629
Ming Lei08e98fc2014-09-25 23:23:38 +08001630 return 0;
1631
Ming Leif70ced02014-09-25 23:23:47 +08001632 free_fq:
1633 kfree(hctx->fq);
1634 exit_hctx:
1635 if (set->ops->exit_hctx)
1636 set->ops->exit_hctx(hctx, hctx_idx);
Ming Lei08e98fc2014-09-25 23:23:38 +08001637 free_bitmap:
1638 blk_mq_free_bitmap(&hctx->ctx_map);
1639 free_ctxs:
1640 kfree(hctx->ctxs);
1641 unregister_cpu_notifier:
1642 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1643
1644 return -1;
1645}
1646
Jens Axboe320ae512013-10-24 09:20:05 +01001647static int blk_mq_init_hw_queues(struct request_queue *q,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001648 struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001649{
1650 struct blk_mq_hw_ctx *hctx;
Ming Lei624dbe42014-05-27 23:35:13 +08001651 unsigned int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001652
1653 /*
1654 * Initialize hardware queues
1655 */
1656 queue_for_each_hw_ctx(q, hctx, i) {
Ming Lei08e98fc2014-09-25 23:23:38 +08001657 if (blk_mq_init_hctx(q, set, hctx, i))
Jens Axboe320ae512013-10-24 09:20:05 +01001658 break;
1659 }
1660
1661 if (i == q->nr_hw_queues)
1662 return 0;
1663
1664 /*
1665 * Init failed
1666 */
Ming Lei624dbe42014-05-27 23:35:13 +08001667 blk_mq_exit_hw_queues(q, set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001668
1669 return 1;
1670}
1671
1672static void blk_mq_init_cpu_queues(struct request_queue *q,
1673 unsigned int nr_hw_queues)
1674{
1675 unsigned int i;
1676
1677 for_each_possible_cpu(i) {
1678 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1679 struct blk_mq_hw_ctx *hctx;
1680
1681 memset(__ctx, 0, sizeof(*__ctx));
1682 __ctx->cpu = i;
1683 spin_lock_init(&__ctx->lock);
1684 INIT_LIST_HEAD(&__ctx->rq_list);
1685 __ctx->queue = q;
1686
1687 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001688 if (!cpu_online(i))
1689 continue;
1690
Jens Axboee4043dc2014-04-09 10:18:23 -06001691 hctx = q->mq_ops->map_queue(q, i);
1692 cpumask_set_cpu(i, hctx->cpumask);
1693 hctx->nr_ctx++;
1694
Jens Axboe320ae512013-10-24 09:20:05 +01001695 /*
1696 * Set local node, IFF we have more than one hw queue. If
1697 * not, we remain on the home node of the device
1698 */
1699 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1700 hctx->numa_node = cpu_to_node(i);
1701 }
1702}
1703
1704static void blk_mq_map_swqueue(struct request_queue *q)
1705{
1706 unsigned int i;
1707 struct blk_mq_hw_ctx *hctx;
1708 struct blk_mq_ctx *ctx;
1709
1710 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001711 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001712 hctx->nr_ctx = 0;
1713 }
1714
1715 /*
1716 * Map software to hardware queues
1717 */
1718 queue_for_each_ctx(q, ctx, i) {
1719 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboee4043dc2014-04-09 10:18:23 -06001720 if (!cpu_online(i))
1721 continue;
1722
Jens Axboe320ae512013-10-24 09:20:05 +01001723 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001724 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001725 ctx->index_hw = hctx->nr_ctx;
1726 hctx->ctxs[hctx->nr_ctx++] = ctx;
1727 }
Jens Axboe506e9312014-05-07 10:26:44 -06001728
1729 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001730 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001731 * If no software queues are mapped to this hardware queue,
1732 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001733 */
1734 if (!hctx->nr_ctx) {
1735 struct blk_mq_tag_set *set = q->tag_set;
1736
1737 if (set->tags[i]) {
1738 blk_mq_free_rq_map(set, set->tags[i], i);
1739 set->tags[i] = NULL;
1740 hctx->tags = NULL;
1741 }
1742 continue;
1743 }
1744
1745 /*
1746 * Initialize batch roundrobin counts
1747 */
Jens Axboe506e9312014-05-07 10:26:44 -06001748 hctx->next_cpu = cpumask_first(hctx->cpumask);
1749 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1750 }
Jens Axboe320ae512013-10-24 09:20:05 +01001751}
1752
Jens Axboe0d2602c2014-05-13 15:10:52 -06001753static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1754{
1755 struct blk_mq_hw_ctx *hctx;
1756 struct request_queue *q;
1757 bool shared;
1758 int i;
1759
1760 if (set->tag_list.next == set->tag_list.prev)
1761 shared = false;
1762 else
1763 shared = true;
1764
1765 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1766 blk_mq_freeze_queue(q);
1767
1768 queue_for_each_hw_ctx(q, hctx, i) {
1769 if (shared)
1770 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1771 else
1772 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1773 }
1774 blk_mq_unfreeze_queue(q);
1775 }
1776}
1777
1778static void blk_mq_del_queue_tag_set(struct request_queue *q)
1779{
1780 struct blk_mq_tag_set *set = q->tag_set;
1781
Jens Axboe0d2602c2014-05-13 15:10:52 -06001782 mutex_lock(&set->tag_list_lock);
1783 list_del_init(&q->tag_set_list);
1784 blk_mq_update_tag_set_depth(set);
1785 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001786}
1787
1788static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1789 struct request_queue *q)
1790{
1791 q->tag_set = set;
1792
1793 mutex_lock(&set->tag_list_lock);
1794 list_add_tail(&q->tag_set_list, &set->tag_list);
1795 blk_mq_update_tag_set_depth(set);
1796 mutex_unlock(&set->tag_list_lock);
1797}
1798
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001799struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001800{
1801 struct blk_mq_hw_ctx **hctxs;
Ming Leie6cdb092014-06-03 11:24:06 +08001802 struct blk_mq_ctx __percpu *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001803 struct request_queue *q;
Jens Axboef14bbe72014-05-27 12:06:53 -06001804 unsigned int *map;
Jens Axboe320ae512013-10-24 09:20:05 +01001805 int i;
1806
Jens Axboe320ae512013-10-24 09:20:05 +01001807 ctx = alloc_percpu(struct blk_mq_ctx);
1808 if (!ctx)
1809 return ERR_PTR(-ENOMEM);
1810
Jens Axboeaedcd722014-09-17 08:27:03 -06001811 /*
1812 * If a crashdump is active, then we are potentially in a very
1813 * memory constrained environment. Limit us to 1 queue and
1814 * 64 tags to prevent using too much memory.
1815 */
1816 if (is_kdump_kernel()) {
1817 set->nr_hw_queues = 1;
1818 set->queue_depth = min(64U, set->queue_depth);
1819 }
1820
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001821 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1822 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001823
1824 if (!hctxs)
1825 goto err_percpu;
1826
Jens Axboef14bbe72014-05-27 12:06:53 -06001827 map = blk_mq_make_queue_map(set);
1828 if (!map)
1829 goto err_map;
1830
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001831 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboef14bbe72014-05-27 12:06:53 -06001832 int node = blk_mq_hw_queue_to_node(map, i);
1833
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001834 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1835 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001836 if (!hctxs[i])
1837 goto err_hctxs;
1838
Jens Axboea86073e2014-10-13 15:41:54 -06001839 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
1840 node))
Jens Axboee4043dc2014-04-09 10:18:23 -06001841 goto err_hctxs;
1842
Jens Axboe0d2602c2014-05-13 15:10:52 -06001843 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001844 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001845 hctxs[i]->queue_num = i;
1846 }
1847
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001848 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001849 if (!q)
1850 goto err_hctxs;
1851
Tejun Heo17497ac2014-09-24 13:31:50 -04001852 /*
1853 * Init percpu_ref in atomic mode so that it's faster to shutdown.
1854 * See blk_register_queue() for details.
1855 */
Tejun Heoa34375e2014-09-08 09:51:30 +09001856 if (percpu_ref_init(&q->mq_usage_counter, blk_mq_usage_counter_release,
Tejun Heo17497ac2014-09-24 13:31:50 -04001857 PERCPU_REF_INIT_ATOMIC, GFP_KERNEL))
Ming Lei3d2936f2014-05-27 23:35:14 +08001858 goto err_map;
1859
Jens Axboe320ae512013-10-24 09:20:05 +01001860 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1861 blk_queue_rq_timeout(q, 30000);
1862
1863 q->nr_queues = nr_cpu_ids;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001864 q->nr_hw_queues = set->nr_hw_queues;
Jens Axboef14bbe72014-05-27 12:06:53 -06001865 q->mq_map = map;
Jens Axboe320ae512013-10-24 09:20:05 +01001866
1867 q->queue_ctx = ctx;
1868 q->queue_hw_ctx = hctxs;
1869
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001870 q->mq_ops = set->ops;
Jens Axboe94eddfb2013-11-19 09:25:07 -07001871 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001872
Jens Axboe05f1dd52014-05-29 09:53:32 -06001873 if (!(set->flags & BLK_MQ_F_SG_MERGE))
1874 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
1875
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001876 q->sg_reserved_size = INT_MAX;
1877
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001878 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
1879 INIT_LIST_HEAD(&q->requeue_list);
1880 spin_lock_init(&q->requeue_lock);
1881
Jens Axboe07068d52014-05-22 10:40:51 -06001882 if (q->nr_hw_queues > 1)
1883 blk_queue_make_request(q, blk_mq_make_request);
1884 else
1885 blk_queue_make_request(q, blk_sq_make_request);
1886
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001887 if (set->timeout)
1888 blk_queue_rq_timeout(q, set->timeout);
Jens Axboe320ae512013-10-24 09:20:05 +01001889
Jens Axboeeba71762014-05-20 15:17:27 -06001890 /*
1891 * Do this after blk_queue_make_request() overrides it...
1892 */
1893 q->nr_requests = set->queue_depth;
1894
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001895 if (set->ops->complete)
1896 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001897
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001898 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001899
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001900 if (blk_mq_init_hw_queues(q, set))
Ming Lei1bcb1ea2014-09-25 23:23:39 +08001901 goto err_hw;
Christoph Hellwig18741982014-02-10 09:29:00 -07001902
Jens Axboe320ae512013-10-24 09:20:05 +01001903 mutex_lock(&all_q_mutex);
1904 list_add_tail(&q->all_q_node, &all_q_list);
1905 mutex_unlock(&all_q_mutex);
1906
Jens Axboe0d2602c2014-05-13 15:10:52 -06001907 blk_mq_add_queue_tag_set(set, q);
1908
Jens Axboe484b4062014-05-21 14:01:15 -06001909 blk_mq_map_swqueue(q);
1910
Jens Axboe320ae512013-10-24 09:20:05 +01001911 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07001912
Jens Axboe320ae512013-10-24 09:20:05 +01001913err_hw:
Jens Axboe320ae512013-10-24 09:20:05 +01001914 blk_cleanup_queue(q);
1915err_hctxs:
Jens Axboef14bbe72014-05-27 12:06:53 -06001916 kfree(map);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001917 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboe320ae512013-10-24 09:20:05 +01001918 if (!hctxs[i])
1919 break;
Jens Axboee4043dc2014-04-09 10:18:23 -06001920 free_cpumask_var(hctxs[i]->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001921 kfree(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001922 }
Jens Axboef14bbe72014-05-27 12:06:53 -06001923err_map:
Jens Axboe320ae512013-10-24 09:20:05 +01001924 kfree(hctxs);
1925err_percpu:
1926 free_percpu(ctx);
1927 return ERR_PTR(-ENOMEM);
1928}
1929EXPORT_SYMBOL(blk_mq_init_queue);
1930
1931void blk_mq_free_queue(struct request_queue *q)
1932{
Ming Lei624dbe42014-05-27 23:35:13 +08001933 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001934
Jens Axboe0d2602c2014-05-13 15:10:52 -06001935 blk_mq_del_queue_tag_set(q);
1936
Ming Lei624dbe42014-05-27 23:35:13 +08001937 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1938 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01001939
Tejun Heoadd703f2014-07-01 10:34:38 -06001940 percpu_ref_exit(&q->mq_usage_counter);
Ming Lei3d2936f2014-05-27 23:35:14 +08001941
Jens Axboe320ae512013-10-24 09:20:05 +01001942 free_percpu(q->queue_ctx);
1943 kfree(q->queue_hw_ctx);
1944 kfree(q->mq_map);
1945
1946 q->queue_ctx = NULL;
1947 q->queue_hw_ctx = NULL;
1948 q->mq_map = NULL;
1949
1950 mutex_lock(&all_q_mutex);
1951 list_del_init(&q->all_q_node);
1952 mutex_unlock(&all_q_mutex);
1953}
Jens Axboe320ae512013-10-24 09:20:05 +01001954
1955/* Basically redo blk_mq_init_queue with queue frozen */
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001956static void blk_mq_queue_reinit(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01001957{
1958 blk_mq_freeze_queue(q);
1959
Jens Axboe67aec142014-05-30 08:25:36 -06001960 blk_mq_sysfs_unregister(q);
1961
Jens Axboe320ae512013-10-24 09:20:05 +01001962 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1963
1964 /*
1965 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1966 * we should change hctx numa_node according to new topology (this
1967 * involves free and re-allocate memory, worthy doing?)
1968 */
1969
1970 blk_mq_map_swqueue(q);
1971
Jens Axboe67aec142014-05-30 08:25:36 -06001972 blk_mq_sysfs_register(q);
1973
Jens Axboe320ae512013-10-24 09:20:05 +01001974 blk_mq_unfreeze_queue(q);
1975}
1976
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001977static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1978 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01001979{
1980 struct request_queue *q;
1981
1982 /*
Jens Axboe9fccfed2014-05-08 14:50:19 -06001983 * Before new mappings are established, hotadded cpu might already
1984 * start handling requests. This doesn't break anything as we map
1985 * offline CPUs to first hardware queue. We will re-init the queue
1986 * below to get optimal settings.
Jens Axboe320ae512013-10-24 09:20:05 +01001987 */
1988 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1989 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1990 return NOTIFY_OK;
1991
1992 mutex_lock(&all_q_mutex);
1993 list_for_each_entry(q, &all_q_list, all_q_node)
1994 blk_mq_queue_reinit(q);
1995 mutex_unlock(&all_q_mutex);
1996 return NOTIFY_OK;
1997}
1998
Jens Axboea5164402014-09-10 09:02:03 -06001999static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2000{
2001 int i;
2002
2003 for (i = 0; i < set->nr_hw_queues; i++) {
2004 set->tags[i] = blk_mq_init_rq_map(set, i);
2005 if (!set->tags[i])
2006 goto out_unwind;
2007 }
2008
2009 return 0;
2010
2011out_unwind:
2012 while (--i >= 0)
2013 blk_mq_free_rq_map(set, set->tags[i], i);
2014
Jens Axboea5164402014-09-10 09:02:03 -06002015 return -ENOMEM;
2016}
2017
2018/*
2019 * Allocate the request maps associated with this tag_set. Note that this
2020 * may reduce the depth asked for, if memory is tight. set->queue_depth
2021 * will be updated to reflect the allocated depth.
2022 */
2023static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2024{
2025 unsigned int depth;
2026 int err;
2027
2028 depth = set->queue_depth;
2029 do {
2030 err = __blk_mq_alloc_rq_maps(set);
2031 if (!err)
2032 break;
2033
2034 set->queue_depth >>= 1;
2035 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2036 err = -ENOMEM;
2037 break;
2038 }
2039 } while (set->queue_depth);
2040
2041 if (!set->queue_depth || err) {
2042 pr_err("blk-mq: failed to allocate request map\n");
2043 return -ENOMEM;
2044 }
2045
2046 if (depth != set->queue_depth)
2047 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2048 depth, set->queue_depth);
2049
2050 return 0;
2051}
2052
Jens Axboea4391c62014-06-05 15:21:56 -06002053/*
2054 * Alloc a tag set to be associated with one or more request queues.
2055 * May fail with EINVAL for various error conditions. May adjust the
2056 * requested depth down, if if it too large. In that case, the set
2057 * value will be stored in set->queue_depth.
2058 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002059int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2060{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002061 if (!set->nr_hw_queues)
2062 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002063 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002064 return -EINVAL;
2065 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2066 return -EINVAL;
2067
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002068 if (!set->nr_hw_queues || !set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002069 return -EINVAL;
2070
Jens Axboea4391c62014-06-05 15:21:56 -06002071 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2072 pr_info("blk-mq: reduced tag depth to %u\n",
2073 BLK_MQ_MAX_DEPTH);
2074 set->queue_depth = BLK_MQ_MAX_DEPTH;
2075 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002076
Ming Lei48479002014-04-19 18:00:17 +08002077 set->tags = kmalloc_node(set->nr_hw_queues *
2078 sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002079 GFP_KERNEL, set->numa_node);
2080 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002081 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002082
Jens Axboea5164402014-09-10 09:02:03 -06002083 if (blk_mq_alloc_rq_maps(set))
2084 goto enomem;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002085
Jens Axboe0d2602c2014-05-13 15:10:52 -06002086 mutex_init(&set->tag_list_lock);
2087 INIT_LIST_HEAD(&set->tag_list);
2088
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002089 return 0;
Jens Axboea5164402014-09-10 09:02:03 -06002090enomem:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002091 kfree(set->tags);
2092 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002093 return -ENOMEM;
2094}
2095EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2096
2097void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2098{
2099 int i;
2100
Jens Axboe484b4062014-05-21 14:01:15 -06002101 for (i = 0; i < set->nr_hw_queues; i++) {
2102 if (set->tags[i])
2103 blk_mq_free_rq_map(set, set->tags[i], i);
2104 }
2105
Ming Lei981bd182014-04-24 00:07:34 +08002106 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002107 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002108}
2109EXPORT_SYMBOL(blk_mq_free_tag_set);
2110
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002111int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2112{
2113 struct blk_mq_tag_set *set = q->tag_set;
2114 struct blk_mq_hw_ctx *hctx;
2115 int i, ret;
2116
2117 if (!set || nr > set->queue_depth)
2118 return -EINVAL;
2119
2120 ret = 0;
2121 queue_for_each_hw_ctx(q, hctx, i) {
2122 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2123 if (ret)
2124 break;
2125 }
2126
2127 if (!ret)
2128 q->nr_requests = nr;
2129
2130 return ret;
2131}
2132
Jens Axboe676141e2014-03-20 13:29:18 -06002133void blk_mq_disable_hotplug(void)
2134{
2135 mutex_lock(&all_q_mutex);
2136}
2137
2138void blk_mq_enable_hotplug(void)
2139{
2140 mutex_unlock(&all_q_mutex);
2141}
2142
Jens Axboe320ae512013-10-24 09:20:05 +01002143static int __init blk_mq_init(void)
2144{
Jens Axboe320ae512013-10-24 09:20:05 +01002145 blk_mq_cpu_init();
2146
Tejun Heoadd703f2014-07-01 10:34:38 -06002147 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002148
2149 return 0;
2150}
2151subsys_initcall(blk_mq_init);