svn commit: r216094 - head/sys/ia64/include
Alan Cox
alc at FreeBSD.org
Wed Dec 1 05:52:27 UTC 2010
Author: alc
Date: Wed Dec 1 05:52:27 2010
New Revision: 216094
URL: http://svn.freebsd.org/changeset/base/216094
Log:
phys_avail[] is correctly defined as an array of vm_paddr_t's in
machdep.c. Use that same type, and not vm_offset_t, in this include file.
Modified:
head/sys/ia64/include/pmap.h
Modified: head/sys/ia64/include/pmap.h
==============================================================================
--- head/sys/ia64/include/pmap.h Wed Dec 1 05:39:02 2010 (r216093)
+++ head/sys/ia64/include/pmap.h Wed Dec 1 05:52:27 2010 (r216094)
@@ -112,7 +112,7 @@ typedef struct pv_entry {
#ifdef _KERNEL
-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-all
mailing list