diff options
| author | Komal Seelam <kseelam@qti.qualcomm.com> | 2014-12-19 16:10:08 +0530 |
|---|---|---|
| committer | AnjaneeDevi Kapparapu <c_akappa@qti.qualcomm.com> | 2014-12-24 16:12:38 +0530 |
| commit | 7ffbd85120c0e183ff1405b3114e97f8038c960c (patch) | |
| tree | 5ea8ea7f936b19cc33034a15b348856d7d2d746f | |
| parent | f13becf5d63e246b7cbe30b843534794f14e117b (diff) | |
qcacld-2.0: Delete the TSPEC for the right access category.
The User priority fields for del_ts is to be filled based on the
wmm IE support instead of tsinfo.
The user priorities are mapped to the access category.
Wrongly deleting the TSPEC in FW will not yeild the expected results.
Fix it to fill the user priority field based on the wmm IE support.
Change-Id: I38583459fb59c936a10283c848b67045b6c6fc45
CRs-Fixed: 774889
| -rw-r--r-- | CORE/MAC/src/pe/lim/limAdmitControl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CORE/MAC/src/pe/lim/limAdmitControl.c b/CORE/MAC/src/pe/lim/limAdmitControl.c index bf613ef14ee3..803b99b92389 100644 --- a/CORE/MAC/src/pe/lim/limAdmitControl.c +++ b/CORE/MAC/src/pe/lim/limAdmitControl.c @@ -1030,7 +1030,8 @@ limSendHalMsgDelTs( goto err; } pDelTsParam->sessionId = psessionEntry->smeSessionId; - pDelTsParam->userPrio = delts.tsinfo.traffic.userPrio; + pDelTsParam->userPrio = delts.wmeTspecPresent? + delts.tspec.tsinfo.traffic.userPrio: delts.tsinfo.traffic.userPrio; #ifdef WLAN_FEATURE_ROAM_OFFLOAD if (pMac->roam.configParam.isRoamOffloadEnabled && |
