summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1994-10-18 15:17:09 +0000
committerdg <dg@FreeBSD.org>1994-10-18 15:17:09 +0000
commit760a1ff3ea7503b1ed234750855bcb35d7b63e4b (patch)
tree310a7647c1c5576f6c23072ee6c11d76c8149cfb /usr.bin
parentf531a14d82ecb050556316cd9a2e744f46e094d4 (diff)
downloadFreeBSD-src-760a1ff3ea7503b1ed234750855bcb35d7b63e4b.zip
FreeBSD-src-760a1ff3ea7503b1ed234750855bcb35d7b63e4b.tar.gz
Made zero-fill stats a bit more clear.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/vmstat/vmstat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c
index 0f53464..d128472 100644
--- a/usr.bin/vmstat/vmstat.c
+++ b/usr.bin/vmstat/vmstat.c
@@ -556,8 +556,8 @@ dosum()
(void)printf("%9u pages examined by the page daemon\n", sum.v_pdpages);
(void)printf("%9u pages reactivated\n", sum.v_reactivated);
(void)printf("%9u intransit blocking page faults\n", sum.v_intrans);
- (void)printf("%9u zero fill pages created\n", sum.v_nzfod);
- (void)printf("%9u zero fill page faults\n", sum.v_zfod);
+ (void)printf("%9u zero fill pages allocated\n", sum.v_nzfod);
+ (void)printf("%9u zero fill pages zeroed\n", sum.v_zfod);
(void)printf("%9u copy-on-write faults\n", sum.v_cow_faults);
(void)printf("%9u total VM faults taken\n", sum.v_vm_faults);
(void)printf("%9u pages freed\n", sum.v_tfree);
OpenPOWER on IntegriCloud