svn commit: r285736 - head/sys/dev/ixgbe

Hiren Panchasara hiren at FreeBSD.org
Tue Jul 21 06:48:37 UTC 2015


Author: hiren
Date: Tue Jul 21 06:48:36 2015
New Revision: 285736
URL: https://svnweb.freebsd.org/changeset/base/285736

Log:
  Remove a couple of TUNABLE_INT() calls which are unnecessary after r267961.
  r267961 did remove them but they "reappeared" when ixgbe(4) rewrite happened in
  r280182.
  
  Sponsored by:		Limelight Networks

Modified:
  head/sys/dev/ixgbe/if_ix.c

Modified: head/sys/dev/ixgbe/if_ix.c
==============================================================================
--- head/sys/dev/ixgbe/if_ix.c	Tue Jul 21 06:18:42 2015	(r285735)
+++ head/sys/dev/ixgbe/if_ix.c	Tue Jul 21 06:48:36 2015	(r285736)
@@ -273,7 +273,6 @@ SYSCTL_INT(_hw_ix, OID_AUTO, max_interru
 
 /* How many packets rxeof tries to clean at a time */
 static int ixgbe_rx_process_limit = 256;
-TUNABLE_INT("hw.ixgbe.rx_process_limit", &ixgbe_rx_process_limit);
 SYSCTL_INT(_hw_ix, OID_AUTO, rx_process_limit, CTLFLAG_RDTUN,
     &ixgbe_rx_process_limit, 0,
     "Maximum number of received packets to process at a time,"
@@ -281,7 +280,6 @@ SYSCTL_INT(_hw_ix, OID_AUTO, rx_process_
 
 /* How many packets txeof tries to clean at a time */
 static int ixgbe_tx_process_limit = 256;
-TUNABLE_INT("hw.ixgbe.tx_process_limit", &ixgbe_tx_process_limit);
 SYSCTL_INT(_hw_ix, OID_AUTO, tx_process_limit, CTLFLAG_RDTUN,
     &ixgbe_tx_process_limit, 0,
     "Maximum number of sent packets to process at a time,"


More information about the svn-src-head mailing list