Home
last modified time | relevance | path

Searched refs:ts_status (Results 1 – 12 of 12) sorted by relevance

/dragonfly/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_xmit_ds.c303 ts->ts_status = 0; in ar9300_proc_tx_desc()
307 ts->ts_status |= HAL_TXERR_XRETRY; in ar9300_proc_tx_desc()
310 ts->ts_status |= HAL_TXERR_FILT; in ar9300_proc_tx_desc()
313 ts->ts_status |= HAL_TXERR_FIFO; in ar9300_proc_tx_desc()
317 ts->ts_status |= HAL_TXERR_XTXOP; in ar9300_proc_tx_desc()
320 ts->ts_status |= HAL_TXERR_TIMER_EXPIRED; in ar9300_proc_tx_desc()
/dragonfly/sys/dev/netif/ath/ath_hal/ar5210/
H A Dar5210_xmit.c601 ts->ts_status = 0; in ar5210ProcTxDesc()
604 ts->ts_status |= HAL_TXERR_XRETRY; in ar5210ProcTxDesc()
606 ts->ts_status |= HAL_TXERR_FILT; in ar5210ProcTxDesc()
608 ts->ts_status |= HAL_TXERR_FIFO; in ar5210ProcTxDesc()
/dragonfly/sys/dev/netif/ath/ath_hal/ar5211/
H A Dar5211_xmit.c631 ts->ts_status = 0; in ar5211ProcTxDesc()
634 ts->ts_status |= HAL_TXERR_XRETRY; in ar5211ProcTxDesc()
636 ts->ts_status |= HAL_TXERR_FILT; in ar5211ProcTxDesc()
638 ts->ts_status |= HAL_TXERR_FIFO; in ar5211ProcTxDesc()
/dragonfly/sys/dev/netif/ath/ath/
H A Dif_ath_debug.c171 !done ? "" : (ts->ts_status == 0) ? " *" : " !"); in ath_printtxbuf_edma()
225 !done ? "" : (ts->ts_status == 0) ? " *" : " !"); in ath_printtxbuf_legacy()
H A Dif_ath_tx.c4299 if ((ts->ts_status & HAL_TXERR_FILT) || in ath_tx_normal_comp()
4305 ts->ts_status); in ath_tx_normal_comp()
4350 1, (ts->ts_status == 0) ? 0 : 1); in ath_tx_normal_comp()
4987 if ((ts.ts_status & HAL_TXERR_FILT) ||
4988 (ts.ts_status != 0 && atid->isfiltered)) {
5036 if (ts.ts_status & HAL_TXERR_XRETRY) {
5038 if (ts.ts_status != 0) {
5052 tx_ok = (ts.ts_status == 0);
5273 1, (ts.ts_status == 0) ? 0 : 1);
5333 if ((ts.ts_status & HAL_TXERR_FILT) ||
[all …]
H A Dif_ath.c4196 if (ts->ts_status == 0) {
4208 if (ts->ts_status & HAL_TXERR_XRETRY)
4210 if (ts->ts_status & HAL_TXERR_FIFO)
4212 if (ts->ts_status & HAL_TXERR_FILT)
4214 if (ts->ts_status & HAL_TXERR_XTXOP)
4216 if (ts->ts_status & HAL_TXERR_TIMER_EXPIRED)
4260 ts->ts_status : HAL_TXERR_XRETRY;
4324 if ((ts->ts_status & HAL_TXERR_FILT) == 0) {
4362 if ((ts->ts_status & HAL_TXERR_FILT) == 0 &&
4371 (ts->ts_status == 0 ? 0 : 1));
[all …]
H A Dif_ath_tx_edma.c814 if (ni != NULL && ts.ts_status == 0 && in ath_edma_tx_processq()
/dragonfly/sys/dev/netif/ath/ath_hal/ar5416/
H A Dar5416_xmit.c732 ts->ts_status = 0; in ar5416ProcTxDesc()
734 ts->ts_status |= HAL_TXERR_XRETRY; in ar5416ProcTxDesc()
736 ts->ts_status |= HAL_TXERR_FILT; in ar5416ProcTxDesc()
738 ts->ts_status |= HAL_TXERR_FIFO; in ar5416ProcTxDesc()
740 ts->ts_status |= HAL_TXERR_XTXOP; in ar5416ProcTxDesc()
742 ts->ts_status |= HAL_TXERR_TIMER_EXPIRED; in ar5416ProcTxDesc()
817 if ((ts->ts_status & HAL_TXERR_FIFO) || in ar5416ProcTxDesc()
/dragonfly/sys/dev/netif/ath/ath_hal/ar5212/
H A Dar5212_xmit.c895 ts->ts_status = 0; in ar5212ProcTxDesc()
898 ts->ts_status |= HAL_TXERR_XRETRY; in ar5212ProcTxDesc()
900 ts->ts_status |= HAL_TXERR_FILT; in ar5212ProcTxDesc()
902 ts->ts_status |= HAL_TXERR_FIFO; in ar5212ProcTxDesc()
/dragonfly/sys/dev/netif/ath/ath_hal/
H A Dah_desc.h50 uint8_t ts_status; /* frame status, 0 => xmit ok */ member
/dragonfly/sys/dev/netif/ath/ath_rate/onoe/
H A Donoe.c174 if (ts->ts_status == 0) in ath_rate_tx_complete()
/dragonfly/sys/dev/netif/ath/ath_rate/sample/
H A Dsample.c869 int status = ts->ts_status; in ath_rate_tx_complete()