diff options
| author | Chandrasekaran, Manishekar <cmshekar@qti.qualcomm.com> | 2014-08-08 13:04:10 +0530 |
|---|---|---|
| committer | Akash Patel <c_akashp@qca.qualcomm.com> | 2014-08-09 00:20:08 -0700 |
| commit | faf2dc3e8adf1916bdd34829072e2be1c5d5d632 (patch) | |
| tree | ce2f493c788f07a15f472a10b37bfdd29ae41337 | |
| parent | 3c65fb266bbd4cecaacf4541e52267273e226604 (diff) | |
qcacld: Fix delay in p2p GO group removal scenario
Currently, in AP scenario, the host driver is
sending deauth frame with reason code 2. But,
supplicant does not remove the group immediately
when the reason code is anything other than 3. The
group will get removed only after group idle time.
This is fixed here.
Change-Id: If6324517257f12904ed25c0d19c7e2013bc53f5e
CRs-Fixed: 706699
| -rw-r--r-- | CORE/SME/src/sme_common/sme_Api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CORE/SME/src/sme_common/sme_Api.c b/CORE/SME/src/sme_common/sme_Api.c index 7ccd3b7370e3..44afee76178d 100644 --- a/CORE/SME/src/sme_common/sme_Api.c +++ b/CORE/SME/src/sme_common/sme_Api.c @@ -3602,7 +3602,7 @@ eHalStatus sme_RoamDeauthSta(tHalHandle hHal, tANI_U8 sessionId, if( CSR_IS_SESSION_VALID( pMac, sessionId ) ) { status = csrRoamIssueDeauthStaCmd( pMac, sessionId, pPeerMacAddr, - eSIR_MAC_PREV_AUTH_NOT_VALID_REASON); + eSIR_MAC_DEAUTH_LEAVING_BSS_REASON); } else { |
