diff options
author | rwatson <rwatson@FreeBSD.org> | 2006-02-11 17:18:36 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2006-02-11 17:18:36 +0000 |
commit | 28119d6012d5d852f4dde03bb3d4713576f475e2 (patch) | |
tree | 206f66c042ee6c2bfe5a7686e848351fe78f8dc0 /usr.bin | |
parent | 244cb93d720641ee7ab0d3a5168125408d92fd03 (diff) | |
download | FreeBSD-src-28119d6012d5d852f4dde03bb3d4713576f475e2.zip FreeBSD-src-28119d6012d5d852f4dde03bb3d4713576f475e2.tar.gz |
Un-#if 0 the printing of allocation failure counts for mbufs, clusters,
and packets in netstat -m.
MFC after: 3 days
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/netstat/mbuf.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/usr.bin/netstat/mbuf.c b/usr.bin/netstat/mbuf.c index 825b39e..c58b21a 100644 --- a/usr.bin/netstat/mbuf.c +++ b/usr.bin/netstat/mbuf.c @@ -218,11 +218,9 @@ mbpr(void *kvmd, u_long mbaddr) "(current/cache/total)\n", bytes_inuse / 1024, bytes_incache / 1024, bytes_total / 1024); -#if 0 printf("%llu/%llu/%llu requests for mbufs denied (mbufs/clusters/" "mbuf+clusters)\n", mbuf_failures, cluster_failures, packet_failures); -#endif if (live) { mlen = sizeof(mbstat); |