diff options
| author | Thomas Moestl <tmm@FreeBSD.org> | 2002-03-25 04:38:48 +0000 |
|---|---|---|
| committer | Thomas Moestl <tmm@FreeBSD.org> | 2002-03-25 04:38:48 +0000 |
| commit | 2ef66f92592a6a7ed6d86eb07fbd9c97094fe097 (patch) | |
| tree | 88108770cae687ecdac649228688a15cfa5511e1 | |
| parent | 937b1ef9e2c5aa4154135398e150b7664582be62 (diff) | |
Notes
| -rw-r--r-- | sys/sparc64/sparc64/pv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sparc64/sparc64/pv.c b/sys/sparc64/sparc64/pv.c index 990a76b85b62..7420734e36c9 100644 --- a/sys/sparc64/sparc64/pv.c +++ b/sys/sparc64/sparc64/pv.c @@ -44,6 +44,7 @@ #include <sys/smp.h> #include <vm/vm.h> +#include <vm/vm_extern.h> #include <vm/vm_param.h> #include <vm/vm_kern.h> #include <vm/vm_object.h> @@ -77,7 +78,7 @@ pv_alloc(void) pmap_pagedaemon_waken = 1; wakeup(&vm_pages_needed); } - return (uma_zalloc(pvzone), M_WAITOK); + return (uma_zalloc(pvzone, M_WAITOK)); } void * |
