diff options
| author | Mike Silbersack <silby@FreeBSD.org> | 2003-12-28 08:59:41 +0000 |
|---|---|---|
| committer | Mike Silbersack <silby@FreeBSD.org> | 2003-12-28 08:59:41 +0000 |
| commit | 6171a2800d1ad44936488968d1e4a12c82565119 (patch) | |
| tree | 64ab082bbfbc322908b9d391a071961c3cf38810 | |
| parent | ddeb5b242e0c6d90043f2452f7cd45977359d0e7 (diff) | |
Notes
| -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 3c0fda786a53..8fb657c0f10c 100644 --- a/usr.bin/netstat/mbuf.c +++ b/usr.bin/netstat/mbuf.c @@ -351,6 +351,10 @@ mbpr(u_long mbaddr, u_long mbtaddr __unused, u_long nmbcaddr, u_long nmbufaddr, totspace[1] / 1024); printf("%lu requests for memory denied\n", mbstat->m_drops); printf("%lu requests for memory delayed\n", mbstat->m_wait); + printf("%lu requests for sfbufs denied\n", mbstat->sf_allocfail); + printf("%lu requests for sfbufs delayed\n", mbstat->sf_allocwait); + printf("%lu requests for I/O initiated by sendfile\n", + mbstat->sf_iocnt); printf("%lu calls to protocol drain routines\n", mbstat->m_drain); err: |
