Forráskód Böngészése

qcacld-3.0: Use right macro to enable eapol dest_mac check

For MLO connection, host will use MLD mac address as eapol
dest_mac address check condition, but currently the macro
used is not the right one, so the check always return failure
and RX eapol frame is dropped in SAP HDD.

Use right macro WLAN_FEATURE_11BE_MLO to enable this check

Change-Id: I5e9e265583d9c39899c6604f1a16bde2f08484a9
CRs-Fixed: 3074632
Jinwei Chen 3 éve
szülő
commit
1e0e8f5424
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      core/hdd/inc/wlan_hdd_main.h

+ 1 - 1
core/hdd/inc/wlan_hdd_main.h

@@ -4879,7 +4879,7 @@ static inline bool hdd_is_mac_addr_same(uint8_t *addr1, uint8_t *addr2)
 	return !qdf_mem_cmp(addr1, addr2, QDF_MAC_ADDR_SIZE);
 }
 
-#ifdef DP_FEATURE_11BE_MLO
+#ifdef WLAN_FEATURE_11BE_MLO
 static inline bool hdd_nbuf_dst_addr_is_mld_addr(struct hdd_adapter *adapter,
 						 struct sk_buff *nbuf)
 {