diff options
author | dg <dg@FreeBSD.org> | 1995-02-23 19:08:11 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1995-02-23 19:08:11 +0000 |
commit | 51f954fe2b0c4fc1a04b463781c0e568ba8688e3 (patch) | |
tree | 5a10d9c8b3f39a7bf6382668497beeb22f6e96ab /usr.bin | |
parent | d70484c276885bfdeeecf69a0952f0a2158a5f76 (diff) | |
download | FreeBSD-src-51f954fe2b0c4fc1a04b463781c0e568ba8688e3.zip FreeBSD-src-51f954fe2b0c4fc1a04b463781c0e568ba8688e3.tar.gz |
Changed "mapped pages in use" to "mbuf clusters in use".
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/netstat/mbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/netstat/mbuf.c b/usr.bin/netstat/mbuf.c index 157c4f6..0dfc943 100644 --- a/usr.bin/netstat/mbuf.c +++ b/usr.bin/netstat/mbuf.c @@ -109,7 +109,7 @@ mbpr(mbaddr) printf("\t%u mbufs allocated to <mbuf type %d>\n", mbstat.m_mtypes[i], i); } - printf("%u/%u mapped pages in use\n", + printf("%u/%u mbuf clusters in use\n", mbstat.m_clusters - mbstat.m_clfree, mbstat.m_clusters); totmem = totmbufs * MSIZE + mbstat.m_clusters * MCLBYTES; totfree = mbstat.m_clfree * MCLBYTES; |