Release 4.10 arch/x86/kernel/cpu/mcheck/threshold.c
/*
* Common corrected MCE threshold handler code:
*/
#include <linux/interrupt.h>
#include <linux/kernel.h>
#include <asm/irq_vectors.h>
#include <asm/apic.h>
#include <asm/mce.h>
#include <asm/trace/irq_vectors.h>
static void default_threshold_interrupt(void)
{
pr_err("Unexpected threshold interrupt at vector %x\n",
THRESHOLD_APIC_VECTOR);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
andi kleen | andi kleen | 14 | 93.33% | 1 | 50.00% |
chen yucong | chen yucong | 1 | 6.67% | 1 | 50.00% |
| Total | 15 | 100.00% | 2 | 100.00% |
void (*mce_threshold_vector)(void) = default_threshold_interrupt;
static inline void __smp_threshold_interrupt(void)
{
inc_irq_stat(irq_threshold_count);
mce_threshold_vector();
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
andi kleen | andi kleen | 13 | 76.47% | 1 | 50.00% |
seiji aguchi | seiji aguchi | 4 | 23.53% | 1 | 50.00% |
| Total | 17 | 100.00% | 2 | 100.00% |
asmlinkage __visible void smp_threshold_interrupt(void)
{
entering_irq();
__smp_threshold_interrupt();
exiting_ack_irq();
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
seiji aguchi | seiji aguchi | 12 | 66.67% | 1 | 25.00% |
andi kleen | andi kleen | 6 | 33.33% | 3 | 75.00% |
| Total | 18 | 100.00% | 4 | 100.00% |
asmlinkage __visible void smp_trace_threshold_interrupt(void)
{
entering_irq();
trace_threshold_apic_entry(THRESHOLD_APIC_VECTOR);
__smp_threshold_interrupt();
trace_threshold_apic_exit(THRESHOLD_APIC_VECTOR);
exiting_ack_irq();
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
seiji aguchi | seiji aguchi | 27 | 96.43% | 1 | 50.00% |
andi kleen | andi kleen | 1 | 3.57% | 1 | 50.00% |
| Total | 28 | 100.00% | 2 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
andi kleen | andi kleen | 55 | 50.93% | 3 | 42.86% |
seiji aguchi | seiji aguchi | 46 | 42.59% | 2 | 28.57% |
ingo molnar | ingo molnar | 6 | 5.56% | 1 | 14.29% |
chen yucong | chen yucong | 1 | 0.93% | 1 | 14.29% |
| Total | 108 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.