Add missing align argument to uvm_map() which was missed by thorpej during

original commit.
This commit is contained in:
wdk 2000-09-16 09:18:01 +00:00
parent da962aaad5
commit 0b445f157e
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.9 2000/09/16 08:34:26 wdk Exp $ */
/* $NetBSD: machdep.c,v 1.10 2000/09/16 09:18:01 wdk Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -43,7 +43,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.9 2000/09/16 08:34:26 wdk Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.10 2000/09/16 09:18:01 wdk Exp $");
/* from: Utah Hdr: machdep.c 1.63 91/04/24 */
@ -417,7 +417,7 @@ cpu_startup()
*/
size = MAXBSIZE * nbuf;
if (uvm_map(kernel_map, (vaddr_t *)&buffers, round_page(size),
NULL, UVM_UNKNOWN_OFFSET,
NULL, UVM_UNKNOWN_OFFSET, 0,
UVM_MAPFLAG(UVM_PROT_NONE, UVM_PROT_NONE, UVM_INH_NONE,
UVM_ADV_NORMAL, 0)) != KERN_SUCCESS)
panic("startup: cannot allocate VM for buffers");