Browse Source

qcacld-3.0: Fix the error handling for NDP txrx

Currently, in host driver, if ucfg_dp_init_tx_rx fails, it returns
error and this error is handled in hdd_init_nan_data_mode by
unregister the wext and detroying the vdev.
But wext unregister fails as it is waiting for rtnl_lock forever
which causes CPU to struck there.

To fix this, add rtnl held flag which will check rtln lock is
supported or not.

Change-Id: Ibc826ace63919979d743f6c8fcc26f1438d25274
CRs-Fixed: 3248716
Rahul Gusain 2 years ago
parent
commit
25383f2539
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/hdd/src/wlan_hdd_nan_datapath.c

+ 1 - 1
core/hdd/src/wlan_hdd_nan_datapath.c

@@ -681,7 +681,7 @@ error_wmm_init:
 	hdd_objmgr_put_vdev_by_user(vdev, WLAN_DP_ID);
 
 error_init_txrx:
-	hdd_unregister_wext(wlan_dev);
+	hdd_wext_unregister(wlan_dev, true);
 
 	QDF_BUG(!hdd_vdev_destroy(adapter));