svn commit: r257672 - head/sys/arm/include

Ian Lepore ian at FreeBSD.org
Tue Nov 5 04:06:29 UTC 2013


Author: ian
Date: Tue Nov  5 04:06:29 2013
New Revision: 257672
URL: http://svnweb.freebsd.org/changeset/base/257672

Log:
  Make PTE_DEVICE a synonym for PTE_NOCACHE on armv4, to make it easier to
  share the same code on both architectures.

Modified:
  head/sys/arm/include/pmap.h

Modified: head/sys/arm/include/pmap.h
==============================================================================
--- head/sys/arm/include/pmap.h	Tue Nov  5 03:25:10 2013	(r257671)
+++ head/sys/arm/include/pmap.h	Tue Nov  5 04:06:29 2013	(r257672)
@@ -67,6 +67,7 @@
 #else
 #define PTE_NOCACHE	1
 #define PTE_CACHE	2
+#define PTE_DEVICE	PTE_NOCACHE
 #define PTE_PAGETABLE	3
 #endif
 


More information about the svn-src-all mailing list