diff options
author | adrian <adrian@FreeBSD.org> | 2009-09-01 03:44:25 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2009-09-01 03:44:25 +0000 |
commit | 5d7c160965d9cd7668db5648bd210203750c3d29 (patch) | |
tree | 88ad0a802f0302873fc6f8f32188b98b31c80d26 | |
parent | b1e7b6996ce5f2e65957c81708131b84420e1366 (diff) | |
download | FreeBSD-src-5d7c160965d9cd7668db5648bd210203750c3d29.zip FreeBSD-src-5d7c160965d9cd7668db5648bd210203750c3d29.tar.gz |
Fix broken build.
-rw-r--r-- | sys/i386/xen/pmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/i386/xen/pmap.c b/sys/i386/xen/pmap.c index 52b41e9..22692d0 100644 --- a/sys/i386/xen/pmap.c +++ b/sys/i386/xen/pmap.c @@ -311,6 +311,7 @@ static vm_offset_t pmap_kmem_choose(vm_offset_t addr); static boolean_t pmap_is_prefaultable_locked(pmap_t pmap, vm_offset_t addr); static void pmap_kenter_attr(vm_offset_t va, vm_paddr_t pa, int mode); +static __inline void pagezero(void *page); #if defined(PAE) && !defined(XEN) static void *pmap_pdpt_allocf(uma_zone_t zone, int bytes, u_int8_t *flags, int wait); |