]> git.ipfire.org Git - thirdparty/linux.git/blame - block/blk-softirq.c
Merge tag 'selinux-pr-20200601' of git://git.kernel.org/pub/scm/linux/kernel/git...
[thirdparty/linux.git] / block / blk-softirq.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
b646fc59
JA
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>
39be3501 12#include <linux/sched.h>
105ab3d8 13#include <linux/sched/topology.h>
b646fc59
JA
14
15#include "blk.h"
16
17static DEFINE_PER_CPU(struct list_head, blk_cpu_done);
18
c7c22e4d
JA
19/*
20 * Softirq action handler - move entries to local list and loop over them
21 * while passing them to the queue registered handler.
22 */
0766f788 23static __latent_entropy void blk_done_softirq(struct softirq_action *h)
c7c22e4d
JA
24{
25 struct list_head *cpu_list, local_list;
26
27 local_irq_disable();
170d800a 28 cpu_list = this_cpu_ptr(&blk_cpu_done);
c7c22e4d
JA
29 list_replace_init(cpu_list, &local_list);
30 local_irq_enable();
31
32 while (!list_empty(&local_list)) {
33 struct request *rq;
34
360f92c2
JA
35 rq = list_entry(local_list.next, struct request, ipi_list);
36 list_del_init(&rq->ipi_list);
c7bb9ad1 37 rq->q->mq_ops->complete(rq);
c7c22e4d
JA
38 }
39}
40
0a06ff06 41#ifdef CONFIG_SMP
c7c22e4d
JA
42static void trigger_softirq(void *data)
43{
44 struct request *rq = data;
c7c22e4d
JA
45 struct list_head *list;
46
170d800a 47 list = this_cpu_ptr(&blk_cpu_done);
360f92c2 48 list_add_tail(&rq->ipi_list, list);
c7c22e4d 49
360f92c2 50 if (list->next == &rq->ipi_list)
c7c22e4d 51 raise_softirq_irqoff(BLOCK_SOFTIRQ);
c7c22e4d
JA
52}
53
54/*
55 * Setup and invoke a run of 'trigger_softirq' on the given cpu.
56 */
57static int raise_blk_irq(int cpu, struct request *rq)
58{
59 if (cpu_online(cpu)) {
966a9671 60 call_single_data_t *data = &rq->csd;
c7c22e4d
JA
61
62 data->func = trigger_softirq;
63 data->info = rq;
64 data->flags = 0;
65
c46fff2a 66 smp_call_function_single_async(cpu, data);
c7c22e4d
JA
67 return 0;
68 }
69
70 return 1;
71}
0a06ff06 72#else /* CONFIG_SMP */
c7c22e4d
JA
73static int raise_blk_irq(int cpu, struct request *rq)
74{
75 return 1;
76}
77#endif
78
9a659f43 79static int blk_softirq_cpu_dead(unsigned int cpu)
b646fc59
JA
80{
81 /*
82 * If a CPU goes away, splice its entries to the current CPU
83 * and trigger a run of the softirq
84 */
9a659f43
SAS
85 local_irq_disable();
86 list_splice_init(&per_cpu(blk_cpu_done, cpu),
87 this_cpu_ptr(&blk_cpu_done));
88 raise_softirq_irqoff(BLOCK_SOFTIRQ);
89 local_irq_enable();
b646fc59 90
9a659f43 91 return 0;
b646fc59
JA
92}
93
242f9dcb 94void __blk_complete_request(struct request *req)
b646fc59 95{
c7c22e4d 96 struct request_queue *q = req->q;
9cf2bab6 97 int cpu, ccpu = req->mq_ctx->cpu;
b646fc59 98 unsigned long flags;
39be3501 99 bool shared = false;
b646fc59 100
c7bb9ad1 101 BUG_ON(!q->mq_ops->complete);
b646fc59
JA
102
103 local_irq_save(flags);
c7c22e4d 104 cpu = smp_processor_id();
b646fc59 105
c7c22e4d
JA
106 /*
107 * Select completion CPU
108 */
36e76539 109 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) && ccpu != -1) {
39be3501
PZ
110 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &q->queue_flags))
111 shared = cpus_share_cache(cpu, ccpu);
5757a6d7 112 } else
c7c22e4d
JA
113 ccpu = cpu;
114
bcf30e75 115 /*
39be3501
PZ
116 * If current CPU and requested CPU share a cache, run the softirq on
117 * the current CPU. One might concern this is just like
bcf30e75
SL
118 * QUEUE_FLAG_SAME_FORCE, but actually not. blk_complete_request() is
119 * running in interrupt handler, and currently I/O controller doesn't
120 * support multiple interrupts, so current CPU is unique actually. This
121 * avoids IPI sending from current CPU to the first CPU of a group.
122 */
39be3501 123 if (ccpu == cpu || shared) {
c7c22e4d
JA
124 struct list_head *list;
125do_local:
170d800a 126 list = this_cpu_ptr(&blk_cpu_done);
360f92c2 127 list_add_tail(&req->ipi_list, list);
c7c22e4d
JA
128
129 /*
130 * if the list only contains our just added request,
131 * signal a raise of the softirq. If there are already
132 * entries there, someone already raised the irq but it
133 * hasn't run yet.
134 */
360f92c2 135 if (list->next == &req->ipi_list)
c7c22e4d
JA
136 raise_softirq_irqoff(BLOCK_SOFTIRQ);
137 } else if (raise_blk_irq(ccpu, req))
138 goto do_local;
b646fc59
JA
139
140 local_irq_restore(flags);
141}
242f9dcb 142
3c18ce71 143static __init int blk_softirq_init(void)
b646fc59
JA
144{
145 int i;
146
147 for_each_possible_cpu(i)
148 INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i));
149
150 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq);
9a659f43
SAS
151 cpuhp_setup_state_nocalls(CPUHP_BLOCK_SOFTIRQ_DEAD,
152 "block/softirq:dead", NULL,
153 blk_softirq_cpu_dead);
b646fc59
JA
154 return 0;
155}
156subsys_initcall(blk_softirq_init);