Browse Source

qcacld-3.0: Fix LFR3 roaming and NUD race condition issue

If data stall happens, both LFR3 roaming and NUD may happen,
if LFR3 happens first, updated connected bssid, NUD handler will
add new bssid to blacklist and trigger roaming again by mistake.

Fix: Once roaming succeed, reset NUD status to NUD_NONE to finish
current NUD cycle, but don't zero gw mac addr since roaming does't
update gateway.

Change-Id: I03685ca21348444d929e042f12dc3a837ca51940
CRs-Fixed: 2818785
Jianmin Zhu 4 years ago
parent
commit
c5835c7bee

+ 1 - 0
core/hdd/src/wlan_hdd_assoc.c

@@ -3403,6 +3403,7 @@ hdd_association_completion_handler(struct hdd_adapter *adapter,
 					      eCSR_BSS_TYPE_INFRASTRUCTURE);
 			}
 
+			hdd_nud_indicate_roam(adapter);
 			/* Start the tx queues */
 			hdd_debug("Enabling queues");
 			hdd_netif_queue_enable(adapter);

+ 5 - 0
core/hdd/src/wlan_hdd_nud_tracking.c

@@ -587,3 +587,8 @@ void hdd_nud_unregister_netevent_notifier(struct hdd_context *hdd_ctx)
 			hdd_debug("Unregistered netevent notifier");
 	}
 }
+
+void hdd_nud_indicate_roam(struct hdd_adapter *adapter)
+{
+	hdd_nud_set_tracking(adapter, NUD_NONE, false);
+}

+ 14 - 1
core/hdd/src/wlan_hdd_nud_tracking.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, 2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2018-2020 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -149,6 +149,14 @@ void hdd_nud_unregister_netevent_notifier(struct hdd_context *hdd_ctx);
  */
 void hdd_nud_flush_work(struct hdd_adapter *adapter);
 
+/**
+ * hdd_nud_indicate_roam() - reset NUD when roaming happens
+ * @adapter: Pointer to hdd adapter
+ *
+ * Return: None
+ */
+void hdd_nud_indicate_roam(struct hdd_adapter *adapter);
+
 #else
 static inline void hdd_nud_set_gateway_addr(struct hdd_adapter *adapter,
 					    struct qdf_mac_addr gw_mac_addr)
@@ -192,5 +200,10 @@ static inline void
 hdd_nud_flush_work(struct hdd_adapter *adapter)
 {
 }
+
+static inline void
+hdd_nud_indicate_roam(struct hdd_adapter *adapter)
+{
+}
 #endif /* WLAN_NUD_TRACKING */
 #endif /* end  of _WLAN_NUD_TRACKING_H_ */