diff options
author | Damien Zammit <damien@zamaudio.com> | 2023-02-14 00:06:54 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-02-14 00:06:54 +0100 |
commit | 544071f200124fafd4fe7628c54f124e8577ca82 (patch) | |
tree | f0e0ef8a706126c3d6a65e21ee3f5dcd40759e26 /xen | |
parent | f9ebee5589f8056ef52c6ecfdf7d6e10f4d34d1c (diff) | |
download | gnumach-544071f200124fafd4fe7628c54f124e8577ca82.tar.gz gnumach-544071f200124fafd4fe7628c54f124e8577ca82.tar.bz2 gnumach-544071f200124fafd4fe7628c54f124e8577ca82.zip |
Make curr_ipl[] per cpu
Diffstat (limited to 'xen')
-rw-r--r-- | xen/evt.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -28,7 +28,7 @@ #define NEVNT (sizeof(unsigned long) * sizeof(unsigned long) * 8) int int_mask[NSPL]; -spl_t curr_ipl; +spl_t curr_ipl[NCPUS]; interrupt_handler_fn ivect[NEVNT]; int intpri[NEVNT]; @@ -92,8 +92,11 @@ extern void hyp_callback(void); extern void hyp_failsafe_callback(void); void hyp_intrinit(void) { + int i; + form_int_mask(); - curr_ipl = SPLHI; + for (i = 0; i < NCPUS; i++) + curr_ipl[i] = SPLHI; hyp_shared_info.evtchn_mask[0] = int_mask[SPLHI]; #ifdef __i386__ hyp_set_callbacks(KERNEL_CS, hyp_callback, |