|
@@ -82,6 +82,7 @@
|
|
|
#include "wlan_mlme_public_struct.h"
|
|
|
#include "wlan_mlme_api.h"
|
|
|
#include "wlan_mlme_main.h"
|
|
|
+#include "wlan_mlme_ucfg_api.h"
|
|
|
#include <wlan_dfs_utils_api.h>
|
|
|
#include "../../core/src/vdev_mgr_ops.h"
|
|
|
#include "wlan_utility.h"
|
|
@@ -5064,19 +5065,21 @@ fail_del_bss_ho_fail:
|
|
|
static void wma_wait_tx_complete(tp_wma_handle wma,
|
|
|
uint32_t session_id)
|
|
|
{
|
|
|
- uint8_t max_wait_iterations = 0;
|
|
|
+ uint8_t max_wait_iterations = 0, delay = 0;
|
|
|
cdp_config_param_type val;
|
|
|
void *soc = cds_get_context(QDF_MODULE_ID_SOC);
|
|
|
+ QDF_STATUS status;
|
|
|
|
|
|
if (!wma_is_vdev_valid(session_id)) {
|
|
|
wma_err("Vdev is not valid: %d", session_id);
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- max_wait_iterations =
|
|
|
- wma->interfaces[session_id].delay_before_vdev_stop /
|
|
|
- WMA_TX_Q_RECHECK_TIMER_WAIT;
|
|
|
+ status = ucfg_mlme_get_delay_before_vdev_stop(wma->psoc, &delay);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
+ wma_err("Failed to get delay before vdev stop");
|
|
|
|
|
|
+ max_wait_iterations = delay / WMA_TX_Q_RECHECK_TIMER_WAIT;
|
|
|
if (cdp_txrx_get_pdev_param(soc,
|
|
|
wlan_objmgr_pdev_get_pdev_id(wma->pdev),
|
|
|
CDP_TX_PENDING, &val))
|