summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRajeev Kumar <rajekuma@qca.qualcomm.com>2014-07-26 10:37:40 -0700
committerAkash Patel <c_akashp@qca.qualcomm.com>2014-07-28 19:45:27 -0700
commitff74d228da5aaba1d3f2483b0dd300ed69aa4331 (patch)
treec19a0c766b37134ee65f3f431e8eeee14f064181
parent7a72bda3b98e4255ef0fb3ed560f1135d6671e28 (diff)
qcacld: Fix of scan empty issue caused by HT IE change
Fix of scan list empty issue caused by channel information getting changed in beacon HT IE while LIM is already waiting for FT PREAUTH response from WMA. Change-Id: Ib2ec3a70a815817101f33fe062bb1a7897d660df CRs-Fixed: 700444
-rw-r--r--CORE/MAC/src/pe/lim/limUtils.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/CORE/MAC/src/pe/lim/limUtils.c b/CORE/MAC/src/pe/lim/limUtils.c
index 9aa3f9a3a6ff..e865437fb420 100644
--- a/CORE/MAC/src/pe/lim/limUtils.c
+++ b/CORE/MAC/src/pe/lim/limUtils.c
@@ -5188,6 +5188,12 @@ void limUpdateStaRunTimeHTSwitchChnlParams( tpAniSirGlobal pMac,
}
#endif
+ if (psessionEntry->ftPEContext.ftPreAuthSession) {
+ limLog( pMac, LOGE, FL( "FT PREAUTH channel change is in progress"));
+ return;
+ }
+
+
if ( psessionEntry->htSecondaryChannelOffset != ( tANI_U8 ) pHTInfo->secondaryChannelOffset ||
psessionEntry->htRecommendedTxWidthSet != ( tANI_U8 ) pHTInfo->recommendedTxWidthSet )
{