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/mvme68k/mvme68k pull up 1.52 -> 1.53:



details:   https://anonhg.NetBSD.org/src/rev/332c09efe308
branches:  netbsd-1-4
changeset: 468269:332c09efe308
user:      chs <chs%NetBSD.org@localhost>
date:      Fri Apr 16 16:20:16 1999 +0000

description:
pull up 1.52 -> 1.53:
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/mvme68k/mvme68k/machdep.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r c7889a965f47 -r 332c09efe308 sys/arch/mvme68k/mvme68k/machdep.c
--- a/sys/arch/mvme68k/mvme68k/machdep.c        Fri Apr 16 16:19:54 1999 +0000
+++ b/sys/arch/mvme68k/mvme68k/machdep.c        Fri Apr 16 16:20:16 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.52 1999/04/01 00:17:48 thorpej Exp $     */
+/*     $NetBSD: machdep.c,v 1.52.2.1 1999/04/16 16:20:16 chs Exp $     */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -447,7 +447,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("cpu_startup: not enough memory for "
                                      "buffer cache");



Home | Main Index | Thread Index | Old Index