165475bc8SDavid E. O'Brien /*-
2*df57947fSPedro F. Giffuni * SPDX-License-Identifier: BSD-4-Clause
3*df57947fSPedro F. Giffuni *
49b50d902SRodney W. Grimes * Copyright (c) 1983, 1988, 1993
5c8e6b689SRobert Watson * The Regents of the University of California.
6c8e6b689SRobert Watson * Copyright (c) 2005 Robert N. M. Watson
7c8e6b689SRobert Watson * All rights reserved.
89b50d902SRodney W. Grimes *
99b50d902SRodney W. Grimes * Redistribution and use in source and binary forms, with or without
109b50d902SRodney W. Grimes * modification, are permitted provided that the following conditions
119b50d902SRodney W. Grimes * are met:
129b50d902SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright
139b50d902SRodney W. Grimes * notice, this list of conditions and the following disclaimer.
149b50d902SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright
159b50d902SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the
169b50d902SRodney W. Grimes * documentation and/or other materials provided with the distribution.
179b50d902SRodney W. Grimes * 3. All advertising materials mentioning features or use of this software
189b50d902SRodney W. Grimes * must display the following acknowledgement:
199b50d902SRodney W. Grimes * This product includes software developed by the University of
209b50d902SRodney W. Grimes * California, Berkeley and its contributors.
219b50d902SRodney W. Grimes * 4. Neither the name of the University nor the names of its contributors
229b50d902SRodney W. Grimes * may be used to endorse or promote products derived from this software
239b50d902SRodney W. Grimes * without specific prior written permission.
249b50d902SRodney W. Grimes *
259b50d902SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
269b50d902SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
279b50d902SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
289b50d902SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
299b50d902SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
309b50d902SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
319b50d902SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
329b50d902SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
339b50d902SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
349b50d902SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
359b50d902SRodney W. Grimes * SUCH DAMAGE.
369b50d902SRodney W. Grimes */
379b50d902SRodney W. Grimes
389b50d902SRodney W. Grimes #include <sys/param.h>
3913ae2e2dSGarrett Wollman #include <sys/mbuf.h>
409b50d902SRodney W. Grimes #include <sys/protosw.h>
4105d1f5bcSAndrey V. Elsukov #include <sys/sf_buf.h>
429b50d902SRodney W. Grimes #include <sys/socket.h>
43feda1a43SJohn Baldwin #include <sys/socketvar.h>
4413ae2e2dSGarrett Wollman #include <sys/sysctl.h>
459b50d902SRodney W. Grimes
46d4426f28SRobert Watson #include <kvm.h>
47c8e6b689SRobert Watson #include <memstat.h>
487b95a1ebSYaroslav Tykhiy #include <stdint.h>
499b50d902SRodney W. Grimes #include <stdio.h>
50821df508SXin LI #include <stdlib.h>
51ade9ccfeSMarcel Moolenaar #include <stdbool.h>
52821df508SXin LI #include <string.h>
53ade9ccfeSMarcel Moolenaar #include <libxo/xo.h>
549b50d902SRodney W. Grimes #include "netstat.h"
559b50d902SRodney W. Grimes
569b50d902SRodney W. Grimes /*
57d4426f28SRobert Watson * Print mbuf statistics.
589b50d902SRodney W. Grimes */
599b50d902SRodney W. Grimes void
mbpr(void * kvmd,u_long mbaddr)60d4426f28SRobert Watson mbpr(void *kvmd, u_long mbaddr)
61c8e6b689SRobert Watson {
62c8e6b689SRobert Watson struct memory_type_list *mtlp;
63c8e6b689SRobert Watson struct memory_type *mtp;
647b95a1ebSYaroslav Tykhiy uintmax_t mbuf_count, mbuf_bytes, mbuf_free, mbuf_failures, mbuf_size;
65504a74faSAlfred Perlstein uintmax_t mbuf_sleeps;
66d35acb50SGleb Smirnoff uintmax_t cluster_count, cluster_limit, cluster_free;
67504a74faSAlfred Perlstein uintmax_t cluster_failures, cluster_size, cluster_sleeps;
687b95a1ebSYaroslav Tykhiy uintmax_t packet_count, packet_bytes, packet_free, packet_failures;
69504a74faSAlfred Perlstein uintmax_t packet_sleeps;
70d35acb50SGleb Smirnoff uintmax_t tag_bytes;
71d35acb50SGleb Smirnoff uintmax_t jumbop_count, jumbop_limit, jumbop_free;
72504a74faSAlfred Perlstein uintmax_t jumbop_failures, jumbop_sleeps, jumbop_size;
73d35acb50SGleb Smirnoff uintmax_t jumbo9_count, jumbo9_limit, jumbo9_free;
74504a74faSAlfred Perlstein uintmax_t jumbo9_failures, jumbo9_sleeps, jumbo9_size;
75d35acb50SGleb Smirnoff uintmax_t jumbo16_count, jumbo16_limit, jumbo16_free;
76504a74faSAlfred Perlstein uintmax_t jumbo16_failures, jumbo16_sleeps, jumbo16_size;
777b95a1ebSYaroslav Tykhiy uintmax_t bytes_inuse, bytes_incache, bytes_total;
78c8e6b689SRobert Watson int nsfbufs, nsfbufspeak, nsfbufsused;
7905d1f5bcSAndrey V. Elsukov struct sfstat sfstat;
80c8e6b689SRobert Watson size_t mlen;
81feda1a43SJohn Baldwin int error;
82c8e6b689SRobert Watson
83c8e6b689SRobert Watson mtlp = memstat_mtl_alloc();
84c8e6b689SRobert Watson if (mtlp == NULL) {
85ade9ccfeSMarcel Moolenaar xo_warn("memstat_mtl_alloc");
86c8e6b689SRobert Watson return;
87c8e6b689SRobert Watson }
88c8e6b689SRobert Watson
89c8e6b689SRobert Watson /*
90d4426f28SRobert Watson * Use memstat_*_all() because some mbuf-related memory is in uma(9),
91d4426f28SRobert Watson * and some malloc(9).
92c8e6b689SRobert Watson */
93d4426f28SRobert Watson if (live) {
94c8e6b689SRobert Watson if (memstat_sysctl_all(mtlp, 0) < 0) {
95ade9ccfeSMarcel Moolenaar xo_warnx("memstat_sysctl_all: %s",
964f7ac59bSRobert Watson memstat_strerror(memstat_mtl_geterror(mtlp)));
97c8e6b689SRobert Watson goto out;
98c8e6b689SRobert Watson }
99d4426f28SRobert Watson } else {
100d4426f28SRobert Watson if (memstat_kvm_all(mtlp, kvmd) < 0) {
101d4426f28SRobert Watson error = memstat_mtl_geterror(mtlp);
102d4426f28SRobert Watson if (error == MEMSTAT_ERROR_KVM)
103ade9ccfeSMarcel Moolenaar xo_warnx("memstat_kvm_all: %s",
104d4426f28SRobert Watson kvm_geterr(kvmd));
105d4426f28SRobert Watson else
106ade9ccfeSMarcel Moolenaar xo_warnx("memstat_kvm_all: %s",
107d4426f28SRobert Watson memstat_strerror(error));
108d4426f28SRobert Watson goto out;
109d4426f28SRobert Watson }
110d4426f28SRobert Watson }
111c8e6b689SRobert Watson
112c8e6b689SRobert Watson mtp = memstat_mtl_find(mtlp, ALLOCATOR_UMA, MBUF_MEM_NAME);
113c8e6b689SRobert Watson if (mtp == NULL) {
114ade9ccfeSMarcel Moolenaar xo_warnx("memstat_mtl_find: zone %s not found", MBUF_MEM_NAME);
115c8e6b689SRobert Watson goto out;
116c8e6b689SRobert Watson }
117c8e6b689SRobert Watson mbuf_count = memstat_get_count(mtp);
118c8e6b689SRobert Watson mbuf_bytes = memstat_get_bytes(mtp);
119c8e6b689SRobert Watson mbuf_free = memstat_get_free(mtp);
120c8e6b689SRobert Watson mbuf_failures = memstat_get_failures(mtp);
121504a74faSAlfred Perlstein mbuf_sleeps = memstat_get_sleeps(mtp);
122c8e6b689SRobert Watson mbuf_size = memstat_get_size(mtp);
123c8e6b689SRobert Watson
124c8e6b689SRobert Watson mtp = memstat_mtl_find(mtlp, ALLOCATOR_UMA, MBUF_PACKET_MEM_NAME);
125c8e6b689SRobert Watson if (mtp == NULL) {
126ade9ccfeSMarcel Moolenaar xo_warnx("memstat_mtl_find: zone %s not found",
127c8e6b689SRobert Watson MBUF_PACKET_MEM_NAME);
128c8e6b689SRobert Watson goto out;
129c8e6b689SRobert Watson }
130c8e6b689SRobert Watson packet_count = memstat_get_count(mtp);
131c8e6b689SRobert Watson packet_bytes = memstat_get_bytes(mtp);
132c8e6b689SRobert Watson packet_free = memstat_get_free(mtp);
133504a74faSAlfred Perlstein packet_sleeps = memstat_get_sleeps(mtp);
134c8e6b689SRobert Watson packet_failures = memstat_get_failures(mtp);
135c8e6b689SRobert Watson
136c8e6b689SRobert Watson mtp = memstat_mtl_find(mtlp, ALLOCATOR_UMA, MBUF_CLUSTER_MEM_NAME);
137c8e6b689SRobert Watson if (mtp == NULL) {
138ade9ccfeSMarcel Moolenaar xo_warnx("memstat_mtl_find: zone %s not found",
139c8e6b689SRobert Watson MBUF_CLUSTER_MEM_NAME);
140c8e6b689SRobert Watson goto out;
141c8e6b689SRobert Watson }
142c8e6b689SRobert Watson cluster_count = memstat_get_count(mtp);
143c8e6b689SRobert Watson cluster_limit = memstat_get_countlimit(mtp);
144c8e6b689SRobert Watson cluster_free = memstat_get_free(mtp);
145c8e6b689SRobert Watson cluster_failures = memstat_get_failures(mtp);
146504a74faSAlfred Perlstein cluster_sleeps = memstat_get_sleeps(mtp);
147c8e6b689SRobert Watson cluster_size = memstat_get_size(mtp);
148c8e6b689SRobert Watson
149c8e6b689SRobert Watson mtp = memstat_mtl_find(mtlp, ALLOCATOR_MALLOC, MBUF_TAG_MEM_NAME);
150c8e6b689SRobert Watson if (mtp == NULL) {
151ade9ccfeSMarcel Moolenaar xo_warnx("memstat_mtl_find: malloc type %s not found",
152c8e6b689SRobert Watson MBUF_TAG_MEM_NAME);
153c8e6b689SRobert Watson goto out;
154c8e6b689SRobert Watson }
155c8e6b689SRobert Watson tag_bytes = memstat_get_bytes(mtp);
156c8e6b689SRobert Watson
1572b22cf9cSAndre Oppermann mtp = memstat_mtl_find(mtlp, ALLOCATOR_UMA, MBUF_JUMBOP_MEM_NAME);
1582b22cf9cSAndre Oppermann if (mtp == NULL) {
159ade9ccfeSMarcel Moolenaar xo_warnx("memstat_mtl_find: zone %s not found",
1602b22cf9cSAndre Oppermann MBUF_JUMBOP_MEM_NAME);
1612b22cf9cSAndre Oppermann goto out;
1622b22cf9cSAndre Oppermann }
1632b22cf9cSAndre Oppermann jumbop_count = memstat_get_count(mtp);
1642b22cf9cSAndre Oppermann jumbop_limit = memstat_get_countlimit(mtp);
1652b22cf9cSAndre Oppermann jumbop_free = memstat_get_free(mtp);
1662b22cf9cSAndre Oppermann jumbop_failures = memstat_get_failures(mtp);
167504a74faSAlfred Perlstein jumbop_sleeps = memstat_get_sleeps(mtp);
1682b22cf9cSAndre Oppermann jumbop_size = memstat_get_size(mtp);
1692b22cf9cSAndre Oppermann
1702b22cf9cSAndre Oppermann mtp = memstat_mtl_find(mtlp, ALLOCATOR_UMA, MBUF_JUMBO9_MEM_NAME);
1712b22cf9cSAndre Oppermann if (mtp == NULL) {
172ade9ccfeSMarcel Moolenaar xo_warnx("memstat_mtl_find: zone %s not found",
1732b22cf9cSAndre Oppermann MBUF_JUMBO9_MEM_NAME);
1742b22cf9cSAndre Oppermann goto out;
1752b22cf9cSAndre Oppermann }
1762b22cf9cSAndre Oppermann jumbo9_count = memstat_get_count(mtp);
1772b22cf9cSAndre Oppermann jumbo9_limit = memstat_get_countlimit(mtp);
1782b22cf9cSAndre Oppermann jumbo9_free = memstat_get_free(mtp);
1792b22cf9cSAndre Oppermann jumbo9_failures = memstat_get_failures(mtp);
180504a74faSAlfred Perlstein jumbo9_sleeps = memstat_get_sleeps(mtp);
1812b22cf9cSAndre Oppermann jumbo9_size = memstat_get_size(mtp);
1822b22cf9cSAndre Oppermann
1832b22cf9cSAndre Oppermann mtp = memstat_mtl_find(mtlp, ALLOCATOR_UMA, MBUF_JUMBO16_MEM_NAME);
1842b22cf9cSAndre Oppermann if (mtp == NULL) {
185ade9ccfeSMarcel Moolenaar xo_warnx("memstat_mtl_find: zone %s not found",
1862b22cf9cSAndre Oppermann MBUF_JUMBO16_MEM_NAME);
1872b22cf9cSAndre Oppermann goto out;
1882b22cf9cSAndre Oppermann }
1892b22cf9cSAndre Oppermann jumbo16_count = memstat_get_count(mtp);
1902b22cf9cSAndre Oppermann jumbo16_limit = memstat_get_countlimit(mtp);
1912b22cf9cSAndre Oppermann jumbo16_free = memstat_get_free(mtp);
1922b22cf9cSAndre Oppermann jumbo16_failures = memstat_get_failures(mtp);
193504a74faSAlfred Perlstein jumbo16_sleeps = memstat_get_sleeps(mtp);
1942b22cf9cSAndre Oppermann jumbo16_size = memstat_get_size(mtp);
1952b22cf9cSAndre Oppermann
196ade9ccfeSMarcel Moolenaar xo_open_container("mbuf-statistics");
197ade9ccfeSMarcel Moolenaar
198ade9ccfeSMarcel Moolenaar xo_emit("{:mbuf-current/%ju}/{:mbuf-cache/%ju}/{:mbuf-total/%ju} "
199ade9ccfeSMarcel Moolenaar "{N:mbufs in use (current\\/cache\\/total)}\n",
200c8e6b689SRobert Watson mbuf_count + packet_count, mbuf_free + packet_free,
201c8e6b689SRobert Watson mbuf_count + packet_count + mbuf_free + packet_free);
202c8e6b689SRobert Watson
203ade9ccfeSMarcel Moolenaar xo_emit("{:cluster-current/%ju}/{:cluster-cache/%ju}/"
204ade9ccfeSMarcel Moolenaar "{:cluster-total/%ju}/{:cluster-max/%ju} "
205ade9ccfeSMarcel Moolenaar "{N:mbuf clusters in use (current\\/cache\\/total\\/max)}\n",
206c8e6b689SRobert Watson cluster_count - packet_free, cluster_free + packet_free,
207c8e6b689SRobert Watson cluster_count + cluster_free, cluster_limit);
208c8e6b689SRobert Watson
209ade9ccfeSMarcel Moolenaar xo_emit("{:packet-count/%ju}/{:packet-free/%ju} "
210ade9ccfeSMarcel Moolenaar "{N:mbuf+clusters out of packet secondary zone in use "
211ade9ccfeSMarcel Moolenaar "(current\\/cache)}\n",
2121434cbd6SAndre Oppermann packet_count, packet_free);
2131434cbd6SAndre Oppermann
214ade9ccfeSMarcel Moolenaar xo_emit("{:jumbo-count/%ju}/{:jumbo-cache/%ju}/{:jumbo-total/%ju}/"
215ade9ccfeSMarcel Moolenaar "{:jumbo-max/%ju} {:jumbo-page-size/%ju}{U:k} {N:(page size)} "
216ade9ccfeSMarcel Moolenaar "{N:jumbo clusters in use (current\\/cache\\/total\\/max)}\n",
2172b22cf9cSAndre Oppermann jumbop_count, jumbop_free, jumbop_count + jumbop_free,
2182b22cf9cSAndre Oppermann jumbop_limit, jumbop_size / 1024);
2192b22cf9cSAndre Oppermann
220ade9ccfeSMarcel Moolenaar xo_emit("{:jumbo9-count/%ju}/{:jumbo9-cache/%ju}/"
221ade9ccfeSMarcel Moolenaar "{:jumbo9-total/%ju}/{:jumbo9-max/%ju} "
222ade9ccfeSMarcel Moolenaar "{N:9k jumbo clusters in use (current\\/cache\\/total\\/max)}\n",
2232b22cf9cSAndre Oppermann jumbo9_count, jumbo9_free, jumbo9_count + jumbo9_free,
2242b22cf9cSAndre Oppermann jumbo9_limit);
2252b22cf9cSAndre Oppermann
226ade9ccfeSMarcel Moolenaar xo_emit("{:jumbo16-count/%ju}/{:jumbo16-cache/%ju}/"
227ade9ccfeSMarcel Moolenaar "{:jumbo16-total/%ju}/{:jumbo16-limit/%ju} "
228ade9ccfeSMarcel Moolenaar "{N:16k jumbo clusters in use (current\\/cache\\/total\\/max)}\n",
2292b22cf9cSAndre Oppermann jumbo16_count, jumbo16_free, jumbo16_count + jumbo16_free,
2302b22cf9cSAndre Oppermann jumbo16_limit);
2312b22cf9cSAndre Oppermann
232c8e6b689SRobert Watson #if 0
233ade9ccfeSMarcel Moolenaar xo_emit("{:tag-count/%ju} {N:mbuf tags in use}\n", tag_count);
234c8e6b689SRobert Watson #endif
235c8e6b689SRobert Watson
236c8e6b689SRobert Watson /*-
237c8e6b689SRobert Watson * Calculate in-use bytes as:
238c8e6b689SRobert Watson * - straight mbuf memory
239c8e6b689SRobert Watson * - mbuf memory in packets
240c8e6b689SRobert Watson * - the clusters attached to packets
241c8e6b689SRobert Watson * - and the rest of the non-packet-attached clusters.
242c8e6b689SRobert Watson * - m_tag memory
243c8e6b689SRobert Watson * This avoids counting the clusters attached to packets in the cache.
244c8e6b689SRobert Watson * This currently excludes sf_buf space.
245c8e6b689SRobert Watson */
246c8e6b689SRobert Watson bytes_inuse =
247c8e6b689SRobert Watson mbuf_bytes + /* straight mbuf memory */
248c8e6b689SRobert Watson packet_bytes + /* mbufs in packets */
249c8e6b689SRobert Watson (packet_count * cluster_size) + /* clusters in packets */
250c8e6b689SRobert Watson /* other clusters */
251c8e6b689SRobert Watson ((cluster_count - packet_count - packet_free) * cluster_size) +
2522b22cf9cSAndre Oppermann tag_bytes +
2532b22cf9cSAndre Oppermann (jumbop_count * jumbop_size) + /* jumbo clusters */
2542b22cf9cSAndre Oppermann (jumbo9_count * jumbo9_size) +
2552b22cf9cSAndre Oppermann (jumbo16_count * jumbo16_size);
256c8e6b689SRobert Watson
257c8e6b689SRobert Watson /*
258c8e6b689SRobert Watson * Calculate in-cache bytes as:
259c8e6b689SRobert Watson * - cached straught mbufs
260c8e6b689SRobert Watson * - cached packet mbufs
261c8e6b689SRobert Watson * - cached packet clusters
262c8e6b689SRobert Watson * - cached straight clusters
263c8e6b689SRobert Watson * This currently excludes sf_buf space.
264c8e6b689SRobert Watson */
265c8e6b689SRobert Watson bytes_incache =
266c8e6b689SRobert Watson (mbuf_free * mbuf_size) + /* straight free mbufs */
267c8e6b689SRobert Watson (packet_free * mbuf_size) + /* mbufs in free packets */
268c8e6b689SRobert Watson (packet_free * cluster_size) + /* clusters in free packets */
2692b22cf9cSAndre Oppermann (cluster_free * cluster_size) + /* free clusters */
2702b22cf9cSAndre Oppermann (jumbop_free * jumbop_size) + /* jumbo clusters */
2712b22cf9cSAndre Oppermann (jumbo9_free * jumbo9_size) +
2722b22cf9cSAndre Oppermann (jumbo16_free * jumbo16_size);
273c8e6b689SRobert Watson
274c8e6b689SRobert Watson /*
275c8e6b689SRobert Watson * Total is bytes in use + bytes in cache. This doesn't take into
276c8e6b689SRobert Watson * account various other misc data structures, overhead, etc, but
277c8e6b689SRobert Watson * gives the user something useful despite that.
278c8e6b689SRobert Watson */
279c8e6b689SRobert Watson bytes_total = bytes_inuse + bytes_incache;
280c8e6b689SRobert Watson
281ade9ccfeSMarcel Moolenaar xo_emit("{:bytes-in-use/%ju}{U:K}/{:bytes-in-cache/%ju}{U:K}/"
282ade9ccfeSMarcel Moolenaar "{:bytes-total/%ju}{U:K} "
283ade9ccfeSMarcel Moolenaar "{N:bytes allocated to network (current\\/cache\\/total)}\n",
284ade9ccfeSMarcel Moolenaar bytes_inuse / 1024, bytes_incache / 1024, bytes_total / 1024);
285c8e6b689SRobert Watson
286ade9ccfeSMarcel Moolenaar xo_emit("{:mbuf-failures/%ju}/{:cluster-failures/%ju}/"
287ade9ccfeSMarcel Moolenaar "{:packet-failures/%ju} {N:requests for mbufs denied "
288ade9ccfeSMarcel Moolenaar "(mbufs\\/clusters\\/mbuf+clusters)}\n",
289ade9ccfeSMarcel Moolenaar mbuf_failures, cluster_failures, packet_failures);
290ade9ccfeSMarcel Moolenaar xo_emit("{:mbuf-sleeps/%ju}/{:cluster-sleeps/%ju}/{:packet-sleeps/%ju} "
291ade9ccfeSMarcel Moolenaar "{N:requests for mbufs delayed "
292ade9ccfeSMarcel Moolenaar "(mbufs\\/clusters\\/mbuf+clusters)}\n",
293ade9ccfeSMarcel Moolenaar mbuf_sleeps, cluster_sleeps, packet_sleeps);
294c8e6b689SRobert Watson
295ade9ccfeSMarcel Moolenaar xo_emit("{:jumbop-sleeps/%ju}/{:jumbo9-sleeps/%ju}/"
296ade9ccfeSMarcel Moolenaar "{:jumbo16-sleeps/%ju} {N:/requests for jumbo clusters delayed "
297ade9ccfeSMarcel Moolenaar "(%juk\\/9k\\/16k)}\n",
298ade9ccfeSMarcel Moolenaar jumbop_sleeps, jumbo9_sleeps, jumbo16_sleeps, jumbop_size / 1024);
299ade9ccfeSMarcel Moolenaar xo_emit("{:jumbop-failures/%ju}/{:jumbo9-failures/%ju}/"
300ade9ccfeSMarcel Moolenaar "{:jumbo16-failures/%ju} {N:/requests for jumbo clusters denied "
301ade9ccfeSMarcel Moolenaar "(%juk\\/9k\\/16k)}\n",
302ade9ccfeSMarcel Moolenaar jumbop_failures, jumbo9_failures, jumbo16_failures,
303ade9ccfeSMarcel Moolenaar jumbop_size / 1024);
3042b22cf9cSAndre Oppermann
305dd8dfa82SRobert Watson mlen = sizeof(nsfbufs);
3069eddb899SMark Johnston if (live &&
3079eddb899SMark Johnston sysctlbyname("kern.ipc.nsfbufs", &nsfbufs, &mlen, NULL, 0) == 0 &&
3089eddb899SMark Johnston sysctlbyname("kern.ipc.nsfbufsused", &nsfbufsused, &mlen,
3099eddb899SMark Johnston NULL, 0) == 0 &&
3109eddb899SMark Johnston sysctlbyname("kern.ipc.nsfbufspeak", &nsfbufspeak, &mlen,
3119eddb899SMark Johnston NULL, 0) == 0)
312ade9ccfeSMarcel Moolenaar xo_emit("{:nsfbufs-current/%d}/{:nsfbufs-peak/%d}/"
313ade9ccfeSMarcel Moolenaar "{:nsfbufs/%d} "
314ade9ccfeSMarcel Moolenaar "{N:sfbufs in use (current\\/peak\\/max)}\n",
315dd8dfa82SRobert Watson nsfbufsused, nsfbufspeak, nsfbufs);
3169eddb899SMark Johnston
3179eddb899SMark Johnston if (fetch_stats("kern.ipc.sfstat", mbaddr, &sfstat, sizeof(sfstat),
3189eddb899SMark Johnston kread_counters) != 0)
319d4426f28SRobert Watson goto out;
3209eddb899SMark Johnston
3212bab0c55SGleb Smirnoff xo_emit("{:sendfile-syscalls/%ju} {N:sendfile syscalls}\n",
3222bab0c55SGleb Smirnoff (uintmax_t)sfstat.sf_syscalls);
3232bab0c55SGleb Smirnoff xo_emit("{:sendfile-no-io/%ju} "
3242bab0c55SGleb Smirnoff "{N:sendfile syscalls completed without I\\/O request}\n",
3252bab0c55SGleb Smirnoff (uintmax_t)sfstat.sf_noiocnt);
3262bab0c55SGleb Smirnoff xo_emit("{:sendfile-io-count/%ju} "
3272bab0c55SGleb Smirnoff "{N:requests for I\\/O initiated by sendfile}\n",
3282bab0c55SGleb Smirnoff (uintmax_t)sfstat.sf_iocnt);
3292bab0c55SGleb Smirnoff xo_emit("{:sendfile-pages-sent/%ju} "
3302bab0c55SGleb Smirnoff "{N:pages read by sendfile as part of a request}\n",
3312bab0c55SGleb Smirnoff (uintmax_t)sfstat.sf_pages_read);
3322bab0c55SGleb Smirnoff xo_emit("{:sendfile-pages-valid/%ju} "
3332bab0c55SGleb Smirnoff "{N:pages were valid at time of a sendfile request}\n",
3342bab0c55SGleb Smirnoff (uintmax_t)sfstat.sf_pages_valid);
3355dba303dSGleb Smirnoff xo_emit("{:sendfile-pages-bogus/%ju} "
3365dba303dSGleb Smirnoff "{N:pages were valid and substituted to bogus page}\n",
3375dba303dSGleb Smirnoff (uintmax_t)sfstat.sf_pages_bogus);
3382bab0c55SGleb Smirnoff xo_emit("{:sendfile-requested-readahead/%ju} "
3392bab0c55SGleb Smirnoff "{N:pages were requested for read ahead by applications}\n",
3402bab0c55SGleb Smirnoff (uintmax_t)sfstat.sf_rhpages_requested);
3412bab0c55SGleb Smirnoff xo_emit("{:sendfile-readahead/%ju} "
3422bab0c55SGleb Smirnoff "{N:pages were read ahead by sendfile}\n",
3432bab0c55SGleb Smirnoff (uintmax_t)sfstat.sf_rhpages_read);
3442bab0c55SGleb Smirnoff xo_emit("{:sendfile-busy-encounters/%ju} "
3452bab0c55SGleb Smirnoff "{N:times sendfile encountered an already busy page}\n",
3462bab0c55SGleb Smirnoff (uintmax_t)sfstat.sf_busy);
347ade9ccfeSMarcel Moolenaar xo_emit("{:sfbufs-alloc-failed/%ju} {N:requests for sfbufs denied}\n",
34805d1f5bcSAndrey V. Elsukov (uintmax_t)sfstat.sf_allocfail);
349ade9ccfeSMarcel Moolenaar xo_emit("{:sfbufs-alloc-wait/%ju} {N:requests for sfbufs delayed}\n",
35005d1f5bcSAndrey V. Elsukov (uintmax_t)sfstat.sf_allocwait);
351c8e6b689SRobert Watson out:
352ade9ccfeSMarcel Moolenaar xo_close_container("mbuf-statistics");
353c8e6b689SRobert Watson memstat_mtl_free(mtlp);
354c8e6b689SRobert Watson }
355