mac80211: use AC constants
Use the AC constants instead of hard-coding the numbers with comments. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
78307daadf
commit
1d98fb122d
|
@ -790,20 +790,20 @@ void ieee80211_set_wmm_default(struct ieee80211_sub_if_data *sdata,
|
||||||
aCWmin = 15;
|
aCWmin = 15;
|
||||||
|
|
||||||
switch (queue) {
|
switch (queue) {
|
||||||
case 3: /* AC_BK */
|
case IEEE80211_AC_BK:
|
||||||
qparam.cw_max = aCWmax;
|
qparam.cw_max = aCWmax;
|
||||||
qparam.cw_min = aCWmin;
|
qparam.cw_min = aCWmin;
|
||||||
qparam.txop = 0;
|
qparam.txop = 0;
|
||||||
qparam.aifs = 7;
|
qparam.aifs = 7;
|
||||||
break;
|
break;
|
||||||
default: /* never happens but let's not leave undefined */
|
default: /* never happens but let's not leave undefined */
|
||||||
case 2: /* AC_BE */
|
case IEEE80211_AC_BE:
|
||||||
qparam.cw_max = aCWmax;
|
qparam.cw_max = aCWmax;
|
||||||
qparam.cw_min = aCWmin;
|
qparam.cw_min = aCWmin;
|
||||||
qparam.txop = 0;
|
qparam.txop = 0;
|
||||||
qparam.aifs = 3;
|
qparam.aifs = 3;
|
||||||
break;
|
break;
|
||||||
case 1: /* AC_VI */
|
case IEEE80211_AC_VI:
|
||||||
qparam.cw_max = aCWmin;
|
qparam.cw_max = aCWmin;
|
||||||
qparam.cw_min = (aCWmin + 1) / 2 - 1;
|
qparam.cw_min = (aCWmin + 1) / 2 - 1;
|
||||||
if (use_11b)
|
if (use_11b)
|
||||||
|
@ -812,7 +812,7 @@ void ieee80211_set_wmm_default(struct ieee80211_sub_if_data *sdata,
|
||||||
qparam.txop = 3008/32;
|
qparam.txop = 3008/32;
|
||||||
qparam.aifs = 2;
|
qparam.aifs = 2;
|
||||||
break;
|
break;
|
||||||
case 0: /* AC_VO */
|
case IEEE80211_AC_VO:
|
||||||
qparam.cw_max = (aCWmin + 1) / 2 - 1;
|
qparam.cw_max = (aCWmin + 1) / 2 - 1;
|
||||||
qparam.cw_min = (aCWmin + 1) / 4 - 1;
|
qparam.cw_min = (aCWmin + 1) / 4 - 1;
|
||||||
if (use_11b)
|
if (use_11b)
|
||||||
|
|
Loading…
Reference in New Issue