diff options
author | hiren <hiren@FreeBSD.org> | 2015-07-21 00:31:13 +0000 |
---|---|---|
committer | hiren <hiren@FreeBSD.org> | 2015-07-21 00:31:13 +0000 |
commit | 2fc2987135e4e36b445eab52e40df40eceac1a54 (patch) | |
tree | 2280ceb227da99605b42ea9b57d10560ecccb10c | |
parent | e644fa27a1fb16c7fa594532e4ce11e0e4ff825d (diff) | |
download | FreeBSD-src-2fc2987135e4e36b445eab52e40df40eceac1a54.zip FreeBSD-src-2fc2987135e4e36b445eab52e40df40eceac1a54.tar.gz |
Fix a typo in r285668. Replace hw.ixgbe.* with correct hw.ix.* for a couple of
sysctls.
Approved by: re (gjb)
Sponsored by: Limelight Networks
-rw-r--r-- | sys/dev/ixgbe/if_ix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ixgbe/if_ix.c b/sys/dev/ixgbe/if_ix.c index e5cddee..bc251be 100644 --- a/sys/dev/ixgbe/if_ix.c +++ b/sys/dev/ixgbe/if_ix.c @@ -248,7 +248,7 @@ 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); +TUNABLE_INT("hw.ix.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," @@ -256,7 +256,7 @@ 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); +TUNABLE_INT("hw.ix.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," |