From e09fb42a9ab871c42bfde443337b4efcc49eb2ca Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Thu, 11 Jun 2020 20:26:39 +0000 Subject: [PATCH] Correct comment (this should have been committed with r362065). Sponsored by: The FreeBSD Foundation MFC after: 13 days --- sys/x86/x86/mp_x86.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys/x86/x86/mp_x86.c b/sys/x86/x86/mp_x86.c index cb84fc95691..85f27d639b6 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;