mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 10:45:23 +07:00
1b74dde7c4
- Use the more current logging style pr_<level>(...) instead of the old printk(KERN_<LEVEL> ...). - Convert pr_warning() to pr_warn(). Signed-off-by: Chen Yucong <slaoub@gmail.com> Cc: Borislav Petkov <bp@alien8.de> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Link: http://lkml.kernel.org/r/1454384702-21707-1-git-send-email-slaoub@gmail.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
42 lines
923 B
C
42 lines
923 B
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/idle.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);
|
|
}
|
|
|
|
void (*mce_threshold_vector)(void) = default_threshold_interrupt;
|
|
|
|
static inline void __smp_threshold_interrupt(void)
|
|
{
|
|
inc_irq_stat(irq_threshold_count);
|
|
mce_threshold_vector();
|
|
}
|
|
|
|
asmlinkage __visible void smp_threshold_interrupt(void)
|
|
{
|
|
entering_irq();
|
|
__smp_threshold_interrupt();
|
|
exiting_ack_irq();
|
|
}
|
|
|
|
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();
|
|
}
|