Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/amd64/src/interrupt.c

    rd19b3fc rbab75df6  
    5353#include <symtab.h>
    5454#include <stacktrace.h>
     55#include <smp/smp_call.h>
    5556
    5657/*
     
    160161        tlb_shootdown_ipi_recv();
    161162}
     163
     164static void arch_smp_call_ipi_recv(unsigned int n, istate_t *istate)
     165{
     166        trap_virtual_eoi();
     167        smp_call_ipi_recv();
     168}
    162169#endif
    163170
     
    222229        exc_register(VECTOR_TLB_SHOOTDOWN_IPI, "tlb_shootdown", true,
    223230            (iroutine_t) tlb_shootdown_ipi);
     231        exc_register(VECTOR_SMP_CALL_IPI, "smp_call", true,
     232            (iroutine_t) arch_smp_call_ipi_recv);
    224233#endif
    225234}
Note: See TracChangeset for help on using the changeset viewer.