mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-20 02:34:23 +08:00
2605fc216f
As requested by Linus add explicit __visible to the asmlinkage users. This marks all functions visible to assembler. Tree sweep for arch/x86/* Signed-off-by: Andi Kleen <ak@linux.intel.com> Link: http://lkml.kernel.org/r/1398984278-29319-3-git-send-email-andi@firstfloor.org Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
42 lines
934 B
C
42 lines
934 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)
|
|
{
|
|
printk(KERN_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();
|
|
}
|