From owner-cvs-sys Mon Feb 24 12:32:17 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA15747 for cvs-sys-outgoing; Mon, 24 Feb 1997 12:32:17 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA15733; Mon, 24 Feb 1997 12:32:15 -0800 (PST) Date: Mon, 24 Feb 1997 12:32:15 -0800 (PST) From: Garrett Wollman Message-Id: <199702242032.MAA15733@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/kern uipc_mbuf.c uipc_proto.c uipc_socket.c uipc_socket2.c uipc_usrreq.c src/sys/sys mbuf.h sysctl.h src/sys/netinet udp_usrreq.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wollman 97/02/24 12:32:14 Modified: sys/kern uipc_mbuf.c uipc_proto.c uipc_socket.c uipc_socket2.c uipc_usrreq.c Log: Create a new branch of the kernel MIB, kern.ipc, to store all of the configurables and instrumentation related to inter-process communication mechanisms. Some variables, like mbuf statistics, are instrumented here for the first time. For mbuf statistics: also keep track of m_copym() and m_pullup() failures, and provide for the user's inspection the compiled-in values of MSIZE, MHLEN, MCLBYTES, and MINCLSIZE. Revision Changes Path 1.29 +19 -3 src/sys/kern/uipc_mbuf.c 1.10 +9 -3 src/sys/kern/uipc_proto.c 1.24 +3 -2 src/sys/kern/uipc_socket.c 1.22 +15 -4 src/sys/kern/uipc_socket2.c 1.20 +20 -9 src/sys/kern/uipc_usrreq.c Modified: sys/netinet udp_usrreq.c Log: Fix #include order. Revision Changes Path 1.35 +3 -3 src/sys/netinet/udp_usrreq.c Modified: sys/sys mbuf.h sysctl.h Log: Add new kern.ipc MIB branch constants and mbuf stats. Revision Changes Path 1.21 +8 -1 src/sys/sys/mbuf.h 1.52 +17 -5 src/sys/sys/sysctl.h