diff options
| author | lifeng <lifeng@qti.qualcomm.com> | 2016-04-07 11:08:20 +0800 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-04-13 10:11:05 +0530 |
| commit | e740ca8e9b1171bcbe6a240f1a4baf10da0d3ddf (patch) | |
| tree | 40a1a0783e61d69bede5dcc8658d00cd54d79ef3 | |
| parent | fa6386614eadb49031fb461c2129477e2e4d28e1 (diff) | |
qcacld-2.0: Increase multicast list filter count in HL mode
Adjust CFG_TGT_MAX_MULTICAST_FILTER_ENTRIES macro as 16 to meet
OEM's requirement.
Change-Id: Ia495180169149ead49e0b50a20347109d72ed644
CRs-Fixed: 1000366
| -rw-r--r-- | CORE/HDD/src/wlan_hdd_wext.c | 5 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wlan_tgt_def_config_hl.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CORE/HDD/src/wlan_hdd_wext.c b/CORE/HDD/src/wlan_hdd_wext.c index 8ad3a36c2ac5..d30d0ce5f8bd 100644 --- a/CORE/HDD/src/wlan_hdd_wext.c +++ b/CORE/HDD/src/wlan_hdd_wext.c @@ -10306,6 +10306,11 @@ void wlan_hdd_set_mc_addr_list(hdd_adapter_t *pAdapter, v_U8_t set) memcpy(pMulticastAddrs->multicastAddr[i], pAdapter->mc_addr_list.addr[i], sizeof(pAdapter->mc_addr_list.addr[i])); + hddLog(VOS_TRACE_LEVEL_INFO, + "%s: clearing multicast filter: addr =" + MAC_ADDRESS_STR, + __func__, + MAC_ADDR_ARRAY(pMulticastAddrs->multicastAddr[i])); } sme_8023MulticastList(hHal, pAdapter->sessionId, pMulticastAddrs); diff --git a/CORE/SERVICES/COMMON/wlan_tgt_def_config_hl.h b/CORE/SERVICES/COMMON/wlan_tgt_def_config_hl.h index 4c3f53a3da62..a7e1c29259e1 100644 --- a/CORE/SERVICES/COMMON/wlan_tgt_def_config_hl.h +++ b/CORE/SERVICES/COMMON/wlan_tgt_def_config_hl.h @@ -238,7 +238,7 @@ */ #define CFG_TGT_NUM_TDLS_CONC_BUFFER_STAS 1 -#define CFG_TGT_MAX_MULTICAST_FILTER_ENTRIES 5 +#define CFG_TGT_MAX_MULTICAST_FILTER_ENTRIES 16 /* * Maximum number of VDEV that beacon tx offload will support */ |
