diff options
| author | CNSS_WLAN Service <cnssbldsw@qualcomm.com> | 2018-07-10 01:54:27 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2018-07-10 01:54:27 -0700 |
| commit | bb07ae00a1c5e62cf3e56aa92c3d2e60b51f4b71 (patch) | |
| tree | b6850b2e80981c60f14384ed16d6a66f2db77e32 | |
| parent | 064f457bc0c10e78365a4af68e2debef30b13875 (diff) | |
| parent | 68d715d646f637fd5e39ed4a39e1e7edb29e58df (diff) | |
Merge "qcacld-2.0: Set protected bit for ECSA action frame" into wlan-cld2.driver.lnx.1.0
| -rw-r--r-- | CORE/MAC/src/pe/lim/limSendManagementFrames.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CORE/MAC/src/pe/lim/limSendManagementFrames.c b/CORE/MAC/src/pe/lim/limSendManagementFrames.c index ebba5232da73..d367e1a71be0 100644 --- a/CORE/MAC/src/pe/lim/limSendManagementFrames.c +++ b/CORE/MAC/src/pe/lim/limSendManagementFrames.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2017 The Linux Foundation. All rights reserved. + * Copyright (c) 2011-2018 The Linux Foundation. All rights reserved. * * Previously licensed under the ISC license by Qualcomm Atheros, Inc. * @@ -4710,6 +4710,10 @@ lim_send_extended_chan_switch_action_frame(tpAniSirGlobal mac_ctx, return eSIR_FAILURE; } +#ifdef WLAN_FEATURE_11W + limSetProtectedBit(mac_ctx, session_entry, peer, mac_hdr); +#endif + status = dot11fPackext_channel_switch_action_frame( mac_ctx, &frm, frame + sizeof(tSirMacMgmtHdr), n_payload, &n_payload); if (DOT11F_FAILED(status)) { |
