aboutsummaryrefslogtreecommitdiff
path: root/xen
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2023-02-14 00:06:54 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-02-14 00:06:54 +0100
commit544071f200124fafd4fe7628c54f124e8577ca82 (patch)
treef0e0ef8a706126c3d6a65e21ee3f5dcd40759e26 /xen
parentf9ebee5589f8056ef52c6ecfdf7d6e10f4d34d1c (diff)
downloadgnumach-544071f200124fafd4fe7628c54f124e8577ca82.tar.gz
gnumach-544071f200124fafd4fe7628c54f124e8577ca82.tar.bz2
gnumach-544071f200124fafd4fe7628c54f124e8577ca82.zip
Make curr_ipl[] per cpu
Diffstat (limited to 'xen')
-rw-r--r--xen/evt.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/xen/evt.c b/xen/evt.c
index cec78c0d..e0c93744 100644
--- a/xen/evt.c
+++ b/xen/evt.c
@@ -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,