From 82649768b76104b3d9728c6821ed6c3a9dafe497 Mon Sep 17 00:00:00 2001 From: simonb Date: Tue, 6 Nov 2001 06:31:06 +0000 Subject: [PATCH] Change some unsigned int variables and parameters to plain ints so that all usages of those agree on unsigned vs. signed. --- sys/uvm/uvm_amap.c | 4 ++-- sys/uvm/uvm_page.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/uvm/uvm_amap.c b/sys/uvm/uvm_amap.c index 8e1a023c6a0e..e8a0fd9ffe03 100644 --- a/sys/uvm/uvm_amap.c +++ b/sys/uvm/uvm_amap.c @@ -1,4 +1,4 @@ -/* $NetBSD: uvm_amap.c,v 1.35 2001/09/19 03:41:46 chs Exp $ */ +/* $NetBSD: uvm_amap.c,v 1.36 2001/11/06 06:31:06 simonb Exp $ */ /* * @@ -292,7 +292,7 @@ amap_extend(entry, addsize) #ifdef UVM_AMAP_PPREF int *newppref, *oldppref; #endif - u_int *newsl, *newbck, *oldsl, *oldbck; + int *newsl, *newbck, *oldsl, *oldbck; struct vm_anon **newover, **oldover; int slotadded; UVMHIST_FUNC("amap_extend"); UVMHIST_CALLED(maphist); diff --git a/sys/uvm/uvm_page.c b/sys/uvm/uvm_page.c index 825ee2873c15..9176ba0bd1e4 100644 --- a/sys/uvm/uvm_page.c +++ b/sys/uvm/uvm_page.c @@ -1,4 +1,4 @@ -/* $NetBSD: uvm_page.c,v 1.68 2001/09/28 11:59:55 chs Exp $ */ +/* $NetBSD: uvm_page.c,v 1.69 2001/11/06 06:31:06 simonb Exp $ */ /* * Copyright (c) 1997 Charles D. Cranor and Washington University. @@ -918,7 +918,7 @@ uvm_page_recolor(int newncolors) static __inline struct vm_page * uvm_pagealloc_pgfl(struct pgfreelist *pgfl, int try1, int try2, - unsigned int *trycolorp) + int *trycolorp) { struct pglist *freeq; struct vm_page *pg;