smp/x86: Trampoline: clear TLB before jumping to kernel code
diff --git a/common/sys/smp_trampoline.asm_x86 b/common/sys/smp_trampoline.asm_x86
index 59f581b0..928b315c 100644
--- a/common/sys/smp_trampoline.asm_x86
+++ b/common/sys/smp_trampoline.asm_x86
@@ -168,6 +168,10 @@ parking64:
jmp .loop
.out:
+ ; Clear TLB
+ mov rax, cr3
+ mov cr3, rax
+
mov rsp, qword [rdi + 8]
push 0
push rax
