Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Oct 2018 14:20:43 +0000 (UTC)
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r339124 - head/sys/x86/x86
Message-ID:  <201810031420.w93EKhYN014592@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: markj
Date: Wed Oct  3 14:20:43 2018
New Revision: 339124
URL: https://svnweb.freebsd.org/changeset/base/339124

Log:
  Fix an inverted test in ucode_load_ap().
  
  This caused microcode to be updated only on the BSP if hyperthreading
  was disabled, typically resulting in a hang or reset.
  
  Approved by:	re (kib)
  Sponsored by:	The FreeBSD Foundation

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

Modified: head/sys/x86/x86/ucode.c
==============================================================================
--- head/sys/x86/x86/ucode.c	Wed Oct  3 12:47:54 2018	(r339123)
+++ head/sys/x86/x86/ucode.c	Wed Oct  3 14:20:43 2018	(r339124)
@@ -269,7 +269,7 @@ ucode_load_ap(int cpu)
 	KASSERT(cpu_info[cpu_apic_ids[cpu]].cpu_present,
 	    ("cpu %d not present", cpu));
 
-	if (!cpu_info[cpu_apic_ids[cpu]].cpu_hyperthread)
+	if (cpu_info[cpu_apic_ids[cpu]].cpu_hyperthread)
 		return;
 #endif
 



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