Date: Tue, 14 Apr 2009 16:48:50 +0000 (UTC) From: Jack F Vogel <jfv@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org Subject: svn commit: r191064 - stable/7/sys/dev/e1000 Message-ID: <200904141648.n3EGmoUW013872@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200904141648.n3EGmoUW013872>