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.19 -> 1.20:
details: https://anonhg.NetBSD.org/src/rev/7011c7e1c454
branches: netbsd-1-4
changeset: 468284:7011c7e1c454
user: chs <chs%NetBSD.org@localhost>
date: Fri Apr 16 16:26:48 1999 +0000
description:
pull up 1.19 -> 1.20:
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_amap.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r c6f8a2b35a60 -r 7011c7e1c454 sys/uvm/uvm_amap.c
--- a/sys/uvm/uvm_amap.c Fri Apr 16 16:26:27 1999 +0000
+++ b/sys/uvm/uvm_amap.c Fri Apr 16 16:26:48 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_amap.c,v 1.19 1999/01/28 14:46:27 chuck Exp $ */
+/* $NetBSD: uvm_amap.c,v 1.19.2.1 1999/04/16 16:26:48 chs Exp $ */
/*
*
@@ -796,7 +796,7 @@
*/
nanon = uvm_analloc();
if (nanon)
- npg = uvm_pagealloc(NULL, 0, nanon);
+ npg = uvm_pagealloc(NULL, 0, nanon, 0);
else
npg = NULL; /* XXX: quiet gcc warning */
Home |
Main Index |
Thread Index |
Old Index