Lines Matching refs:qi
4009 HAL_TXQ_INFO qi; in ath_txq_setup() local
4012 memset(&qi, 0, sizeof(qi)); in ath_txq_setup()
4013 qi.tqi_subtype = subtype; in ath_txq_setup()
4014 qi.tqi_aifs = HAL_TXQ_USEDEFAULT; in ath_txq_setup()
4015 qi.tqi_cwmin = HAL_TXQ_USEDEFAULT; in ath_txq_setup()
4016 qi.tqi_cwmax = HAL_TXQ_USEDEFAULT; in ath_txq_setup()
4030 qi.tqi_qflags = HAL_TXQ_TXEOLINT_ENABLE | in ath_txq_setup()
4033 qi.tqi_qflags = HAL_TXQ_TXEOLINT_ENABLE | in ath_txq_setup()
4036 qnum = ath_hal_setuptxqueue(ah, qtype, &qi); in ath_txq_setup()
4098 HAL_TXQ_INFO qi; in ath_txq_update() local
4103 ath_hal_gettxqueueprops(ah, txq->axq_qnum, &qi); in ath_txq_update()
4114 qi.tqi_qflags = HAL_TXQ_TXOKINT_ENABLE in ath_txq_update()
4122 qi.tqi_aifs = 0; in ath_txq_update()
4124 qi.tqi_readyTime = sc->sc_tdmaslotlen; in ath_txq_update()
4125 qi.tqi_burstTime = qi.tqi_readyTime; in ath_txq_update()
4132 qi.tqi_qflags = HAL_TXQ_TXOKINT_ENABLE in ath_txq_update()
4138 qi.tqi_aifs = wmep->wmep_aifsn; in ath_txq_update()
4139 qi.tqi_cwmin = ATH_EXPONENT_TO_VALUE(wmep->wmep_logcwmin); in ath_txq_update()
4140 qi.tqi_cwmax = ATH_EXPONENT_TO_VALUE(wmep->wmep_logcwmax); in ath_txq_update()
4141 qi.tqi_readyTime = 0; in ath_txq_update()
4142 qi.tqi_burstTime = IEEE80211_TXOP_TO_US(wmep->wmep_txopLimit); in ath_txq_update()
4149 __func__, txq->axq_qnum, qi.tqi_qflags, in ath_txq_update()
4150 qi.tqi_aifs, qi.tqi_cwmin, qi.tqi_cwmax, qi.tqi_burstTime); in ath_txq_update()
4152 if (!ath_hal_settxqueueprops(ah, txq->axq_qnum, &qi)) { in ath_txq_update()