svn commit: r354167 - head/sys/x86/include

Conrad Meyer cem at FreeBSD.org
Wed Oct 30 04:00:45 UTC 2019


Author: cem
Date: Wed Oct 30 04:00:44 2019
New Revision: 354167
URL: https://svnweb.freebsd.org/changeset/base/354167

Log:
  amd64: Fix typo: RDPRU bit is 0x10, not 0x04
  
  Bit 4 != 4, of course.
  
  X-MFC-With:	r354162

Modified:
  head/sys/x86/include/specialreg.h

Modified: head/sys/x86/include/specialreg.h
==============================================================================
--- head/sys/x86/include/specialreg.h	Wed Oct 30 02:33:43 2019	(r354166)
+++ head/sys/x86/include/specialreg.h	Wed Oct 30 04:00:44 2019	(r354167)
@@ -386,7 +386,7 @@
 #define	AMDFEID_CLZERO		0x00000001
 #define	AMDFEID_IRPERF		0x00000002
 #define	AMDFEID_XSAVEERPTR	0x00000004
-#define	AMDFEID_RDPRU		0x00000004
+#define	AMDFEID_RDPRU		0x00000010
 #define	AMDFEID_MCOMMIT		0x00000100
 #define	AMDFEID_WBNOINVD	0x00000200
 #define	AMDFEID_IBPB		0x00001000


More information about the svn-src-head mailing list