svn commit: r235145 - head/sys/dev/bce

David Christensen davidch at FreeBSD.org
Tue May 8 22:38:47 UTC 2012


Author: davidch
Date: Tue May  8 22:38:46 2012
New Revision: 235145
URL: http://svn.freebsd.org/changeset/base/235145

Log:
  - Rename sysctl "loose_rx_mtu" to "strict_rx_mtu" to match code usage.
  
  Submitted by:	davidch
  MFC after:	1 day

Modified:
  head/sys/dev/bce/if_bce.c

Modified: head/sys/dev/bce/if_bce.c
==============================================================================
--- head/sys/dev/bce/if_bce.c	Tue May  8 21:09:03 2012	(r235144)
+++ head/sys/dev/bce/if_bce.c	Tue May  8 22:38:46 2012	(r235145)
@@ -527,7 +527,7 @@ SYSCTL_UINT(_hw_bce, OID_AUTO, hdr_split
 /* Allowable values are TRUE or FALSE. */
 static int bce_strict_rx_mtu = FALSE;
 TUNABLE_INT("hw.bce.strict_rx_mtu", &bce_strict_rx_mtu);
-SYSCTL_UINT(_hw_bce, OID_AUTO, loose_rx_mtu, CTLFLAG_RDTUN,
+SYSCTL_UINT(_hw_bce, OID_AUTO, strict_rx_mtu, CTLFLAG_RDTUN,
     &bce_strict_rx_mtu, 0,
     "Enable/Disable strict RX frame size checking");
 


More information about the svn-src-head mailing list