Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 21 Mar 2018 15:09:42 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r331303 - stable/11/sys/x86/x86
Message-ID:  <201803211509.w2LF9g6a002627@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: avg
Date: Wed Mar 21 15:09:41 2018
New Revision: 331303
URL: https://svnweb.freebsd.org/changeset/base/331303

Log:
  MFC r330793: fix r297857, do not modify CPU extension bits under virtual machines
  
  PR:		213155

Modified:
  stable/11/sys/x86/x86/identcpu.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/x86/x86/identcpu.c
==============================================================================
--- stable/11/sys/x86/x86/identcpu.c	Wed Mar 21 15:07:26 2018	(r331302)
+++ stable/11/sys/x86/x86/identcpu.c	Wed Mar 21 15:09:41 2018	(r331303)
@@ -1394,7 +1394,8 @@ fix_cpuid(void)
 	 * See BIOS and Kernel Developer’s Guide (BKDG) for AMD Family 15h
 	 * Models 60h-6Fh Processors, Publication # 50742.
 	 */
-	if (cpu_vendor_id == CPU_VENDOR_AMD && CPUID_TO_FAMILY(cpu_id) == 0x15) {
+	if (vm_guest == VM_GUEST_NO && cpu_vendor_id == CPU_VENDOR_AMD &&
+	    CPUID_TO_FAMILY(cpu_id) == 0x15) {
 		msr = rdmsr(MSR_EXTFEATURES);
 		if ((msr & ((uint64_t)1 << 54)) == 0) {
 			msr |= (uint64_t)1 << 54;



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