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