svn commit: r364213 - stable/12/sys/compat/linprocfs

Edward Tomasz Napierala trasz at FreeBSD.org
Thu Aug 13 19:00:56 UTC 2020


Author: trasz
Date: Thu Aug 13 19:00:55 2020
New Revision: 364213
URL: https://svnweb.freebsd.org/changeset/base/364213

Log:
  MFC r363301:
  
  Fix two typos in flag names in /proc/cpuinfo.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/12/sys/compat/linprocfs/linprocfs.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/compat/linprocfs/linprocfs.c
==============================================================================
--- stable/12/sys/compat/linprocfs/linprocfs.c	Thu Aug 13 18:59:35 2020	(r364212)
+++ stable/12/sys/compat/linprocfs/linprocfs.c	Thu Aug 13 19:00:55 2020	(r364213)
@@ -235,10 +235,10 @@ linprocfs_docpuinfo(PFS_FILL_ARGS)
 	};
 
 	static char *cpu_feature2_names[] = {
-		/*  0 */ "pni", "pclmulqdq", "dtes3", "monitor",
+		/*  0 */ "pni", "pclmulqdq", "dtes64", "monitor",
 		/*  4 */ "ds_cpl", "vmx", "smx", "est",
 		/*  8 */ "tm2", "ssse3", "cid", "sdbg",
-		/* 12 */ "fma", "cx16", "xptr", "pdcm",
+		/* 12 */ "fma", "cx16", "xtpr", "pdcm",
 		/* 16 */ "", "pcid", "dca", "sse4_1",
 		/* 20 */ "sse4_2", "x2apic", "movbe", "popcnt",
 		/* 24 */ "tsc_deadline_timer", "aes", "xsave", "",


More information about the svn-src-stable-12 mailing list