mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-22 02:58:47 +00:00
Yet another wrapper of a wrapper gone along with the outdated comment that this compiles to a single instruction. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com> Reviewed-by: Wei Liu <wei.liu@kernel.org> Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org> Tested-by: Michael Kelley <mikelley@microsoft.com> Tested-by: Sohil Mehta <sohil.mehta@intel.com> Tested-by: Juergen Gross <jgross@suse.com> # Xen PV (dom0 and unpriv. guest)
32 lines
724 B
C
32 lines
724 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Common corrected MCE threshold handler code:
|
|
*/
|
|
#include <linux/interrupt.h>
|
|
#include <linux/kernel.h>
|
|
|
|
#include <asm/irq_vectors.h>
|
|
#include <asm/traps.h>
|
|
#include <asm/apic.h>
|
|
#include <asm/mce.h>
|
|
#include <asm/trace/irq_vectors.h>
|
|
|
|
#include "internal.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;
|
|
|
|
DEFINE_IDTENTRY_SYSVEC(sysvec_threshold)
|
|
{
|
|
trace_threshold_apic_entry(THRESHOLD_APIC_VECTOR);
|
|
inc_irq_stat(irq_threshold_count);
|
|
mce_threshold_vector();
|
|
trace_threshold_apic_exit(THRESHOLD_APIC_VECTOR);
|
|
apic_eoi();
|
|
}
|