The mbuf_frag_size always was and is file local and not queried from base

user space tools via kvm.  Mark it static.

MFC after:	3 days
This commit is contained in:
bz 2011-04-14 09:47:09 +00:00
parent 94d28ce852
commit c3c7ca25e7

View File

@ -87,7 +87,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