blob: 06cf9807f49a3be1742a632f9be61c0232fcaf5c [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 */
Emese Revfy0766f782016-06-20 20:42:34 +020021static __latent_entropy void blk_done_softirq(struct softirq_action *h)
Jens Axboec7c22e42008-09-13 20:26:01 +020022{
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
Jens Axboe360f92c2014-04-09 20:27:01 -060033 rq = list_entry(local_list.next, struct request, ipi_list);
34 list_del_init(&rq->ipi_list);
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);
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);
52
53 local_irq_restore(flags);
54}
55
56/*
57 * Setup and invoke a run of 'trigger_softirq' on the given cpu.
58 */
59static int raise_blk_irq(int cpu, struct request *rq)
60{
61 if (cpu_online(cpu)) {
62 struct call_single_data *data = &rq->csd;
63
64 data->func = trigger_softirq;
65 data->info = rq;
66 data->flags = 0;
67
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +010068 smp_call_function_single_async(cpu, data);
Jens Axboec7c22e42008-09-13 20:26:01 +020069 return 0;
70 }
71
72 return 1;
73}
Christoph Hellwig0a06ff02013-11-14 14:32:07 -080074#else /* CONFIG_SMP */
Jens Axboec7c22e42008-09-13 20:26:01 +020075static int raise_blk_irq(int cpu, struct request *rq)
76{
77 return 1;
78}
79#endif
80
Sebastian Andrzej Siewior9a659f42016-09-06 19:04:44 +020081static int blk_softirq_cpu_dead(unsigned int cpu)
Jens Axboeb646fc52008-07-28 13:06:00 +020082{
83 /*
84 * If a CPU goes away, splice its entries to the current CPU
85 * and trigger a run of the softirq
86 */
Sebastian Andrzej Siewior9a659f42016-09-06 19:04:44 +020087 local_irq_disable();
88 list_splice_init(&per_cpu(blk_cpu_done, cpu),
89 this_cpu_ptr(&blk_cpu_done));
90 raise_softirq_irqoff(BLOCK_SOFTIRQ);
91 local_irq_enable();
Jens Axboeb646fc52008-07-28 13:06:00 +020092
Sebastian Andrzej Siewior9a659f42016-09-06 19:04:44 +020093 return 0;
Jens Axboeb646fc52008-07-28 13:06:00 +020094}
95
Jens Axboe242f9dc2008-09-14 05:55:09 -070096void __blk_complete_request(struct request *req)
Jens Axboeb646fc52008-07-28 13:06:00 +020097{
Peter Zijlstra39be3502012-01-26 12:44:34 +010098 int ccpu, cpu;
Jens Axboec7c22e42008-09-13 20:26:01 +020099 struct request_queue *q = req->q;
Jens Axboeb646fc52008-07-28 13:06:00 +0200100 unsigned long flags;
Peter Zijlstra39be3502012-01-26 12:44:34 +0100101 bool shared = false;
Jens Axboeb646fc52008-07-28 13:06:00 +0200102
Jens Axboec7c22e42008-09-13 20:26:01 +0200103 BUG_ON(!q->softirq_done_fn);
Jens Axboeb646fc52008-07-28 13:06:00 +0200104
105 local_irq_save(flags);
Jens Axboec7c22e42008-09-13 20:26:01 +0200106 cpu = smp_processor_id();
Jens Axboeb646fc52008-07-28 13:06:00 +0200107
Jens Axboec7c22e42008-09-13 20:26:01 +0200108 /*
109 * Select completion CPU
110 */
Tao Ma8ad6a562011-09-14 09:31:01 +0200111 if (req->cpu != -1) {
Jens Axboec7c22e42008-09-13 20:26:01 +0200112 ccpu = req->cpu;
Peter Zijlstra39be3502012-01-26 12:44:34 +0100113 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &q->queue_flags))
114 shared = cpus_share_cache(cpu, ccpu);
Dan Williams5757a6d2011-07-23 20:44:25 +0200115 } else
Jens Axboec7c22e42008-09-13 20:26:01 +0200116 ccpu = cpu;
117
Shaohua Libcf30e72011-08-11 10:39:04 +0200118 /*
Peter Zijlstra39be3502012-01-26 12:44:34 +0100119 * If current CPU and requested CPU share a cache, run the softirq on
120 * the current CPU. One might concern this is just like
Shaohua Libcf30e72011-08-11 10:39:04 +0200121 * QUEUE_FLAG_SAME_FORCE, but actually not. blk_complete_request() is
122 * running in interrupt handler, and currently I/O controller doesn't
123 * support multiple interrupts, so current CPU is unique actually. This
124 * avoids IPI sending from current CPU to the first CPU of a group.
125 */
Peter Zijlstra39be3502012-01-26 12:44:34 +0100126 if (ccpu == cpu || shared) {
Jens Axboec7c22e42008-09-13 20:26:01 +0200127 struct list_head *list;
128do_local:
Christoph Lameter170d8002013-10-15 12:22:29 -0600129 list = this_cpu_ptr(&blk_cpu_done);
Jens Axboe360f92c2014-04-09 20:27:01 -0600130 list_add_tail(&req->ipi_list, list);
Jens Axboec7c22e42008-09-13 20:26:01 +0200131
132 /*
133 * if the list only contains our just added request,
134 * signal a raise of the softirq. If there are already
135 * entries there, someone already raised the irq but it
136 * hasn't run yet.
137 */
Jens Axboe360f92c2014-04-09 20:27:01 -0600138 if (list->next == &req->ipi_list)
Jens Axboec7c22e42008-09-13 20:26:01 +0200139 raise_softirq_irqoff(BLOCK_SOFTIRQ);
140 } else if (raise_blk_irq(ccpu, req))
141 goto do_local;
Jens Axboeb646fc52008-07-28 13:06:00 +0200142
143 local_irq_restore(flags);
144}
Jens Axboe242f9dc2008-09-14 05:55:09 -0700145
146/**
147 * blk_complete_request - end I/O on a request
148 * @req: the request being processed
149 *
150 * Description:
151 * Ends all I/O on a request. It does not handle partial completions,
152 * unless the driver actually implements this in its completion callback
153 * through requeueing. The actual completion happens out-of-order,
154 * through a softirq handler. The user must have registered a completion
155 * callback through blk_queue_softirq_done().
156 **/
157void blk_complete_request(struct request *req)
158{
Jens Axboe581d4e22008-09-14 05:56:33 -0700159 if (unlikely(blk_should_fake_timeout(req->q)))
160 return;
Jens Axboe242f9dc2008-09-14 05:55:09 -0700161 if (!blk_mark_rq_complete(req))
162 __blk_complete_request(req);
163}
Jens Axboeb646fc52008-07-28 13:06:00 +0200164EXPORT_SYMBOL(blk_complete_request);
165
Roel Kluin3c18ce72008-12-10 15:47:33 +0100166static __init int blk_softirq_init(void)
Jens Axboeb646fc52008-07-28 13:06:00 +0200167{
168 int i;
169
170 for_each_possible_cpu(i)
171 INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i));
172
173 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq);
Sebastian Andrzej Siewior9a659f42016-09-06 19:04:44 +0200174 cpuhp_setup_state_nocalls(CPUHP_BLOCK_SOFTIRQ_DEAD,
175 "block/softirq:dead", NULL,
176 blk_softirq_cpu_dead);
Jens Axboeb646fc52008-07-28 13:06:00 +0200177 return 0;
178}
179subsys_initcall(blk_softirq_init);