summaryrefslogtreecommitdiff
path: root/i386/intel/pmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'i386/intel/pmap.c')
-rw-r--r--i386/intel/pmap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/i386/intel/pmap.c b/i386/intel/pmap.c
index fa5bcc3c..129e600b 100644
--- a/i386/intel/pmap.c
+++ b/i386/intel/pmap.c
@@ -3013,7 +3013,8 @@ void signal_cpus(
cpu_update_needed[which_cpu] = TRUE;
simple_unlock(&update_list_p->lock);
- if (((cpus_idle & (1 << which_cpu)) == 0) || (pmap == kernel_pmap))
+ __sync_synchronize();
+ if (((cpus_idle & (1 << which_cpu)) == 0))
interrupt_processor(which_cpu);
use_list &= ~(1 << which_cpu);
}