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