blob: 6e7ec87d49faa11eabdded4b01adf33ceaae9037 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Jens Axboeb646fc52008-07-28 13:06:00 +02002/*
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>
Peter Zijlstra39be3502012-01-26 12:44:34 +010012#include <linux/sched.h>
Ingo Molnar105ab3d2017-02-01 16:36:40 +010013#include <linux/sched/topology.h>
Jens Axboeb646fc52008-07-28 13:06:00 +020014
15#include "blk.h"
16
17static DEFINE_PER_CPU(struct list_head, blk_cpu_done);
18
Jens Axboec7c22e42008-09-13 20:26:01 +020019/*
20 * Softirq action handler - move entries to local list and loop over them
21 * while passing them to the queue registered handler.
22 */
Emese Revfy0766f782016-06-20 20:42:34 +020023static __latent_entropy void blk_done_softirq(struct softirq_action *h)
Jens Axboec7c22e42008-09-13 20:26:01 +020024{
25 struct list_head *cpu_list, local_list;
26
27 local_irq_disable();
Christoph Lameter170d8002013-10-15 12:22:29 -060028 cpu_list = this_cpu_ptr(&blk_cpu_done);
Jens Axboec7c22e42008-09-13 20:26:01 +020029 list_replace_init(cpu_list, &local_list);
30 local_irq_enable();
31
32 while (!list_empty(&local_list)) {
33 struct request *rq;
34
Jens Axboe360f92c2014-04-09 20:27:01 -060035 rq = list_entry(local_list.next, struct request, ipi_list);
36 list_del_init(&rq->ipi_list);
Jens Axboec7bb9ad2018-10-31 09:43:30 -060037 rq->q->mq_ops->complete(rq);
Jens Axboec7c22e42008-09-13 20:26:01 +020038 }
39}
40
Christoph Hellwig0a06ff02013-11-14 14:32:07 -080041#ifdef CONFIG_SMP
Jens Axboec7c22e42008-09-13 20:26:01 +020042static void trigger_softirq(void *data)
43{
44 struct request *rq = data;
Jens Axboec7c22e42008-09-13 20:26:01 +020045 struct list_head *list;
46
Christoph Lameter170d8002013-10-15 12:22:29 -060047 list = this_cpu_ptr(&blk_cpu_done);
Jens Axboe360f92c2014-04-09 20:27:01 -060048 list_add_tail(&rq->ipi_list, list);
Jens Axboec7c22e42008-09-13 20:26:01 +020049
Jens Axboe360f92c2014-04-09 20:27:01 -060050 if (list->next == &rq->ipi_list)
Jens Axboec7c22e42008-09-13 20:26:01 +020051 raise_softirq_irqoff(BLOCK_SOFTIRQ);
Jens Axboec7c22e42008-09-13 20:26:01 +020052}
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)) {
Ying Huang966a9672017-08-08 12:30:00 +080060 call_single_data_t *data = &rq->csd;
Jens Axboec7c22e42008-09-13 20:26:01 +020061
62 data->func = trigger_softirq;
63 data->info = rq;
64 data->flags = 0;
65
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +010066 smp_call_function_single_async(cpu, data);
Jens Axboec7c22e42008-09-13 20:26:01 +020067 return 0;
68 }
69
70 return 1;
71}
Christoph Hellwig0a06ff02013-11-14 14:32:07 -080072#else /* CONFIG_SMP */
Jens Axboec7c22e42008-09-13 20:26:01 +020073static int raise_blk_irq(int cpu, struct request *rq)
74{
75 return 1;
76}
77#endif
78
Sebastian Andrzej Siewior9a659f42016-09-06 19:04:44 +020079static int blk_softirq_cpu_dead(unsigned int cpu)
Jens Axboeb646fc52008-07-28 13:06:00 +020080{
81 /*
82 * If a CPU goes away, splice its entries to the current CPU
83 * and trigger a run of the softirq
84 */
Sebastian Andrzej Siewior9a659f42016-09-06 19:04:44 +020085 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();
Jens Axboeb646fc52008-07-28 13:06:00 +020090
Sebastian Andrzej Siewior9a659f42016-09-06 19:04:44 +020091 return 0;
Jens Axboeb646fc52008-07-28 13:06:00 +020092}
93
Jens Axboe242f9dc2008-09-14 05:55:09 -070094void __blk_complete_request(struct request *req)
Jens Axboeb646fc52008-07-28 13:06:00 +020095{
Jens Axboec7c22e42008-09-13 20:26:01 +020096 struct request_queue *q = req->q;
Jens Axboe9cf2bab2018-10-31 17:01:22 -060097 int cpu, ccpu = req->mq_ctx->cpu;
Jens Axboeb646fc52008-07-28 13:06:00 +020098 unsigned long flags;
Peter Zijlstra39be3502012-01-26 12:44:34 +010099 bool shared = false;
Jens Axboeb646fc52008-07-28 13:06:00 +0200100
Jens Axboec7bb9ad2018-10-31 09:43:30 -0600101 BUG_ON(!q->mq_ops->complete);
Jens Axboeb646fc52008-07-28 13:06:00 +0200102
103 local_irq_save(flags);
Jens Axboec7c22e42008-09-13 20:26:01 +0200104 cpu = smp_processor_id();
Jens Axboeb646fc52008-07-28 13:06:00 +0200105
Jens Axboec7c22e42008-09-13 20:26:01 +0200106 /*
107 * Select completion CPU
108 */
Ming Lei36e76532018-09-28 16:42:20 +0800109 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) && ccpu != -1) {
Peter Zijlstra39be3502012-01-26 12:44:34 +0100110 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &q->queue_flags))
111 shared = cpus_share_cache(cpu, ccpu);
Dan Williams5757a6d2011-07-23 20:44:25 +0200112 } else
Jens Axboec7c22e42008-09-13 20:26:01 +0200113 ccpu = cpu;
114
Shaohua Libcf30e72011-08-11 10:39:04 +0200115 /*
Peter Zijlstra39be3502012-01-26 12:44:34 +0100116 * If current CPU and requested CPU share a cache, run the softirq on
117 * the current CPU. One might concern this is just like
Shaohua Libcf30e72011-08-11 10:39:04 +0200118 * 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 */
Peter Zijlstra39be3502012-01-26 12:44:34 +0100123 if (ccpu == cpu || shared) {
Jens Axboec7c22e42008-09-13 20:26:01 +0200124 struct list_head *list;
125do_local:
Christoph Lameter170d8002013-10-15 12:22:29 -0600126 list = this_cpu_ptr(&blk_cpu_done);
Jens Axboe360f92c2014-04-09 20:27:01 -0600127 list_add_tail(&req->ipi_list, list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200128
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 */
Jens Axboe360f92c2014-04-09 20:27:01 -0600135 if (list->next == &req->ipi_list)
Jens Axboec7c22e42008-09-13 20:26:01 +0200136 raise_softirq_irqoff(BLOCK_SOFTIRQ);
137 } else if (raise_blk_irq(ccpu, req))
138 goto do_local;
Jens Axboeb646fc52008-07-28 13:06:00 +0200139
140 local_irq_restore(flags);
141}
Jens Axboe242f9dc2008-09-14 05:55:09 -0700142
Roel Kluin3c18ce72008-12-10 15:47:33 +0100143static __init int blk_softirq_init(void)
Jens Axboeb646fc52008-07-28 13:06:00 +0200144{
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);
Sebastian Andrzej Siewior9a659f42016-09-06 19:04:44 +0200151 cpuhp_setup_state_nocalls(CPUHP_BLOCK_SOFTIRQ_DEAD,
152 "block/softirq:dead", NULL,
153 blk_softirq_cpu_dead);
Jens Axboeb646fc52008-07-28 13:06:00 +0200154 return 0;
155}
156subsys_initcall(blk_softirq_init);