Date: Fri, 3 Nov 2006 01:26:53 GMT From: Warner Losh <imp@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 109086 for review Message-ID: <200611030126.kA31Qr6Q021679@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=109086 Change 109086 by imp@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; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200611030126.kA31Qr6Q021679>