PERFORCE change 109086 for review

Warner Losh imp at FreeBSD.org
Fri Nov 3 01:26:55 UTC 2006


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

Change 109086 by imp at imp_lighthouse on 2006/11/03 01:26:25

	Don't change the semantics of the code.  e can be != EFBIG.  Thanks
	sam...

Affected files ...

.. //depot/projects/arm/src/sys/arm/at91/if_ate.c#61 edit

Differences ...

==== //depot/projects/arm/src/sys/arm/at91/if_ate.c#61 (text+ko) ====

@@ -812,7 +812,7 @@
 			e = bus_dmamap_load_mbuf_sg(sc->mtag,
 			    sc->tx_map[sc->txcur], m, segs, &nseg, 0);
 		}
-		if (e == EFBIG) {
+		if (e != 0) {
 			m_freem(m);
 			continue;
 		}


More information about the p4-projects mailing list