svn commit: r225328 - user/adrian/if_ath_tx/sys/dev/ath

Adrian Chadd adrian at FreeBSD.org
Fri Sep 2 09:55:35 UTC 2011


Author: adrian
Date: Fri Sep  2 09:55:35 2011
New Revision: 225328
URL: http://svn.freebsd.org/changeset/base/225328

Log:
  Revert this for now; there's other stuff I have to fold into re-start
  RX before I do this.

Modified:
  user/adrian/if_ath_tx/sys/dev/ath/if_ath.c

Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath.c
==============================================================================
--- user/adrian/if_ath_tx/sys/dev/ath/if_ath.c	Fri Sep  2 08:34:31 2011	(r225327)
+++ user/adrian/if_ath_tx/sys/dev/ath/if_ath.c	Fri Sep  2 09:55:35 2011	(r225328)
@@ -3422,9 +3422,7 @@ ath_rxbuf_init(struct ath_softc *sc, str
 		, 0
 	);
 
-	if (sc->sc_rxlink == NULL)
-		ath_hal_putrxbuf(sc->sc_ah, bf->bf_daddr);
-	else
+	if (sc->sc_rxlink != NULL)
 		*sc->sc_rxlink = bf->bf_daddr;
 	sc->sc_rxlink = &ds->ds_link;
 	return 0;


More information about the svn-src-user mailing list