svn commit: r220828 - stable/8/sys/netinet

Bjoern A. Zeeb bz at FreeBSD.org
Tue Apr 19 08:56:26 UTC 2011


Author: bz
Date: Tue Apr 19 08:56:26 2011
New Revision: 220828
URL: http://svn.freebsd.org/changeset/base/220828

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/8/sys/netinet/ip_output.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/netinet/ip_output.c
==============================================================================
--- stable/8/sys/netinet/ip_output.c	Tue Apr 19 08:56:09 2011	(r220827)
+++ stable/8/sys/netinet/ip_output.c	Tue Apr 19 08:56:26 2011	(r220828)
@@ -93,7 +93,7 @@ __FBSDID("$FreeBSD$");
 VNET_DEFINE(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-stable-8 mailing list