svn commit: r323449 - head/sys/x86/x86

Conrad Meyer cem at FreeBSD.org
Mon Sep 11 18:11:54 UTC 2017


Author: cem
Date: Mon Sep 11 18:11:53 2017
New Revision: 323449
URL: https://svnweb.freebsd.org/changeset/base/323449

Log:
  Decode new AMD SVM feature bits on family 17h
  
  Sponsored by:	Dell EMC Isilon

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

Modified: head/sys/x86/x86/identcpu.c
==============================================================================
--- head/sys/x86/x86/identcpu.c	Mon Sep 11 17:39:21 2017	(r323448)
+++ head/sys/x86/x86/identcpu.c	Mon Sep 11 18:11:53 2017	(r323449)
@@ -2152,9 +2152,27 @@ print_svm_info(void)
 	       "\011<b8>"
 	       "\012<b9>"
 	       "\013PauseFilter"	/* PAUSE intercept filter */    
-	       "\014<b11>"
+	       "\014EncryptedMcodePatch"
 	       "\015PauseFilterThreshold" /* PAUSE filter threshold */
 	       "\016AVIC"		/* virtual interrupt controller */
+	       "\017<b14>"
+	       "\020V_VMSAVE_VMLOAD"
+	       "\021vGIF"
+	       "\022<b17>"
+	       "\023<b18>"
+	       "\024<b19>"
+	       "\025<b20>"
+	       "\026<b21>"
+	       "\027<b22>"
+	       "\030<b23>"
+	       "\031<b24>"
+	       "\032<b25>"
+	       "\033<b26>"
+	       "\034<b27>"
+	       "\035<b28>"
+	       "\036<b29>"
+	       "\037<b30>"
+	       "\040<b31>"
                 );
 	printf("\nRevision=%d, ASIDs=%d", regs[0] & 0xff, regs[1]);
 }


More information about the svn-src-all mailing list