svn commit: r191064 - stable/7/sys/dev/e1000
Jack F Vogel
jfv at FreeBSD.org
Tue Apr 14 09:48:51 PDT 2009
Author: jfv
Date: Tue Apr 14 16:48:49 2009
New Revision: 191064
URL: http://svn.freebsd.org/changeset/base/191064
Log:
Change default on RX queues to 1, this has been found
as a more stable config.
Approved by: re
Modified:
stable/7/sys/dev/e1000/if_igb.c
Modified: stable/7/sys/dev/e1000/if_igb.c
==============================================================================
--- stable/7/sys/dev/e1000/if_igb.c Tue Apr 14 16:45:17 2009 (r191063)
+++ stable/7/sys/dev/e1000/if_igb.c Tue Apr 14 16:48:49 2009 (r191064)
@@ -291,7 +291,7 @@ TUNABLE_INT("hw.igb.bulk_latency", &igb_
** 0, it will then be based on number of cpus.
*/
static int igb_tx_queues = 1;
-static int igb_rx_queues = 4;
+static int igb_rx_queues = 1;
TUNABLE_INT("hw.igb.tx_queues", &igb_tx_queues);
TUNABLE_INT("hw.igb.rx_queues", &igb_rx_queues);
More information about the svn-src-stable
mailing list