PERFORCE change 127456 for review

Kip Macy kmacy at FreeBSD.org
Fri Oct 12 16:17:25 PDT 2007


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

Change 127456 by kmacy at kmacy_home:ethng on 2007/10/12 23:16:45

	fix compile error in non-multiqueue case

Affected files ...

.. //depot/projects/ethng/src/sys/dev/cxgb/cxgb_main.c#24 edit

Differences ...

==== //depot/projects/ethng/src/sys/dev/cxgb/cxgb_main.c#24 (text+ko) ====

@@ -1880,7 +1880,7 @@
 cxgb_tx_common(struct ifnet *ifp, struct sge_qset *qs, uint32_t txmax)
 {
 	struct sge_txq *txq;
-	int err, in_use_init, count, i;
+	int err, in_use_init, count;
 	struct mbuf **m_vec;
 
 	txq = &qs->txq[TXQ_ETH];
@@ -1922,6 +1922,7 @@
 		setbit(&qs->txq_stopped, TXQ_ETH);
 	}
 	if (err == ENOMEM) {
+		int i;
 		/*
 		 * Sub-optimal :-/
 		 */


More information about the p4-projects mailing list