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