Date: Fri, 10 Nov 2006 19:10:14 GMT From: Sam Leffler <sam@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 109697 for review Message-ID: <200611101910.kAAJAEIe094902@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=109697 Change 109697 by sam@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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200611101910.kAAJAEIe094902>