]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - block/blk-mq.c
blk-mq: respect rq_affinity
[karo-tx-linux.git] / block / blk-mq.c
1 #include <linux/kernel.h>
2 #include <linux/module.h>
3 #include <linux/backing-dev.h>
4 #include <linux/bio.h>
5 #include <linux/blkdev.h>
6 #include <linux/mm.h>
7 #include <linux/init.h>
8 #include <linux/slab.h>
9 #include <linux/workqueue.h>
10 #include <linux/smp.h>
11 #include <linux/llist.h>
12 #include <linux/list_sort.h>
13 #include <linux/cpu.h>
14 #include <linux/cache.h>
15 #include <linux/sched/sysctl.h>
16 #include <linux/delay.h>
17
18 #include <trace/events/block.h>
19
20 #include <linux/blk-mq.h>
21 #include "blk.h"
22 #include "blk-mq.h"
23 #include "blk-mq-tag.h"
24
25 static DEFINE_MUTEX(all_q_mutex);
26 static LIST_HEAD(all_q_list);
27
28 static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx);
29
30 static struct blk_mq_ctx *__blk_mq_get_ctx(struct request_queue *q,
31                                            unsigned int cpu)
32 {
33         return per_cpu_ptr(q->queue_ctx, cpu);
34 }
35
36 /*
37  * This assumes per-cpu software queueing queues. They could be per-node
38  * as well, for instance. For now this is hardcoded as-is. Note that we don't
39  * care about preemption, since we know the ctx's are persistent. This does
40  * mean that we can't rely on ctx always matching the currently running CPU.
41  */
42 static struct blk_mq_ctx *blk_mq_get_ctx(struct request_queue *q)
43 {
44         return __blk_mq_get_ctx(q, get_cpu());
45 }
46
47 static void blk_mq_put_ctx(struct blk_mq_ctx *ctx)
48 {
49         put_cpu();
50 }
51
52 /*
53  * Check if any of the ctx's have pending work in this hardware queue
54  */
55 static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
56 {
57         unsigned int i;
58
59         for (i = 0; i < hctx->nr_ctx_map; i++)
60                 if (hctx->ctx_map[i])
61                         return true;
62
63         return false;
64 }
65
66 /*
67  * Mark this ctx as having pending work in this hardware queue
68  */
69 static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
70                                      struct blk_mq_ctx *ctx)
71 {
72         if (!test_bit(ctx->index_hw, hctx->ctx_map))
73                 set_bit(ctx->index_hw, hctx->ctx_map);
74 }
75
76 static struct request *__blk_mq_alloc_request(struct blk_mq_hw_ctx *hctx,
77                                               gfp_t gfp, bool reserved)
78 {
79         struct request *rq;
80         unsigned int tag;
81
82         tag = blk_mq_get_tag(hctx->tags, gfp, reserved);
83         if (tag != BLK_MQ_TAG_FAIL) {
84                 rq = hctx->tags->rqs[tag];
85                 blk_rq_init(hctx->queue, rq);
86                 rq->tag = tag;
87
88                 return rq;
89         }
90
91         return NULL;
92 }
93
94 static int blk_mq_queue_enter(struct request_queue *q)
95 {
96         int ret;
97
98         __percpu_counter_add(&q->mq_usage_counter, 1, 1000000);
99         smp_wmb();
100         /* we have problems to freeze the queue if it's initializing */
101         if (!blk_queue_bypass(q) || !blk_queue_init_done(q))
102                 return 0;
103
104         __percpu_counter_add(&q->mq_usage_counter, -1, 1000000);
105
106         spin_lock_irq(q->queue_lock);
107         ret = wait_event_interruptible_lock_irq(q->mq_freeze_wq,
108                 !blk_queue_bypass(q) || blk_queue_dying(q),
109                 *q->queue_lock);
110         /* inc usage with lock hold to avoid freeze_queue runs here */
111         if (!ret && !blk_queue_dying(q))
112                 __percpu_counter_add(&q->mq_usage_counter, 1, 1000000);
113         else if (blk_queue_dying(q))
114                 ret = -ENODEV;
115         spin_unlock_irq(q->queue_lock);
116
117         return ret;
118 }
119
120 static void blk_mq_queue_exit(struct request_queue *q)
121 {
122         __percpu_counter_add(&q->mq_usage_counter, -1, 1000000);
123 }
124
125 static void __blk_mq_drain_queue(struct request_queue *q)
126 {
127         while (true) {
128                 s64 count;
129
130                 spin_lock_irq(q->queue_lock);
131                 count = percpu_counter_sum(&q->mq_usage_counter);
132                 spin_unlock_irq(q->queue_lock);
133
134                 if (count == 0)
135                         break;
136                 blk_mq_run_queues(q, false);
137                 msleep(10);
138         }
139 }
140
141 /*
142  * Guarantee no request is in use, so we can change any data structure of
143  * the queue afterward.
144  */
145 static void blk_mq_freeze_queue(struct request_queue *q)
146 {
147         bool drain;
148
149         spin_lock_irq(q->queue_lock);
150         drain = !q->bypass_depth++;
151         queue_flag_set(QUEUE_FLAG_BYPASS, q);
152         spin_unlock_irq(q->queue_lock);
153
154         if (drain)
155                 __blk_mq_drain_queue(q);
156 }
157
158 void blk_mq_drain_queue(struct request_queue *q)
159 {
160         __blk_mq_drain_queue(q);
161 }
162
163 static void blk_mq_unfreeze_queue(struct request_queue *q)
164 {
165         bool wake = false;
166
167         spin_lock_irq(q->queue_lock);
168         if (!--q->bypass_depth) {
169                 queue_flag_clear(QUEUE_FLAG_BYPASS, q);
170                 wake = true;
171         }
172         WARN_ON_ONCE(q->bypass_depth < 0);
173         spin_unlock_irq(q->queue_lock);
174         if (wake)
175                 wake_up_all(&q->mq_freeze_wq);
176 }
177
178 bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
179 {
180         return blk_mq_has_free_tags(hctx->tags);
181 }
182 EXPORT_SYMBOL(blk_mq_can_queue);
183
184 static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
185                                struct request *rq, unsigned int rw_flags)
186 {
187         if (blk_queue_io_stat(q))
188                 rw_flags |= REQ_IO_STAT;
189
190         rq->mq_ctx = ctx;
191         rq->cmd_flags = rw_flags;
192         rq->start_time = jiffies;
193         set_start_time_ns(rq);
194         ctx->rq_dispatched[rw_is_sync(rw_flags)]++;
195 }
196
197 static struct request *blk_mq_alloc_request_pinned(struct request_queue *q,
198                                                    int rw, gfp_t gfp,
199                                                    bool reserved)
200 {
201         struct request *rq;
202
203         do {
204                 struct blk_mq_ctx *ctx = blk_mq_get_ctx(q);
205                 struct blk_mq_hw_ctx *hctx = q->mq_ops->map_queue(q, ctx->cpu);
206
207                 rq = __blk_mq_alloc_request(hctx, gfp & ~__GFP_WAIT, reserved);
208                 if (rq) {
209                         blk_mq_rq_ctx_init(q, ctx, rq, rw);
210                         break;
211                 }
212
213                 if (gfp & __GFP_WAIT) {
214                         __blk_mq_run_hw_queue(hctx);
215                         blk_mq_put_ctx(ctx);
216                 } else {
217                         blk_mq_put_ctx(ctx);
218                         break;
219                 }
220
221                 blk_mq_wait_for_tags(hctx->tags);
222         } while (1);
223
224         return rq;
225 }
226
227 struct request *blk_mq_alloc_request(struct request_queue *q, int rw, gfp_t gfp)
228 {
229         struct request *rq;
230
231         if (blk_mq_queue_enter(q))
232                 return NULL;
233
234         rq = blk_mq_alloc_request_pinned(q, rw, gfp, false);
235         if (rq)
236                 blk_mq_put_ctx(rq->mq_ctx);
237         return rq;
238 }
239
240 struct request *blk_mq_alloc_reserved_request(struct request_queue *q, int rw,
241                                               gfp_t gfp)
242 {
243         struct request *rq;
244
245         if (blk_mq_queue_enter(q))
246                 return NULL;
247
248         rq = blk_mq_alloc_request_pinned(q, rw, gfp, true);
249         if (rq)
250                 blk_mq_put_ctx(rq->mq_ctx);
251         return rq;
252 }
253 EXPORT_SYMBOL(blk_mq_alloc_reserved_request);
254
255 static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
256                                   struct blk_mq_ctx *ctx, struct request *rq)
257 {
258         const int tag = rq->tag;
259         struct request_queue *q = rq->q;
260
261         blk_mq_put_tag(hctx->tags, tag);
262         blk_mq_queue_exit(q);
263 }
264
265 void blk_mq_free_request(struct request *rq)
266 {
267         struct blk_mq_ctx *ctx = rq->mq_ctx;
268         struct blk_mq_hw_ctx *hctx;
269         struct request_queue *q = rq->q;
270
271         ctx->rq_completed[rq_is_sync(rq)]++;
272
273         hctx = q->mq_ops->map_queue(q, ctx->cpu);
274         __blk_mq_free_request(hctx, ctx, rq);
275 }
276
277 /*
278  * Clone all relevant state from a request that has been put on hold in
279  * the flush state machine into the preallocated flush request that hangs
280  * off the request queue.
281  *
282  * For a driver the flush request should be invisible, that's why we are
283  * impersonating the original request here.
284  */
285 void blk_mq_clone_flush_request(struct request *flush_rq,
286                 struct request *orig_rq)
287 {
288         struct blk_mq_hw_ctx *hctx =
289                 orig_rq->q->mq_ops->map_queue(orig_rq->q, orig_rq->mq_ctx->cpu);
290
291         flush_rq->mq_ctx = orig_rq->mq_ctx;
292         flush_rq->tag = orig_rq->tag;
293         memcpy(blk_mq_rq_to_pdu(flush_rq), blk_mq_rq_to_pdu(orig_rq),
294                 hctx->cmd_size);
295 }
296
297 inline void __blk_mq_end_io(struct request *rq, int error)
298 {
299         blk_account_io_done(rq);
300
301         if (rq->end_io) {
302                 rq->end_io(rq, error);
303         } else {
304                 if (unlikely(blk_bidi_rq(rq)))
305                         blk_mq_free_request(rq->next_rq);
306                 blk_mq_free_request(rq);
307         }
308 }
309 EXPORT_SYMBOL(__blk_mq_end_io);
310
311 void blk_mq_end_io(struct request *rq, int error)
312 {
313         if (blk_update_request(rq, error, blk_rq_bytes(rq)))
314                 BUG();
315         __blk_mq_end_io(rq, error);
316 }
317 EXPORT_SYMBOL(blk_mq_end_io);
318
319 static void __blk_mq_complete_request_remote(void *data)
320 {
321         struct request *rq = data;
322
323         rq->q->softirq_done_fn(rq);
324 }
325
326 void __blk_mq_complete_request(struct request *rq)
327 {
328         struct blk_mq_ctx *ctx = rq->mq_ctx;
329         bool shared = false;
330         int cpu;
331
332         if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
333                 rq->q->softirq_done_fn(rq);
334                 return;
335         }
336
337         cpu = get_cpu();
338         if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
339                 shared = cpus_share_cache(cpu, ctx->cpu);
340
341         if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
342                 rq->csd.func = __blk_mq_complete_request_remote;
343                 rq->csd.info = rq;
344                 rq->csd.flags = 0;
345                 smp_call_function_single_async(ctx->cpu, &rq->csd);
346         } else {
347                 rq->q->softirq_done_fn(rq);
348         }
349         put_cpu();
350 }
351
352 /**
353  * blk_mq_complete_request - end I/O on a request
354  * @rq:         the request being processed
355  *
356  * Description:
357  *      Ends all I/O on a request. It does not handle partial completions.
358  *      The actual completion happens out-of-order, through a IPI handler.
359  **/
360 void blk_mq_complete_request(struct request *rq)
361 {
362         if (unlikely(blk_should_fake_timeout(rq->q)))
363                 return;
364         if (!blk_mark_rq_complete(rq))
365                 __blk_mq_complete_request(rq);
366 }
367 EXPORT_SYMBOL(blk_mq_complete_request);
368
369 static void blk_mq_start_request(struct request *rq, bool last)
370 {
371         struct request_queue *q = rq->q;
372
373         trace_block_rq_issue(q, rq);
374
375         rq->resid_len = blk_rq_bytes(rq);
376         if (unlikely(blk_bidi_rq(rq)))
377                 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
378
379         /*
380          * Just mark start time and set the started bit. Due to memory
381          * ordering, we know we'll see the correct deadline as long as
382          * REQ_ATOMIC_STARTED is seen.
383          */
384         rq->deadline = jiffies + q->rq_timeout;
385
386         /*
387          * Mark us as started and clear complete. Complete might have been
388          * set if requeue raced with timeout, which then marked it as
389          * complete. So be sure to clear complete again when we start
390          * the request, otherwise we'll ignore the completion event.
391          */
392         set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
393         clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
394
395         if (q->dma_drain_size && blk_rq_bytes(rq)) {
396                 /*
397                  * Make sure space for the drain appears.  We know we can do
398                  * this because max_hw_segments has been adjusted to be one
399                  * fewer than the device can handle.
400                  */
401                 rq->nr_phys_segments++;
402         }
403
404         /*
405          * Flag the last request in the series so that drivers know when IO
406          * should be kicked off, if they don't do it on a per-request basis.
407          *
408          * Note: the flag isn't the only condition drivers should do kick off.
409          * If drive is busy, the last request might not have the bit set.
410          */
411         if (last)
412                 rq->cmd_flags |= REQ_END;
413 }
414
415 static void __blk_mq_requeue_request(struct request *rq)
416 {
417         struct request_queue *q = rq->q;
418
419         trace_block_rq_requeue(q, rq);
420         clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
421
422         rq->cmd_flags &= ~REQ_END;
423
424         if (q->dma_drain_size && blk_rq_bytes(rq))
425                 rq->nr_phys_segments--;
426 }
427
428 void blk_mq_requeue_request(struct request *rq)
429 {
430         struct request_queue *q = rq->q;
431
432         __blk_mq_requeue_request(rq);
433         blk_clear_rq_complete(rq);
434
435         trace_block_rq_requeue(q, rq);
436
437         BUG_ON(blk_queued_rq(rq));
438         blk_mq_insert_request(rq, true, true, false);
439 }
440 EXPORT_SYMBOL(blk_mq_requeue_request);
441
442 struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
443 {
444         return tags->rqs[tag];
445 }
446 EXPORT_SYMBOL(blk_mq_tag_to_rq);
447
448 struct blk_mq_timeout_data {
449         struct blk_mq_hw_ctx *hctx;
450         unsigned long *next;
451         unsigned int *next_set;
452 };
453
454 static void blk_mq_timeout_check(void *__data, unsigned long *free_tags)
455 {
456         struct blk_mq_timeout_data *data = __data;
457         struct blk_mq_hw_ctx *hctx = data->hctx;
458         unsigned int tag;
459
460          /* It may not be in flight yet (this is where
461          * the REQ_ATOMIC_STARTED flag comes in). The requests are
462          * statically allocated, so we know it's always safe to access the
463          * memory associated with a bit offset into ->rqs[].
464          */
465         tag = 0;
466         do {
467                 struct request *rq;
468
469                 tag = find_next_zero_bit(free_tags, hctx->tags->nr_tags, tag);
470                 if (tag >= hctx->tags->nr_tags)
471                         break;
472
473                 rq = blk_mq_tag_to_rq(hctx->tags, tag++);
474                 if (rq->q != hctx->queue)
475                         continue;
476                 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
477                         continue;
478
479                 blk_rq_check_expired(rq, data->next, data->next_set);
480         } while (1);
481 }
482
483 static void blk_mq_hw_ctx_check_timeout(struct blk_mq_hw_ctx *hctx,
484                                         unsigned long *next,
485                                         unsigned int *next_set)
486 {
487         struct blk_mq_timeout_data data = {
488                 .hctx           = hctx,
489                 .next           = next,
490                 .next_set       = next_set,
491         };
492
493         /*
494          * Ask the tagging code to iterate busy requests, so we can
495          * check them for timeout.
496          */
497         blk_mq_tag_busy_iter(hctx->tags, blk_mq_timeout_check, &data);
498 }
499
500 static enum blk_eh_timer_return blk_mq_rq_timed_out(struct request *rq)
501 {
502         struct request_queue *q = rq->q;
503
504         /*
505          * We know that complete is set at this point. If STARTED isn't set
506          * anymore, then the request isn't active and the "timeout" should
507          * just be ignored. This can happen due to the bitflag ordering.
508          * Timeout first checks if STARTED is set, and if it is, assumes
509          * the request is active. But if we race with completion, then
510          * we both flags will get cleared. So check here again, and ignore
511          * a timeout event with a request that isn't active.
512          */
513         if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
514                 return BLK_EH_NOT_HANDLED;
515
516         if (!q->mq_ops->timeout)
517                 return BLK_EH_RESET_TIMER;
518
519         return q->mq_ops->timeout(rq);
520 }
521
522 static void blk_mq_rq_timer(unsigned long data)
523 {
524         struct request_queue *q = (struct request_queue *) data;
525         struct blk_mq_hw_ctx *hctx;
526         unsigned long next = 0;
527         int i, next_set = 0;
528
529         queue_for_each_hw_ctx(q, hctx, i)
530                 blk_mq_hw_ctx_check_timeout(hctx, &next, &next_set);
531
532         if (next_set)
533                 mod_timer(&q->timeout, round_jiffies_up(next));
534 }
535
536 /*
537  * Reverse check our software queue for entries that we could potentially
538  * merge with. Currently includes a hand-wavy stop count of 8, to not spend
539  * too much time checking for merges.
540  */
541 static bool blk_mq_attempt_merge(struct request_queue *q,
542                                  struct blk_mq_ctx *ctx, struct bio *bio)
543 {
544         struct request *rq;
545         int checked = 8;
546
547         list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
548                 int el_ret;
549
550                 if (!checked--)
551                         break;
552
553                 if (!blk_rq_merge_ok(rq, bio))
554                         continue;
555
556                 el_ret = blk_try_merge(rq, bio);
557                 if (el_ret == ELEVATOR_BACK_MERGE) {
558                         if (bio_attempt_back_merge(q, rq, bio)) {
559                                 ctx->rq_merged++;
560                                 return true;
561                         }
562                         break;
563                 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
564                         if (bio_attempt_front_merge(q, rq, bio)) {
565                                 ctx->rq_merged++;
566                                 return true;
567                         }
568                         break;
569                 }
570         }
571
572         return false;
573 }
574
575 /*
576  * Run this hardware queue, pulling any software queues mapped to it in.
577  * Note that this function currently has various problems around ordering
578  * of IO. In particular, we'd like FIFO behaviour on handling existing
579  * items on the hctx->dispatch list. Ignore that for now.
580  */
581 static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
582 {
583         struct request_queue *q = hctx->queue;
584         struct blk_mq_ctx *ctx;
585         struct request *rq;
586         LIST_HEAD(rq_list);
587         int bit, queued;
588
589         WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
590
591         if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
592                 return;
593
594         hctx->run++;
595
596         /*
597          * Touch any software queue that has pending entries.
598          */
599         for_each_set_bit(bit, hctx->ctx_map, hctx->nr_ctx) {
600                 clear_bit(bit, hctx->ctx_map);
601                 ctx = hctx->ctxs[bit];
602                 BUG_ON(bit != ctx->index_hw);
603
604                 spin_lock(&ctx->lock);
605                 list_splice_tail_init(&ctx->rq_list, &rq_list);
606                 spin_unlock(&ctx->lock);
607         }
608
609         /*
610          * If we have previous entries on our dispatch list, grab them
611          * and stuff them at the front for more fair dispatch.
612          */
613         if (!list_empty_careful(&hctx->dispatch)) {
614                 spin_lock(&hctx->lock);
615                 if (!list_empty(&hctx->dispatch))
616                         list_splice_init(&hctx->dispatch, &rq_list);
617                 spin_unlock(&hctx->lock);
618         }
619
620         /*
621          * Delete and return all entries from our dispatch list
622          */
623         queued = 0;
624
625         /*
626          * Now process all the entries, sending them to the driver.
627          */
628         while (!list_empty(&rq_list)) {
629                 int ret;
630
631                 rq = list_first_entry(&rq_list, struct request, queuelist);
632                 list_del_init(&rq->queuelist);
633
634                 blk_mq_start_request(rq, list_empty(&rq_list));
635
636                 ret = q->mq_ops->queue_rq(hctx, rq);
637                 switch (ret) {
638                 case BLK_MQ_RQ_QUEUE_OK:
639                         queued++;
640                         continue;
641                 case BLK_MQ_RQ_QUEUE_BUSY:
642                         /*
643                          * FIXME: we should have a mechanism to stop the queue
644                          * like blk_stop_queue, otherwise we will waste cpu
645                          * time
646                          */
647                         list_add(&rq->queuelist, &rq_list);
648                         __blk_mq_requeue_request(rq);
649                         break;
650                 default:
651                         pr_err("blk-mq: bad return on queue: %d\n", ret);
652                 case BLK_MQ_RQ_QUEUE_ERROR:
653                         rq->errors = -EIO;
654                         blk_mq_end_io(rq, rq->errors);
655                         break;
656                 }
657
658                 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
659                         break;
660         }
661
662         if (!queued)
663                 hctx->dispatched[0]++;
664         else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
665                 hctx->dispatched[ilog2(queued) + 1]++;
666
667         /*
668          * Any items that need requeuing? Stuff them into hctx->dispatch,
669          * that is where we will continue on next queue run.
670          */
671         if (!list_empty(&rq_list)) {
672                 spin_lock(&hctx->lock);
673                 list_splice(&rq_list, &hctx->dispatch);
674                 spin_unlock(&hctx->lock);
675         }
676 }
677
678 void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
679 {
680         if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
681                 return;
682
683         if (!async && cpumask_test_cpu(smp_processor_id(), hctx->cpumask))
684                 __blk_mq_run_hw_queue(hctx);
685         else if (hctx->queue->nr_hw_queues == 1)
686                 kblockd_schedule_delayed_work(&hctx->run_work, 0);
687         else {
688                 unsigned int cpu;
689
690                 /*
691                  * It'd be great if the workqueue API had a way to pass
692                  * in a mask and had some smarts for more clever placement
693                  * than the first CPU. Or we could round-robin here. For now,
694                  * just queue on the first CPU.
695                  */
696                 cpu = cpumask_first(hctx->cpumask);
697                 kblockd_schedule_delayed_work_on(cpu, &hctx->run_work, 0);
698         }
699 }
700
701 void blk_mq_run_queues(struct request_queue *q, bool async)
702 {
703         struct blk_mq_hw_ctx *hctx;
704         int i;
705
706         queue_for_each_hw_ctx(q, hctx, i) {
707                 if ((!blk_mq_hctx_has_pending(hctx) &&
708                     list_empty_careful(&hctx->dispatch)) ||
709                     test_bit(BLK_MQ_S_STOPPED, &hctx->state))
710                         continue;
711
712                 preempt_disable();
713                 blk_mq_run_hw_queue(hctx, async);
714                 preempt_enable();
715         }
716 }
717 EXPORT_SYMBOL(blk_mq_run_queues);
718
719 void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
720 {
721         cancel_delayed_work(&hctx->run_work);
722         cancel_delayed_work(&hctx->delay_work);
723         set_bit(BLK_MQ_S_STOPPED, &hctx->state);
724 }
725 EXPORT_SYMBOL(blk_mq_stop_hw_queue);
726
727 void blk_mq_stop_hw_queues(struct request_queue *q)
728 {
729         struct blk_mq_hw_ctx *hctx;
730         int i;
731
732         queue_for_each_hw_ctx(q, hctx, i)
733                 blk_mq_stop_hw_queue(hctx);
734 }
735 EXPORT_SYMBOL(blk_mq_stop_hw_queues);
736
737 void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
738 {
739         clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
740
741         preempt_disable();
742         __blk_mq_run_hw_queue(hctx);
743         preempt_enable();
744 }
745 EXPORT_SYMBOL(blk_mq_start_hw_queue);
746
747 void blk_mq_start_hw_queues(struct request_queue *q)
748 {
749         struct blk_mq_hw_ctx *hctx;
750         int i;
751
752         queue_for_each_hw_ctx(q, hctx, i)
753                 blk_mq_start_hw_queue(hctx);
754 }
755 EXPORT_SYMBOL(blk_mq_start_hw_queues);
756
757
758 void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
759 {
760         struct blk_mq_hw_ctx *hctx;
761         int i;
762
763         queue_for_each_hw_ctx(q, hctx, i) {
764                 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
765                         continue;
766
767                 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
768                 preempt_disable();
769                 blk_mq_run_hw_queue(hctx, async);
770                 preempt_enable();
771         }
772 }
773 EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
774
775 static void blk_mq_run_work_fn(struct work_struct *work)
776 {
777         struct blk_mq_hw_ctx *hctx;
778
779         hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
780
781         __blk_mq_run_hw_queue(hctx);
782 }
783
784 static void blk_mq_delay_work_fn(struct work_struct *work)
785 {
786         struct blk_mq_hw_ctx *hctx;
787
788         hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
789
790         if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
791                 __blk_mq_run_hw_queue(hctx);
792 }
793
794 void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
795 {
796         unsigned long tmo = msecs_to_jiffies(msecs);
797
798         if (hctx->queue->nr_hw_queues == 1)
799                 kblockd_schedule_delayed_work(&hctx->delay_work, tmo);
800         else {
801                 unsigned int cpu;
802
803                 /*
804                  * It'd be great if the workqueue API had a way to pass
805                  * in a mask and had some smarts for more clever placement
806                  * than the first CPU. Or we could round-robin here. For now,
807                  * just queue on the first CPU.
808                  */
809                 cpu = cpumask_first(hctx->cpumask);
810                 kblockd_schedule_delayed_work_on(cpu, &hctx->delay_work, tmo);
811         }
812 }
813 EXPORT_SYMBOL(blk_mq_delay_queue);
814
815 static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
816                                     struct request *rq, bool at_head)
817 {
818         struct blk_mq_ctx *ctx = rq->mq_ctx;
819
820         trace_block_rq_insert(hctx->queue, rq);
821
822         if (at_head)
823                 list_add(&rq->queuelist, &ctx->rq_list);
824         else
825                 list_add_tail(&rq->queuelist, &ctx->rq_list);
826         blk_mq_hctx_mark_pending(hctx, ctx);
827
828         /*
829          * We do this early, to ensure we are on the right CPU.
830          */
831         blk_add_timer(rq);
832 }
833
834 void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
835                 bool async)
836 {
837         struct request_queue *q = rq->q;
838         struct blk_mq_hw_ctx *hctx;
839         struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
840
841         current_ctx = blk_mq_get_ctx(q);
842         if (!cpu_online(ctx->cpu))
843                 rq->mq_ctx = ctx = current_ctx;
844
845         hctx = q->mq_ops->map_queue(q, ctx->cpu);
846
847         if (rq->cmd_flags & (REQ_FLUSH | REQ_FUA) &&
848             !(rq->cmd_flags & (REQ_FLUSH_SEQ))) {
849                 blk_insert_flush(rq);
850         } else {
851                 spin_lock(&ctx->lock);
852                 __blk_mq_insert_request(hctx, rq, at_head);
853                 spin_unlock(&ctx->lock);
854         }
855
856         if (run_queue)
857                 blk_mq_run_hw_queue(hctx, async);
858
859         blk_mq_put_ctx(current_ctx);
860 }
861
862 static void blk_mq_insert_requests(struct request_queue *q,
863                                      struct blk_mq_ctx *ctx,
864                                      struct list_head *list,
865                                      int depth,
866                                      bool from_schedule)
867
868 {
869         struct blk_mq_hw_ctx *hctx;
870         struct blk_mq_ctx *current_ctx;
871
872         trace_block_unplug(q, depth, !from_schedule);
873
874         current_ctx = blk_mq_get_ctx(q);
875
876         if (!cpu_online(ctx->cpu))
877                 ctx = current_ctx;
878         hctx = q->mq_ops->map_queue(q, ctx->cpu);
879
880         /*
881          * preemption doesn't flush plug list, so it's possible ctx->cpu is
882          * offline now
883          */
884         spin_lock(&ctx->lock);
885         while (!list_empty(list)) {
886                 struct request *rq;
887
888                 rq = list_first_entry(list, struct request, queuelist);
889                 list_del_init(&rq->queuelist);
890                 rq->mq_ctx = ctx;
891                 __blk_mq_insert_request(hctx, rq, false);
892         }
893         spin_unlock(&ctx->lock);
894
895         blk_mq_run_hw_queue(hctx, from_schedule);
896         blk_mq_put_ctx(current_ctx);
897 }
898
899 static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
900 {
901         struct request *rqa = container_of(a, struct request, queuelist);
902         struct request *rqb = container_of(b, struct request, queuelist);
903
904         return !(rqa->mq_ctx < rqb->mq_ctx ||
905                  (rqa->mq_ctx == rqb->mq_ctx &&
906                   blk_rq_pos(rqa) < blk_rq_pos(rqb)));
907 }
908
909 void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
910 {
911         struct blk_mq_ctx *this_ctx;
912         struct request_queue *this_q;
913         struct request *rq;
914         LIST_HEAD(list);
915         LIST_HEAD(ctx_list);
916         unsigned int depth;
917
918         list_splice_init(&plug->mq_list, &list);
919
920         list_sort(NULL, &list, plug_ctx_cmp);
921
922         this_q = NULL;
923         this_ctx = NULL;
924         depth = 0;
925
926         while (!list_empty(&list)) {
927                 rq = list_entry_rq(list.next);
928                 list_del_init(&rq->queuelist);
929                 BUG_ON(!rq->q);
930                 if (rq->mq_ctx != this_ctx) {
931                         if (this_ctx) {
932                                 blk_mq_insert_requests(this_q, this_ctx,
933                                                         &ctx_list, depth,
934                                                         from_schedule);
935                         }
936
937                         this_ctx = rq->mq_ctx;
938                         this_q = rq->q;
939                         depth = 0;
940                 }
941
942                 depth++;
943                 list_add_tail(&rq->queuelist, &ctx_list);
944         }
945
946         /*
947          * If 'this_ctx' is set, we know we have entries to complete
948          * on 'ctx_list'. Do those.
949          */
950         if (this_ctx) {
951                 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
952                                        from_schedule);
953         }
954 }
955
956 static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
957 {
958         init_request_from_bio(rq, bio);
959         blk_account_io_start(rq, 1);
960 }
961
962 static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
963 {
964         struct blk_mq_hw_ctx *hctx;
965         struct blk_mq_ctx *ctx;
966         const int is_sync = rw_is_sync(bio->bi_rw);
967         const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
968         int rw = bio_data_dir(bio);
969         struct request *rq;
970         unsigned int use_plug, request_count = 0;
971
972         /*
973          * If we have multiple hardware queues, just go directly to
974          * one of those for sync IO.
975          */
976         use_plug = !is_flush_fua && ((q->nr_hw_queues == 1) || !is_sync);
977
978         blk_queue_bounce(q, &bio);
979
980         if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
981                 bio_endio(bio, -EIO);
982                 return;
983         }
984
985         if (use_plug && blk_attempt_plug_merge(q, bio, &request_count))
986                 return;
987
988         if (blk_mq_queue_enter(q)) {
989                 bio_endio(bio, -EIO);
990                 return;
991         }
992
993         ctx = blk_mq_get_ctx(q);
994         hctx = q->mq_ops->map_queue(q, ctx->cpu);
995
996         if (is_sync)
997                 rw |= REQ_SYNC;
998         trace_block_getrq(q, bio, rw);
999         rq = __blk_mq_alloc_request(hctx, GFP_ATOMIC, false);
1000         if (likely(rq))
1001                 blk_mq_rq_ctx_init(q, ctx, rq, rw);
1002         else {
1003                 blk_mq_put_ctx(ctx);
1004                 trace_block_sleeprq(q, bio, rw);
1005                 rq = blk_mq_alloc_request_pinned(q, rw, __GFP_WAIT|GFP_ATOMIC,
1006                                                         false);
1007                 ctx = rq->mq_ctx;
1008                 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1009         }
1010
1011         hctx->queued++;
1012
1013         if (unlikely(is_flush_fua)) {
1014                 blk_mq_bio_to_request(rq, bio);
1015                 blk_insert_flush(rq);
1016                 goto run_queue;
1017         }
1018
1019         /*
1020          * A task plug currently exists. Since this is completely lockless,
1021          * utilize that to temporarily store requests until the task is
1022          * either done or scheduled away.
1023          */
1024         if (use_plug) {
1025                 struct blk_plug *plug = current->plug;
1026
1027                 if (plug) {
1028                         blk_mq_bio_to_request(rq, bio);
1029                         if (list_empty(&plug->mq_list))
1030                                 trace_block_plug(q);
1031                         else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1032                                 blk_flush_plug_list(plug, false);
1033                                 trace_block_plug(q);
1034                         }
1035                         list_add_tail(&rq->queuelist, &plug->mq_list);
1036                         blk_mq_put_ctx(ctx);
1037                         return;
1038                 }
1039         }
1040
1041         spin_lock(&ctx->lock);
1042
1043         if ((hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1044             blk_mq_attempt_merge(q, ctx, bio))
1045                 __blk_mq_free_request(hctx, ctx, rq);
1046         else {
1047                 blk_mq_bio_to_request(rq, bio);
1048                 __blk_mq_insert_request(hctx, rq, false);
1049         }
1050
1051         spin_unlock(&ctx->lock);
1052
1053         /*
1054          * For a SYNC request, send it to the hardware immediately. For an
1055          * ASYNC request, just ensure that we run it later on. The latter
1056          * allows for merging opportunities and more efficient dispatching.
1057          */
1058 run_queue:
1059         blk_mq_run_hw_queue(hctx, !is_sync || is_flush_fua);
1060         blk_mq_put_ctx(ctx);
1061 }
1062
1063 /*
1064  * Default mapping to a software queue, since we use one per CPU.
1065  */
1066 struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1067 {
1068         return q->queue_hw_ctx[q->mq_map[cpu]];
1069 }
1070 EXPORT_SYMBOL(blk_mq_map_queue);
1071
1072 struct blk_mq_hw_ctx *blk_mq_alloc_single_hw_queue(struct blk_mq_tag_set *set,
1073                                                    unsigned int hctx_index)
1074 {
1075         return kmalloc_node(sizeof(struct blk_mq_hw_ctx),
1076                                 GFP_KERNEL | __GFP_ZERO, set->numa_node);
1077 }
1078 EXPORT_SYMBOL(blk_mq_alloc_single_hw_queue);
1079
1080 void blk_mq_free_single_hw_queue(struct blk_mq_hw_ctx *hctx,
1081                                  unsigned int hctx_index)
1082 {
1083         kfree(hctx);
1084 }
1085 EXPORT_SYMBOL(blk_mq_free_single_hw_queue);
1086
1087 static void blk_mq_hctx_notify(void *data, unsigned long action,
1088                                unsigned int cpu)
1089 {
1090         struct blk_mq_hw_ctx *hctx = data;
1091         struct request_queue *q = hctx->queue;
1092         struct blk_mq_ctx *ctx;
1093         LIST_HEAD(tmp);
1094
1095         if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
1096                 return;
1097
1098         /*
1099          * Move ctx entries to new CPU, if this one is going away.
1100          */
1101         ctx = __blk_mq_get_ctx(q, cpu);
1102
1103         spin_lock(&ctx->lock);
1104         if (!list_empty(&ctx->rq_list)) {
1105                 list_splice_init(&ctx->rq_list, &tmp);
1106                 clear_bit(ctx->index_hw, hctx->ctx_map);
1107         }
1108         spin_unlock(&ctx->lock);
1109
1110         if (list_empty(&tmp))
1111                 return;
1112
1113         ctx = blk_mq_get_ctx(q);
1114         spin_lock(&ctx->lock);
1115
1116         while (!list_empty(&tmp)) {
1117                 struct request *rq;
1118
1119                 rq = list_first_entry(&tmp, struct request, queuelist);
1120                 rq->mq_ctx = ctx;
1121                 list_move_tail(&rq->queuelist, &ctx->rq_list);
1122         }
1123
1124         hctx = q->mq_ops->map_queue(q, ctx->cpu);
1125         blk_mq_hctx_mark_pending(hctx, ctx);
1126
1127         spin_unlock(&ctx->lock);
1128
1129         blk_mq_run_hw_queue(hctx, true);
1130         blk_mq_put_ctx(ctx);
1131 }
1132
1133 static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1134                 struct blk_mq_tags *tags, unsigned int hctx_idx)
1135 {
1136         struct page *page;
1137
1138         if (tags->rqs && set->ops->exit_request) {
1139                 int i;
1140
1141                 for (i = 0; i < tags->nr_tags; i++) {
1142                         if (!tags->rqs[i])
1143                                 continue;
1144                         set->ops->exit_request(set->driver_data, tags->rqs[i],
1145                                                 hctx_idx, i);
1146                 }
1147         }
1148
1149         while (!list_empty(&tags->page_list)) {
1150                 page = list_first_entry(&tags->page_list, struct page, lru);
1151                 list_del_init(&page->lru);
1152                 __free_pages(page, page->private);
1153         }
1154
1155         kfree(tags->rqs);
1156
1157         blk_mq_free_tags(tags);
1158 }
1159
1160 static size_t order_to_size(unsigned int order)
1161 {
1162         return (size_t)PAGE_SIZE << order;
1163 }
1164
1165 static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1166                 unsigned int hctx_idx)
1167 {
1168         struct blk_mq_tags *tags;
1169         unsigned int i, j, entries_per_page, max_order = 4;
1170         size_t rq_size, left;
1171
1172         tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1173                                 set->numa_node);
1174         if (!tags)
1175                 return NULL;
1176
1177         INIT_LIST_HEAD(&tags->page_list);
1178
1179         tags->rqs = kmalloc_node(set->queue_depth * sizeof(struct request *),
1180                                         GFP_KERNEL, set->numa_node);
1181         if (!tags->rqs) {
1182                 blk_mq_free_tags(tags);
1183                 return NULL;
1184         }
1185
1186         /*
1187          * rq_size is the size of the request plus driver payload, rounded
1188          * to the cacheline size
1189          */
1190         rq_size = round_up(sizeof(struct request) + set->cmd_size,
1191                                 cache_line_size());
1192         left = rq_size * set->queue_depth;
1193
1194         for (i = 0; i < set->queue_depth; ) {
1195                 int this_order = max_order;
1196                 struct page *page;
1197                 int to_do;
1198                 void *p;
1199
1200                 while (left < order_to_size(this_order - 1) && this_order)
1201                         this_order--;
1202
1203                 do {
1204                         page = alloc_pages_node(set->numa_node, GFP_KERNEL,
1205                                                 this_order);
1206                         if (page)
1207                                 break;
1208                         if (!this_order--)
1209                                 break;
1210                         if (order_to_size(this_order) < rq_size)
1211                                 break;
1212                 } while (1);
1213
1214                 if (!page)
1215                         goto fail;
1216
1217                 page->private = this_order;
1218                 list_add_tail(&page->lru, &tags->page_list);
1219
1220                 p = page_address(page);
1221                 entries_per_page = order_to_size(this_order) / rq_size;
1222                 to_do = min(entries_per_page, set->queue_depth - i);
1223                 left -= to_do * rq_size;
1224                 for (j = 0; j < to_do; j++) {
1225                         tags->rqs[i] = p;
1226                         if (set->ops->init_request) {
1227                                 if (set->ops->init_request(set->driver_data,
1228                                                 tags->rqs[i], hctx_idx, i,
1229                                                 set->numa_node))
1230                                         goto fail;
1231                         }
1232
1233                         p += rq_size;
1234                         i++;
1235                 }
1236         }
1237
1238         return tags;
1239
1240 fail:
1241         pr_warn("%s: failed to allocate requests\n", __func__);
1242         blk_mq_free_rq_map(set, tags, hctx_idx);
1243         return NULL;
1244 }
1245
1246 static int blk_mq_init_hw_queues(struct request_queue *q,
1247                 struct blk_mq_tag_set *set)
1248 {
1249         struct blk_mq_hw_ctx *hctx;
1250         unsigned int i, j;
1251
1252         /*
1253          * Initialize hardware queues
1254          */
1255         queue_for_each_hw_ctx(q, hctx, i) {
1256                 unsigned int num_maps;
1257                 int node;
1258
1259                 node = hctx->numa_node;
1260                 if (node == NUMA_NO_NODE)
1261                         node = hctx->numa_node = set->numa_node;
1262
1263                 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1264                 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1265                 spin_lock_init(&hctx->lock);
1266                 INIT_LIST_HEAD(&hctx->dispatch);
1267                 hctx->queue = q;
1268                 hctx->queue_num = i;
1269                 hctx->flags = set->flags;
1270                 hctx->cmd_size = set->cmd_size;
1271
1272                 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1273                                                 blk_mq_hctx_notify, hctx);
1274                 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1275
1276                 hctx->tags = set->tags[i];
1277
1278                 /*
1279                  * Allocate space for all possible cpus to avoid allocation in
1280                  * runtime
1281                  */
1282                 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1283                                                 GFP_KERNEL, node);
1284                 if (!hctx->ctxs)
1285                         break;
1286
1287                 num_maps = ALIGN(nr_cpu_ids, BITS_PER_LONG) / BITS_PER_LONG;
1288                 hctx->ctx_map = kzalloc_node(num_maps * sizeof(unsigned long),
1289                                                 GFP_KERNEL, node);
1290                 if (!hctx->ctx_map)
1291                         break;
1292
1293                 hctx->nr_ctx_map = num_maps;
1294                 hctx->nr_ctx = 0;
1295
1296                 if (set->ops->init_hctx &&
1297                     set->ops->init_hctx(hctx, set->driver_data, i))
1298                         break;
1299         }
1300
1301         if (i == q->nr_hw_queues)
1302                 return 0;
1303
1304         /*
1305          * Init failed
1306          */
1307         queue_for_each_hw_ctx(q, hctx, j) {
1308                 if (i == j)
1309                         break;
1310
1311                 if (set->ops->exit_hctx)
1312                         set->ops->exit_hctx(hctx, j);
1313
1314                 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1315                 kfree(hctx->ctxs);
1316                 kfree(hctx->ctx_map);
1317         }
1318
1319         return 1;
1320 }
1321
1322 static void blk_mq_init_cpu_queues(struct request_queue *q,
1323                                    unsigned int nr_hw_queues)
1324 {
1325         unsigned int i;
1326
1327         for_each_possible_cpu(i) {
1328                 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1329                 struct blk_mq_hw_ctx *hctx;
1330
1331                 memset(__ctx, 0, sizeof(*__ctx));
1332                 __ctx->cpu = i;
1333                 spin_lock_init(&__ctx->lock);
1334                 INIT_LIST_HEAD(&__ctx->rq_list);
1335                 __ctx->queue = q;
1336
1337                 /* If the cpu isn't online, the cpu is mapped to first hctx */
1338                 if (!cpu_online(i))
1339                         continue;
1340
1341                 hctx = q->mq_ops->map_queue(q, i);
1342                 cpumask_set_cpu(i, hctx->cpumask);
1343                 hctx->nr_ctx++;
1344
1345                 /*
1346                  * Set local node, IFF we have more than one hw queue. If
1347                  * not, we remain on the home node of the device
1348                  */
1349                 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1350                         hctx->numa_node = cpu_to_node(i);
1351         }
1352 }
1353
1354 static void blk_mq_map_swqueue(struct request_queue *q)
1355 {
1356         unsigned int i;
1357         struct blk_mq_hw_ctx *hctx;
1358         struct blk_mq_ctx *ctx;
1359
1360         queue_for_each_hw_ctx(q, hctx, i) {
1361                 cpumask_clear(hctx->cpumask);
1362                 hctx->nr_ctx = 0;
1363         }
1364
1365         /*
1366          * Map software to hardware queues
1367          */
1368         queue_for_each_ctx(q, ctx, i) {
1369                 /* If the cpu isn't online, the cpu is mapped to first hctx */
1370                 if (!cpu_online(i))
1371                         continue;
1372
1373                 hctx = q->mq_ops->map_queue(q, i);
1374                 cpumask_set_cpu(i, hctx->cpumask);
1375                 ctx->index_hw = hctx->nr_ctx;
1376                 hctx->ctxs[hctx->nr_ctx++] = ctx;
1377         }
1378 }
1379
1380 struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
1381 {
1382         struct blk_mq_hw_ctx **hctxs;
1383         struct blk_mq_ctx *ctx;
1384         struct request_queue *q;
1385         int i;
1386
1387         ctx = alloc_percpu(struct blk_mq_ctx);
1388         if (!ctx)
1389                 return ERR_PTR(-ENOMEM);
1390
1391         hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1392                         set->numa_node);
1393
1394         if (!hctxs)
1395                 goto err_percpu;
1396
1397         for (i = 0; i < set->nr_hw_queues; i++) {
1398                 hctxs[i] = set->ops->alloc_hctx(set, i);
1399                 if (!hctxs[i])
1400                         goto err_hctxs;
1401
1402                 if (!zalloc_cpumask_var(&hctxs[i]->cpumask, GFP_KERNEL))
1403                         goto err_hctxs;
1404
1405                 hctxs[i]->numa_node = NUMA_NO_NODE;
1406                 hctxs[i]->queue_num = i;
1407         }
1408
1409         q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
1410         if (!q)
1411                 goto err_hctxs;
1412
1413         q->mq_map = blk_mq_make_queue_map(set);
1414         if (!q->mq_map)
1415                 goto err_map;
1416
1417         setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1418         blk_queue_rq_timeout(q, 30000);
1419
1420         q->nr_queues = nr_cpu_ids;
1421         q->nr_hw_queues = set->nr_hw_queues;
1422
1423         q->queue_ctx = ctx;
1424         q->queue_hw_ctx = hctxs;
1425
1426         q->mq_ops = set->ops;
1427         q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
1428
1429         q->sg_reserved_size = INT_MAX;
1430
1431         blk_queue_make_request(q, blk_mq_make_request);
1432         blk_queue_rq_timed_out(q, blk_mq_rq_timed_out);
1433         if (set->timeout)
1434                 blk_queue_rq_timeout(q, set->timeout);
1435
1436         if (set->ops->complete)
1437                 blk_queue_softirq_done(q, set->ops->complete);
1438
1439         blk_mq_init_flush(q);
1440         blk_mq_init_cpu_queues(q, set->nr_hw_queues);
1441
1442         q->flush_rq = kzalloc(round_up(sizeof(struct request) +
1443                                 set->cmd_size, cache_line_size()),
1444                                 GFP_KERNEL);
1445         if (!q->flush_rq)
1446                 goto err_hw;
1447
1448         if (blk_mq_init_hw_queues(q, set))
1449                 goto err_flush_rq;
1450
1451         blk_mq_map_swqueue(q);
1452
1453         mutex_lock(&all_q_mutex);
1454         list_add_tail(&q->all_q_node, &all_q_list);
1455         mutex_unlock(&all_q_mutex);
1456
1457         return q;
1458
1459 err_flush_rq:
1460         kfree(q->flush_rq);
1461 err_hw:
1462         kfree(q->mq_map);
1463 err_map:
1464         blk_cleanup_queue(q);
1465 err_hctxs:
1466         for (i = 0; i < set->nr_hw_queues; i++) {
1467                 if (!hctxs[i])
1468                         break;
1469                 free_cpumask_var(hctxs[i]->cpumask);
1470                 set->ops->free_hctx(hctxs[i], i);
1471         }
1472         kfree(hctxs);
1473 err_percpu:
1474         free_percpu(ctx);
1475         return ERR_PTR(-ENOMEM);
1476 }
1477 EXPORT_SYMBOL(blk_mq_init_queue);
1478
1479 void blk_mq_free_queue(struct request_queue *q)
1480 {
1481         struct blk_mq_hw_ctx *hctx;
1482         int i;
1483
1484         queue_for_each_hw_ctx(q, hctx, i) {
1485                 kfree(hctx->ctx_map);
1486                 kfree(hctx->ctxs);
1487                 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
1488                 if (q->mq_ops->exit_hctx)
1489                         q->mq_ops->exit_hctx(hctx, i);
1490                 free_cpumask_var(hctx->cpumask);
1491                 q->mq_ops->free_hctx(hctx, i);
1492         }
1493
1494         free_percpu(q->queue_ctx);
1495         kfree(q->queue_hw_ctx);
1496         kfree(q->mq_map);
1497
1498         q->queue_ctx = NULL;
1499         q->queue_hw_ctx = NULL;
1500         q->mq_map = NULL;
1501
1502         mutex_lock(&all_q_mutex);
1503         list_del_init(&q->all_q_node);
1504         mutex_unlock(&all_q_mutex);
1505 }
1506
1507 /* Basically redo blk_mq_init_queue with queue frozen */
1508 static void blk_mq_queue_reinit(struct request_queue *q)
1509 {
1510         blk_mq_freeze_queue(q);
1511
1512         blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1513
1514         /*
1515          * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1516          * we should change hctx numa_node according to new topology (this
1517          * involves free and re-allocate memory, worthy doing?)
1518          */
1519
1520         blk_mq_map_swqueue(q);
1521
1522         blk_mq_unfreeze_queue(q);
1523 }
1524
1525 static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1526                                       unsigned long action, void *hcpu)
1527 {
1528         struct request_queue *q;
1529
1530         /*
1531          * Before new mapping is established, hotadded cpu might already start
1532          * handling requests. This doesn't break anything as we map offline
1533          * CPUs to first hardware queue. We will re-init queue below to get
1534          * optimal settings.
1535          */
1536         if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1537             action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1538                 return NOTIFY_OK;
1539
1540         mutex_lock(&all_q_mutex);
1541         list_for_each_entry(q, &all_q_list, all_q_node)
1542                 blk_mq_queue_reinit(q);
1543         mutex_unlock(&all_q_mutex);
1544         return NOTIFY_OK;
1545 }
1546
1547 int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
1548 {
1549         int i;
1550
1551         if (!set->nr_hw_queues)
1552                 return -EINVAL;
1553         if (!set->queue_depth || set->queue_depth > BLK_MQ_MAX_DEPTH)
1554                 return -EINVAL;
1555         if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
1556                 return -EINVAL;
1557
1558         if (!set->nr_hw_queues ||
1559             !set->ops->queue_rq || !set->ops->map_queue ||
1560             !set->ops->alloc_hctx || !set->ops->free_hctx)
1561                 return -EINVAL;
1562
1563
1564         set->tags = kmalloc_node(set->nr_hw_queues *
1565                                  sizeof(struct blk_mq_tags *),
1566                                  GFP_KERNEL, set->numa_node);
1567         if (!set->tags)
1568                 goto out;
1569
1570         for (i = 0; i < set->nr_hw_queues; i++) {
1571                 set->tags[i] = blk_mq_init_rq_map(set, i);
1572                 if (!set->tags[i])
1573                         goto out_unwind;
1574         }
1575
1576         return 0;
1577
1578 out_unwind:
1579         while (--i >= 0)
1580                 blk_mq_free_rq_map(set, set->tags[i], i);
1581 out:
1582         return -ENOMEM;
1583 }
1584 EXPORT_SYMBOL(blk_mq_alloc_tag_set);
1585
1586 void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
1587 {
1588         int i;
1589
1590         for (i = 0; i < set->nr_hw_queues; i++)
1591                 blk_mq_free_rq_map(set, set->tags[i], i);
1592         kfree(set->tags);
1593 }
1594 EXPORT_SYMBOL(blk_mq_free_tag_set);
1595
1596 void blk_mq_disable_hotplug(void)
1597 {
1598         mutex_lock(&all_q_mutex);
1599 }
1600
1601 void blk_mq_enable_hotplug(void)
1602 {
1603         mutex_unlock(&all_q_mutex);
1604 }
1605
1606 static int __init blk_mq_init(void)
1607 {
1608         blk_mq_cpu_init();
1609
1610         /* Must be called after percpu_counter_hotcpu_callback() */
1611         hotcpu_notifier(blk_mq_queue_reinit_notify, -10);
1612
1613         return 0;
1614 }
1615 subsys_initcall(blk_mq_init);