diff options
author | hiren <hiren@FreeBSD.org> | 2015-07-21 06:48:36 +0000 |
---|---|---|
committer | hiren <hiren@FreeBSD.org> | 2015-07-21 06:48:36 +0000 |
commit | fe22e50b1c97f74f27602425fa1d605aa5b5e165 (patch) | |
tree | 369b11646ae563c5a093c27e6d9af9ef2180d70b /sys/dev/ixgbe | |
parent | d0ec2bec825b04f11645ffa035f506283a15bbee (diff) | |
download | FreeBSD-src-fe22e50b1c97f74f27602425fa1d605aa5b5e165.zip FreeBSD-src-fe22e50b1c97f74f27602425fa1d605aa5b5e165.tar.gz |
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
Diffstat (limited to 'sys/dev/ixgbe')
-rw-r--r-- | sys/dev/ixgbe/if_ix.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/dev/ixgbe/if_ix.c b/sys/dev/ixgbe/if_ix.c index aab1b6a..3787db3 100644 --- a/sys/dev/ixgbe/if_ix.c +++ b/sys/dev/ixgbe/if_ix.c @@ -273,7 +273,6 @@ SYSCTL_INT(_hw_ix, OID_AUTO, max_interrupt_rate, CTLFLAG_RDTUN, /* 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_limit, CTLFLAG_RDTUN, /* 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," |