R&D/Hypervisor

/proc/interrupts

sunshout 2015. 8. 13. 21:36

About interrupts name

- the last field is interrupt name, for example timer, virtio0-config, nvme0q0 ...



About information is generated by show_interrupts function.


@kernel/irq/proc.c

int show_interrupts(struct seq_file *p, void *v)

{

    static int prec;

 

    unsigned long flags, any_count = 0;

    int i = *(loff_t *) v, j;

    struct irqaction *action;

    struct irq_desc *desc;

 

    if (i > ACTUAL_NR_IRQS)

        return 0;

 

    if (i == ACTUAL_NR_IRQS)

        return arch_show_interrupts(p, prec);

 

    /* print header and calculate the width of the first column */

    if (i == 0) {

        for (prec = 3, j = 1000; prec < 10 && j <= nr_irqs; ++prec)

            j *= 10;

 

        seq_printf(p, "%*s", prec + 8, "");

        for_each_online_cpu(j)

            seq_printf(p, "CPU%-8d", j);

        seq_putc(p, '\n');

    }

 

    desc = irq_to_desc(i);

    if (!desc)

        return 0;

 

    raw_spin_lock_irqsave(&desc->lock, flags);

    for_each_online_cpu(j)

        any_count |= kstat_irqs_cpu(i, j);

    action = desc->action;

    if (!action && !any_count)

        goto out;

 

    seq_printf(p, "%*d: ", prec, i);

    for_each_online_cpu(j)

        seq_printf(p, "%10u ", kstat_irqs_cpu(i, j));

 

    if (desc->irq_data.chip) {

        if (desc->irq_data.chip->irq_print_chip)

            desc->irq_data.chip->irq_print_chip(&desc->irq_data, p);

        else if (desc->irq_data.chip->name)

            seq_printf(p, " %8s", desc->irq_data.chip->name);

        else

            seq_printf(p, " %8s", "-");

    } else {

        seq_printf(p, " %8s", "None");

    }

    if (desc->irq_data.domain)

        seq_printf(p, " %*d", prec, (int) desc->irq_data.hwirq);

#ifdef CONFIG_GENERIC_IRQ_SHOW_LEVEL

    seq_printf(p, " %-8s", irqd_is_level_type(&desc->irq_data) ? "Level" : "Edge");

#endif

    if (desc->name)

        seq_printf(p, "-%-8s", desc->name);

 

    if (action) {

        seq_printf(p, "  %s", action->name);

        while ((action = action->next) != NULL)

            seq_printf(p, ", %s", action->name);

    }

 

    seq_putc(p, '\n');

out:

    raw_spin_unlock_irqrestore(&desc->lock, flags);

    return 0;

}


interrupt name is (irqaction *)action->name


This name is assigned by request_irq in device driver.