blob: ebd6b6f1bdeb78a79b5bebdaf64771c315f69abd [file] [log] [blame]
Jens Axboeb646fc52008-07-28 13:06:00 +02001/*
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 Zijlstra39be3502012-01-26 12:44:34 +010011#include <linux/sched.h>
Jens Axboeb646fc52008-07-28 13:06:00 +020012
13#include "blk.h"
14
15static DEFINE_PER_CPU(struct list_head, blk_cpu_done);
16
Jens Axboec7c22e42008-09-13 20:26:01 +020017/*
18 * Softirq action handler - move entries to local list and loop over them
19 * while passing them to the queue registered handler.
20 */
21static void blk_done_softirq(struct softirq_action *h)
22{
23 struct list_head *cpu_list, local_list;
24
25 local_irq_disable();
Christoph Lameter170d8002013-10-15 12:22:29 -060026 cpu_list = this_cpu_ptr(&blk_cpu_done);
Jens Axboec7c22e42008-09-13 20:26:01 +020027 list_replace_init(cpu_list, &local_list);
28 local_irq_enable();
29
30 while (!list_empty(&local_list)) {
31 struct request *rq;
32
Jan Kara6d113392014-02-24 16:39:54 +010033 rq = list_entry(local_list.next, struct request, queuelist);
34 list_del_init(&rq->queuelist);
Jens Axboec7c22e42008-09-13 20:26:01 +020035 rq->q->softirq_done_fn(rq);
36 }
37}
38
Christoph Hellwig0a06ff02013-11-14 14:32:07 -080039#ifdef CONFIG_SMP
Jens Axboec7c22e42008-09-13 20:26:01 +020040static 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 Lameter170d8002013-10-15 12:22:29 -060047 list = this_cpu_ptr(&blk_cpu_done);
Jan Kara6d113392014-02-24 16:39:54 +010048 /*
49 * We reuse queuelist for a list of requests to process. Since the
50 * queuelist is used by the block layer only for requests waiting to be
51 * submitted to the device it is unused now.
52 */
53 list_add_tail(&rq->queuelist, list);
Jens Axboec7c22e42008-09-13 20:26:01 +020054
Jan Kara6d113392014-02-24 16:39:54 +010055 if (list->next == &rq->queuelist)
Jens Axboec7c22e42008-09-13 20:26:01 +020056 raise_softirq_irqoff(BLOCK_SOFTIRQ);
57
58 local_irq_restore(flags);
59}
60
61/*
62 * Setup and invoke a run of 'trigger_softirq' on the given cpu.
63 */
64static int raise_blk_irq(int cpu, struct request *rq)
65{
66 if (cpu_online(cpu)) {
67 struct call_single_data *data = &rq->csd;
68
69 data->func = trigger_softirq;
70 data->info = rq;
71 data->flags = 0;
72
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +010073 smp_call_function_single_async(cpu, data);
Jens Axboec7c22e42008-09-13 20:26:01 +020074 return 0;
75 }
76
77 return 1;
78}
Christoph Hellwig0a06ff02013-11-14 14:32:07 -080079#else /* CONFIG_SMP */
Jens Axboec7c22e42008-09-13 20:26:01 +020080static int raise_blk_irq(int cpu, struct request *rq)
81{
82 return 1;
83}
84#endif
85
Paul Gortmaker0b776b02013-06-19 15:26:23 -040086static int blk_cpu_notify(struct notifier_block *self, unsigned long action,
87 void *hcpu)
Jens Axboeb646fc52008-07-28 13:06:00 +020088{
89 /*
90 * If a CPU goes away, splice its entries to the current CPU
91 * and trigger a run of the softirq
92 */
93 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) {
94 int cpu = (unsigned long) hcpu;
95
96 local_irq_disable();
97 list_splice_init(&per_cpu(blk_cpu_done, cpu),
Christoph Lameter170d8002013-10-15 12:22:29 -060098 this_cpu_ptr(&blk_cpu_done));
Jens Axboeb646fc52008-07-28 13:06:00 +020099 raise_softirq_irqoff(BLOCK_SOFTIRQ);
100 local_irq_enable();
101 }
102
103 return NOTIFY_OK;
104}
105
Paul Gortmaker0b776b02013-06-19 15:26:23 -0400106static struct notifier_block blk_cpu_notifier = {
Jens Axboeb646fc52008-07-28 13:06:00 +0200107 .notifier_call = blk_cpu_notify,
108};
109
Jens Axboe242f9dc2008-09-14 05:55:09 -0700110void __blk_complete_request(struct request *req)
Jens Axboeb646fc52008-07-28 13:06:00 +0200111{
Peter Zijlstra39be3502012-01-26 12:44:34 +0100112 int ccpu, cpu;
Jens Axboec7c22e42008-09-13 20:26:01 +0200113 struct request_queue *q = req->q;
Jens Axboeb646fc52008-07-28 13:06:00 +0200114 unsigned long flags;
Peter Zijlstra39be3502012-01-26 12:44:34 +0100115 bool shared = false;
Jens Axboeb646fc52008-07-28 13:06:00 +0200116
Jens Axboec7c22e42008-09-13 20:26:01 +0200117 BUG_ON(!q->softirq_done_fn);
Jens Axboeb646fc52008-07-28 13:06:00 +0200118
119 local_irq_save(flags);
Jens Axboec7c22e42008-09-13 20:26:01 +0200120 cpu = smp_processor_id();
Jens Axboeb646fc52008-07-28 13:06:00 +0200121
Jens Axboec7c22e42008-09-13 20:26:01 +0200122 /*
123 * Select completion CPU
124 */
Tao Ma8ad6a562011-09-14 09:31:01 +0200125 if (req->cpu != -1) {
Jens Axboec7c22e42008-09-13 20:26:01 +0200126 ccpu = req->cpu;
Peter Zijlstra39be3502012-01-26 12:44:34 +0100127 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &q->queue_flags))
128 shared = cpus_share_cache(cpu, ccpu);
Dan Williams5757a6d2011-07-23 20:44:25 +0200129 } else
Jens Axboec7c22e42008-09-13 20:26:01 +0200130 ccpu = cpu;
131
Shaohua Libcf30e72011-08-11 10:39:04 +0200132 /*
Peter Zijlstra39be3502012-01-26 12:44:34 +0100133 * If current CPU and requested CPU share a cache, run the softirq on
134 * the current CPU. One might concern this is just like
Shaohua Libcf30e72011-08-11 10:39:04 +0200135 * QUEUE_FLAG_SAME_FORCE, but actually not. blk_complete_request() is
136 * running in interrupt handler, and currently I/O controller doesn't
137 * support multiple interrupts, so current CPU is unique actually. This
138 * avoids IPI sending from current CPU to the first CPU of a group.
139 */
Peter Zijlstra39be3502012-01-26 12:44:34 +0100140 if (ccpu == cpu || shared) {
Jens Axboec7c22e42008-09-13 20:26:01 +0200141 struct list_head *list;
142do_local:
Christoph Lameter170d8002013-10-15 12:22:29 -0600143 list = this_cpu_ptr(&blk_cpu_done);
Jan Kara6d113392014-02-24 16:39:54 +0100144 list_add_tail(&req->queuelist, list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200145
146 /*
147 * if the list only contains our just added request,
148 * signal a raise of the softirq. If there are already
149 * entries there, someone already raised the irq but it
150 * hasn't run yet.
151 */
Jan Kara6d113392014-02-24 16:39:54 +0100152 if (list->next == &req->queuelist)
Jens Axboec7c22e42008-09-13 20:26:01 +0200153 raise_softirq_irqoff(BLOCK_SOFTIRQ);
154 } else if (raise_blk_irq(ccpu, req))
155 goto do_local;
Jens Axboeb646fc52008-07-28 13:06:00 +0200156
157 local_irq_restore(flags);
158}
Jens Axboe242f9dc2008-09-14 05:55:09 -0700159
160/**
161 * blk_complete_request - end I/O on a request
162 * @req: the request being processed
163 *
164 * Description:
165 * Ends all I/O on a request. It does not handle partial completions,
166 * unless the driver actually implements this in its completion callback
167 * through requeueing. The actual completion happens out-of-order,
168 * through a softirq handler. The user must have registered a completion
169 * callback through blk_queue_softirq_done().
170 **/
171void blk_complete_request(struct request *req)
172{
Jens Axboe581d4e22008-09-14 05:56:33 -0700173 if (unlikely(blk_should_fake_timeout(req->q)))
174 return;
Jens Axboe242f9dc2008-09-14 05:55:09 -0700175 if (!blk_mark_rq_complete(req))
176 __blk_complete_request(req);
177}
Jens Axboeb646fc52008-07-28 13:06:00 +0200178EXPORT_SYMBOL(blk_complete_request);
179
Roel Kluin3c18ce72008-12-10 15:47:33 +0100180static __init int blk_softirq_init(void)
Jens Axboeb646fc52008-07-28 13:06:00 +0200181{
182 int i;
183
184 for_each_possible_cpu(i)
185 INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i));
186
187 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq);
188 register_hotcpu_notifier(&blk_cpu_notifier);
189 return 0;
190}
191subsys_initcall(blk_softirq_init);