Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Nov 2006 06:09:46 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 109419 for review
Message-ID:  <200611070609.kA769kt6054986@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=109419

Change 109419 by sam@sam_ebb on 2006/11/07 06:09:07

	correct tx q configs

Affected files ...

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

Differences ...

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

@@ -570,10 +570,10 @@
 
 	sc->tx_qid = npeconfig[unit].tx_qid;
 	sc->tx_doneqid = npeconfig[unit].tx_doneqid;
-	ixpqmgr_qconfig(sc->tx_qid, NPE_MAX_RX_BUFFERS, 0,
-		NPE_MAX_RX_BUFFERS, 0, NULL, sc);
+	ixpqmgr_qconfig(sc->tx_qid, NPE_MAX_TX_BUFFERS, 0,
+		NPE_MAX_TX_BUFFERS, 0, NULL, sc);
 	if (tx_doneqid == -1) {
-		ixpqmgr_qconfig(sc->tx_doneqid,	NPE_MAX_RX_BUFFERS, 0,  2,
+		ixpqmgr_qconfig(sc->tx_doneqid,	NPE_MAX_TX_BUFFERS, 0,  2,
 			IX_QMGR_Q_SOURCE_ID_NOT_E, npe_txdone, sc);
 		tx_doneqid = sc->tx_doneqid;
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200611070609.kA769kt6054986>