Symbol: mbstat
sys/kern/kern_sysctl.c
632
struct mbstat mbs;
sys/kern/kern_sysctl.c
636
counters_read(mbstat, counters, mbs_ncounters, NULL);
sys/kern/uipc_mbuf.c
102
struct cpumem *mbstat = COUNTERS_BOOT_INITIALIZER(mbstat_boot);
sys/kern/uipc_mbuf.c
219
mbstat = counters_alloc_ncpus(mbstat, mbs_ncounters);
sys/kern/uipc_mbuf.c
455
counters_dec(mbstat, m->m_type);
sys/sys/mbuf.h
424
extern struct cpumem *mbstat; /* mbuf statistics counter */
sys/sys/mbuf.h
482
counters_inc(mbstat, c);
usr.bin/netstat/mbuf.c
115
size = sizeof(mbstat);
usr.bin/netstat/mbuf.c
117
if (sysctl(mib, 2, &mbstat, &size, NULL, 0) == -1) {
usr.bin/netstat/mbuf.c
170
totmbufs += (unsigned int)mbstat.m_mtypes[mp->mt_type];
usr.bin/netstat/mbuf.c
173
if (mbstat.m_mtypes[mp->mt_type]) {
usr.bin/netstat/mbuf.c
176
mbstat.m_mtypes[mp->mt_type],
usr.bin/netstat/mbuf.c
177
plural(mbstat.m_mtypes[mp->mt_type]),
usr.bin/netstat/mbuf.c
182
if (!seen[i] && mbstat.m_mtypes[i]) {
usr.bin/netstat/mbuf.c
184
mbstat.m_mtypes[i],
usr.bin/netstat/mbuf.c
185
plural(mbstat.m_mtypes[i]), i);
usr.bin/netstat/mbuf.c
205
printf("%lu requests for memory denied\n", mbstat.m_drops);
usr.bin/netstat/mbuf.c
206
printf("%lu requests for memory delayed\n", mbstat.m_wait);
usr.bin/netstat/mbuf.c
207
printf("%lu calls to protocol drain routines\n", mbstat.m_drain);
usr.bin/netstat/mbuf.c
208
printf("%lu defrag mbuf allocation\n", mbstat.m_defrag_alloc);
usr.bin/netstat/mbuf.c
209
printf("%lu prepend mbuf allocation\n", mbstat.m_prepend_alloc);
usr.bin/netstat/mbuf.c
210
printf("%lu pullup mbuf allocation\n", mbstat.m_pullup_alloc);
usr.bin/netstat/mbuf.c
211
printf("%lu pullup memory copy\n", mbstat.m_pullup_copy);
usr.bin/netstat/mbuf.c
212
printf("%lu pulldown mbuf allocation\n", mbstat.m_pulldown_alloc);
usr.bin/netstat/mbuf.c
213
printf("%lu pulldown memory copy\n", mbstat.m_pulldown_copy);
usr.bin/netstat/mbuf.c
52
struct mbstat mbstat;
usr.bin/netstat/mbuf.c
81
int nmbtypes = sizeof(mbstat.m_mtypes) / sizeof(u_long);