Explorar el Código

qcacld-3.0: Update VDEV's legacy OSIF pointer on MAC update

Legacy OSIF pointer in VDEV points to the link info element
that the VDEV is currently assigned to in adapter. As part of
link switch the VDEV will be reassigned to the link info structure
that corresponds to the new IEEE link id and here the OSIF
pointer is properly updated in the VDEV.

However post disconnect all the VDEVs will be reordered with the
link info structure on which it is initially created and in this
reset logic of the legacy OSIF pointer is updated for only one
VDEV and leaving the next VDEV to point to different link info
than where it is currently assigned.

In the reset logic, update all the valid VDEV's OSIF pointer to
reflect the link info it is currently mapped to.

Change-Id: Iba541ee99c008fb610abdd086ae40164dde0e74f
CRs-Fixed: 3626410
Vinod Kumar Pirla hace 1 año
padre
commit
b6b28c271a
Se han modificado 1 ficheros con 14 adiciones y 9 borrados
  1. 14 9
      core/hdd/src/wlan_hdd_mlo.c

+ 14 - 9
core/hdd/src/wlan_hdd_mlo.c

@@ -417,26 +417,31 @@ static void hdd_adapter_restore_link_vdev_map(struct hdd_adapter *adapter)
 		temp_link_info->vdev_id = link_info->vdev_id;
 		qdf_spin_unlock_bh(&temp_link_info->vdev_lock);
 
+		/* Update VDEV-OSIF priv pointer to new link info. */
+		if (temp_link_info->vdev) {
+			osif_priv = wlan_vdev_get_ospriv(temp_link_info->vdev);
+			if (osif_priv)
+				osif_priv->legacy_osif_priv = temp_link_info;
+		}
+
 		/* Fill current link info's actual VDEV info */
 		qdf_spin_lock_bh(&link_info->vdev_lock);
 		link_info->vdev = vdev;
 		link_info->vdev_id = vdev_id;
 		qdf_spin_unlock_bh(&link_info->vdev_lock);
 
+		/* Update VDEV-OSIF priv pointer to new link info. */
+		if (link_info->vdev) {
+			osif_priv = wlan_vdev_get_ospriv(link_info->vdev);
+			if (osif_priv)
+				osif_priv->legacy_osif_priv = link_info;
+		}
+
 		/* Swap link flags */
 		link_flags = temp_link_info->link_flags;
 		temp_link_info->link_flags = link_info->link_flags;
 		link_info->link_flags = link_flags;
 
-		/* Update VDEV-OSIF priv pointer to new link info. */
-		if (!vdev)
-			continue;
-
-		osif_priv = wlan_vdev_get_ospriv(vdev);
-		if (!osif_priv)
-			continue;
-		osif_priv->legacy_osif_priv = link_info;
-
 		/* Update the mapping, current link info's mapping will be
 		 * set to be proper.
 		 */