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/95b49dd90bda
branches:  trunk
changeset: 826580:95b49dd90bda
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 39a84484910d -r 95b49dd90bda 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