diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-01 07:35:41 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-01 07:35:41 +0000 |
commit | ae388df50333b9d78e691a8bb6cfadd8f3539969 (patch) | |
tree | a2a478fc690b9f3b3e91126a89668ed0d94c5158 /usr.bin/vmstat/vmstat.c | |
parent | 04d7e605aa2117d17ae47d856570efbbe6de01c2 (diff) |
Secondary name cache is per-directory now, not per-process.
Diffstat (limited to 'usr.bin/vmstat/vmstat.c')
-rw-r--r-- | usr.bin/vmstat/vmstat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index 2ad30c48afd..e38fa9763fc 100644 --- a/usr.bin/vmstat/vmstat.c +++ b/usr.bin/vmstat/vmstat.c @@ -1,4 +1,5 @@ /* $NetBSD: vmstat.c,v 1.27 1995/10/10 01:17:35 cgd Exp $ */ +/* $OpenBSD: vmstat.c,v 1.5 1996/03/01 07:35:40 tholo Exp $ */ /* * Copyright (c) 1980, 1986, 1991, 1993 @@ -612,7 +613,7 @@ dosum() nchstats.ncs_miss + nchstats.ncs_long; (void)printf("%9ld total name lookups\n", nchtotal); (void)printf( - "%9s cache hits (%d%% pos + %d%% neg) system %d%% per-process\n", + "%9s cache hits (%d%% pos + %d%% neg) system %d%% per-directory\n", "", PCT(nchstats.ncs_goodhits, nchtotal), PCT(nchstats.ncs_neghits, nchtotal), PCT(nchstats.ncs_pass2, nchtotal)); |