diff options
author | Pedro Martelletto <pedro@cvs.openbsd.org> | 2005-09-30 02:37:07 +0000 |
---|---|---|
committer | Pedro Martelletto <pedro@cvs.openbsd.org> | 2005-09-30 02:37:07 +0000 |
commit | 1cd4a1d963d7fedab0e8f5669e1b96f2263d707e (patch) | |
tree | 36255608a2ec0cad4ec8bceb767cbf9392927075 | |
parent | 5c3a6dc9d8d63545177ea8371fb65a7690fed926 (diff) |
Make ddb's 'show uvmexp' print information about kmapent, okay deraadt@
-rw-r--r-- | sys/uvm/uvm_stat.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/uvm/uvm_stat.c b/sys/uvm/uvm_stat.c index 4af2f3b6c72..3ef40a21635 100644 --- a/sys/uvm/uvm_stat.c +++ b/sys/uvm/uvm_stat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_stat.c,v 1.15 2004/04/28 02:20:58 markus Exp $ */ +/* $OpenBSD: uvm_stat.c,v 1.16 2005/09/30 02:37:06 pedro Exp $ */ /* $NetBSD: uvm_stat.c,v 1.18 2001/03/09 01:02:13 chs Exp $ */ /* @@ -223,8 +223,9 @@ uvmexp_print(int (*pr)(const char *, ...)) uvmexp.wiredmax); (*pr)(" faults=%d, traps=%d, intrs=%d, ctxswitch=%d\n", uvmexp.faults, uvmexp.traps, uvmexp.intrs, uvmexp.swtch); - (*pr)(" softint=%d, syscalls=%d, swapins=%d, swapouts=%d\n", - uvmexp.softs, uvmexp.syscalls, uvmexp.swapins, uvmexp.swapouts); + (*pr)(" softint=%d, syscalls=%d, swapins=%d, swapouts=%d, " + "kmapent=%d\n", uvmexp.softs, uvmexp.syscalls, uvmexp.swapins, + uvmexp.swapouts, uvmexp.kmapent); (*pr)(" fault counts:\n"); (*pr)(" noram=%d, noanon=%d, pgwait=%d, pgrele=%d\n", |