]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - block/blk-softirq.c
block: print offending values when cloned rq limits are exceeded
[thirdparty/kernel/stable.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;
45 unsigned long flags;
46 struct list_head *list;
47
48 local_irq_save(flags);
170d800a 49 list = this_cpu_ptr(&blk_cpu_done);
360f92c2 50 list_add_tail(&rq->ipi_list, list);
c7c22e4d 51
360f92c2 52 if (list->next == &rq->ipi_list)
c7c22e4d
JA
53 raise_softirq_irqoff(BLOCK_SOFTIRQ);
54
55 local_irq_restore(flags);
56}
57
58/*
59 * Setup and invoke a run of 'trigger_softirq' on the given cpu.
60 */
61static int raise_blk_irq(int cpu, struct request *rq)
62{
63 if (cpu_online(cpu)) {
966a9671 64 call_single_data_t *data = &rq->csd;
c7c22e4d
JA
65
66 data->func = trigger_softirq;
67 data->info = rq;
68 data->flags = 0;
69
c46fff2a 70 smp_call_function_single_async(cpu, data);
c7c22e4d
JA
71 return 0;
72 }
73
74 return 1;
75}
0a06ff06 76#else /* CONFIG_SMP */
c7c22e4d
JA
77static int raise_blk_irq(int cpu, struct request *rq)
78{
79 return 1;
80}
81#endif
82
9a659f43 83static int blk_softirq_cpu_dead(unsigned int cpu)
b646fc59
JA
84{
85 /*
86 * If a CPU goes away, splice its entries to the current CPU
87 * and trigger a run of the softirq
88 */
9a659f43
SAS
89 local_irq_disable();
90 list_splice_init(&per_cpu(blk_cpu_done, cpu),
91 this_cpu_ptr(&blk_cpu_done));
92 raise_softirq_irqoff(BLOCK_SOFTIRQ);
93 local_irq_enable();
b646fc59 94
9a659f43 95 return 0;
b646fc59
JA
96}
97
242f9dcb 98void __blk_complete_request(struct request *req)
b646fc59 99{
c7c22e4d 100 struct request_queue *q = req->q;
9cf2bab6 101 int cpu, ccpu = req->mq_ctx->cpu;
b646fc59 102 unsigned long flags;
39be3501 103 bool shared = false;
b646fc59 104
c7bb9ad1 105 BUG_ON(!q->mq_ops->complete);
b646fc59
JA
106
107 local_irq_save(flags);
c7c22e4d 108 cpu = smp_processor_id();
b646fc59 109
c7c22e4d
JA
110 /*
111 * Select completion CPU
112 */
36e76539 113 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) && ccpu != -1) {
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 146
3c18ce71 147static __init int blk_softirq_init(void)
b646fc59
JA
148{
149 int i;
150
151 for_each_possible_cpu(i)
152 INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i));
153
154 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq);
9a659f43
SAS
155 cpuhp_setup_state_nocalls(CPUHP_BLOCK_SOFTIRQ_DEAD,
156 "block/softirq:dead", NULL,
157 blk_softirq_cpu_dead);
b646fc59
JA
158 return 0;
159}
160subsys_initcall(blk_softirq_init);