svn commit: r309145 - head/sys/arm64/include

Andrew Turner andrew at FreeBSD.org
Fri Nov 25 16:04:38 UTC 2016


Author: andrew
Date: Fri Nov 25 16:04:36 2016
New Revision: 309145
URL: https://svnweb.freebsd.org/changeset/base/309145

Log:
  Fix the TLB conflict abort value. This should be a no-op as we don't use
  this value in the code.

Modified:
  head/sys/arm64/include/armreg.h

Modified: head/sys/arm64/include/armreg.h
==============================================================================
--- head/sys/arm64/include/armreg.h	Fri Nov 25 14:44:49 2016	(r309144)
+++ head/sys/arm64/include/armreg.h	Fri Nov 25 16:04:36 2016	(r309145)
@@ -115,7 +115,7 @@
 #define	 ISS_DATA_DFSC_ECC_L2	(0x1e << 0)
 #define	 ISS_DATA_DFSC_ECC_L3	(0x1f << 0)
 #define	 ISS_DATA_DFSC_ALIGN	(0x21 << 0)
-#define	 ISS_DATA_DFSC_TLB_CONFLICT (0x28 << 0)
+#define	 ISS_DATA_DFSC_TLB_CONFLICT (0x30 << 0)
 #define	ESR_ELx_IL		(0x01 << 25)
 #define	ESR_ELx_EC_SHIFT	26
 #define	ESR_ELx_EC_MASK		(0x3f << 26)


More information about the svn-src-head mailing list