]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - block/blk-softirq.c
UBUNTU: Ubuntu-4.13.0-45.50
[mirror_ubuntu-artful-kernel.git] / block / blk-softirq.c
CommitLineData
b646fc59
JA
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>
39be3501 11#include <linux/sched.h>
105ab3d8 12#include <linux/sched/topology.h>
b646fc59
JA
13
14#include "blk.h"
15
16static DEFINE_PER_CPU(struct list_head, blk_cpu_done);
17
c7c22e4d
JA
18/*
19 * Softirq action handler - move entries to local list and loop over them
20 * while passing them to the queue registered handler.
21 */
0766f788 22static __latent_entropy void blk_done_softirq(struct softirq_action *h)
c7c22e4d
JA
23{
24 struct list_head *cpu_list, local_list;
25
26 local_irq_disable();
170d800a 27 cpu_list = this_cpu_ptr(&blk_cpu_done);
c7c22e4d
JA
28 list_replace_init(cpu_list, &local_list);
29 local_irq_enable();
30
31 while (!list_empty(&local_list)) {
32 struct request *rq;
33
360f92c2
JA
34 rq = list_entry(local_list.next, struct request, ipi_list);
35 list_del_init(&rq->ipi_list);
c7c22e4d
JA
36 rq->q->softirq_done_fn(rq);
37 }
38}
39
0a06ff06 40#ifdef CONFIG_SMP
c7c22e4d
JA
41static 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);
170d800a 48 list = this_cpu_ptr(&blk_cpu_done);
360f92c2 49 list_add_tail(&rq->ipi_list, list);
c7c22e4d 50
360f92c2 51 if (list->next == &rq->ipi_list)
c7c22e4d
JA
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 */
60static 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
c46fff2a 69 smp_call_function_single_async(cpu, data);
c7c22e4d
JA
70 return 0;
71 }
72
73 return 1;
74}
0a06ff06 75#else /* CONFIG_SMP */
c7c22e4d
JA
76static int raise_blk_irq(int cpu, struct request *rq)
77{
78 return 1;
79}
80#endif
81
9a659f43 82static int blk_softirq_cpu_dead(unsigned int cpu)
b646fc59
JA
83{
84 /*
85 * If a CPU goes away, splice its entries to the current CPU
86 * and trigger a run of the softirq
87 */
9a659f43
SAS
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();
b646fc59 93
9a659f43 94 return 0;
b646fc59
JA
95}
96
242f9dcb 97void __blk_complete_request(struct request *req)
b646fc59 98{
39be3501 99 int ccpu, cpu;
c7c22e4d 100 struct request_queue *q = req->q;
b646fc59 101 unsigned long flags;
39be3501 102 bool shared = false;
b646fc59 103
c7c22e4d 104 BUG_ON(!q->softirq_done_fn);
b646fc59
JA
105
106 local_irq_save(flags);
c7c22e4d 107 cpu = smp_processor_id();
b646fc59 108
c7c22e4d
JA
109 /*
110 * Select completion CPU
111 */
8ad6a56f 112 if (req->cpu != -1) {
c7c22e4d 113 ccpu = req->cpu;
39be3501
PZ
114 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &q->queue_flags))
115 shared = cpus_share_cache(cpu, ccpu);
5757a6d7 116 } else
c7c22e4d
JA
117 ccpu = cpu;
118
bcf30e75 119 /*
39be3501
PZ
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
bcf30e75
SL
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 */
39be3501 127 if (ccpu == cpu || shared) {
c7c22e4d
JA
128 struct list_head *list;
129do_local:
170d800a 130 list = this_cpu_ptr(&blk_cpu_done);
360f92c2 131 list_add_tail(&req->ipi_list, list);
c7c22e4d
JA
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 */
360f92c2 139 if (list->next == &req->ipi_list)
c7c22e4d
JA
140 raise_softirq_irqoff(BLOCK_SOFTIRQ);
141 } else if (raise_blk_irq(ccpu, req))
142 goto do_local;
b646fc59
JA
143
144 local_irq_restore(flags);
145}
242f9dcb
JA
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 **/
158void blk_complete_request(struct request *req)
159{
581d4e28
JA
160 if (unlikely(blk_should_fake_timeout(req->q)))
161 return;
242f9dcb
JA
162 if (!blk_mark_rq_complete(req))
163 __blk_complete_request(req);
164}
b646fc59
JA
165EXPORT_SYMBOL(blk_complete_request);
166
3c18ce71 167static __init int blk_softirq_init(void)
b646fc59
JA
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);
9a659f43
SAS
175 cpuhp_setup_state_nocalls(CPUHP_BLOCK_SOFTIRQ_DEAD,
176 "block/softirq:dead", NULL,
177 blk_softirq_cpu_dead);
b646fc59
JA
178 return 0;
179}
180subsys_initcall(blk_softirq_init);