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

qcacld-3.0: Update MLO manager whenever the MLD address is changed

Currently when ever there is a change in MLD MAC address, MLO manager is
not being notified with new MAC address. This resulting in memory leak
for mlo dev context which is created with old MLD address.

To address this, update MLD address in MLO manager with new MLD address.

Change-Id: I1a3eb9426dc39e5b4fe5bfaf0bd4a571280eb50c
CRs-Fixed: 3103077
Bapiraju Alla 3 éve
szülő
commit
33911c5296
1 módosított fájl, 13 hozzáadás és 3 törlés
  1. 13 3
      core/sme/src/common/sme_api.c

+ 13 - 3
core/sme/src/common/sme_api.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. 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
@@ -78,6 +78,7 @@
 #include "wlan_cm_roam_ucfg_api.h"
 #include <cm_utf.h>
 #include <wlan_mlo_mgr_sta.h>
+#include <wlan_mlo_mgr_main.h>
 
 static QDF_STATUS init_sme_cmd_list(struct mac_context *mac);
 
@@ -16172,10 +16173,19 @@ QDF_STATUS sme_update_vdev_mac_addr(struct wlan_objmgr_psoc *psoc,
 	}
 
 	/* Update VDEV MAC address */
-	if ((vdev_opmode == QDF_STA_MODE) && sme_is_11be_capable())
+	if ((vdev_opmode == QDF_STA_MODE) && sme_is_11be_capable()) {
+		if (update_sta_self_peer) {
+			qdf_ret_status = wlan_mlo_mgr_update_mld_addr(
+					    (struct qdf_mac_addr *)
+					       wlan_vdev_mlme_get_mldaddr(vdev),
+					    &mac_addr);
+			if (QDF_IS_STATUS_ERROR(qdf_ret_status))
+				return qdf_ret_status;
+		}
 		wlan_vdev_mlme_set_mldaddr(vdev, mac_addr.bytes);
-	else
+	} else {
 		wlan_vdev_mlme_set_macaddr(vdev, mac_addr.bytes);
+	}
 
 p2p_self_peer_create:
 	if (vdev_opmode == QDF_P2P_DEVICE_MODE) {