PERFORCE change 109697 for review

Sam Leffler sam at FreeBSD.org
Fri Nov 10 19:10:15 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=109697

Change 109697 by sam at sam_ebb on 2006/11/10 19:10:11

	Temporarily disable rx q setup for traffic classes 4-7;
	these are failing with timeout that slows the boot process.
	Since all our traffic is classified as class 0 trying to
	set these up is wasted effort.
	
	Leave a printf to nag me to fix this.

Affected files ...

.. //depot/projects/arm/src/sys/arm/xscale/ixp425/if_npe.c#19 edit

Differences ...

==== //depot/projects/arm/src/sys/arm/xscale/ixp425/if_npe.c#19 (text+ko) ====

@@ -584,7 +584,12 @@
 	}
 	ixpqmgr_qconfig(sc->rx_freeqid,	npe_rxbuf, 0, npe_rxbuf/2, 0, NULL, sc);
 	/* tell the NPE to direct all traffic to rx_qid */
+#if 0
 	for (i = 0; i < 8; i++)
+#else
+device_printf(sc->sc_dev, "remember to fix rx q setup\n");
+	for (i = 0; i < 4; i++)
+#endif
 		npe_setrxqosentry(sc, i, 0, sc->rx_qid);
 
 	sc->tx_qid = npeconfig[unit].tx_qid;


More information about the p4-projects mailing list