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

/freebsd-9.3-release/sys/net80211/
H A Dieee80211_proto.c861 _setifsparams(struct wmeParams *wmep, const paramType *phy) argument
863 wmep->wmep_aifsn = phy->aifsn;
864 wmep->wmep_logcwmin = phy->logcwmin;
865 wmep->wmep_logcwmax = phy->logcwmax;
866 wmep->wmep_txopLimit = phy->txopLimit;
871 struct wmeParams *wmep, const paramType *phy)
873 wmep->wmep_acm = phy->acm;
874 _setifsparams(wmep, phy);
879 wmep->wmep_acm, wmep
870 setwmeparams(struct ieee80211vap *vap, const char *type, int ac, struct wmeParams *wmep, const paramType *phy) argument
889 struct wmeParams *wmep; local
993 const struct wmeParams *wmep; local
[all...]
H A Dieee80211_ioctl.c551 struct wmeParams *wmep; local
561 wmep = &wme->wme_wmeBssChanParams.cap_wmeParams[ac];
563 wmep = &wme->wme_wmeChanParams.cap_wmeParams[ac];
566 ireq->i_val = wmep->wmep_logcwmin;
569 ireq->i_val = wmep->wmep_logcwmax;
572 ireq->i_val = wmep->wmep_aifsn;
575 ireq->i_val = wmep->wmep_txopLimit;
578 wmep = &wme->wme_wmeBssChanParams.cap_wmeParams[ac];
579 ireq->i_val = wmep->wmep_acm;
582 wmep
1714 struct wmeParams *wmep, *chanp; local
[all...]
H A Dieee80211_sta.c1083 struct wmeParams *wmep = local
1086 wmep->wmep_acm = MS(frm[0], WME_PARAM_ACM);
1087 wmep->wmep_aifsn = MS(frm[0], WME_PARAM_AIFSN);
1088 wmep->wmep_logcwmin = MS(frm[1], WME_PARAM_LOGCWMIN);
1089 wmep->wmep_logcwmax = MS(frm[1], WME_PARAM_LOGCWMAX);
1090 wmep->wmep_txopLimit = LE_READ_2(frm+2);
/freebsd-9.3-release/sys/dev/ral/
H A Drt2661.c2104 const struct wmeParams *wmep; local
2106 wmep = ic->ic_wme.wme_chanParams.cap_wmeParams;
2113 wmep[WME_AC_BE].wmep_txopLimit << 16 |
2114 wmep[WME_AC_BK].wmep_txopLimit);
2116 wmep[WME_AC_VI].wmep_txopLimit << 16 |
2117 wmep[WME_AC_VO].wmep_txopLimit);
2121 wmep[WME_AC_BE].wmep_logcwmin << 12 |
2122 wmep[WME_AC_BK].wmep_logcwmin << 8 |
2123 wmep[WME_AC_VI].wmep_logcwmin << 4 |
2124 wmep[WME_AC_V
[all...]
H A Drt2860.c2940 const struct wmeParams *wmep; local
2943 wmep = ic->ic_wme.wme_chanParams.cap_wmeParams;
2948 wmep[aci].wmep_logcwmax << 16 |
2949 wmep[aci].wmep_logcwmin << 12 |
2950 wmep[aci].wmep_aifsn << 8 |
2951 wmep[aci].wmep_txopLimit);
2956 wmep[WME_AC_VO].wmep_aifsn << 12 |
2957 wmep[WME_AC_VI].wmep_aifsn << 8 |
2958 wmep[WME_AC_BK].wmep_aifsn << 4 |
2959 wmep[WME_AC_B
[all...]
/freebsd-9.3-release/sys/dev/iwi/
H A Dif_iwi.c1031 const struct wmeParams *wmep; local
1037 wmep = &iwi_wme_cck_params[ac];
1038 sc->wme[1].aifsn[ac] = wmep->wmep_aifsn;
1039 sc->wme[1].cwmin[ac] = IWI_EXP2(wmep->wmep_logcwmin);
1040 sc->wme[1].cwmax[ac] = IWI_EXP2(wmep->wmep_logcwmax);
1041 sc->wme[1].burst[ac] = IWI_USEC(wmep->wmep_txopLimit);
1042 sc->wme[1].acm[ac] = wmep->wmep_acm;
1045 wmep = &iwi_wme_ofdm_params[ac];
1046 sc->wme[2].aifsn[ac] = wmep->wmep_aifsn;
1047 sc->wme[2].cwmin[ac] = IWI_EXP2(wmep
1057 const struct wmeParams *wmep; local
[all...]
/freebsd-9.3-release/sys/dev/ath/
H A Dif_ath.c2214 struct wmeParams *wmep = local
2219 qi.tqi_aifs = wmep->wmep_aifsn;
2220 qi.tqi_cwmin = 2*ATH_EXPONENT_TO_VALUE(wmep->wmep_logcwmin);
2221 qi.tqi_cwmax = ATH_EXPONENT_TO_VALUE(wmep->wmep_logcwmax);
3945 struct wmeParams *wmep = &ic->ic_wme.wme_chanParams.cap_wmeParams[ac]; local
3979 qi.tqi_aifs = wmep->wmep_aifsn;
3980 qi.tqi_cwmin = ATH_EXPONENT_TO_VALUE(wmep->wmep_logcwmin);
3981 qi.tqi_cwmax = ATH_EXPONENT_TO_VALUE(wmep->wmep_logcwmax);
3983 qi.tqi_burstTime = ATH_TXOP_TO_US(wmep->wmep_txopLimit);
/freebsd-9.3-release/sys/dev/wpi/
H A Dif_wpi.c2232 const struct wmeParams *wmep; local
2242 wmep = &ic->ic_wme.wme_chanParams.cap_wmeParams[ac];
2243 wme.ac[ac].aifsn = wmep->wmep_aifsn;
2244 wme.ac[ac].cwmin = WPI_EXP2(wmep->wmep_logcwmin);
2245 wme.ac[ac].cwmax = WPI_EXP2(wmep->wmep_logcwmax);
2246 wme.ac[ac].txop = WPI_USEC(wmep->wmep_txopLimit);
/freebsd-9.3-release/sys/dev/mwl/
H A Dif_mwl.c3000 struct wmeParams *wmep = &ic->ic_wme.wme_chanParams.cap_wmeParams[ac]; local
3004 aifs = wmep->wmep_aifsn;
3006 cwmin = MWL_EXPONENT_TO_VALUE(wmep->wmep_logcwmin);
3007 cwmax = MWL_EXPONENT_TO_VALUE(wmep->wmep_logcwmax);
3008 txoplim = wmep->wmep_txopLimit; /* NB: units of 32us */
/freebsd-9.3-release/sys/dev/bwn/
H A Dif_bwn.c2821 struct wmeParams *wmep; local
2829 wmep = &ic->ic_wme.wme_chanParams.cap_wmeParams[i];
2830 bwn_wme_loadparams(mac, wmep, bwn_wme_shm_offsets[i]);

Completed in 327 milliseconds