cregit-Linux how code gets into the kernel

Release 4.14 arch/alpha/kernel/irq.c

// SPDX-License-Identifier: GPL-2.0
/*
 *      linux/arch/alpha/kernel/irq.c
 *
 *      Copyright (C) 1995 Linus Torvalds
 *
 * This file contains the code used by various IRQ handling routines:
 * asking for different IRQ's should be done through these routines
 * instead of just grabbing them. Thus setups with different IRQ numbers
 * shouldn't result in any weird surprises, and installing new handlers
 * should be easier.
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/kernel_stat.h>
#include <linux/signal.h>
#include <linux/sched.h>
#include <linux/ptrace.h>
#include <linux/interrupt.h>
#include <linux/random.h>
#include <linux/irq.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/profile.h>
#include <linux/bitops.h>

#include <asm/io.h>
#include <linux/uaccess.h>


volatile unsigned long irq_err_count;
DEFINE_PER_CPU(unsigned long, irq_pmi_count);


void ack_bad_irq(unsigned int irq) { irq_err_count++; printk(KERN_CRIT "Unexpected IRQ trap at vector %u\n", irq); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1995.00%375.00%
Ivan Kokshaysky15.00%125.00%
Total20100.00%4100.00%

#ifdef CONFIG_SMP static char irq_user_affinity[NR_IRQS];
int irq_select_affinity(unsigned int irq) { struct irq_data *data = irq_get_irq_data(irq); struct irq_chip *chip; static int last_cpu; int cpu = last_cpu + 1; if (!data) return 1; chip = irq_data_get_irq_chip(data); if (!chip->irq_set_affinity || irq_user_affinity[irq]) return 1; while (!cpu_possible(cpu) || !cpumask_test_cpu(cpu, irq_default_affinity)) cpu = (cpu < (NR_CPUS-1) ? cpu + 1 : 0); last_cpu = cpu; cpumask_copy(irq_data_get_affinity_mask(data), cpumask_of(cpu)); chip->irq_set_affinity(data, cpumask_of(cpu), false); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ivan Kokshaysky5037.59%211.76%
Thomas Gleixner2921.80%15.88%
Linus Torvalds (pre-git)2518.80%635.29%
Maksim Krasnyanskiy86.02%15.88%
Kyle McMartin75.26%15.88%
Mike Travis53.76%15.88%
Jiang Liu32.26%15.88%
Morten Holst Larsen21.50%15.88%
Takashi Iwai21.50%15.88%
Rusty Russell21.50%211.76%
Total133100.00%17100.00%

#endif /* CONFIG_SMP */
int arch_show_interrupts(struct seq_file *p, int prec) { int j; #ifdef CONFIG_SMP seq_puts(p, "IPI: "); for_each_online_cpu(j) seq_printf(p, "%10lu ", cpu_data[j].ipi_count); seq_putc(p, '\n'); #endif seq_puts(p, "PMI: "); for_each_online_cpu(j) seq_printf(p, "%10lu ", per_cpu(irq_pmi_count, j)); seq_puts(p, " Performance Monitoring\n"); seq_printf(p, "ERR: %10lu\n", irq_err_count); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ivan Kokshaysky4546.39%111.11%
Michael Cree3232.99%111.11%
Linus Torvalds (pre-git)1414.43%555.56%
Eric Sesterhenn / Snakebyte33.09%111.11%
Thomas Gleixner33.09%111.11%
Total97100.00%9100.00%

/* * handle_irq handles all normal device IRQ's (the special * SMP cross-CPU interrupts have their own specific * handlers). */ #define MAX_ILLEGAL_IRQS 16
void handle_irq(int irq) { /* * We ack quickly, we don't want the irq controller * thinking we're snobs just because some other CPU has * disabled global interrupts (we have already done the * INT_ACK cycles, it's too late to try to pretend to the * controller that we aren't taking the interrupt). * * 0 return value means that this irq is already being * handled by some other CPU. (or is disabled) */ static unsigned int illegal_count=0; struct irq_desc *desc = irq_to_desc(irq); if (!desc || ((unsigned) irq > ACTUAL_NR_IRQS && illegal_count < MAX_ILLEGAL_IRQS)) { irq_err_count++; illegal_count++; printk(KERN_CRIT "device_interrupt: invalid interrupt %d\n", irq); return; } irq_enter(); generic_handle_irq_desc(desc); irq_exit(); }

Contributors

PersonTokensPropCommitsCommitProp
Ivan Kokshaysky3345.83%342.86%
Linus Torvalds (pre-git)1926.39%228.57%
Kyle McMartin1723.61%114.29%
Arnaldo Carvalho de Melo34.17%114.29%
Total72100.00%7100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Ivan Kokshaysky15137.56%410.26%
Linus Torvalds (pre-git)11428.36%1641.03%
Michael Cree399.70%12.56%
Thomas Gleixner327.96%25.13%
Kyle McMartin245.97%12.56%
Maksim Krasnyanskiy81.99%12.56%
Arnaldo Carvalho de Melo61.49%12.56%
Linus Torvalds51.24%37.69%
Mike Travis51.24%12.56%
Jiang Liu30.75%12.56%
Al Viro30.75%12.56%
Eric Sesterhenn / Snakebyte30.75%12.56%
Morten Holst Larsen20.50%12.56%
Takashi Iwai20.50%12.56%
Rusty Russell20.50%25.13%
Adrian Bunk20.50%12.56%
Greg Kroah-Hartman10.25%12.56%
Total402100.00%39100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.