Prechádzať zdrojové kódy

qcacld-3.0: Remove the assert and add the proper logging

Whenever the link switch notification is received at hdd, the
vdev id is compared with what is send and the adapters vdev.

So log the error values and remove the assert which will not
help in debugging the issue.

CRs-Fixed: 3618094
Change-Id: I549096b8e594241cde5b185e5e1ab00cf9dc33e8
Arun Kumar Khandavalli 1 rok pred
rodič
commit
cf5b19c1f0
1 zmenil súbory, kde vykonal 2 pridanie a 2 odobranie
  1. 2 2
      core/hdd/src/wlan_hdd_mlo.c

+ 2 - 2
core/hdd/src/wlan_hdd_mlo.c

@@ -292,8 +292,8 @@ QDF_STATUS hdd_adapter_link_switch_notification(struct wlan_objmgr_vdev *vdev,
 	adapter = link_info->adapter;
 
 	if (link_info->vdev_id != adapter->deflink->vdev_id) {
-		hdd_err("Default VDEV %d not equal", adapter->deflink->vdev_id);
-		QDF_ASSERT(0);
+		hdd_err("Deflink VDEV %d not equals current VDEV %d",
+			adapter->deflink->vdev_id, link_info->vdev_id);
 		return QDF_STATUS_E_INVAL;
 	}