cregit-Linux how code gets into the kernel

Release 4.12 block/blk-softirq.c

Directory: block
/*
 * Functions related to softirq rq completions
 */
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/bio.h>
#include <linux/blkdev.h>
#include <linux/interrupt.h>
#include <linux/cpu.h>
#include <linux/sched.h>
#include <linux/sched/topology.h>

#include "blk.h"

static DEFINE_PER_CPU(struct list_head, blk_cpu_done);

/*
 * Softirq action handler - move entries to local list and loop over them
 * while passing them to the queue registered handler.
 */

static __latent_entropy void blk_done_softirq(struct softirq_action *h) { struct list_head *cpu_list, local_list; local_irq_disable(); cpu_list = this_cpu_ptr(&blk_cpu_done); list_replace_init(cpu_list, &local_list); local_irq_enable(); while (!list_empty(&local_list)) { struct request *rq; rq = list_entry(local_list.next, struct request, ipi_list); list_del_init(&rq->ipi_list); rq->q->softirq_done_fn(rq); } }

Contributors

PersonTokensPropCommitsCommitProp
Jens Axboe8596.59%250.00%
Christoph Lameter22.27%125.00%
Emese Revfy11.14%125.00%
Total88100.00%4100.00%

#ifdef CONFIG_SMP
static void trigger_softirq(void *data) { struct request *rq = data; unsigned long flags; struct list_head *list; local_irq_save(flags); list = this_cpu_ptr(&blk_cpu_done); list_add_tail(&rq->ipi_list, list); if (list->next == &rq->ipi_list) raise_softirq_irqoff(BLOCK_SOFTIRQ); local_irq_restore(flags); }

Contributors

PersonTokensPropCommitsCommitProp
Jens Axboe6897.14%266.67%
Christoph Lameter22.86%133.33%
Total70100.00%3100.00%

/* * Setup and invoke a run of 'trigger_softirq' on the given cpu. */
static int raise_blk_irq(int cpu, struct request *rq) { if (cpu_online(cpu)) { struct call_single_data *data = &rq->csd; data->func = trigger_softirq; data->info = rq; data->flags = 0; smp_call_function_single_async(cpu, data); return 0; } return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Jens Axboe6398.44%150.00%
Frédéric Weisbecker11.56%150.00%
Total64100.00%2100.00%

#else /* CONFIG_SMP */
static int raise_blk_irq(int cpu, struct request *rq) { return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Jens Axboe17100.00%1100.00%
Total17100.00%1100.00%

#endif
static int blk_softirq_cpu_dead(unsigned int cpu) { /* * If a CPU goes away, splice its entries to the current CPU * and trigger a run of the softirq */ local_irq_disable(); list_splice_init(&per_cpu(blk_cpu_done, cpu), this_cpu_ptr(&blk_cpu_done)); raise_softirq_irqoff(BLOCK_SOFTIRQ); local_irq_enable(); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Jens Axboe3685.71%133.33%
Sebastian Andrzej Siewior49.52%133.33%
Christoph Lameter24.76%133.33%
Total42100.00%3100.00%


void __blk_complete_request(struct request *req) { int ccpu, cpu; struct request_queue *q = req->q; unsigned long flags; bool shared = false; BUG_ON(!q->softirq_done_fn); local_irq_save(flags); cpu = smp_processor_id(); /* * Select completion CPU */ if (req->cpu != -1) { ccpu = req->cpu; if (!test_bit(QUEUE_FLAG_SAME_FORCE, &q->queue_flags)) shared = cpus_share_cache(cpu, ccpu); } else ccpu = cpu; /* * If current CPU and requested CPU share a cache, run the softirq on * the current CPU. One might concern this is just like * QUEUE_FLAG_SAME_FORCE, but actually not. blk_complete_request() is * running in interrupt handler, and currently I/O controller doesn't * support multiple interrupts, so current CPU is unique actually. This * avoids IPI sending from current CPU to the first CPU of a group. */ if (ccpu == cpu || shared) { struct list_head *list; do_local: list = this_cpu_ptr(&blk_cpu_done); list_add_tail(&req->ipi_list, list); /* * if the list only contains our just added request, * signal a raise of the softirq. If there are already * entries there, someone already raised the irq but it * hasn't run yet. */ if (list->next == &req->ipi_list) raise_softirq_irqoff(BLOCK_SOFTIRQ); } else if (raise_blk_irq(ccpu, req)) goto do_local; local_irq_restore(flags); }

Contributors

PersonTokensPropCommitsCommitProp
Jens Axboe12876.65%450.00%
Dan J Williams2011.98%112.50%
Peter Zijlstra116.59%112.50%
David Shaohua Li63.59%112.50%
Christoph Lameter21.20%112.50%
Total167100.00%8100.00%

/** * blk_complete_request - end I/O on a request * @req: the request being processed * * Description: * Ends all I/O on a request. It does not handle partial completions, * unless the driver actually implements this in its completion callback * through requeueing. The actual completion happens out-of-order, * through a softirq handler. The user must have registered a completion * callback through blk_queue_softirq_done(). **/
void blk_complete_request(struct request *req) { if (unlikely(blk_should_fake_timeout(req->q))) return; if (!blk_mark_rq_complete(req)) __blk_complete_request(req); }

Contributors

PersonTokensPropCommitsCommitProp
Jens Axboe36100.00%3100.00%
Total36100.00%3100.00%

EXPORT_SYMBOL(blk_complete_request);
static __init int blk_softirq_init(void) { int i; for_each_possible_cpu(i) INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i)); open_softirq(BLOCK_SOFTIRQ, blk_done_softirq); cpuhp_setup_state_nocalls(CPUHP_BLOCK_SOFTIRQ_DEAD, "block/softirq:dead", NULL, blk_softirq_cpu_dead); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Jens Axboe3981.25%250.00%
Sebastian Andrzej Siewior816.67%125.00%
Roel Kluin12.08%125.00%
Total48100.00%4100.00%

subsys_initcall(blk_softirq_init);

Overall Contributors

PersonTokensPropCommitsCommitProp
Jens Axboe52488.36%533.33%
Dan J Williams203.37%16.67%
Peter Zijlstra142.36%16.67%
Sebastian Andrzej Siewior122.02%16.67%
Christoph Lameter81.35%16.67%
David Shaohua Li61.01%16.67%
Christoph Hellwig30.51%16.67%
Ingo Molnar30.51%16.67%
Roel Kluin10.17%16.67%
Frédéric Weisbecker10.17%16.67%
Emese Revfy10.17%16.67%
Total593100.00%15100.00%
Directory: block
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.