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/pc532/pc532 pull up 1.10 -> 1.11:
details: https://anonhg.NetBSD.org/src/rev/c3ce6bde27ee
branches: netbsd-1-4
changeset: 468274:c3ce6bde27ee
user: chs <chs%NetBSD.org@localhost>
date: Fri Apr 16 16:22:38 1999 +0000
description:
pull up 1.10 -> 1.11:
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/pc532/pc532/pmap.new.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 79af989c5950 -r c3ce6bde27ee sys/arch/pc532/pc532/pmap.new.c
--- a/sys/arch/pc532/pc532/pmap.new.c Fri Apr 16 16:22:15 1999 +0000
+++ b/sys/arch/pc532/pc532/pmap.new.c Fri Apr 16 16:22:38 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.new.c,v 1.10 1999/03/26 23:41:33 mycroft Exp $ */
+/* $NetBSD: pmap.new.c,v 1.10.2.1 1999/04/16 16:22:38 chs Exp $ */
/*
*
@@ -1074,7 +1074,7 @@
}
pg = uvm_pagealloc(uvmexp.kmem_object, pv_cachedva - vm_map_min(kernel_map),
- NULL);
+ NULL, UVM_PGA_USERESERVE);
if (pg)
pg->flags &= ~PG_BUSY; /* never busy */
Home |
Main Index |
Thread Index |
Old Index