diff options
| author | Chandrasekaran, Manishekar <cmshekar@qti.qualcomm.com> | 2014-11-12 17:48:44 +0530 |
|---|---|---|
| committer | AnjaneeDevi Kapparapu <c_akappa@qti.qualcomm.com> | 2014-11-17 15:18:53 +0530 |
| commit | 2c42c98ca55c8019785e22ae294ff8fc4d28245d (patch) | |
| tree | e3824ddbb29e17fff4879199ee366621cd988e8f | |
| parent | b5164a371b984920c9f30e5cf30b444cd10ca744 (diff) | |
qcacld-2.0: Initialize WMM config during SAP turn on
Current WMM config is not initailized during SAP
turn on. As a result when qos data is sent, it
goes in incorrect access category. This fix makes
sure that WMM is initialized during SAP turn on.
Change-Id: I0f2373684eef6eb728ca35a6331783b9eb79603f
CRs-Fixed: 754747
| -rw-r--r-- | CORE/HDD/src/wlan_hdd_cfg80211.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CORE/HDD/src/wlan_hdd_cfg80211.c b/CORE/HDD/src/wlan_hdd_cfg80211.c index 2fadaf3ed0fa..adb4c2c4a1b3 100644 --- a/CORE/HDD/src/wlan_hdd_cfg80211.c +++ b/CORE/HDD/src/wlan_hdd_cfg80211.c @@ -6597,6 +6597,8 @@ static int wlan_hdd_cfg80211_start_bss(hdd_adapter_t *pHostapdAdapter, /* Successfully started Bss update the state bit. */ set_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags); + /* Initialize WMM configuation */ + hdd_wmm_init(pHostapdAdapter); wlan_hdd_incr_active_session(pHddCtx, pHostapdAdapter->device_mode); #ifdef DHCP_SERVER_OFFLOAD |
