svn commit: r185194 - head/sys/dev/cxgb

Kip Macy kmacy at FreeBSD.org
Sat Nov 22 16:22:53 PST 2008


Author: kmacy
Date: Sun Nov 23 00:22:52 2008
New Revision: 185194
URL: http://svn.freebsd.org/changeset/base/185194

Log:
  work around periodic leak on queue overrun by enabling coalescing of packets in to
  work requests by default

Modified:
  head/sys/dev/cxgb/cxgb_multiq.c

Modified: head/sys/dev/cxgb/cxgb_multiq.c
==============================================================================
--- head/sys/dev/cxgb/cxgb_multiq.c	Sun Nov 23 00:20:51 2008	(r185193)
+++ head/sys/dev/cxgb/cxgb_multiq.c	Sun Nov 23 00:22:52 2008	(r185194)
@@ -88,7 +88,7 @@ __FBSDID("$FreeBSD$");
 
 extern int txq_fills;
 int multiq_tx_enable = 1;
-int coalesce_tx_enable = 0;
+int coalesce_tx_enable = 1;
 int wakeup_tx_thread = 0;
 
 extern struct sysctl_oid_list sysctl__hw_cxgb_children;


More information about the svn-src-all mailing list