diff options
Diffstat (limited to 'sys/uvm/uvm_anon.c')
-rw-r--r-- | sys/uvm/uvm_anon.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/uvm/uvm_anon.c b/sys/uvm/uvm_anon.c index f24114aee9e..9ab59e547a9 100644 --- a/sys/uvm/uvm_anon.c +++ b/sys/uvm/uvm_anon.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_anon.c,v 1.23 2006/07/13 22:51:26 deraadt Exp $ */ +/* $OpenBSD: uvm_anon.c,v 1.24 2006/07/26 23:15:55 mickey Exp $ */ /* $NetBSD: uvm_anon.c,v 1.10 2000/11/25 06:27:59 chs Exp $ */ /* @@ -184,7 +184,7 @@ uvm_anfree(anon) { struct vm_page *pg; UVMHIST_FUNC("uvm_anfree"); UVMHIST_CALLED(maphist); - UVMHIST_LOG(maphist,"(anon=0x%x)", anon, 0,0,0); + UVMHIST_LOG(maphist,"(anon=%p)", anon, 0,0,0); /* * get page @@ -235,7 +235,7 @@ uvm_anfree(anon) /* tell them to dump it when done */ pg->flags |= PG_RELEASED; UVMHIST_LOG(maphist, - " anon 0x%x, page 0x%x: BUSY (released!)", + " anon %p, page %p: BUSY (released!)", anon, pg, 0, 0); return; } @@ -243,7 +243,7 @@ uvm_anfree(anon) uvm_lock_pageq(); /* lock out pagedaemon */ uvm_pagefree(pg); /* bye bye */ uvm_unlock_pageq(); /* free the daemon */ - UVMHIST_LOG(maphist,"anon 0x%x, page 0x%x: freed now!", + UVMHIST_LOG(maphist,"anon %p, page %p: freed now!", anon, pg, 0, 0); } } |