aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/x86/x86/mp_x86.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/x86/x86/mp_x86.c b/sys/x86/x86/mp_x86.c
index cb84fc9569133..85f27d639b69c 100644
--- a/sys/x86/x86/mp_x86.c
+++ b/sys/x86/x86/mp_x86.c
@@ -1697,7 +1697,10 @@ smp_targeted_tlb_shootdown(cpuset_t mask, u_int vector, pmap_t pmap,
uint32_t generation;
int cpu;
- /* It is not necessary to signal other CPUs while in the debugger. */
+ /*
+ * It is not necessary to signal other CPUs while booting or
+ * when in the debugger.
+ */
if (kdb_active || KERNEL_PANICKED() || !smp_started) {
curcpu_cb(pmap, addr1, addr2);
return;