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/sparc64/sparc64 pull up 1.31 -> 1.32:



details:   https://anonhg.NetBSD.org/src/rev/96cea496706e
branches:  netbsd-1-4
changeset: 468279:96cea496706e
user:      chs <chs%NetBSD.org@localhost>
date:      Fri Apr 16 16:24:41 1999 +0000

description:
pull up 1.31 -> 1.32:
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/sparc64/sparc64/pmap.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r f34ca1e395d3 -r 96cea496706e sys/arch/sparc64/sparc64/pmap.c
--- a/sys/arch/sparc64/sparc64/pmap.c   Fri Apr 16 16:24:16 1999 +0000
+++ b/sys/arch/sparc64/sparc64/pmap.c   Fri Apr 16 16:24:41 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.31 1999/03/28 19:01:03 eeh Exp $    */
+/*     $NetBSD: pmap.c,v 1.31.2.1 1999/04/16 16:24:41 chs Exp $        */
 /* #define NO_VCACHE */ /* Don't forget the locked TLB in dostart */
 #define HWREF
 /* #define BOOT_DEBUG */
@@ -3343,7 +3343,7 @@
 vm_page_alloc1()
 {
 #if 1
-       return uvm_pagealloc(NULL,0,NULL);
+       return uvm_pagealloc(NULL, 0, NULL, UVM_PGA_USERESERVE);
 #else
        register vm_page_t      mem;
        int             spl;



Home | Main Index | Thread Index | Old Index