cregit-Linux how code gets into the kernel

Release 4.14 arch/ia64/kernel/irq_lsapic.c

Directory: arch/ia64/kernel
// SPDX-License-Identifier: GPL-2.0
/*
 * LSAPIC Interrupt Controller
 *
 * This takes care of interrupts that are generated by the CPU's
 * internal Streamlined Advanced Programmable Interrupt Controller
 * (LSAPIC), such as the ITC and IPI interrupts.
    *
 * Copyright (C) 1999 VA Linux Systems
 * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
 * Copyright (C) 2000 Hewlett-Packard Co
 * Copyright (C) 2000 David Mosberger-Tang <davidm@hpl.hp.com>
 */

#include <linux/sched.h>
#include <linux/irq.h>


static unsigned int lsapic_noop_startup (struct irq_data *data) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1066.67%250.00%
Thomas Gleixner426.67%125.00%
Linus Torvalds16.67%125.00%
Total15100.00%4100.00%


static void lsapic_noop (struct irq_data *data) { /* nothing to do... */ }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)650.00%125.00%
Thomas Gleixner433.33%125.00%
Simon Arlott18.33%125.00%
Linus Torvalds18.33%125.00%
Total12100.00%4100.00%


static int lsapic_retrigger(struct irq_data *data) { ia64_resend_irq(data->irq); return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Ingo Molnar1571.43%150.00%
Thomas Gleixner628.57%150.00%
Total21100.00%2100.00%

struct irq_chip irq_type_ia64_lsapic = { .name = "LSAPIC", .irq_startup = lsapic_noop_startup, .irq_shutdown = lsapic_noop, .irq_enable = lsapic_noop, .irq_disable = lsapic_noop, .irq_ack = lsapic_noop, .irq_retrigger = lsapic_retrigger, };

Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)3232.99%327.27%
Thomas Gleixner2121.65%218.18%
Ingo Molnar1919.59%218.18%
Rusty Russell1313.40%19.09%
Linus Torvalds1010.31%19.09%
Greg Kroah-Hartman11.03%19.09%
Simon Arlott11.03%19.09%
Total97100.00%11100.00%
Directory: arch/ia64/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.