Browse Source

qcacld-3.0: Add INFO logs in mcast/bcast filtering code

qcacld-2.0 to qcacld-3.0 propagation

Add info level logs for ARP, NS offload.

Change-Id: I65943d4428f724c39142d1371c04541fcaba7d83
CRs-Fixed: 880526
Agrawal Ashish 9 năm trước cách đây
mục cha
commit
02460a80c6
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      core/hdd/src/wlan_hdd_power.c

+ 2 - 0
core/hdd/src/wlan_hdd_power.c

@@ -860,6 +860,7 @@ static void hdd_mcbc_filter_modification(hdd_context_t *pHddCtx,
 		 * of Broadcast BIT
 		 * of Broadcast BIT
 		 */
 		 */
 		*pMcBcFilter &= ~(HDD_MCASTBCASTFILTER_FILTER_ALL_BROADCAST);
 		*pMcBcFilter &= ~(HDD_MCASTBCASTFILTER_FILTER_ALL_BROADCAST);
+		hdd_info("ARP offload is enabled");
 	}
 	}
 #ifdef WLAN_NS_OFFLOAD
 #ifdef WLAN_NS_OFFLOAD
 	if (pHddCtx->config->fhostNSOffload) {
 	if (pHddCtx->config->fhostNSOffload) {
@@ -868,6 +869,7 @@ static void hdd_mcbc_filter_modification(hdd_context_t *pHddCtx,
 		 * disable Multicast filtering, Anding with the negation
 		 * disable Multicast filtering, Anding with the negation
 		 * of Multicast BIT
 		 * of Multicast BIT
 		 */
 		 */
+		hdd_info("NS offload is enabled");
 		*pMcBcFilter &= ~(HDD_MCASTBCASTFILTER_FILTER_ALL_MULTICAST);
 		*pMcBcFilter &= ~(HDD_MCASTBCASTFILTER_FILTER_ALL_MULTICAST);
 	}
 	}
 #endif
 #endif