Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Aug 2011 05:03:43 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r225071 - user/adrian/if_ath_tx/sys/dev/ath
Message-ID:  <201108220503.p7M53hqG034438@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 	}
 }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201108220503.p7M53hqG034438>