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.
This commit is contained in:
Alan Cox 2010-12-01 05:52:27 +00:00
parent ffdffd49b0
commit b9895f9add
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=216094

View file

@ -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;