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

Adrian Chadd adrian at FreeBSD.org
Mon Aug 22 05:03:44 UTC 2011


Author: adrian
Date: Mon Aug 22 05:03:43 2011
New Revision: 225071
URL: http://svn.freebsd.org/changeset/base/225071

Log:
  The completion handler "fail" flag is 0 or 1 - -1 is what was being
  passed to the net80211 completion routine.

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

Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c
==============================================================================
--- user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c	Mon Aug 22 04:33:49 2011	(r225070)
+++ user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c	Mon Aug 22 05:03:43 2011	(r225071)
@@ -2112,7 +2112,7 @@ ath_tx_tid_free_pkts(struct ath_softc *s
 		}
 		ATH_TXQ_REMOVE(atid, bf, bf_list);
 		ATH_TXQ_UNLOCK(atid);
-		ath_tx_default_comp(sc, bf, -1);
+		ath_tx_default_comp(sc, bf, 0);
 	}
 }
 


More information about the svn-src-user mailing list