summaryrefslogtreecommitdiffstats
path: root/sys/kern/uipc_socket.c
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1997-02-24 20:30:58 +0000
committerwollman <wollman@FreeBSD.org>1997-02-24 20:30:58 +0000
commita6e3c2a3ced8d886e252170fd0fbc11aedf9a3e2 (patch)
tree7f9fda9e13141358225b618de039c262a753beaf /sys/kern/uipc_socket.c
parent139936b34a895520e9ee8b9a6d3f774754cdcc48 (diff)
downloadFreeBSD-src-a6e3c2a3ced8d886e252170fd0fbc11aedf9a3e2.zip
FreeBSD-src-a6e3c2a3ced8d886e252170fd0fbc11aedf9a3e2.tar.gz
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.
Diffstat (limited to 'sys/kern/uipc_socket.c')
-rw-r--r--sys/kern/uipc_socket.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/kern/uipc_socket.c b/sys/kern/uipc_socket.c
index d0e680b..7fdfca8 100644
--- a/sys/kern/uipc_socket.c
+++ b/sys/kern/uipc_socket.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)uipc_socket.c 8.3 (Berkeley) 4/15/94
- * $Id$
+ * $Id: uipc_socket.c,v 1.23 1997/02/22 09:39:28 peter Exp $
*/
#include <sys/param.h>
@@ -51,7 +51,8 @@
#include <sys/sysctl.h>
static int somaxconn = SOMAXCONN;
-SYSCTL_INT(_kern, KERN_SOMAXCONN, somaxconn, CTLFLAG_RW, &somaxconn, 0, "");
+SYSCTL_INT(_kern_ipc, KIPC_SOMAXCONN, somaxconn, CTLFLAG_RW, &somaxconn,
+ 0, "");
/*
* Socket operation routines.
OpenPOWER on IntegriCloud