Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/sys/arch/bebox/bebox pull up 1.33 -> 1.34:



details:   https://anonhg.NetBSD.org/src/rev/60f6036007ac
branches:  netbsd-1-4
changeset: 468262:60f6036007ac
user:      chs <chs%NetBSD.org@localhost>
date:      Fri Apr 16 16:16:36 1999 +0000

description:
pull up 1.33 -> 1.34:
add a `flags' argument to uvm_pagealloc_strat().
define a flag UVM_PGA_USERESERVE to allow non-kernel object
allocations to use pages from the reserve.
use the new flag for allocations in pmap modules.

diffstat:

 sys/arch/bebox/bebox/machdep.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 07d3d37d2ea8 -r 60f6036007ac sys/arch/bebox/bebox/machdep.c
--- a/sys/arch/bebox/bebox/machdep.c    Fri Apr 16 16:16:05 1999 +0000
+++ b/sys/arch/bebox/bebox/machdep.c    Fri Apr 16 16:16:36 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.33 1999/04/01 00:17:46 thorpej Exp $     */
+/*     $NetBSD: machdep.c,v 1.33.2.1 1999/04/16 16:16:36 chs Exp $     */
 
 /*
  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -515,7 +515,7 @@
                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("startup: not enough memory for "
                                        "buffer cache");



Home | Main Index | Thread Index | Old Index