Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Jens Axboe | b646fc5 | 2008-07-28 13:06:00 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Functions related to softirq rq completions |
| 4 | */ |
| 5 | #include <linux/kernel.h> |
| 6 | #include <linux/module.h> |
| 7 | #include <linux/init.h> |
| 8 | #include <linux/bio.h> |
| 9 | #include <linux/blkdev.h> |
| 10 | #include <linux/interrupt.h> |
| 11 | #include <linux/cpu.h> |
Peter Zijlstra | 39be350 | 2012-01-26 12:44:34 +0100 | [diff] [blame] | 12 | #include <linux/sched.h> |
Ingo Molnar | 105ab3d | 2017-02-01 16:36:40 +0100 | [diff] [blame] | 13 | #include <linux/sched/topology.h> |
Jens Axboe | b646fc5 | 2008-07-28 13:06:00 +0200 | [diff] [blame] | 14 | |
| 15 | #include "blk.h" |
| 16 | |
| 17 | static DEFINE_PER_CPU(struct list_head, blk_cpu_done); |
| 18 | |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 19 | /* |
| 20 | * Softirq action handler - move entries to local list and loop over them |
| 21 | * while passing them to the queue registered handler. |
| 22 | */ |
Emese Revfy | 0766f78 | 2016-06-20 20:42:34 +0200 | [diff] [blame] | 23 | static __latent_entropy void blk_done_softirq(struct softirq_action *h) |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 24 | { |
| 25 | struct list_head *cpu_list, local_list; |
| 26 | |
| 27 | local_irq_disable(); |
Christoph Lameter | 170d800 | 2013-10-15 12:22:29 -0600 | [diff] [blame] | 28 | cpu_list = this_cpu_ptr(&blk_cpu_done); |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 29 | list_replace_init(cpu_list, &local_list); |
| 30 | local_irq_enable(); |
| 31 | |
| 32 | while (!list_empty(&local_list)) { |
| 33 | struct request *rq; |
| 34 | |
Jens Axboe | 360f92c | 2014-04-09 20:27:01 -0600 | [diff] [blame] | 35 | rq = list_entry(local_list.next, struct request, ipi_list); |
| 36 | list_del_init(&rq->ipi_list); |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 37 | rq->q->softirq_done_fn(rq); |
| 38 | } |
| 39 | } |
| 40 | |
Christoph Hellwig | 0a06ff0 | 2013-11-14 14:32:07 -0800 | [diff] [blame] | 41 | #ifdef CONFIG_SMP |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 42 | static void trigger_softirq(void *data) |
| 43 | { |
| 44 | struct request *rq = data; |
| 45 | unsigned long flags; |
| 46 | struct list_head *list; |
| 47 | |
| 48 | local_irq_save(flags); |
Christoph Lameter | 170d800 | 2013-10-15 12:22:29 -0600 | [diff] [blame] | 49 | list = this_cpu_ptr(&blk_cpu_done); |
Jens Axboe | 360f92c | 2014-04-09 20:27:01 -0600 | [diff] [blame] | 50 | list_add_tail(&rq->ipi_list, list); |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 51 | |
Jens Axboe | 360f92c | 2014-04-09 20:27:01 -0600 | [diff] [blame] | 52 | if (list->next == &rq->ipi_list) |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 53 | raise_softirq_irqoff(BLOCK_SOFTIRQ); |
| 54 | |
| 55 | local_irq_restore(flags); |
| 56 | } |
| 57 | |
| 58 | /* |
| 59 | * Setup and invoke a run of 'trigger_softirq' on the given cpu. |
| 60 | */ |
| 61 | static int raise_blk_irq(int cpu, struct request *rq) |
| 62 | { |
| 63 | if (cpu_online(cpu)) { |
Ying Huang | 966a967 | 2017-08-08 12:30:00 +0800 | [diff] [blame] | 64 | call_single_data_t *data = &rq->csd; |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 65 | |
| 66 | data->func = trigger_softirq; |
| 67 | data->info = rq; |
| 68 | data->flags = 0; |
| 69 | |
Frederic Weisbecker | c46fff2 | 2014-02-24 16:40:02 +0100 | [diff] [blame] | 70 | smp_call_function_single_async(cpu, data); |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 71 | return 0; |
| 72 | } |
| 73 | |
| 74 | return 1; |
| 75 | } |
Christoph Hellwig | 0a06ff0 | 2013-11-14 14:32:07 -0800 | [diff] [blame] | 76 | #else /* CONFIG_SMP */ |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 77 | static int raise_blk_irq(int cpu, struct request *rq) |
| 78 | { |
| 79 | return 1; |
| 80 | } |
| 81 | #endif |
| 82 | |
Sebastian Andrzej Siewior | 9a659f4 | 2016-09-06 19:04:44 +0200 | [diff] [blame] | 83 | static int blk_softirq_cpu_dead(unsigned int cpu) |
Jens Axboe | b646fc5 | 2008-07-28 13:06:00 +0200 | [diff] [blame] | 84 | { |
| 85 | /* |
| 86 | * If a CPU goes away, splice its entries to the current CPU |
| 87 | * and trigger a run of the softirq |
| 88 | */ |
Sebastian Andrzej Siewior | 9a659f4 | 2016-09-06 19:04:44 +0200 | [diff] [blame] | 89 | local_irq_disable(); |
| 90 | list_splice_init(&per_cpu(blk_cpu_done, cpu), |
| 91 | this_cpu_ptr(&blk_cpu_done)); |
| 92 | raise_softirq_irqoff(BLOCK_SOFTIRQ); |
| 93 | local_irq_enable(); |
Jens Axboe | b646fc5 | 2008-07-28 13:06:00 +0200 | [diff] [blame] | 94 | |
Sebastian Andrzej Siewior | 9a659f4 | 2016-09-06 19:04:44 +0200 | [diff] [blame] | 95 | return 0; |
Jens Axboe | b646fc5 | 2008-07-28 13:06:00 +0200 | [diff] [blame] | 96 | } |
| 97 | |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 98 | void __blk_complete_request(struct request *req) |
Jens Axboe | b646fc5 | 2008-07-28 13:06:00 +0200 | [diff] [blame] | 99 | { |
Peter Zijlstra | 39be350 | 2012-01-26 12:44:34 +0100 | [diff] [blame] | 100 | int ccpu, cpu; |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 101 | struct request_queue *q = req->q; |
Jens Axboe | b646fc5 | 2008-07-28 13:06:00 +0200 | [diff] [blame] | 102 | unsigned long flags; |
Peter Zijlstra | 39be350 | 2012-01-26 12:44:34 +0100 | [diff] [blame] | 103 | bool shared = false; |
Jens Axboe | b646fc5 | 2008-07-28 13:06:00 +0200 | [diff] [blame] | 104 | |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 105 | BUG_ON(!q->softirq_done_fn); |
Jens Axboe | b646fc5 | 2008-07-28 13:06:00 +0200 | [diff] [blame] | 106 | |
| 107 | local_irq_save(flags); |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 108 | cpu = smp_processor_id(); |
Jens Axboe | b646fc5 | 2008-07-28 13:06:00 +0200 | [diff] [blame] | 109 | |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 110 | /* |
| 111 | * Select completion CPU |
| 112 | */ |
Tao Ma | 8ad6a56 | 2011-09-14 09:31:01 +0200 | [diff] [blame] | 113 | if (req->cpu != -1) { |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 114 | ccpu = req->cpu; |
Peter Zijlstra | 39be350 | 2012-01-26 12:44:34 +0100 | [diff] [blame] | 115 | if (!test_bit(QUEUE_FLAG_SAME_FORCE, &q->queue_flags)) |
| 116 | shared = cpus_share_cache(cpu, ccpu); |
Dan Williams | 5757a6d | 2011-07-23 20:44:25 +0200 | [diff] [blame] | 117 | } else |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 118 | ccpu = cpu; |
| 119 | |
Shaohua Li | bcf30e7 | 2011-08-11 10:39:04 +0200 | [diff] [blame] | 120 | /* |
Peter Zijlstra | 39be350 | 2012-01-26 12:44:34 +0100 | [diff] [blame] | 121 | * If current CPU and requested CPU share a cache, run the softirq on |
| 122 | * the current CPU. One might concern this is just like |
Shaohua Li | bcf30e7 | 2011-08-11 10:39:04 +0200 | [diff] [blame] | 123 | * QUEUE_FLAG_SAME_FORCE, but actually not. blk_complete_request() is |
| 124 | * running in interrupt handler, and currently I/O controller doesn't |
| 125 | * support multiple interrupts, so current CPU is unique actually. This |
| 126 | * avoids IPI sending from current CPU to the first CPU of a group. |
| 127 | */ |
Peter Zijlstra | 39be350 | 2012-01-26 12:44:34 +0100 | [diff] [blame] | 128 | if (ccpu == cpu || shared) { |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 129 | struct list_head *list; |
| 130 | do_local: |
Christoph Lameter | 170d800 | 2013-10-15 12:22:29 -0600 | [diff] [blame] | 131 | list = this_cpu_ptr(&blk_cpu_done); |
Jens Axboe | 360f92c | 2014-04-09 20:27:01 -0600 | [diff] [blame] | 132 | list_add_tail(&req->ipi_list, list); |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 133 | |
| 134 | /* |
| 135 | * if the list only contains our just added request, |
| 136 | * signal a raise of the softirq. If there are already |
| 137 | * entries there, someone already raised the irq but it |
| 138 | * hasn't run yet. |
| 139 | */ |
Jens Axboe | 360f92c | 2014-04-09 20:27:01 -0600 | [diff] [blame] | 140 | if (list->next == &req->ipi_list) |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 141 | raise_softirq_irqoff(BLOCK_SOFTIRQ); |
| 142 | } else if (raise_blk_irq(ccpu, req)) |
| 143 | goto do_local; |
Jens Axboe | b646fc5 | 2008-07-28 13:06:00 +0200 | [diff] [blame] | 144 | |
| 145 | local_irq_restore(flags); |
| 146 | } |
Christoph Hellwig | 0cc61e6 | 2018-06-19 18:40:14 +0200 | [diff] [blame] | 147 | EXPORT_SYMBOL(__blk_complete_request); |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 148 | |
| 149 | /** |
| 150 | * blk_complete_request - end I/O on a request |
| 151 | * @req: the request being processed |
| 152 | * |
| 153 | * Description: |
| 154 | * Ends all I/O on a request. It does not handle partial completions, |
| 155 | * unless the driver actually implements this in its completion callback |
| 156 | * through requeueing. The actual completion happens out-of-order, |
| 157 | * through a softirq handler. The user must have registered a completion |
| 158 | * callback through blk_queue_softirq_done(). |
| 159 | **/ |
| 160 | void blk_complete_request(struct request *req) |
| 161 | { |
Jens Axboe | 581d4e2 | 2008-09-14 05:56:33 -0700 | [diff] [blame] | 162 | if (unlikely(blk_should_fake_timeout(req->q))) |
| 163 | return; |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 164 | if (!blk_mark_rq_complete(req)) |
| 165 | __blk_complete_request(req); |
| 166 | } |
Jens Axboe | b646fc5 | 2008-07-28 13:06:00 +0200 | [diff] [blame] | 167 | EXPORT_SYMBOL(blk_complete_request); |
| 168 | |
Roel Kluin | 3c18ce7 | 2008-12-10 15:47:33 +0100 | [diff] [blame] | 169 | static __init int blk_softirq_init(void) |
Jens Axboe | b646fc5 | 2008-07-28 13:06:00 +0200 | [diff] [blame] | 170 | { |
| 171 | int i; |
| 172 | |
| 173 | for_each_possible_cpu(i) |
| 174 | INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i)); |
| 175 | |
| 176 | open_softirq(BLOCK_SOFTIRQ, blk_done_softirq); |
Sebastian Andrzej Siewior | 9a659f4 | 2016-09-06 19:04:44 +0200 | [diff] [blame] | 177 | cpuhp_setup_state_nocalls(CPUHP_BLOCK_SOFTIRQ_DEAD, |
| 178 | "block/softirq:dead", NULL, |
| 179 | blk_softirq_cpu_dead); |
Jens Axboe | b646fc5 | 2008-07-28 13:06:00 +0200 | [diff] [blame] | 180 | return 0; |
| 181 | } |
| 182 | subsys_initcall(blk_softirq_init); |