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

Warner Losh imp at FreeBSD.org
Sat Feb 5 03:36:35 UTC 2011


Author: imp
Date: Sat Feb  5 03:36:34 2011
New Revision: 218311
URL: http://svn.freebsd.org/changeset/base/218311

Log:
  phys_addr is a PA not a VA so declare it as a vm_paddr_t not a vm_offset_t.

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

Modified: head/sys/arm/include/pmap.h
==============================================================================
--- head/sys/arm/include/pmap.h	Sat Feb  5 03:30:29 2011	(r218310)
+++ head/sys/arm/include/pmap.h	Sat Feb  5 03:36:34 2011	(r218311)
@@ -204,7 +204,7 @@ vtopte(vm_offset_t va)
 	return (ptep);
 }
 
-extern vm_offset_t phys_avail[];
+extern vm_paddr_t phys_avail[];
 extern vm_offset_t virtual_avail;
 extern vm_offset_t virtual_end;
 


More information about the svn-src-head mailing list