Searched refs:wmep (Results 1 - 12 of 12) sorted by relevance

/freebsd-11-stable/sys/net80211/
H A Dieee80211_proto.c1000 _setifsparams(struct wmeParams *wmep, const paramType *phy) argument
1002 wmep->wmep_aifsn = phy->aifsn;
1003 wmep->wmep_logcwmin = phy->logcwmin;
1004 wmep->wmep_logcwmax = phy->logcwmax;
1005 wmep->wmep_txopLimit = phy->txopLimit;
1010 struct wmeParams *wmep, const paramType *phy)
1012 wmep->wmep_acm = phy->acm;
1013 _setifsparams(wmep, phy);
1018 wmep->wmep_acm, wmep
1009 setwmeparams(struct ieee80211vap *vap, const char *type, int ac, struct wmeParams *wmep, const paramType *phy) argument
1028 struct wmeParams *wmep; local
1132 const struct wmeParams *wmep; local
[all...]
H A Dieee80211_ioctl.c556 struct wmeParams *wmep; local
566 wmep = &wme->wme_wmeBssChanParams.cap_wmeParams[ac];
568 wmep = &wme->wme_wmeChanParams.cap_wmeParams[ac];
571 ireq->i_val = wmep->wmep_logcwmin;
574 ireq->i_val = wmep->wmep_logcwmax;
577 ireq->i_val = wmep->wmep_aifsn;
580 ireq->i_val = wmep->wmep_txopLimit;
583 wmep = &wme->wme_wmeBssChanParams.cap_wmeParams[ac];
584 ireq->i_val = wmep->wmep_acm;
587 wmep
1774 struct wmeParams *wmep, *chanp; local
[all...]
H A Dieee80211_sta.c1105 struct wmeParams *wmep = local
1108 wmep->wmep_acm = MS(frm[0], WME_PARAM_ACM);
1109 wmep->wmep_aifsn = MS(frm[0], WME_PARAM_AIFSN);
1110 wmep->wmep_logcwmin = MS(frm[1], WME_PARAM_LOGCWMIN);
1111 wmep->wmep_logcwmax = MS(frm[1], WME_PARAM_LOGCWMAX);
1112 wmep->wmep_txopLimit = le16dec(frm+2);
/freebsd-11-stable/sys/dev/ral/
H A Drt2661.c2050 const struct wmeParams *wmep; local
2052 wmep = ic->ic_wme.wme_chanParams.cap_wmeParams;
2059 wmep[WME_AC_BE].wmep_txopLimit << 16 |
2060 wmep[WME_AC_BK].wmep_txopLimit);
2062 wmep[WME_AC_VI].wmep_txopLimit << 16 |
2063 wmep[WME_AC_VO].wmep_txopLimit);
2067 wmep[WME_AC_BE].wmep_logcwmin << 12 |
2068 wmep[WME_AC_BK].wmep_logcwmin << 8 |
2069 wmep[WME_AC_VI].wmep_logcwmin << 4 |
2070 wmep[WME_AC_V
[all...]
H A Drt2860.c3116 const struct wmeParams *wmep; local
3119 wmep = ic->ic_wme.wme_chanParams.cap_wmeParams;
3124 wmep[aci].wmep_logcwmax << 16 |
3125 wmep[aci].wmep_logcwmin << 12 |
3126 wmep[aci].wmep_aifsn << 8 |
3127 wmep[aci].wmep_txopLimit);
3132 wmep[WME_AC_VO].wmep_aifsn << 12 |
3133 wmep[WME_AC_VI].wmep_aifsn << 8 |
3134 wmep[WME_AC_BK].wmep_aifsn << 4 |
3135 wmep[WME_AC_B
[all...]
/freebsd-11-stable/sys/dev/iwi/
H A Dif_iwi.c1022 const struct wmeParams *wmep; local
1028 wmep = &iwi_wme_cck_params[ac];
1029 sc->wme[1].aifsn[ac] = wmep->wmep_aifsn;
1030 sc->wme[1].cwmin[ac] = IWI_EXP2(wmep->wmep_logcwmin);
1031 sc->wme[1].cwmax[ac] = IWI_EXP2(wmep->wmep_logcwmax);
1032 sc->wme[1].burst[ac] = IWI_USEC(wmep->wmep_txopLimit);
1033 sc->wme[1].acm[ac] = wmep->wmep_acm;
1036 wmep = &iwi_wme_ofdm_params[ac];
1037 sc->wme[2].aifsn[ac] = wmep->wmep_aifsn;
1038 sc->wme[2].cwmin[ac] = IWI_EXP2(wmep
1049 const struct wmeParams *wmep; local
[all...]
/freebsd-11-stable/sys/dev/ath/
H A Dif_ath_beacon.c151 struct wmeParams *wmep = local
156 qi.tqi_aifs = wmep->wmep_aifsn;
157 qi.tqi_cwmin = 2*ATH_EXPONENT_TO_VALUE(wmep->wmep_logcwmin);
158 qi.tqi_cwmax = ATH_EXPONENT_TO_VALUE(wmep->wmep_logcwmax);
H A Dif_ath.c3939 struct wmeParams *wmep = &ic->ic_wme.wme_chanParams.cap_wmeParams[ac]; local
3978 qi.tqi_aifs = wmep->wmep_aifsn;
3979 qi.tqi_cwmin = ATH_EXPONENT_TO_VALUE(wmep->wmep_logcwmin);
3980 qi.tqi_cwmax = ATH_EXPONENT_TO_VALUE(wmep->wmep_logcwmax);
3982 qi.tqi_burstTime = IEEE80211_TXOP_TO_US(wmep->wmep_txopLimit);
/freebsd-11-stable/sys/dev/urtwn/
H A Dif_urtwn.c4851 const struct wmeParams *wmep = local
4863 aifs = wmep[ac].wmep_aifsn * slottime + IEEE80211_DUR_SIFS;
4865 SM(R92C_EDCA_PARAM_TXOP, wmep[ac].wmep_txopLimit) |
4866 SM(R92C_EDCA_PARAM_ECWMIN, wmep[ac].wmep_logcwmin) |
4867 SM(R92C_EDCA_PARAM_ECWMAX, wmep[ac].wmep_logcwmax) |
4870 acm |= wmep[ac].wmep_acm << ac;
4908 const struct wmeParams *wmep = local
4914 aifs = wmep[ac].wmep_aifsn * slottime + IEEE80211_DUR_SIFS;
/freebsd-11-stable/sys/dev/mwl/
H A Dif_mwl.c2887 struct wmeParams *wmep = &ic->ic_wme.wme_chanParams.cap_wmeParams[ac]; local
2891 aifs = wmep->wmep_aifsn;
2893 cwmin = MWL_EXPONENT_TO_VALUE(wmep->wmep_logcwmin);
2894 cwmax = MWL_EXPONENT_TO_VALUE(wmep->wmep_logcwmax);
2895 txoplim = wmep->wmep_txopLimit; /* NB: units of 32us */
/freebsd-11-stable/sys/dev/usb/wlan/
H A Dif_rum.c1307 struct wmeParams *wmep = &sc->wme_params[qid]; local
1355 RT2573_AIFSN(wmep->wmep_aifsn) |
1356 RT2573_LOGCWMIN(wmep->wmep_logcwmin) |
1357 RT2573_LOGCWMAX(wmep->wmep_logcwmax));
/freebsd-11-stable/sys/dev/bwn/
H A Dif_bwn.c1740 struct wmeParams *wmep; local
1748 wmep = &ic->ic_wme.wme_chanParams.cap_wmeParams[i];
1749 bwn_wme_loadparams(mac, wmep, bwn_wme_shm_offsets[i]);

Completed in 207 milliseconds