1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-13 10:02:38 +00:00

Make this compile (submitted by jake), add a missing include.

This commit is contained in:
Thomas Moestl 2002-03-25 04:38:48 +00:00
parent 937b1ef9e2
commit 2ef66f9259
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93119

View File

@ -44,6 +44,7 @@
#include <sys/smp.h> #include <sys/smp.h>
#include <vm/vm.h> #include <vm/vm.h>
#include <vm/vm_extern.h>
#include <vm/vm_param.h> #include <vm/vm_param.h>
#include <vm/vm_kern.h> #include <vm/vm_kern.h>
#include <vm/vm_object.h> #include <vm/vm_object.h>
@ -77,7 +78,7 @@ pv_alloc(void)
pmap_pagedaemon_waken = 1; pmap_pagedaemon_waken = 1;
wakeup(&vm_pages_needed); wakeup(&vm_pages_needed);
} }
return (uma_zalloc(pvzone), M_WAITOK); return (uma_zalloc(pvzone, M_WAITOK));
} }
void * void *