From ca21e6053ee71fcafc12ea9d33860d470853bfe6 Mon Sep 17 00:00:00 2001 From: Marcus Overhagen Date: Thu, 22 Feb 2007 19:47:28 +0000 Subject: [PATCH] really invalidate the TLB of non-boot CPUs git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20200 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/smp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/system/kernel/smp.c b/src/system/kernel/smp.c index 5042387098..f484dd58a6 100644 --- a/src/system/kernel/smp.c +++ b/src/system/kernel/smp.c @@ -552,13 +552,14 @@ smp_trap_non_boot_cpus(int32 cpu) if (cpu > 0) { boot_cpu_spin[cpu] = 1; acquire_spinlock_nocheck(&boot_cpu_spin[cpu]); - return false; // lets make sure we're in sync with the main cpu // the boot processor has probably been sending us // tlb sync messages all along the way, but we've // been ignoring them arch_cpu_global_TLB_invalidate(); + + return false; } return true;