hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
kernel/arch/x86/kernel/cpu/mce/amd.c
....@@ -921,13 +921,18 @@
921921 mce_log(&m);
922922 }
923923
924
+/*
925
+ * irq_pipeline: Deferred error events have NMI semantics wrt to
926
+ * pipelining, they can and should be handled immediately out of the
927
+ * IDT.
928
+ */
924929 DEFINE_IDTENTRY_SYSVEC(sysvec_deferred_error)
925930 {
926931 trace_deferred_error_apic_entry(DEFERRED_ERROR_VECTOR);
927932 inc_irq_stat(irq_deferred_error_count);
928933 deferred_error_int_vector();
929934 trace_deferred_error_apic_exit(DEFERRED_ERROR_VECTOR);
930
- ack_APIC_irq();
935
+ __ack_APIC_irq();
931936 }
932937
933938 /*