|
@@ -767,6 +767,12 @@ mlo_check_if_all_vdev_up(struct wlan_objmgr_vdev *vdev)
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
+ if (QDF_IS_STATUS_ERROR(wlan_vdev_is_up(vdev))) {
|
|
|
+ mlo_debug("Vdev id %d is not in up state",
|
|
|
+ wlan_vdev_get_id(vdev));
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
mlo_dev_ctx = vdev->mlo_dev_ctx;
|
|
|
sta_ctx = mlo_dev_ctx->sta_ctx;
|
|
|
for (i = 0; i < WLAN_UMAC_MLO_MAX_VDEVS; i++) {
|
|
@@ -775,7 +781,7 @@ mlo_check_if_all_vdev_up(struct wlan_objmgr_vdev *vdev)
|
|
|
|
|
|
if (qdf_test_bit(i, sta_ctx->wlan_connected_links) &&
|
|
|
!QDF_IS_STATUS_SUCCESS(wlan_vdev_is_up(mlo_dev_ctx->wlan_vdev_list[i]))) {
|
|
|
- mlo_debug("Vdev id %d is not in connected state",
|
|
|
+ mlo_debug("Vdev id %d is not in up state",
|
|
|
wlan_vdev_get_id(mlo_dev_ctx->wlan_vdev_list[i]));
|
|
|
return false;
|
|
|
}
|