summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2009-06-14 02:53:10 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2009-06-14 02:53:10 +0000
commit000d711134f5ad425653ff4dccc81a69197e51e4 (patch)
tree7ef2909af95dc2a0aa9f71b5e2f0766a5cb69e92 /sys
parent0a2d2dcfd5d2ea4348c898ce15f1bb1b03ee2c7c (diff)
Noone else ever saw this diff except oga and ariane, so that is an
utter failure of process.
Diffstat (limited to 'sys')
-rw-r--r--sys/uvm/uvm_map.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/uvm/uvm_map.c b/sys/uvm/uvm_map.c
index ed2484a4555..dc511476be3 100644
--- a/sys/uvm/uvm_map.c
+++ b/sys/uvm/uvm_map.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvm_map.c,v 1.114 2009/06/09 20:07:59 oga Exp $ */
+/* $OpenBSD: uvm_map.c,v 1.115 2009/06/14 02:53:09 deraadt Exp $ */
/* $NetBSD: uvm_map.c,v 1.86 2000/11/27 08:40:03 chs Exp $ */
/*
@@ -3834,8 +3834,10 @@ static const char page_flagbits[] =
"\31PMAP1\32PMAP2\33PMAP3";
void
-uvm_page_printit(struct vm_page *pg, boolean_t full,
- int (*pr)(const char *, ...))
+uvm_page_printit(pg, full, pr)
+ struct vm_page *pg;
+ boolean_t full;
+ int (*pr)(const char *, ...);
{
struct vm_page *tpg;
struct uvm_object *uobj;
@@ -3872,7 +3874,7 @@ uvm_page_printit(struct vm_page *pg, boolean_t full,
uobj = pg->uobject;
if (uobj) {
(*pr)(" checking object list\n");
- RB_FOREACH(tpg, uobj_pgs, &uobj->memt) {
+ RB_FOREACH(pg, uobj_pgs, &uobj->memt) {
if (tpg == pg) {
break;
}