Changeset d19b3fc in mainline for kernel/arch/amd64
- Timestamp:
- 2018-11-07T22:29:27Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ef4218f
- Parents:
- aae365bc
- git-author:
- Jakub Jermar <jakub@…> (2018-11-07 21:38:15)
- git-committer:
- Jakub Jermar <jakub@…> (2018-11-07 22:29:27)
- Location:
- kernel/arch/amd64
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/Makefile.inc
raae365bc rd19b3fc 85 85 arch/$(KARCH)/src/smp/ipi.c \ 86 86 arch/$(KARCH)/src/smp/mps.c \ 87 arch/$(KARCH)/src/smp/smp_call.c \88 87 arch/$(KARCH)/src/smp/smp.c 89 88 endif -
kernel/arch/amd64/include/arch/interrupt.h
raae365bc rd19b3fc 81 81 #define VECTOR_TLB_SHOOTDOWN_IPI (IVT_FREEBASE + 1) 82 82 #define VECTOR_DEBUG_IPI (IVT_FREEBASE + 2) 83 #define VECTOR_SMP_CALL_IPI (IVT_FREEBASE + 3)84 83 85 84 extern void (*disable_irqs_function)(uint16_t); -
kernel/arch/amd64/src/interrupt.c
raae365bc rd19b3fc 53 53 #include <symtab.h> 54 54 #include <stacktrace.h> 55 #include <smp/smp_call.h>56 55 57 56 /* … … 161 160 tlb_shootdown_ipi_recv(); 162 161 } 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 }169 162 #endif 170 163 … … 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.