diff options
author | phk <phk@FreeBSD.org> | 1995-03-18 08:55:15 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-03-18 08:55:15 +0000 |
commit | 4a0584d64d0d52fa2f589fc0907fd297f433cd19 (patch) | |
tree | 583db91855b53a23ac615c42e4dadfc0c2ddbdaa /usr.bin/systat | |
parent | 33aef88532736a6b3c50637006a81672ced6d65f (diff) | |
download | FreeBSD-src-4a0584d64d0d52fa2f589fc0907fd297f433cd19.zip FreeBSD-src-4a0584d64d0d52fa2f589fc0907fd297f433cd19.tar.gz |
Fix the Name-cache counters. I didn't realign the negative hits.
Diffstat (limited to 'usr.bin/systat')
-rw-r--r-- | usr.bin/systat/vmstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/systat/vmstat.c b/usr.bin/systat/vmstat.c index 00edeb8..f06c837 100644 --- a/usr.bin/systat/vmstat.c +++ b/usr.bin/systat/vmstat.c @@ -405,7 +405,7 @@ showkre() } putint(inttotal, INTSROW + 1, INTSCOL, 8); Z(ncs_goodhits); Z(ncs_badhits); Z(ncs_miss); - Z(ncs_long); Z(ncs_pass2); Z(ncs_2passes); + Z(ncs_long); Z(ncs_pass2); Z(ncs_2passes); Z(ncs_neghits); s.nchcount = nchtotal.ncs_goodhits + nchtotal.ncs_badhits + nchtotal.ncs_miss + nchtotal.ncs_long + nchtotal.ncs_neghits; if (state == TIME) |