• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/dev/ath/ath_hal/

Lines Matching refs:qInfo

1056  * from qInfo.
1060 HAL_TX_QUEUE_INFO *qi, const HAL_TXQ_INFO *qInfo)
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;
1074 if (qInfo->tqi_aifs != HAL_TXQ_USEDEFAULT)
1075 qi->tqi_aifs = AH_MIN(qInfo->tqi_aifs, 255);
1078 if (qInfo->tqi_cwmin != HAL_TXQ_USEDEFAULT) {
1079 cw = AH_MIN(qInfo->tqi_cwmin, 1024);
1085 qi->tqi_cwmin = qInfo->tqi_cwmin;
1086 if (qInfo->tqi_cwmax != HAL_TXQ_USEDEFAULT) {
1087 cw = AH_MIN(qInfo->tqi_cwmax, 1024);
1095 if (qInfo->tqi_shretry != 0)
1096 qi->tqi_shretry = AH_MIN(qInfo->tqi_shretry, 15);
1099 if (qInfo->tqi_lgretry != 0)
1100 qi->tqi_lgretry = AH_MIN(qInfo->tqi_lgretry, 15);
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;
1108 switch (qInfo->tqi_subtype) {
1121 HAL_TXQ_INFO *qInfo, const HAL_TX_QUEUE_INFO *qi)
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;