diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 1999-08-24 09:54:56 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 1999-08-24 09:54:56 +0000 |
commit | e194e08799e4aa83be8b1f15a3c2098a7b6738cd (patch) | |
tree | 41123b7be09ab00f97025a86be67aaab03241e47 /sys | |
parent | 878161e4e2f2feaa606cf8c6c46b540eb4f2e627 (diff) |
Opps. forgot this in the last uvm update
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc/sparc/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/sparc/machdep.c b/sys/arch/sparc/sparc/machdep.c index e2c5125dc54..0264cba6162 100644 --- a/sys/arch/sparc/sparc/machdep.c +++ b/sys/arch/sparc/sparc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.38 1999/07/23 19:11:28 jason Exp $ */ +/* $OpenBSD: machdep.c,v 1.39 1999/08/24 09:54:55 art Exp $ */ /* $NetBSD: machdep.c,v 1.85 1997/09/12 08:55:02 pk Exp $ */ /* @@ -245,7 +245,7 @@ cpu_startup() curbufsize = CLBYTES * ((i < residual) ? (base+1) : base); while (curbufsize) { - pg = uvm_pagealloc(NULL, 0, NULL); + pg = uvm_pagealloc(NULL, 0, NULL, 0); if (pg == NULL) panic("cpu_startup: " "not enough RAM for buffer cache"); |