Lines Matching refs:qi

1060 	HAL_TX_QUEUE_INFO *qi, const HAL_TXQ_INFO *qInfo)
1064 if (qi->tqi_type == HAL_TX_QUEUE_INACTIVE) {
1070 qi->tqi_ver = qInfo->tqi_ver;
1071 qi->tqi_subtype = qInfo->tqi_subtype;
1072 qi->tqi_qflags = qInfo->tqi_qflags;
1073 qi->tqi_priority = qInfo->tqi_priority;
1075 qi->tqi_aifs = AH_MIN(qInfo->tqi_aifs, 255);
1077 qi->tqi_aifs = INIT_AIFS;
1081 qi->tqi_cwmin = 1;
1082 while (qi->tqi_cwmin < cw)
1083 qi->tqi_cwmin = (qi->tqi_cwmin << 1) | 1;
1085 qi->tqi_cwmin = qInfo->tqi_cwmin;
1089 qi->tqi_cwmax = 1;
1090 while (qi->tqi_cwmax < cw)
1091 qi->tqi_cwmax = (qi->tqi_cwmax << 1) | 1;
1093 qi->tqi_cwmax = INIT_CWMAX;
1096 qi->tqi_shretry = AH_MIN(qInfo->tqi_shretry, 15);
1098 qi->tqi_shretry = INIT_SH_RETRY;
1100 qi->tqi_lgretry = AH_MIN(qInfo->tqi_lgretry, 15);
1102 qi->tqi_lgretry = INIT_LG_RETRY;
1103 qi->tqi_cbrPeriod = qInfo->tqi_cbrPeriod;
1104 qi->tqi_cbrOverflowLimit = qInfo->tqi_cbrOverflowLimit;
1105 qi->tqi_burstTime = qInfo->tqi_burstTime;
1106 qi->tqi_readyTime = qInfo->tqi_readyTime;
1110 if (qi->tqi_type == HAL_TX_QUEUE_DATA)
1111 qi->tqi_intFlags = HAL_TXQ_USE_LOCKOUT_BKOFF_DIS;
1121 HAL_TXQ_INFO *qInfo, const HAL_TX_QUEUE_INFO *qi)
1123 if (qi->tqi_type == HAL_TX_QUEUE_INACTIVE) {
1129 qInfo->tqi_ver = qi->tqi_ver;
1130 qInfo->tqi_subtype = qi->tqi_subtype;
1131 qInfo->tqi_qflags = qi->tqi_qflags;
1132 qInfo->tqi_priority = qi->tqi_priority;
1133 qInfo->tqi_aifs = qi->tqi_aifs;
1134 qInfo->tqi_cwmin = qi->tqi_cwmin;
1135 qInfo->tqi_cwmax = qi->tqi_cwmax;
1136 qInfo->tqi_shretry = qi->tqi_shretry;
1137 qInfo->tqi_lgretry = qi->tqi_lgretry;
1138 qInfo->tqi_cbrPeriod = qi->tqi_cbrPeriod;
1139 qInfo->tqi_cbrOverflowLimit = qi->tqi_cbrOverflowLimit;
1140 qInfo->tqi_burstTime = qi->tqi_burstTime;
1141 qInfo->tqi_readyTime = qi->tqi_readyTime;
1142 qInfo->tqi_compBuf = qi->tqi_physCompBuf;