Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/pci/ixgbe Make ixv(4) TX/RX descriptors size the sam...
details: https://anonhg.NetBSD.org/src/rev/c17fb99ed24d
branches: trunk
changeset: 356279:c17fb99ed24d
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Fri Sep 15 04:52:32 2017 +0000
description:
Make ixv(4) TX/RX descriptors size the same as ixg(4).
diffstat:
sys/dev/pci/ixgbe/ixv.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (23 lines):
diff -r 5453f9c5eabf -r c17fb99ed24d sys/dev/pci/ixgbe/ixv.c
--- a/sys/dev/pci/ixgbe/ixv.c Fri Sep 15 03:12:05 2017 +0000
+++ b/sys/dev/pci/ixgbe/ixv.c Fri Sep 15 04:52:32 2017 +0000
@@ -1,4 +1,4 @@
-/*$NetBSD: ixv.c,v 1.63 2017/09/13 04:50:50 msaitoh Exp $*/
+/*$NetBSD: ixv.c,v 1.64 2017/09/15 04:52:32 msaitoh Exp $*/
/******************************************************************************
@@ -193,11 +193,11 @@
* setting higher than RX as this seems
* the better performing choice.
*/
-static int ixv_txd = DEFAULT_TXD;
+static int ixv_txd = PERFORM_TXD;
TUNABLE_INT("hw.ixv.txd", &ixv_txd);
/* Number of RX descriptors per ring */
-static int ixv_rxd = DEFAULT_RXD;
+static int ixv_rxd = PERFORM_RXD;
TUNABLE_INT("hw.ixv.rxd", &ixv_rxd);
/* Legacy Transmit (single queue) */
Home |
Main Index |
Thread Index |
Old Index