blob: 78bcf8bfb22a71072de9625b60628efc087c516e [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) {
123 percpu_ref_kill(&q->mq_usage_counter);
124 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 Hellwig8727af42014-04-14 10:30:08 +0200284/*
285 * Clone all relevant state from a request that has been put on hold in
286 * the flush state machine into the preallocated flush request that hangs
287 * off the request queue.
288 *
289 * For a driver the flush request should be invisible, that's why we are
290 * impersonating the original request here.
291 */
292void blk_mq_clone_flush_request(struct request *flush_rq,
293 struct request *orig_rq)
294{
295 struct blk_mq_hw_ctx *hctx =
296 orig_rq->q->mq_ops->map_queue(orig_rq->q, orig_rq->mq_ctx->cpu);
297
298 flush_rq->mq_ctx = orig_rq->mq_ctx;
299 flush_rq->tag = orig_rq->tag;
300 memcpy(blk_mq_rq_to_pdu(flush_rq), blk_mq_rq_to_pdu(orig_rq),
301 hctx->cmd_size);
302}
303
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700304inline void __blk_mq_end_request(struct request *rq, int error)
Jens Axboe320ae512013-10-24 09:20:05 +0100305{
Ming Lei0d11e6a2013-12-05 10:50:39 -0700306 blk_account_io_done(rq);
307
Christoph Hellwig91b63632014-04-16 09:44:53 +0200308 if (rq->end_io) {
Jens Axboe320ae512013-10-24 09:20:05 +0100309 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200310 } else {
311 if (unlikely(blk_bidi_rq(rq)))
312 blk_mq_free_request(rq->next_rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100313 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200314 }
Jens Axboe320ae512013-10-24 09:20:05 +0100315}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700316EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200317
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700318void blk_mq_end_request(struct request *rq, int error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200319{
320 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
321 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700322 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200323}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700324EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100325
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800326static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100327{
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800328 struct request *rq = data;
Jens Axboe320ae512013-10-24 09:20:05 +0100329
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800330 rq->q->softirq_done_fn(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100331}
332
Jens Axboeed851862014-05-30 21:20:50 -0600333static void blk_mq_ipi_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100334{
335 struct blk_mq_ctx *ctx = rq->mq_ctx;
Christoph Hellwig38535202014-04-25 02:32:53 -0700336 bool shared = false;
Jens Axboe320ae512013-10-24 09:20:05 +0100337 int cpu;
338
Christoph Hellwig38535202014-04-25 02:32:53 -0700339 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800340 rq->q->softirq_done_fn(rq);
341 return;
342 }
Jens Axboe320ae512013-10-24 09:20:05 +0100343
344 cpu = get_cpu();
Christoph Hellwig38535202014-04-25 02:32:53 -0700345 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
346 shared = cpus_share_cache(cpu, ctx->cpu);
347
348 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800349 rq->csd.func = __blk_mq_complete_request_remote;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800350 rq->csd.info = rq;
351 rq->csd.flags = 0;
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100352 smp_call_function_single_async(ctx->cpu, &rq->csd);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800353 } else {
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800354 rq->q->softirq_done_fn(rq);
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800355 }
Jens Axboe320ae512013-10-24 09:20:05 +0100356 put_cpu();
357}
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800358
Jens Axboeed851862014-05-30 21:20:50 -0600359void __blk_mq_complete_request(struct request *rq)
360{
361 struct request_queue *q = rq->q;
362
363 if (!q->softirq_done_fn)
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700364 blk_mq_end_request(rq, rq->errors);
Jens Axboeed851862014-05-30 21:20:50 -0600365 else
366 blk_mq_ipi_complete_request(rq);
367}
368
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800369/**
370 * blk_mq_complete_request - end I/O on a request
371 * @rq: the request being processed
372 *
373 * Description:
374 * Ends all I/O on a request. It does not handle partial completions.
375 * The actual completion happens out-of-order, through a IPI handler.
376 **/
377void blk_mq_complete_request(struct request *rq)
378{
Jens Axboe95f09682014-05-27 17:46:48 -0600379 struct request_queue *q = rq->q;
380
381 if (unlikely(blk_should_fake_timeout(q)))
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800382 return;
Jens Axboeed851862014-05-30 21:20:50 -0600383 if (!blk_mark_rq_complete(rq))
384 __blk_mq_complete_request(rq);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800385}
386EXPORT_SYMBOL(blk_mq_complete_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100387
Christoph Hellwige2490072014-09-13 16:40:09 -0700388void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100389{
390 struct request_queue *q = rq->q;
391
392 trace_block_rq_issue(q, rq);
393
Christoph Hellwig742ee692014-04-14 10:30:06 +0200394 rq->resid_len = blk_rq_bytes(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200395 if (unlikely(blk_bidi_rq(rq)))
396 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
Christoph Hellwig742ee692014-04-14 10:30:06 +0200397
Ming Lei2b8393b2014-06-10 00:16:41 +0800398 blk_add_timer(rq);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600399
400 /*
Jens Axboe538b7532014-09-16 10:37:37 -0600401 * Ensure that ->deadline is visible before set the started
402 * flag and clear the completed flag.
403 */
404 smp_mb__before_atomic();
405
406 /*
Jens Axboe87ee7b12014-04-24 08:51:47 -0600407 * Mark us as started and clear complete. Complete might have been
408 * set if requeue raced with timeout, which then marked it as
409 * complete. So be sure to clear complete again when we start
410 * the request, otherwise we'll ignore the completion event.
411 */
Jens Axboe4b570522014-05-29 11:00:11 -0600412 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
413 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
414 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
415 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800416
417 if (q->dma_drain_size && blk_rq_bytes(rq)) {
418 /*
419 * Make sure space for the drain appears. We know we can do
420 * this because max_hw_segments has been adjusted to be one
421 * fewer than the device can handle.
422 */
423 rq->nr_phys_segments++;
424 }
Jens Axboe320ae512013-10-24 09:20:05 +0100425}
Christoph Hellwige2490072014-09-13 16:40:09 -0700426EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100427
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200428static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100429{
430 struct request_queue *q = rq->q;
431
432 trace_block_rq_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800433
Christoph Hellwige2490072014-09-13 16:40:09 -0700434 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
435 if (q->dma_drain_size && blk_rq_bytes(rq))
436 rq->nr_phys_segments--;
437 }
Jens Axboe320ae512013-10-24 09:20:05 +0100438}
439
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200440void blk_mq_requeue_request(struct request *rq)
441{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200442 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200443
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200444 BUG_ON(blk_queued_rq(rq));
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600445 blk_mq_add_to_requeue_list(rq, true);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200446}
447EXPORT_SYMBOL(blk_mq_requeue_request);
448
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600449static void blk_mq_requeue_work(struct work_struct *work)
450{
451 struct request_queue *q =
452 container_of(work, struct request_queue, requeue_work);
453 LIST_HEAD(rq_list);
454 struct request *rq, *next;
455 unsigned long flags;
456
457 spin_lock_irqsave(&q->requeue_lock, flags);
458 list_splice_init(&q->requeue_list, &rq_list);
459 spin_unlock_irqrestore(&q->requeue_lock, flags);
460
461 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
462 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
463 continue;
464
465 rq->cmd_flags &= ~REQ_SOFTBARRIER;
466 list_del_init(&rq->queuelist);
467 blk_mq_insert_request(rq, true, false, false);
468 }
469
470 while (!list_empty(&rq_list)) {
471 rq = list_entry(rq_list.next, struct request, queuelist);
472 list_del_init(&rq->queuelist);
473 blk_mq_insert_request(rq, false, false, false);
474 }
475
Jens Axboe8b957412014-09-19 13:10:29 -0600476 /*
477 * Use the start variant of queue running here, so that running
478 * the requeue work will kick stopped queues.
479 */
480 blk_mq_start_hw_queues(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600481}
482
483void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
484{
485 struct request_queue *q = rq->q;
486 unsigned long flags;
487
488 /*
489 * We abuse this flag that is otherwise used by the I/O scheduler to
490 * request head insertation from the workqueue.
491 */
492 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
493
494 spin_lock_irqsave(&q->requeue_lock, flags);
495 if (at_head) {
496 rq->cmd_flags |= REQ_SOFTBARRIER;
497 list_add(&rq->queuelist, &q->requeue_list);
498 } else {
499 list_add_tail(&rq->queuelist, &q->requeue_list);
500 }
501 spin_unlock_irqrestore(&q->requeue_lock, flags);
502}
503EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
504
505void blk_mq_kick_requeue_list(struct request_queue *q)
506{
507 kblockd_schedule_work(&q->requeue_work);
508}
509EXPORT_SYMBOL(blk_mq_kick_requeue_list);
510
Jens Axboe0e62f512014-06-04 10:23:49 -0600511static inline bool is_flush_request(struct request *rq, unsigned int tag)
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600512{
Jens Axboe0e62f512014-06-04 10:23:49 -0600513 return ((rq->cmd_flags & REQ_FLUSH_SEQ) &&
514 rq->q->flush_rq->tag == tag);
515}
Shaohua Li22302372014-05-30 08:06:42 -0600516
Jens Axboe0e62f512014-06-04 10:23:49 -0600517struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
518{
519 struct request *rq = tags->rqs[tag];
Shaohua Li22302372014-05-30 08:06:42 -0600520
Jens Axboe0e62f512014-06-04 10:23:49 -0600521 if (!is_flush_request(rq, tag))
522 return rq;
523
524 return rq->q->flush_rq;
Christoph Hellwig24d2f902014-04-15 14:14:00 -0600525}
526EXPORT_SYMBOL(blk_mq_tag_to_rq);
527
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700528struct blk_mq_timeout_data {
529 unsigned long next;
530 unsigned int next_set;
531};
532
Christoph Hellwig90415832014-09-22 10:21:48 -0600533void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe87ee7b12014-04-24 08:51:47 -0600534{
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700535 struct blk_mq_ops *ops = req->q->mq_ops;
536 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600537
538 /*
539 * We know that complete is set at this point. If STARTED isn't set
540 * anymore, then the request isn't active and the "timeout" should
541 * just be ignored. This can happen due to the bitflag ordering.
542 * Timeout first checks if STARTED is set, and if it is, assumes
543 * the request is active. But if we race with completion, then
544 * we both flags will get cleared. So check here again, and ignore
545 * a timeout event with a request that isn't active.
546 */
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700547 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
548 return;
Jens Axboe87ee7b12014-04-24 08:51:47 -0600549
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700550 if (ops->timeout)
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700551 ret = ops->timeout(req, reserved);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600552
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700553 switch (ret) {
554 case BLK_EH_HANDLED:
555 __blk_mq_complete_request(req);
556 break;
557 case BLK_EH_RESET_TIMER:
558 blk_add_timer(req);
559 blk_clear_rq_complete(req);
560 break;
561 case BLK_EH_NOT_HANDLED:
562 break;
563 default:
564 printk(KERN_ERR "block: bad eh return: %d\n", ret);
565 break;
566 }
Jens Axboe87ee7b12014-04-24 08:51:47 -0600567}
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700568
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700569static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
570 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +0100571{
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700572 struct blk_mq_timeout_data *data = priv;
573
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700574 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
575 return;
576
577 if (time_after_eq(jiffies, rq->deadline)) {
578 if (!blk_mark_rq_complete(rq))
Christoph Hellwig0152fb62014-09-13 16:40:13 -0700579 blk_mq_rq_timed_out(rq, reserved);
Christoph Hellwig46f92d42014-09-13 16:40:12 -0700580 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
581 data->next = rq->deadline;
582 data->next_set = 1;
583 }
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700584}
585
586static void blk_mq_rq_timer(unsigned long priv)
587{
588 struct request_queue *q = (struct request_queue *)priv;
589 struct blk_mq_timeout_data data = {
590 .next = 0,
591 .next_set = 0,
592 };
Jens Axboe320ae512013-10-24 09:20:05 +0100593 struct blk_mq_hw_ctx *hctx;
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700594 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100595
Jens Axboe484b4062014-05-21 14:01:15 -0600596 queue_for_each_hw_ctx(q, hctx, i) {
597 /*
598 * If not software queues are currently mapped to this
599 * hardware queue, there's nothing to check
600 */
601 if (!hctx->nr_ctx || !hctx->tags)
602 continue;
603
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700604 blk_mq_tag_busy_iter(hctx, blk_mq_check_expired, &data);
Jens Axboe484b4062014-05-21 14:01:15 -0600605 }
Jens Axboe320ae512013-10-24 09:20:05 +0100606
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700607 if (data.next_set) {
608 data.next = blk_rq_timeout(round_jiffies_up(data.next));
609 mod_timer(&q->timeout, data.next);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600610 } else {
611 queue_for_each_hw_ctx(q, hctx, i)
612 blk_mq_tag_idle(hctx);
613 }
Jens Axboe320ae512013-10-24 09:20:05 +0100614}
615
616/*
617 * Reverse check our software queue for entries that we could potentially
618 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
619 * too much time checking for merges.
620 */
621static bool blk_mq_attempt_merge(struct request_queue *q,
622 struct blk_mq_ctx *ctx, struct bio *bio)
623{
624 struct request *rq;
625 int checked = 8;
626
627 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
628 int el_ret;
629
630 if (!checked--)
631 break;
632
633 if (!blk_rq_merge_ok(rq, bio))
634 continue;
635
636 el_ret = blk_try_merge(rq, bio);
637 if (el_ret == ELEVATOR_BACK_MERGE) {
638 if (bio_attempt_back_merge(q, rq, bio)) {
639 ctx->rq_merged++;
640 return true;
641 }
642 break;
643 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
644 if (bio_attempt_front_merge(q, rq, bio)) {
645 ctx->rq_merged++;
646 return true;
647 }
648 break;
649 }
650 }
651
652 return false;
653}
654
Jens Axboe320ae512013-10-24 09:20:05 +0100655/*
Jens Axboe1429d7c2014-05-19 09:23:55 -0600656 * Process software queues that have been marked busy, splicing them
657 * to the for-dispatch
658 */
659static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
660{
661 struct blk_mq_ctx *ctx;
662 int i;
663
664 for (i = 0; i < hctx->ctx_map.map_size; i++) {
665 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
666 unsigned int off, bit;
667
668 if (!bm->word)
669 continue;
670
671 bit = 0;
672 off = i * hctx->ctx_map.bits_per_word;
673 do {
674 bit = find_next_bit(&bm->word, bm->depth, bit);
675 if (bit >= bm->depth)
676 break;
677
678 ctx = hctx->ctxs[bit + off];
679 clear_bit(bit, &bm->word);
680 spin_lock(&ctx->lock);
681 list_splice_tail_init(&ctx->rq_list, list);
682 spin_unlock(&ctx->lock);
683
684 bit++;
685 } while (1);
686 }
687}
688
689/*
Jens Axboe320ae512013-10-24 09:20:05 +0100690 * Run this hardware queue, pulling any software queues mapped to it in.
691 * Note that this function currently has various problems around ordering
692 * of IO. In particular, we'd like FIFO behaviour on handling existing
693 * items on the hctx->dispatch list. Ignore that for now.
694 */
695static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
696{
697 struct request_queue *q = hctx->queue;
Jens Axboe320ae512013-10-24 09:20:05 +0100698 struct request *rq;
699 LIST_HEAD(rq_list);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600700 int queued;
Jens Axboe320ae512013-10-24 09:20:05 +0100701
Jens Axboefd1270d2014-04-16 09:23:48 -0600702 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
Jens Axboee4043dc2014-04-09 10:18:23 -0600703
Jens Axboe5d12f902014-03-19 15:25:02 -0600704 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100705 return;
706
707 hctx->run++;
708
709 /*
710 * Touch any software queue that has pending entries.
711 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600712 flush_busy_ctxs(hctx, &rq_list);
Jens Axboe320ae512013-10-24 09:20:05 +0100713
714 /*
715 * If we have previous entries on our dispatch list, grab them
716 * and stuff them at the front for more fair dispatch.
717 */
718 if (!list_empty_careful(&hctx->dispatch)) {
719 spin_lock(&hctx->lock);
720 if (!list_empty(&hctx->dispatch))
721 list_splice_init(&hctx->dispatch, &rq_list);
722 spin_unlock(&hctx->lock);
723 }
724
725 /*
Jens Axboe320ae512013-10-24 09:20:05 +0100726 * Now process all the entries, sending them to the driver.
727 */
Jens Axboe1429d7c2014-05-19 09:23:55 -0600728 queued = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100729 while (!list_empty(&rq_list)) {
730 int ret;
731
732 rq = list_first_entry(&rq_list, struct request, queuelist);
733 list_del_init(&rq->queuelist);
Jens Axboe320ae512013-10-24 09:20:05 +0100734
Christoph Hellwigbf572292014-09-13 16:40:08 -0700735 ret = q->mq_ops->queue_rq(hctx, rq, list_empty(&rq_list));
Jens Axboe320ae512013-10-24 09:20:05 +0100736 switch (ret) {
737 case BLK_MQ_RQ_QUEUE_OK:
738 queued++;
739 continue;
740 case BLK_MQ_RQ_QUEUE_BUSY:
Jens Axboe320ae512013-10-24 09:20:05 +0100741 list_add(&rq->queuelist, &rq_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200742 __blk_mq_requeue_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100743 break;
744 default:
745 pr_err("blk-mq: bad return on queue: %d\n", ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100746 case BLK_MQ_RQ_QUEUE_ERROR:
Christoph Hellwig1e93b8c2014-02-11 08:27:13 -0800747 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700748 blk_mq_end_request(rq, rq->errors);
Jens Axboe320ae512013-10-24 09:20:05 +0100749 break;
750 }
751
752 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
753 break;
754 }
755
756 if (!queued)
757 hctx->dispatched[0]++;
758 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
759 hctx->dispatched[ilog2(queued) + 1]++;
760
761 /*
762 * Any items that need requeuing? Stuff them into hctx->dispatch,
763 * that is where we will continue on next queue run.
764 */
765 if (!list_empty(&rq_list)) {
766 spin_lock(&hctx->lock);
767 list_splice(&rq_list, &hctx->dispatch);
768 spin_unlock(&hctx->lock);
769 }
770}
771
Jens Axboe506e9312014-05-07 10:26:44 -0600772/*
773 * It'd be great if the workqueue API had a way to pass
774 * in a mask and had some smarts for more clever placement.
775 * For now we just round-robin here, switching for every
776 * BLK_MQ_CPU_WORK_BATCH queued items.
777 */
778static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
779{
780 int cpu = hctx->next_cpu;
781
782 if (--hctx->next_cpu_batch <= 0) {
783 int next_cpu;
784
785 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
786 if (next_cpu >= nr_cpu_ids)
787 next_cpu = cpumask_first(hctx->cpumask);
788
789 hctx->next_cpu = next_cpu;
790 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
791 }
792
793 return cpu;
794}
795
Jens Axboe320ae512013-10-24 09:20:05 +0100796void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
797{
Jens Axboe5d12f902014-03-19 15:25:02 -0600798 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
Jens Axboe320ae512013-10-24 09:20:05 +0100799 return;
800
Jens Axboee4043dc2014-04-09 10:18:23 -0600801 if (!async && cpumask_test_cpu(smp_processor_id(), hctx->cpumask))
Jens Axboe320ae512013-10-24 09:20:05 +0100802 __blk_mq_run_hw_queue(hctx);
Jens Axboee4043dc2014-04-09 10:18:23 -0600803 else if (hctx->queue->nr_hw_queues == 1)
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600804 kblockd_schedule_delayed_work(&hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600805 else {
806 unsigned int cpu;
807
Jens Axboe506e9312014-05-07 10:26:44 -0600808 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600809 kblockd_schedule_delayed_work_on(cpu, &hctx->run_work, 0);
Jens Axboee4043dc2014-04-09 10:18:23 -0600810 }
Jens Axboe320ae512013-10-24 09:20:05 +0100811}
812
813void blk_mq_run_queues(struct request_queue *q, bool async)
814{
815 struct blk_mq_hw_ctx *hctx;
816 int i;
817
818 queue_for_each_hw_ctx(q, hctx, i) {
819 if ((!blk_mq_hctx_has_pending(hctx) &&
820 list_empty_careful(&hctx->dispatch)) ||
Jens Axboe5d12f902014-03-19 15:25:02 -0600821 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
Jens Axboe320ae512013-10-24 09:20:05 +0100822 continue;
823
Jens Axboee4043dc2014-04-09 10:18:23 -0600824 preempt_disable();
Jens Axboe320ae512013-10-24 09:20:05 +0100825 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600826 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100827 }
828}
829EXPORT_SYMBOL(blk_mq_run_queues);
830
831void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
832{
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600833 cancel_delayed_work(&hctx->run_work);
834 cancel_delayed_work(&hctx->delay_work);
Jens Axboe320ae512013-10-24 09:20:05 +0100835 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
836}
837EXPORT_SYMBOL(blk_mq_stop_hw_queue);
838
Christoph Hellwig280d45f2013-10-25 14:45:58 +0100839void blk_mq_stop_hw_queues(struct request_queue *q)
840{
841 struct blk_mq_hw_ctx *hctx;
842 int i;
843
844 queue_for_each_hw_ctx(q, hctx, i)
845 blk_mq_stop_hw_queue(hctx);
846}
847EXPORT_SYMBOL(blk_mq_stop_hw_queues);
848
Jens Axboe320ae512013-10-24 09:20:05 +0100849void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
850{
851 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600852
853 preempt_disable();
Jens Axboe0ffbce82014-06-25 08:22:34 -0600854 blk_mq_run_hw_queue(hctx, false);
Jens Axboee4043dc2014-04-09 10:18:23 -0600855 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100856}
857EXPORT_SYMBOL(blk_mq_start_hw_queue);
858
Christoph Hellwig2f268552014-04-16 09:44:56 +0200859void blk_mq_start_hw_queues(struct request_queue *q)
860{
861 struct blk_mq_hw_ctx *hctx;
862 int i;
863
864 queue_for_each_hw_ctx(q, hctx, i)
865 blk_mq_start_hw_queue(hctx);
866}
867EXPORT_SYMBOL(blk_mq_start_hw_queues);
868
869
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200870void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100871{
872 struct blk_mq_hw_ctx *hctx;
873 int i;
874
875 queue_for_each_hw_ctx(q, hctx, i) {
876 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
877 continue;
878
879 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -0600880 preempt_disable();
Christoph Hellwig1b4a3252014-04-16 09:44:54 +0200881 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600882 preempt_enable();
Jens Axboe320ae512013-10-24 09:20:05 +0100883 }
884}
885EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
886
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600887static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +0100888{
889 struct blk_mq_hw_ctx *hctx;
890
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600891 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboee4043dc2014-04-09 10:18:23 -0600892
Jens Axboe320ae512013-10-24 09:20:05 +0100893 __blk_mq_run_hw_queue(hctx);
894}
895
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600896static void blk_mq_delay_work_fn(struct work_struct *work)
897{
898 struct blk_mq_hw_ctx *hctx;
899
900 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
901
902 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
903 __blk_mq_run_hw_queue(hctx);
904}
905
906void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
907{
908 unsigned long tmo = msecs_to_jiffies(msecs);
909
910 if (hctx->queue->nr_hw_queues == 1)
911 kblockd_schedule_delayed_work(&hctx->delay_work, tmo);
912 else {
913 unsigned int cpu;
914
Jens Axboe506e9312014-05-07 10:26:44 -0600915 cpu = blk_mq_hctx_next_cpu(hctx);
Christoph Hellwig70f4db62014-04-16 10:48:08 -0600916 kblockd_schedule_delayed_work_on(cpu, &hctx->delay_work, tmo);
917 }
918}
919EXPORT_SYMBOL(blk_mq_delay_queue);
920
Jens Axboe320ae512013-10-24 09:20:05 +0100921static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800922 struct request *rq, bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +0100923{
924 struct blk_mq_ctx *ctx = rq->mq_ctx;
925
Jens Axboe01b983c2013-11-19 18:59:10 -0700926 trace_block_rq_insert(hctx->queue, rq);
927
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800928 if (at_head)
929 list_add(&rq->queuelist, &ctx->rq_list);
930 else
931 list_add_tail(&rq->queuelist, &ctx->rq_list);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600932
Jens Axboe320ae512013-10-24 09:20:05 +0100933 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100934}
935
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600936void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
937 bool async)
Jens Axboe320ae512013-10-24 09:20:05 +0100938{
939 struct request_queue *q = rq->q;
940 struct blk_mq_hw_ctx *hctx;
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600941 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100942
943 current_ctx = blk_mq_get_ctx(q);
Christoph Hellwigeeabc852014-03-21 08:57:37 -0600944 if (!cpu_online(ctx->cpu))
945 rq->mq_ctx = ctx = current_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100946
Jens Axboe320ae512013-10-24 09:20:05 +0100947 hctx = q->mq_ops->map_queue(q, ctx->cpu);
948
Christoph Hellwiga57a1782014-09-16 14:44:07 -0700949 spin_lock(&ctx->lock);
950 __blk_mq_insert_request(hctx, rq, at_head);
951 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100952
Jens Axboe320ae512013-10-24 09:20:05 +0100953 if (run_queue)
954 blk_mq_run_hw_queue(hctx, async);
Jens Axboee4043dc2014-04-09 10:18:23 -0600955
956 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100957}
958
959static void blk_mq_insert_requests(struct request_queue *q,
960 struct blk_mq_ctx *ctx,
961 struct list_head *list,
962 int depth,
963 bool from_schedule)
964
965{
966 struct blk_mq_hw_ctx *hctx;
967 struct blk_mq_ctx *current_ctx;
968
969 trace_block_unplug(q, depth, !from_schedule);
970
971 current_ctx = blk_mq_get_ctx(q);
972
973 if (!cpu_online(ctx->cpu))
974 ctx = current_ctx;
975 hctx = q->mq_ops->map_queue(q, ctx->cpu);
976
977 /*
978 * preemption doesn't flush plug list, so it's possible ctx->cpu is
979 * offline now
980 */
981 spin_lock(&ctx->lock);
982 while (!list_empty(list)) {
983 struct request *rq;
984
985 rq = list_first_entry(list, struct request, queuelist);
986 list_del_init(&rq->queuelist);
987 rq->mq_ctx = ctx;
Christoph Hellwig72a0a362014-02-07 10:22:36 -0800988 __blk_mq_insert_request(hctx, rq, false);
Jens Axboe320ae512013-10-24 09:20:05 +0100989 }
990 spin_unlock(&ctx->lock);
991
Jens Axboe320ae512013-10-24 09:20:05 +0100992 blk_mq_run_hw_queue(hctx, from_schedule);
Jens Axboee4043dc2014-04-09 10:18:23 -0600993 blk_mq_put_ctx(current_ctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100994}
995
996static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
997{
998 struct request *rqa = container_of(a, struct request, queuelist);
999 struct request *rqb = container_of(b, struct request, queuelist);
1000
1001 return !(rqa->mq_ctx < rqb->mq_ctx ||
1002 (rqa->mq_ctx == rqb->mq_ctx &&
1003 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1004}
1005
1006void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1007{
1008 struct blk_mq_ctx *this_ctx;
1009 struct request_queue *this_q;
1010 struct request *rq;
1011 LIST_HEAD(list);
1012 LIST_HEAD(ctx_list);
1013 unsigned int depth;
1014
1015 list_splice_init(&plug->mq_list, &list);
1016
1017 list_sort(NULL, &list, plug_ctx_cmp);
1018
1019 this_q = NULL;
1020 this_ctx = NULL;
1021 depth = 0;
1022
1023 while (!list_empty(&list)) {
1024 rq = list_entry_rq(list.next);
1025 list_del_init(&rq->queuelist);
1026 BUG_ON(!rq->q);
1027 if (rq->mq_ctx != this_ctx) {
1028 if (this_ctx) {
1029 blk_mq_insert_requests(this_q, this_ctx,
1030 &ctx_list, depth,
1031 from_schedule);
1032 }
1033
1034 this_ctx = rq->mq_ctx;
1035 this_q = rq->q;
1036 depth = 0;
1037 }
1038
1039 depth++;
1040 list_add_tail(&rq->queuelist, &ctx_list);
1041 }
1042
1043 /*
1044 * If 'this_ctx' is set, we know we have entries to complete
1045 * on 'ctx_list'. Do those.
1046 */
1047 if (this_ctx) {
1048 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1049 from_schedule);
1050 }
1051}
1052
1053static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1054{
1055 init_request_from_bio(rq, bio);
Jens Axboe4b570522014-05-29 11:00:11 -06001056
Jens Axboe3ee32372014-06-09 09:36:53 -06001057 if (blk_do_io_stat(rq))
Jens Axboe4b570522014-05-29 11:00:11 -06001058 blk_account_io_start(rq, 1);
Jens Axboe320ae512013-10-24 09:20:05 +01001059}
1060
Jens Axboe274a5842014-08-15 12:44:08 -06001061static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1062{
1063 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1064 !blk_queue_nomerges(hctx->queue);
1065}
1066
Jens Axboe07068d52014-05-22 10:40:51 -06001067static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1068 struct blk_mq_ctx *ctx,
1069 struct request *rq, struct bio *bio)
1070{
Jens Axboe274a5842014-08-15 12:44:08 -06001071 if (!hctx_allow_merges(hctx)) {
Jens Axboe07068d52014-05-22 10:40:51 -06001072 blk_mq_bio_to_request(rq, bio);
1073 spin_lock(&ctx->lock);
1074insert_rq:
1075 __blk_mq_insert_request(hctx, rq, false);
1076 spin_unlock(&ctx->lock);
1077 return false;
1078 } else {
Jens Axboe274a5842014-08-15 12:44:08 -06001079 struct request_queue *q = hctx->queue;
1080
Jens Axboe07068d52014-05-22 10:40:51 -06001081 spin_lock(&ctx->lock);
1082 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1083 blk_mq_bio_to_request(rq, bio);
1084 goto insert_rq;
1085 }
1086
1087 spin_unlock(&ctx->lock);
1088 __blk_mq_free_request(hctx, ctx, rq);
1089 return true;
1090 }
1091}
1092
1093struct blk_map_ctx {
1094 struct blk_mq_hw_ctx *hctx;
1095 struct blk_mq_ctx *ctx;
1096};
1097
1098static struct request *blk_mq_map_request(struct request_queue *q,
1099 struct bio *bio,
1100 struct blk_map_ctx *data)
Jens Axboe320ae512013-10-24 09:20:05 +01001101{
1102 struct blk_mq_hw_ctx *hctx;
1103 struct blk_mq_ctx *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001104 struct request *rq;
Jens Axboe07068d52014-05-22 10:40:51 -06001105 int rw = bio_data_dir(bio);
Ming Leicb96a422014-06-01 00:43:37 +08001106 struct blk_mq_alloc_data alloc_data;
Jens Axboe320ae512013-10-24 09:20:05 +01001107
Jens Axboe07068d52014-05-22 10:40:51 -06001108 if (unlikely(blk_mq_queue_enter(q))) {
Nicholas Bellinger14ec77f2014-02-07 13:45:39 -07001109 bio_endio(bio, -EIO);
Jens Axboe07068d52014-05-22 10:40:51 -06001110 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001111 }
1112
1113 ctx = blk_mq_get_ctx(q);
1114 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1115
Jens Axboe07068d52014-05-22 10:40:51 -06001116 if (rw_is_sync(bio->bi_rw))
Shaohua Li27fbf4e2014-02-19 20:20:21 +08001117 rw |= REQ_SYNC;
Jens Axboe07068d52014-05-22 10:40:51 -06001118
Jens Axboe320ae512013-10-24 09:20:05 +01001119 trace_block_getrq(q, bio, rw);
Ming Leicb96a422014-06-01 00:43:37 +08001120 blk_mq_set_alloc_data(&alloc_data, q, GFP_ATOMIC, false, ctx,
1121 hctx);
1122 rq = __blk_mq_alloc_request(&alloc_data, rw);
Christoph Hellwig5dee8572014-05-27 20:59:47 +02001123 if (unlikely(!rq)) {
Christoph Hellwig793597a2014-05-27 20:59:49 +02001124 __blk_mq_run_hw_queue(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001125 blk_mq_put_ctx(ctx);
1126 trace_block_sleeprq(q, bio, rw);
Christoph Hellwig793597a2014-05-27 20:59:49 +02001127
1128 ctx = blk_mq_get_ctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001129 hctx = q->mq_ops->map_queue(q, ctx->cpu);
Ming Leicb96a422014-06-01 00:43:37 +08001130 blk_mq_set_alloc_data(&alloc_data, q,
1131 __GFP_WAIT|GFP_ATOMIC, false, ctx, hctx);
1132 rq = __blk_mq_alloc_request(&alloc_data, rw);
1133 ctx = alloc_data.ctx;
1134 hctx = alloc_data.hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001135 }
1136
1137 hctx->queued++;
Jens Axboe07068d52014-05-22 10:40:51 -06001138 data->hctx = hctx;
1139 data->ctx = ctx;
1140 return rq;
1141}
1142
1143/*
1144 * Multiple hardware queue variant. This will not use per-process plugs,
1145 * but will attempt to bypass the hctx queueing if we can go straight to
1146 * hardware for SYNC IO.
1147 */
1148static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1149{
1150 const int is_sync = rw_is_sync(bio->bi_rw);
1151 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1152 struct blk_map_ctx data;
1153 struct request *rq;
1154
1155 blk_queue_bounce(q, &bio);
1156
1157 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1158 bio_endio(bio, -EIO);
1159 return;
1160 }
1161
1162 rq = blk_mq_map_request(q, bio, &data);
1163 if (unlikely(!rq))
1164 return;
1165
1166 if (unlikely(is_flush_fua)) {
1167 blk_mq_bio_to_request(rq, bio);
1168 blk_insert_flush(rq);
1169 goto run_queue;
1170 }
1171
1172 if (is_sync) {
1173 int ret;
1174
1175 blk_mq_bio_to_request(rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06001176
1177 /*
1178 * For OK queue, we are done. For error, kill it. Any other
1179 * error (busy), just add it to our list as we previously
1180 * would have done
1181 */
Christoph Hellwigbf572292014-09-13 16:40:08 -07001182 ret = q->mq_ops->queue_rq(data.hctx, rq, true);
Jens Axboe07068d52014-05-22 10:40:51 -06001183 if (ret == BLK_MQ_RQ_QUEUE_OK)
1184 goto done;
1185 else {
1186 __blk_mq_requeue_request(rq);
1187
1188 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1189 rq->errors = -EIO;
Christoph Hellwigc8a446a2014-09-13 16:40:10 -07001190 blk_mq_end_request(rq, rq->errors);
Jens Axboe07068d52014-05-22 10:40:51 -06001191 goto done;
1192 }
1193 }
1194 }
1195
1196 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1197 /*
1198 * For a SYNC request, send it to the hardware immediately. For
1199 * an ASYNC request, just ensure that we run it later on. The
1200 * latter allows for merging opportunities and more efficient
1201 * dispatching.
1202 */
1203run_queue:
1204 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1205 }
1206done:
1207 blk_mq_put_ctx(data.ctx);
1208}
1209
1210/*
1211 * Single hardware queue variant. This will attempt to use any per-process
1212 * plug for merging and IO deferral.
1213 */
1214static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1215{
1216 const int is_sync = rw_is_sync(bio->bi_rw);
1217 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1218 unsigned int use_plug, request_count = 0;
1219 struct blk_map_ctx data;
1220 struct request *rq;
1221
1222 /*
1223 * If we have multiple hardware queues, just go directly to
1224 * one of those for sync IO.
1225 */
1226 use_plug = !is_flush_fua && !is_sync;
1227
1228 blk_queue_bounce(q, &bio);
1229
1230 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1231 bio_endio(bio, -EIO);
1232 return;
1233 }
1234
1235 if (use_plug && !blk_queue_nomerges(q) &&
1236 blk_attempt_plug_merge(q, bio, &request_count))
1237 return;
1238
1239 rq = blk_mq_map_request(q, bio, &data);
Jens Axboeff87bce2014-06-03 11:59:49 -06001240 if (unlikely(!rq))
1241 return;
Jens Axboe320ae512013-10-24 09:20:05 +01001242
1243 if (unlikely(is_flush_fua)) {
1244 blk_mq_bio_to_request(rq, bio);
Jens Axboe320ae512013-10-24 09:20:05 +01001245 blk_insert_flush(rq);
1246 goto run_queue;
1247 }
1248
1249 /*
1250 * A task plug currently exists. Since this is completely lockless,
1251 * utilize that to temporarily store requests until the task is
1252 * either done or scheduled away.
1253 */
1254 if (use_plug) {
1255 struct blk_plug *plug = current->plug;
1256
1257 if (plug) {
1258 blk_mq_bio_to_request(rq, bio);
Shaohua Li92f399c2013-10-29 12:01:03 -06001259 if (list_empty(&plug->mq_list))
Jens Axboe320ae512013-10-24 09:20:05 +01001260 trace_block_plug(q);
1261 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1262 blk_flush_plug_list(plug, false);
1263 trace_block_plug(q);
1264 }
1265 list_add_tail(&rq->queuelist, &plug->mq_list);
Jens Axboe07068d52014-05-22 10:40:51 -06001266 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001267 return;
1268 }
1269 }
1270
Jens Axboe07068d52014-05-22 10:40:51 -06001271 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1272 /*
1273 * For a SYNC request, send it to the hardware immediately. For
1274 * an ASYNC request, just ensure that we run it later on. The
1275 * latter allows for merging opportunities and more efficient
1276 * dispatching.
1277 */
1278run_queue:
1279 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
Jens Axboe320ae512013-10-24 09:20:05 +01001280 }
1281
Jens Axboe07068d52014-05-22 10:40:51 -06001282 blk_mq_put_ctx(data.ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01001283}
1284
1285/*
1286 * Default mapping to a software queue, since we use one per CPU.
1287 */
1288struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1289{
1290 return q->queue_hw_ctx[q->mq_map[cpu]];
1291}
1292EXPORT_SYMBOL(blk_mq_map_queue);
1293
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001294static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1295 struct blk_mq_tags *tags, unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001296{
1297 struct page *page;
1298
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001299 if (tags->rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001300 int i;
1301
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001302 for (i = 0; i < tags->nr_tags; i++) {
1303 if (!tags->rqs[i])
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001304 continue;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001305 set->ops->exit_request(set->driver_data, tags->rqs[i],
1306 hctx_idx, i);
Jens Axboea5164402014-09-10 09:02:03 -06001307 tags->rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001308 }
1309 }
1310
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001311 while (!list_empty(&tags->page_list)) {
1312 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07001313 list_del_init(&page->lru);
Jens Axboe320ae512013-10-24 09:20:05 +01001314 __free_pages(page, page->private);
1315 }
1316
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001317 kfree(tags->rqs);
Jens Axboe320ae512013-10-24 09:20:05 +01001318
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001319 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01001320}
1321
1322static size_t order_to_size(unsigned int order)
1323{
Ming Lei4ca08502014-04-19 18:00:18 +08001324 return (size_t)PAGE_SIZE << order;
Jens Axboe320ae512013-10-24 09:20:05 +01001325}
1326
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001327static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1328 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01001329{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001330 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001331 unsigned int i, j, entries_per_page, max_order = 4;
1332 size_t rq_size, left;
1333
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001334 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1335 set->numa_node);
1336 if (!tags)
1337 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001338
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001339 INIT_LIST_HEAD(&tags->page_list);
1340
Jens Axboea5164402014-09-10 09:02:03 -06001341 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1342 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1343 set->numa_node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001344 if (!tags->rqs) {
1345 blk_mq_free_tags(tags);
1346 return NULL;
1347 }
Jens Axboe320ae512013-10-24 09:20:05 +01001348
1349 /*
1350 * rq_size is the size of the request plus driver payload, rounded
1351 * to the cacheline size
1352 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001353 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01001354 cache_line_size());
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001355 left = rq_size * set->queue_depth;
Jens Axboe320ae512013-10-24 09:20:05 +01001356
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001357 for (i = 0; i < set->queue_depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01001358 int this_order = max_order;
1359 struct page *page;
1360 int to_do;
1361 void *p;
1362
1363 while (left < order_to_size(this_order - 1) && this_order)
1364 this_order--;
1365
1366 do {
Jens Axboea5164402014-09-10 09:02:03 -06001367 page = alloc_pages_node(set->numa_node,
1368 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1369 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01001370 if (page)
1371 break;
1372 if (!this_order--)
1373 break;
1374 if (order_to_size(this_order) < rq_size)
1375 break;
1376 } while (1);
1377
1378 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001379 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01001380
1381 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001382 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01001383
1384 p = page_address(page);
1385 entries_per_page = order_to_size(this_order) / rq_size;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001386 to_do = min(entries_per_page, set->queue_depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01001387 left -= to_do * rq_size;
1388 for (j = 0; j < to_do; j++) {
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001389 tags->rqs[i] = p;
David Hildenbrand683d0e12014-09-18 11:04:31 +02001390 tags->rqs[i]->atomic_flags = 0;
1391 tags->rqs[i]->cmd_flags = 0;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001392 if (set->ops->init_request) {
1393 if (set->ops->init_request(set->driver_data,
1394 tags->rqs[i], hctx_idx, i,
Jens Axboea5164402014-09-10 09:02:03 -06001395 set->numa_node)) {
1396 tags->rqs[i] = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001397 goto fail;
Jens Axboea5164402014-09-10 09:02:03 -06001398 }
Christoph Hellwige9b267d2014-04-15 13:59:10 -06001399 }
1400
Jens Axboe320ae512013-10-24 09:20:05 +01001401 p += rq_size;
1402 i++;
1403 }
1404 }
1405
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001406 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +01001407
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001408fail:
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001409 blk_mq_free_rq_map(set, tags, hctx_idx);
1410 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01001411}
1412
Jens Axboe1429d7c2014-05-19 09:23:55 -06001413static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1414{
1415 kfree(bitmap->map);
1416}
1417
1418static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1419{
1420 unsigned int bpw = 8, total, num_maps, i;
1421
1422 bitmap->bits_per_word = bpw;
1423
1424 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1425 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1426 GFP_KERNEL, node);
1427 if (!bitmap->map)
1428 return -ENOMEM;
1429
1430 bitmap->map_size = num_maps;
1431
1432 total = nr_cpu_ids;
1433 for (i = 0; i < num_maps; i++) {
1434 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1435 total -= bitmap->map[i].depth;
1436 }
1437
1438 return 0;
1439}
1440
Jens Axboe484b4062014-05-21 14:01:15 -06001441static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1442{
1443 struct request_queue *q = hctx->queue;
1444 struct blk_mq_ctx *ctx;
1445 LIST_HEAD(tmp);
1446
1447 /*
1448 * Move ctx entries to new CPU, if this one is going away.
1449 */
1450 ctx = __blk_mq_get_ctx(q, cpu);
1451
1452 spin_lock(&ctx->lock);
1453 if (!list_empty(&ctx->rq_list)) {
1454 list_splice_init(&ctx->rq_list, &tmp);
1455 blk_mq_hctx_clear_pending(hctx, ctx);
1456 }
1457 spin_unlock(&ctx->lock);
1458
1459 if (list_empty(&tmp))
1460 return NOTIFY_OK;
1461
1462 ctx = blk_mq_get_ctx(q);
1463 spin_lock(&ctx->lock);
1464
1465 while (!list_empty(&tmp)) {
1466 struct request *rq;
1467
1468 rq = list_first_entry(&tmp, struct request, queuelist);
1469 rq->mq_ctx = ctx;
1470 list_move_tail(&rq->queuelist, &ctx->rq_list);
1471 }
1472
1473 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1474 blk_mq_hctx_mark_pending(hctx, ctx);
1475
1476 spin_unlock(&ctx->lock);
1477
1478 blk_mq_run_hw_queue(hctx, true);
1479 blk_mq_put_ctx(ctx);
1480 return NOTIFY_OK;
1481}
1482
1483static int blk_mq_hctx_cpu_online(struct blk_mq_hw_ctx *hctx, int cpu)
1484{
1485 struct request_queue *q = hctx->queue;
1486 struct blk_mq_tag_set *set = q->tag_set;
1487
1488 if (set->tags[hctx->queue_num])
1489 return NOTIFY_OK;
1490
1491 set->tags[hctx->queue_num] = blk_mq_init_rq_map(set, hctx->queue_num);
1492 if (!set->tags[hctx->queue_num])
1493 return NOTIFY_STOP;
1494
1495 hctx->tags = set->tags[hctx->queue_num];
1496 return NOTIFY_OK;
1497}
1498
1499static int blk_mq_hctx_notify(void *data, unsigned long action,
1500 unsigned int cpu)
1501{
1502 struct blk_mq_hw_ctx *hctx = data;
1503
1504 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1505 return blk_mq_hctx_cpu_offline(hctx, cpu);
1506 else if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
1507 return blk_mq_hctx_cpu_online(hctx, cpu);
1508
1509 return NOTIFY_OK;
1510}
1511
Ming Lei08e98fc2014-09-25 23:23:38 +08001512static void blk_mq_exit_hctx(struct request_queue *q,
1513 struct blk_mq_tag_set *set,
1514 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1515{
1516 blk_mq_tag_idle(hctx);
1517
1518 if (set->ops->exit_hctx)
1519 set->ops->exit_hctx(hctx, hctx_idx);
1520
1521 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1522 kfree(hctx->ctxs);
1523 blk_mq_free_bitmap(&hctx->ctx_map);
1524}
1525
Ming Lei624dbe42014-05-27 23:35:13 +08001526static void blk_mq_exit_hw_queues(struct request_queue *q,
1527 struct blk_mq_tag_set *set, int nr_queue)
1528{
1529 struct blk_mq_hw_ctx *hctx;
1530 unsigned int i;
1531
1532 queue_for_each_hw_ctx(q, hctx, i) {
1533 if (i == nr_queue)
1534 break;
Ming Lei08e98fc2014-09-25 23:23:38 +08001535 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08001536 }
Ming Lei624dbe42014-05-27 23:35:13 +08001537}
1538
1539static void blk_mq_free_hw_queues(struct request_queue *q,
1540 struct blk_mq_tag_set *set)
1541{
1542 struct blk_mq_hw_ctx *hctx;
1543 unsigned int i;
1544
1545 queue_for_each_hw_ctx(q, hctx, i) {
1546 free_cpumask_var(hctx->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001547 kfree(hctx);
Ming Lei624dbe42014-05-27 23:35:13 +08001548 }
1549}
1550
Ming Lei08e98fc2014-09-25 23:23:38 +08001551static int blk_mq_init_hctx(struct request_queue *q,
1552 struct blk_mq_tag_set *set,
1553 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
1554{
1555 int node;
1556
1557 node = hctx->numa_node;
1558 if (node == NUMA_NO_NODE)
1559 node = hctx->numa_node = set->numa_node;
1560
1561 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1562 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1563 spin_lock_init(&hctx->lock);
1564 INIT_LIST_HEAD(&hctx->dispatch);
1565 hctx->queue = q;
1566 hctx->queue_num = hctx_idx;
1567 hctx->flags = set->flags;
1568 hctx->cmd_size = set->cmd_size;
1569
1570 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1571 blk_mq_hctx_notify, hctx);
1572 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1573
1574 hctx->tags = set->tags[hctx_idx];
1575
1576 /*
1577 * Allocate space for all possible cpus to avoid allocation at
1578 * runtime
1579 */
1580 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1581 GFP_KERNEL, node);
1582 if (!hctx->ctxs)
1583 goto unregister_cpu_notifier;
1584
1585 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
1586 goto free_ctxs;
1587
1588 hctx->nr_ctx = 0;
1589
1590 if (set->ops->init_hctx &&
1591 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1592 goto free_bitmap;
1593
1594 return 0;
1595
1596 free_bitmap:
1597 blk_mq_free_bitmap(&hctx->ctx_map);
1598 free_ctxs:
1599 kfree(hctx->ctxs);
1600 unregister_cpu_notifier:
1601 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1602
1603 return -1;
1604}
1605
Jens Axboe320ae512013-10-24 09:20:05 +01001606static int blk_mq_init_hw_queues(struct request_queue *q,
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001607 struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001608{
1609 struct blk_mq_hw_ctx *hctx;
Ming Lei624dbe42014-05-27 23:35:13 +08001610 unsigned int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001611
1612 /*
1613 * Initialize hardware queues
1614 */
1615 queue_for_each_hw_ctx(q, hctx, i) {
Ming Lei08e98fc2014-09-25 23:23:38 +08001616 if (blk_mq_init_hctx(q, set, hctx, i))
Jens Axboe320ae512013-10-24 09:20:05 +01001617 break;
1618 }
1619
1620 if (i == q->nr_hw_queues)
1621 return 0;
1622
1623 /*
1624 * Init failed
1625 */
Ming Lei624dbe42014-05-27 23:35:13 +08001626 blk_mq_exit_hw_queues(q, set, i);
Jens Axboe320ae512013-10-24 09:20:05 +01001627
1628 return 1;
1629}
1630
1631static void blk_mq_init_cpu_queues(struct request_queue *q,
1632 unsigned int nr_hw_queues)
1633{
1634 unsigned int i;
1635
1636 for_each_possible_cpu(i) {
1637 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1638 struct blk_mq_hw_ctx *hctx;
1639
1640 memset(__ctx, 0, sizeof(*__ctx));
1641 __ctx->cpu = i;
1642 spin_lock_init(&__ctx->lock);
1643 INIT_LIST_HEAD(&__ctx->rq_list);
1644 __ctx->queue = q;
1645
1646 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboe320ae512013-10-24 09:20:05 +01001647 if (!cpu_online(i))
1648 continue;
1649
Jens Axboee4043dc2014-04-09 10:18:23 -06001650 hctx = q->mq_ops->map_queue(q, i);
1651 cpumask_set_cpu(i, hctx->cpumask);
1652 hctx->nr_ctx++;
1653
Jens Axboe320ae512013-10-24 09:20:05 +01001654 /*
1655 * Set local node, IFF we have more than one hw queue. If
1656 * not, we remain on the home node of the device
1657 */
1658 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1659 hctx->numa_node = cpu_to_node(i);
1660 }
1661}
1662
1663static void blk_mq_map_swqueue(struct request_queue *q)
1664{
1665 unsigned int i;
1666 struct blk_mq_hw_ctx *hctx;
1667 struct blk_mq_ctx *ctx;
1668
1669 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06001670 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001671 hctx->nr_ctx = 0;
1672 }
1673
1674 /*
1675 * Map software to hardware queues
1676 */
1677 queue_for_each_ctx(q, ctx, i) {
1678 /* If the cpu isn't online, the cpu is mapped to first hctx */
Jens Axboee4043dc2014-04-09 10:18:23 -06001679 if (!cpu_online(i))
1680 continue;
1681
Jens Axboe320ae512013-10-24 09:20:05 +01001682 hctx = q->mq_ops->map_queue(q, i);
Jens Axboee4043dc2014-04-09 10:18:23 -06001683 cpumask_set_cpu(i, hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01001684 ctx->index_hw = hctx->nr_ctx;
1685 hctx->ctxs[hctx->nr_ctx++] = ctx;
1686 }
Jens Axboe506e9312014-05-07 10:26:44 -06001687
1688 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe484b4062014-05-21 14:01:15 -06001689 /*
Jens Axboea68aafa2014-08-15 13:19:15 -06001690 * If no software queues are mapped to this hardware queue,
1691 * disable it and free the request entries.
Jens Axboe484b4062014-05-21 14:01:15 -06001692 */
1693 if (!hctx->nr_ctx) {
1694 struct blk_mq_tag_set *set = q->tag_set;
1695
1696 if (set->tags[i]) {
1697 blk_mq_free_rq_map(set, set->tags[i], i);
1698 set->tags[i] = NULL;
1699 hctx->tags = NULL;
1700 }
1701 continue;
1702 }
1703
1704 /*
1705 * Initialize batch roundrobin counts
1706 */
Jens Axboe506e9312014-05-07 10:26:44 -06001707 hctx->next_cpu = cpumask_first(hctx->cpumask);
1708 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1709 }
Jens Axboe320ae512013-10-24 09:20:05 +01001710}
1711
Jens Axboe0d2602c2014-05-13 15:10:52 -06001712static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1713{
1714 struct blk_mq_hw_ctx *hctx;
1715 struct request_queue *q;
1716 bool shared;
1717 int i;
1718
1719 if (set->tag_list.next == set->tag_list.prev)
1720 shared = false;
1721 else
1722 shared = true;
1723
1724 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1725 blk_mq_freeze_queue(q);
1726
1727 queue_for_each_hw_ctx(q, hctx, i) {
1728 if (shared)
1729 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1730 else
1731 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1732 }
1733 blk_mq_unfreeze_queue(q);
1734 }
1735}
1736
1737static void blk_mq_del_queue_tag_set(struct request_queue *q)
1738{
1739 struct blk_mq_tag_set *set = q->tag_set;
1740
Jens Axboe0d2602c2014-05-13 15:10:52 -06001741 mutex_lock(&set->tag_list_lock);
1742 list_del_init(&q->tag_set_list);
1743 blk_mq_update_tag_set_depth(set);
1744 mutex_unlock(&set->tag_list_lock);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001745}
1746
1747static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1748 struct request_queue *q)
1749{
1750 q->tag_set = set;
1751
1752 mutex_lock(&set->tag_list_lock);
1753 list_add_tail(&q->tag_set_list, &set->tag_list);
1754 blk_mq_update_tag_set_depth(set);
1755 mutex_unlock(&set->tag_list_lock);
1756}
1757
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001758struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +01001759{
1760 struct blk_mq_hw_ctx **hctxs;
Ming Leie6cdb092014-06-03 11:24:06 +08001761 struct blk_mq_ctx __percpu *ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001762 struct request_queue *q;
Jens Axboef14bbe72014-05-27 12:06:53 -06001763 unsigned int *map;
Jens Axboe320ae512013-10-24 09:20:05 +01001764 int i;
1765
Jens Axboe320ae512013-10-24 09:20:05 +01001766 ctx = alloc_percpu(struct blk_mq_ctx);
1767 if (!ctx)
1768 return ERR_PTR(-ENOMEM);
1769
Jens Axboeaedcd722014-09-17 08:27:03 -06001770 /*
1771 * If a crashdump is active, then we are potentially in a very
1772 * memory constrained environment. Limit us to 1 queue and
1773 * 64 tags to prevent using too much memory.
1774 */
1775 if (is_kdump_kernel()) {
1776 set->nr_hw_queues = 1;
1777 set->queue_depth = min(64U, set->queue_depth);
1778 }
1779
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001780 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1781 set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001782
1783 if (!hctxs)
1784 goto err_percpu;
1785
Jens Axboef14bbe72014-05-27 12:06:53 -06001786 map = blk_mq_make_queue_map(set);
1787 if (!map)
1788 goto err_map;
1789
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001790 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboef14bbe72014-05-27 12:06:53 -06001791 int node = blk_mq_hw_queue_to_node(map, i);
1792
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001793 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1794 GFP_KERNEL, node);
Jens Axboe320ae512013-10-24 09:20:05 +01001795 if (!hctxs[i])
1796 goto err_hctxs;
1797
Jens Axboee4043dc2014-04-09 10:18:23 -06001798 if (!zalloc_cpumask_var(&hctxs[i]->cpumask, GFP_KERNEL))
1799 goto err_hctxs;
1800
Jens Axboe0d2602c2014-05-13 15:10:52 -06001801 atomic_set(&hctxs[i]->nr_active, 0);
Jens Axboef14bbe72014-05-27 12:06:53 -06001802 hctxs[i]->numa_node = node;
Jens Axboe320ae512013-10-24 09:20:05 +01001803 hctxs[i]->queue_num = i;
1804 }
1805
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001806 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
Jens Axboe320ae512013-10-24 09:20:05 +01001807 if (!q)
1808 goto err_hctxs;
1809
Tejun Heoadd703f2014-07-01 10:34:38 -06001810 if (percpu_ref_init(&q->mq_usage_counter, blk_mq_usage_counter_release))
Ming Lei3d2936f2014-05-27 23:35:14 +08001811 goto err_map;
1812
Jens Axboe320ae512013-10-24 09:20:05 +01001813 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1814 blk_queue_rq_timeout(q, 30000);
1815
1816 q->nr_queues = nr_cpu_ids;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001817 q->nr_hw_queues = set->nr_hw_queues;
Jens Axboef14bbe72014-05-27 12:06:53 -06001818 q->mq_map = map;
Jens Axboe320ae512013-10-24 09:20:05 +01001819
1820 q->queue_ctx = ctx;
1821 q->queue_hw_ctx = hctxs;
1822
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001823 q->mq_ops = set->ops;
Jens Axboe94eddfb2013-11-19 09:25:07 -07001824 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Jens Axboe320ae512013-10-24 09:20:05 +01001825
Jens Axboe05f1dd52014-05-29 09:53:32 -06001826 if (!(set->flags & BLK_MQ_F_SG_MERGE))
1827 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
1828
Christoph Hellwig1be036e2014-02-07 10:22:39 -08001829 q->sg_reserved_size = INT_MAX;
1830
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001831 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
1832 INIT_LIST_HEAD(&q->requeue_list);
1833 spin_lock_init(&q->requeue_lock);
1834
Jens Axboe07068d52014-05-22 10:40:51 -06001835 if (q->nr_hw_queues > 1)
1836 blk_queue_make_request(q, blk_mq_make_request);
1837 else
1838 blk_queue_make_request(q, blk_sq_make_request);
1839
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001840 if (set->timeout)
1841 blk_queue_rq_timeout(q, set->timeout);
Jens Axboe320ae512013-10-24 09:20:05 +01001842
Jens Axboeeba71762014-05-20 15:17:27 -06001843 /*
1844 * Do this after blk_queue_make_request() overrides it...
1845 */
1846 q->nr_requests = set->queue_depth;
1847
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001848 if (set->ops->complete)
1849 blk_queue_softirq_done(q, set->ops->complete);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001850
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001851 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001852
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001853 if (blk_mq_init_hw_queues(q, set))
Ming Lei1bcb1ea2014-09-25 23:23:39 +08001854 goto err_hw;
Christoph Hellwig18741982014-02-10 09:29:00 -07001855
Jens Axboe320ae512013-10-24 09:20:05 +01001856 mutex_lock(&all_q_mutex);
1857 list_add_tail(&q->all_q_node, &all_q_list);
1858 mutex_unlock(&all_q_mutex);
1859
Jens Axboe0d2602c2014-05-13 15:10:52 -06001860 blk_mq_add_queue_tag_set(set, q);
1861
Ming Lei1bcb1ea2014-09-25 23:23:39 +08001862 if (blk_mq_init_flush(q))
1863 goto err_hw_queues;
1864
Jens Axboe484b4062014-05-21 14:01:15 -06001865 blk_mq_map_swqueue(q);
1866
Jens Axboe320ae512013-10-24 09:20:05 +01001867 return q;
Christoph Hellwig18741982014-02-10 09:29:00 -07001868
Ming Lei1bcb1ea2014-09-25 23:23:39 +08001869err_hw_queues:
1870 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001871err_hw:
Jens Axboe320ae512013-10-24 09:20:05 +01001872 blk_cleanup_queue(q);
1873err_hctxs:
Jens Axboef14bbe72014-05-27 12:06:53 -06001874 kfree(map);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001875 for (i = 0; i < set->nr_hw_queues; i++) {
Jens Axboe320ae512013-10-24 09:20:05 +01001876 if (!hctxs[i])
1877 break;
Jens Axboee4043dc2014-04-09 10:18:23 -06001878 free_cpumask_var(hctxs[i]->cpumask);
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02001879 kfree(hctxs[i]);
Jens Axboe320ae512013-10-24 09:20:05 +01001880 }
Jens Axboef14bbe72014-05-27 12:06:53 -06001881err_map:
Jens Axboe320ae512013-10-24 09:20:05 +01001882 kfree(hctxs);
1883err_percpu:
1884 free_percpu(ctx);
1885 return ERR_PTR(-ENOMEM);
1886}
1887EXPORT_SYMBOL(blk_mq_init_queue);
1888
1889void blk_mq_free_queue(struct request_queue *q)
1890{
Ming Lei624dbe42014-05-27 23:35:13 +08001891 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01001892
Jens Axboe0d2602c2014-05-13 15:10:52 -06001893 blk_mq_del_queue_tag_set(q);
1894
Ming Lei624dbe42014-05-27 23:35:13 +08001895 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1896 blk_mq_free_hw_queues(q, set);
Jens Axboe320ae512013-10-24 09:20:05 +01001897
Tejun Heoadd703f2014-07-01 10:34:38 -06001898 percpu_ref_exit(&q->mq_usage_counter);
Ming Lei3d2936f2014-05-27 23:35:14 +08001899
Jens Axboe320ae512013-10-24 09:20:05 +01001900 free_percpu(q->queue_ctx);
1901 kfree(q->queue_hw_ctx);
1902 kfree(q->mq_map);
1903
1904 q->queue_ctx = NULL;
1905 q->queue_hw_ctx = NULL;
1906 q->mq_map = NULL;
1907
1908 mutex_lock(&all_q_mutex);
1909 list_del_init(&q->all_q_node);
1910 mutex_unlock(&all_q_mutex);
1911}
Jens Axboe320ae512013-10-24 09:20:05 +01001912
1913/* Basically redo blk_mq_init_queue with queue frozen */
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001914static void blk_mq_queue_reinit(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01001915{
1916 blk_mq_freeze_queue(q);
1917
Jens Axboe67aec142014-05-30 08:25:36 -06001918 blk_mq_sysfs_unregister(q);
1919
Jens Axboe320ae512013-10-24 09:20:05 +01001920 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1921
1922 /*
1923 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1924 * we should change hctx numa_node according to new topology (this
1925 * involves free and re-allocate memory, worthy doing?)
1926 */
1927
1928 blk_mq_map_swqueue(q);
1929
Jens Axboe67aec142014-05-30 08:25:36 -06001930 blk_mq_sysfs_register(q);
1931
Jens Axboe320ae512013-10-24 09:20:05 +01001932 blk_mq_unfreeze_queue(q);
1933}
1934
Paul Gortmakerf618ef72013-11-14 08:26:02 -07001935static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1936 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +01001937{
1938 struct request_queue *q;
1939
1940 /*
Jens Axboe9fccfed2014-05-08 14:50:19 -06001941 * Before new mappings are established, hotadded cpu might already
1942 * start handling requests. This doesn't break anything as we map
1943 * offline CPUs to first hardware queue. We will re-init the queue
1944 * below to get optimal settings.
Jens Axboe320ae512013-10-24 09:20:05 +01001945 */
1946 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1947 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1948 return NOTIFY_OK;
1949
1950 mutex_lock(&all_q_mutex);
1951 list_for_each_entry(q, &all_q_list, all_q_node)
1952 blk_mq_queue_reinit(q);
1953 mutex_unlock(&all_q_mutex);
1954 return NOTIFY_OK;
1955}
1956
Jens Axboea5164402014-09-10 09:02:03 -06001957static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
1958{
1959 int i;
1960
1961 for (i = 0; i < set->nr_hw_queues; i++) {
1962 set->tags[i] = blk_mq_init_rq_map(set, i);
1963 if (!set->tags[i])
1964 goto out_unwind;
1965 }
1966
1967 return 0;
1968
1969out_unwind:
1970 while (--i >= 0)
1971 blk_mq_free_rq_map(set, set->tags[i], i);
1972
Jens Axboea5164402014-09-10 09:02:03 -06001973 return -ENOMEM;
1974}
1975
1976/*
1977 * Allocate the request maps associated with this tag_set. Note that this
1978 * may reduce the depth asked for, if memory is tight. set->queue_depth
1979 * will be updated to reflect the allocated depth.
1980 */
1981static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
1982{
1983 unsigned int depth;
1984 int err;
1985
1986 depth = set->queue_depth;
1987 do {
1988 err = __blk_mq_alloc_rq_maps(set);
1989 if (!err)
1990 break;
1991
1992 set->queue_depth >>= 1;
1993 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
1994 err = -ENOMEM;
1995 break;
1996 }
1997 } while (set->queue_depth);
1998
1999 if (!set->queue_depth || err) {
2000 pr_err("blk-mq: failed to allocate request map\n");
2001 return -ENOMEM;
2002 }
2003
2004 if (depth != set->queue_depth)
2005 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2006 depth, set->queue_depth);
2007
2008 return 0;
2009}
2010
Jens Axboea4391c62014-06-05 15:21:56 -06002011/*
2012 * Alloc a tag set to be associated with one or more request queues.
2013 * May fail with EINVAL for various error conditions. May adjust the
2014 * requested depth down, if if it too large. In that case, the set
2015 * value will be stored in set->queue_depth.
2016 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002017int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2018{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002019 if (!set->nr_hw_queues)
2020 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06002021 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002022 return -EINVAL;
2023 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2024 return -EINVAL;
2025
Christoph Hellwigcdef54d2014-05-28 18:11:06 +02002026 if (!set->nr_hw_queues || !set->ops->queue_rq || !set->ops->map_queue)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002027 return -EINVAL;
2028
Jens Axboea4391c62014-06-05 15:21:56 -06002029 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2030 pr_info("blk-mq: reduced tag depth to %u\n",
2031 BLK_MQ_MAX_DEPTH);
2032 set->queue_depth = BLK_MQ_MAX_DEPTH;
2033 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002034
Ming Lei48479002014-04-19 18:00:17 +08002035 set->tags = kmalloc_node(set->nr_hw_queues *
2036 sizeof(struct blk_mq_tags *),
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002037 GFP_KERNEL, set->numa_node);
2038 if (!set->tags)
Jens Axboea5164402014-09-10 09:02:03 -06002039 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002040
Jens Axboea5164402014-09-10 09:02:03 -06002041 if (blk_mq_alloc_rq_maps(set))
2042 goto enomem;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002043
Jens Axboe0d2602c2014-05-13 15:10:52 -06002044 mutex_init(&set->tag_list_lock);
2045 INIT_LIST_HEAD(&set->tag_list);
2046
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002047 return 0;
Jens Axboea5164402014-09-10 09:02:03 -06002048enomem:
Robert Elliott5676e7b2014-09-02 11:38:44 -05002049 kfree(set->tags);
2050 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002051 return -ENOMEM;
2052}
2053EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2054
2055void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2056{
2057 int i;
2058
Jens Axboe484b4062014-05-21 14:01:15 -06002059 for (i = 0; i < set->nr_hw_queues; i++) {
2060 if (set->tags[i])
2061 blk_mq_free_rq_map(set, set->tags[i], i);
2062 }
2063
Ming Lei981bd182014-04-24 00:07:34 +08002064 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05002065 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002066}
2067EXPORT_SYMBOL(blk_mq_free_tag_set);
2068
Jens Axboee3a2b3f2014-05-20 11:49:02 -06002069int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2070{
2071 struct blk_mq_tag_set *set = q->tag_set;
2072 struct blk_mq_hw_ctx *hctx;
2073 int i, ret;
2074
2075 if (!set || nr > set->queue_depth)
2076 return -EINVAL;
2077
2078 ret = 0;
2079 queue_for_each_hw_ctx(q, hctx, i) {
2080 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2081 if (ret)
2082 break;
2083 }
2084
2085 if (!ret)
2086 q->nr_requests = nr;
2087
2088 return ret;
2089}
2090
Jens Axboe676141e2014-03-20 13:29:18 -06002091void blk_mq_disable_hotplug(void)
2092{
2093 mutex_lock(&all_q_mutex);
2094}
2095
2096void blk_mq_enable_hotplug(void)
2097{
2098 mutex_unlock(&all_q_mutex);
2099}
2100
Jens Axboe320ae512013-10-24 09:20:05 +01002101static int __init blk_mq_init(void)
2102{
Jens Axboe320ae512013-10-24 09:20:05 +01002103 blk_mq_cpu_init();
2104
Tejun Heoadd703f2014-07-01 10:34:38 -06002105 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002106
2107 return 0;
2108}
2109subsys_initcall(blk_mq_init);