diff options
author | 1996-03-01 07:35:40 +0000 | |
---|---|---|
committer | 1996-03-01 07:35:40 +0000 | |
commit | 4cee73236d37123764de9eaa215b645df37f56ba (patch) | |
tree | 7a2ac401c9d8d803af38ee68c7b04e0a0b24888d | |
parent | From NetBSD: Merge with NetBSD 960217 (diff) | |
download | wireguard-openbsd-4cee73236d37123764de9eaa215b645df37f56ba.tar.xz wireguard-openbsd-4cee73236d37123764de9eaa215b645df37f56ba.zip |
Secondary name cache is per-directory now, not per-process.
-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)); |