diff options
| author | Bosko Milekic <bmilekic@FreeBSD.org> | 2003-05-15 19:05:28 +0000 |
|---|---|---|
| committer | Bosko Milekic <bmilekic@FreeBSD.org> | 2003-05-15 19:05:28 +0000 |
| commit | 11583f6c934a9faba94c437e6d2a5860933c297f (patch) | |
| tree | 38fc4f060cf169e0a53109d86e86a77189e1e251 /usr.bin/netstat | |
| parent | 95f04def4bd6f471d79b8f41ac682247834bd9e6 (diff) | |
Notes
Diffstat (limited to 'usr.bin/netstat')
| -rw-r--r-- | usr.bin/netstat/mbuf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr.bin/netstat/mbuf.c b/usr.bin/netstat/mbuf.c index 7c9b2b3b5832..4da47cdc32a7 100644 --- a/usr.bin/netstat/mbuf.c +++ b/usr.bin/netstat/mbuf.c @@ -253,7 +253,9 @@ mbpr(u_long mbaddr, u_long mbtaddr __unused, u_long nmbcaddr, u_long nmbufaddr, totused[0] = totnum - totfree; printf("\tTotal:\t\t%lu/%lu (in use/in pool)\n", totused[0], totnum); printf("\tMbuf cache high watermark: %d\n", mbuf_hiwm); +#ifdef NOTYET printf("\tMbuf cache low watermark: %d\n", mbuf_lowm); +#endif printf("\tMaximum possible: %d\n", nmbufs); printf("\tAllocated mbuf types:\n"); for (mp = mbtypenames; mp->mt_name; mp++) { @@ -292,7 +294,9 @@ mbpr(u_long mbaddr, u_long mbtaddr __unused, u_long nmbcaddr, u_long nmbufaddr, totused[1] = totnum - totfree; printf("\tTotal:\t\t%lu/%lu (in use/in pool)\n", totused[1], totnum); printf("\tCluster cache high watermark: %d\n", clust_hiwm); +#ifdef NOTYET printf("\tCluster cache low watermark: %d\n", clust_lowm); +#endif printf("\tMaximum possible: %d\n", nmbclusters); printf("\t%lu%% of cluster map consumed\n", ((totspace[1] * 100) / (nmbclusters * MCLBYTES))); |
