Source-Changes-HG archive

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

[src/netbsd-1-4]: src/sys/uvm pull up 1.22 -> 1.23:



details:   https://anonhg.NetBSD.org/src/rev/a254560a5cae
branches:  netbsd-1-4
changeset: 468291:a254560a5cae
user:      chs <chs%NetBSD.org@localhost>
date:      Fri Apr 16 16:29:56 1999 +0000

description:
pull up 1.22 -> 1.23:
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/uvm/uvm_vnode.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r cc17285c881b -r a254560a5cae sys/uvm/uvm_vnode.c
--- a/sys/uvm/uvm_vnode.c       Fri Apr 16 16:29:34 1999 +0000
+++ b/sys/uvm/uvm_vnode.c       Fri Apr 16 16:29:56 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_vnode.c,v 1.22 1999/03/25 18:48:56 mrg Exp $       */
+/*     $NetBSD: uvm_vnode.c,v 1.22.2.1 1999/04/16 16:29:56 chs Exp $   */
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -1455,7 +1455,7 @@
                        if (ptmp == NULL) {
 
                                ptmp = uvm_pagealloc(uobj, current_offset,
-                                   NULL);      /* alloc */
+                                   NULL, 0);
 
                                /* out of RAM? */
                                if (ptmp == NULL) {



Home | Main Index | Thread Index | Old Index