|
@@ -15891,7 +15891,8 @@ static inline bool sme_is_11be_capable(void)
|
|
|
|
|
|
QDF_STATUS sme_send_set_mac_addr(struct qdf_mac_addr mac_addr,
|
|
|
struct qdf_mac_addr mld_addr,
|
|
|
- struct wlan_objmgr_vdev *vdev)
|
|
|
+ struct wlan_objmgr_vdev *vdev,
|
|
|
+ bool update_mld_addr)
|
|
|
{
|
|
|
enum QDF_OPMODE vdev_opmode;
|
|
|
struct qdf_mac_addr vdev_mac_addr = mac_addr;
|
|
@@ -15911,7 +15912,8 @@ QDF_STATUS sme_send_set_mac_addr(struct qdf_mac_addr mac_addr,
|
|
|
return qdf_ret_status;
|
|
|
}
|
|
|
|
|
|
- if (sme_is_11be_capable() && (vdev_opmode == QDF_STA_MODE)) {
|
|
|
+ if (vdev_opmode == QDF_STA_MODE &&
|
|
|
+ sme_is_11be_capable() && update_mld_addr) {
|
|
|
/* Set new MAC addr as MLD address incase of MLO */
|
|
|
mld_addr = mac_addr;
|
|
|
qdf_mem_copy(&vdev_mac_addr, wlan_vdev_mlme_get_linkaddr(vdev),
|
|
@@ -15949,7 +15951,8 @@ QDF_STATUS sme_send_set_mac_addr(struct qdf_mac_addr mac_addr,
|
|
|
QDF_STATUS sme_update_vdev_mac_addr(struct wlan_objmgr_psoc *psoc,
|
|
|
struct qdf_mac_addr mac_addr,
|
|
|
struct wlan_objmgr_vdev *vdev,
|
|
|
- bool update_sta_self_peer, int req_status)
|
|
|
+ bool update_sta_self_peer,
|
|
|
+ bool update_mld_addr, int req_status)
|
|
|
{
|
|
|
enum QDF_OPMODE vdev_opmode;
|
|
|
uint8_t *old_mac_addr_bytes;
|
|
@@ -15968,7 +15971,7 @@ QDF_STATUS sme_update_vdev_mac_addr(struct wlan_objmgr_psoc *psoc,
|
|
|
goto p2p_self_peer_create;
|
|
|
|
|
|
if ((vdev_opmode == QDF_STA_MODE) && update_sta_self_peer) {
|
|
|
- if (sme_is_11be_capable())
|
|
|
+ if (sme_is_11be_capable() && update_mld_addr)
|
|
|
old_mac_addr_bytes = wlan_vdev_mlme_get_mldaddr(vdev);
|
|
|
else
|
|
|
old_mac_addr_bytes = wlan_vdev_mlme_get_macaddr(vdev);
|
|
@@ -15994,7 +15997,8 @@ 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() && update_mld_addr) {
|
|
|
if (update_sta_self_peer) {
|
|
|
qdf_ret_status = wlan_mlo_mgr_update_mld_addr(
|
|
|
(struct qdf_mac_addr *)
|