Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Jun 2020 20:26:39 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r362075 - head/sys/x86/x86
Message-ID:  <202006112026.05BKQdC0041577@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Thu Jun 11 20:26:39 2020
New Revision: 362075
URL: https://svnweb.freebsd.org/changeset/base/362075

Log:
  Correct comment (this should have been committed with r362065).
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	13 days

Modified:
  head/sys/x86/x86/mp_x86.c

Modified: head/sys/x86/x86/mp_x86.c
==============================================================================
--- head/sys/x86/x86/mp_x86.c	Thu Jun 11 19:54:44 2020	(r362074)
+++ head/sys/x86/x86/mp_x86.c	Thu Jun 11 20:26:39 2020	(r362075)
@@ -1697,7 +1697,10 @@ smp_targeted_tlb_shootdown(cpuset_t mask, u_int vector
 	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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006112026.05BKQdC0041577>