Changes in kernel/arch/amd64/src/interrupt.c [d19b3fc:bab75df6] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/interrupt.c
rd19b3fc rbab75df6 53 53 #include <symtab.h> 54 54 #include <stacktrace.h> 55 #include <smp/smp_call.h> 55 56 56 57 /* … … 160 161 tlb_shootdown_ipi_recv(); 161 162 } 163 164 static void arch_smp_call_ipi_recv(unsigned int n, istate_t *istate) 165 { 166 trap_virtual_eoi(); 167 smp_call_ipi_recv(); 168 } 162 169 #endif 163 170 … … 222 229 exc_register(VECTOR_TLB_SHOOTDOWN_IPI, "tlb_shootdown", true, 223 230 (iroutine_t) tlb_shootdown_ipi); 231 exc_register(VECTOR_SMP_CALL_IPI, "smp_call", true, 232 (iroutine_t) arch_smp_call_ipi_recv); 224 233 #endif 225 234 }
Note:
See TracChangeset
for help on using the changeset viewer.