Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Mar 2012 16:48:37 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r233670 - head/sys/mips/include
Message-ID:  <201203291648.q2TGmbEh001904@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Thu Mar 29 16:48:36 2012
New Revision: 233670
URL: http://svn.freebsd.org/changeset/base/233670

Log:
  Use VM_MEMATTR_UNCACHEABLE for the constant for UC memory rather than
  VM_MEMATTR_UNCACHED.  VM_MEMATTR_UNCACHEABLE is the constant other
  platforms use.
  
  MFC after:	2 weeks

Modified:
  head/sys/mips/include/vm.h

Modified: head/sys/mips/include/vm.h
==============================================================================
--- head/sys/mips/include/vm.h	Thu Mar 29 16:20:20 2012	(r233669)
+++ head/sys/mips/include/vm.h	Thu Mar 29 16:48:36 2012	(r233670)
@@ -32,7 +32,7 @@
 #include <machine/pte.h>
 
 /* Memory attributes. */
-#define	VM_MEMATTR_UNCACHED	((vm_memattr_t)PTE_C_UNCACHED)
+#define	VM_MEMATTR_UNCACHEABLE	((vm_memattr_t)PTE_C_UNCACHED)
 #define	VM_MEMATTR_DEFAULT	((vm_memattr_t)PTE_C_CACHE)
 
 #endif /* !_MACHINE_VM_H_ */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201203291648.q2TGmbEh001904>