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:
Bjoern A. Zeeb 2011-04-14 09:47:09 +00:00
parent 781338b6fd
commit 05b9d121aa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=220619

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