svn commit: r220827 - stable/7/sys/netinet
Bjoern A. Zeeb
bz at FreeBSD.org
Tue Apr 19 08:56:10 UTC 2011
Author: bz
Date: Tue Apr 19 08:56:09 2011
New Revision: 220827
URL: http://svn.freebsd.org/changeset/base/220827
Log:
MFC r220619:
The mbuf_frag_size always was and is file local and not queried from base
user space tools via kvm. Mark it static.
Modified:
stable/7/sys/netinet/ip_output.c
Directory Properties:
stable/7/sys/ (props changed)
stable/7/sys/cddl/contrib/opensolaris/ (props changed)
stable/7/sys/contrib/dev/acpica/ (props changed)
stable/7/sys/contrib/pf/ (props changed)
Modified: stable/7/sys/netinet/ip_output.c
==============================================================================
--- stable/7/sys/netinet/ip_output.c Tue Apr 19 08:35:07 2011 (r220826)
+++ stable/7/sys/netinet/ip_output.c Tue Apr 19 08:56:09 2011 (r220827)
@@ -81,7 +81,7 @@ __FBSDID("$FreeBSD$");
u_short ip_id;
#ifdef MBUF_STRESS_TEST
-int mbuf_frag_size = 0;
+static int mbuf_frag_size = 0;
SYSCTL_INT(_net_inet_ip, OID_AUTO, mbuf_frag_size, CTLFLAG_RW,
&mbuf_frag_size, 0, "Fragment outgoing mbufs to this size");
#endif
More information about the svn-src-all
mailing list