svn commit: r221619 - stable/8/sys/dev/cxgbe

Navdeep Parhar np at FreeBSD.org
Sun May 8 06:25:50 UTC 2011


Author: np
Date: Sun May  8 06:25:50 2011
New Revision: 221619
URL: http://svn.freebsd.org/changeset/base/221619

Log:
  MFC r221516:
  Bump up the number of egress queues that the driver is allowed to use.

Modified:
  stable/8/sys/dev/cxgbe/t4_main.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/dev/cxgbe/t4_main.c
==============================================================================
--- stable/8/sys/dev/cxgbe/t4_main.c	Sun May  8 05:45:06 2011	(r221618)
+++ stable/8/sys/dev/cxgbe/t4_main.c	Sun May  8 06:25:50 2011	(r221619)
@@ -388,7 +388,7 @@ t4_attach(device_t dev)
 
 	/* These are total (sum of all ports) limits for a bus driver */
 	rc = -t4_cfg_pfvf(sc, sc->mbox, sc->pf, 0,
-	    64,		/* max # of egress queues */
+	    128,	/* max # of egress queues */
 	    64,		/* max # of egress Ethernet or control queues */
 	    64,		/* max # of ingress queues with fl/interrupt */
 	    0,		/* max # of ingress queues without interrupt */


More information about the svn-src-all mailing list