Correct comment (this should have been committed with r362065).

Sponsored by:	The FreeBSD Foundation
MFC after:	13 days
This commit is contained in:
Konstantin Belousov 2020-06-11 20:26:39 +00:00
parent 435166f877
commit e09fb42a9a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=362075

View File

@ -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;