Module Name:    src
Committed By:   msaitoh
Date:           Fri Sep 15 04:52:32 UTC 2017

Modified Files:
        src/sys/dev/pci/ixgbe: ixv.c

Log Message:
 Make ixv(4) TX/RX descriptors size the same as ixg(4).


To generate a diff of this commit:
cvs rdiff -u -r1.63 -r1.64 src/sys/dev/pci/ixgbe/ixv.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/pci/ixgbe/ixv.c
diff -u src/sys/dev/pci/ixgbe/ixv.c:1.63 src/sys/dev/pci/ixgbe/ixv.c:1.64
--- src/sys/dev/pci/ixgbe/ixv.c:1.63	Wed Sep 13 04:50:50 2017
+++ src/sys/dev/pci/ixgbe/ixv.c	Fri Sep 15 04:52:32 2017
@@ -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 @@ TUNABLE_INT("hw.ixv.tx_process_limit", &
  * 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) */

Reply via email to