Home | History | Annotate | Download | only in dist

Lines Matching refs:qi

676 	HAL_TX_QUEUE_INFO *qi, const HAL_TXQ_INFO *qInfo)
680 if (qi->tqi_type == HAL_TX_QUEUE_INACTIVE) {
686 qi->tqi_ver = qInfo->tqi_ver;
687 qi->tqi_subtype = qInfo->tqi_subtype;
688 qi->tqi_qflags = qInfo->tqi_qflags;
689 qi->tqi_priority = qInfo->tqi_priority;
691 qi->tqi_aifs = AH_MIN(qInfo->tqi_aifs, 255);
693 qi->tqi_aifs = INIT_AIFS;
697 qi->tqi_cwmin = 1;
698 while (qi->tqi_cwmin < cw)
699 qi->tqi_cwmin = (qi->tqi_cwmin << 1) | 1;
701 qi->tqi_cwmin = qInfo->tqi_cwmin;
705 qi->tqi_cwmax = 1;
706 while (qi->tqi_cwmax < cw)
707 qi->tqi_cwmax = (qi->tqi_cwmax << 1) | 1;
709 qi->tqi_cwmax = INIT_CWMAX;
712 qi->tqi_shretry = AH_MIN(qInfo->tqi_shretry, 15);
714 qi->tqi_shretry = INIT_SH_RETRY;
716 qi->tqi_lgretry = AH_MIN(qInfo->tqi_lgretry, 15);
718 qi->tqi_lgretry = INIT_LG_RETRY;
719 qi->tqi_cbrPeriod = qInfo->tqi_cbrPeriod;
720 qi->tqi_cbrOverflowLimit = qInfo->tqi_cbrOverflowLimit;
721 qi->tqi_burstTime = qInfo->tqi_burstTime;
722 qi->tqi_readyTime = qInfo->tqi_readyTime;
726 if (qi->tqi_type == HAL_TX_QUEUE_DATA)
727 qi->tqi_intFlags = HAL_TXQ_USE_LOCKOUT_BKOFF_DIS;
737 HAL_TXQ_INFO *qInfo, const HAL_TX_QUEUE_INFO *qi)
739 if (qi->tqi_type == HAL_TX_QUEUE_INACTIVE) {
745 qInfo->tqi_qflags = qi->tqi_qflags;
746 qInfo->tqi_ver = qi->tqi_ver;
747 qInfo->tqi_subtype = qi->tqi_subtype;
748 qInfo->tqi_qflags = qi->tqi_qflags;
749 qInfo->tqi_priority = qi->tqi_priority;
750 qInfo->tqi_aifs = qi->tqi_aifs;
751 qInfo->tqi_cwmin = qi->tqi_cwmin;
752 qInfo->tqi_cwmax = qi->tqi_cwmax;
753 qInfo->tqi_shretry = qi->tqi_shretry;
754 qInfo->tqi_lgretry = qi->tqi_lgretry;
755 qInfo->tqi_cbrPeriod = qi->tqi_cbrPeriod;
756 qInfo->tqi_cbrOverflowLimit = qi->tqi_cbrOverflowLimit;
757 qInfo->tqi_burstTime = qi->tqi_burstTime;
758 qInfo->tqi_readyTime = qi->tqi_readyTime;