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; _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"