|
@@ -888,6 +888,25 @@ int hdd_ndp_new_peer_handler(uint8_t vdev_id, uint16_t sta_id,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+void hdd_cleanup_ndi(struct hdd_context *hdd_ctx,
|
|
|
+ struct hdd_adapter *adapter)
|
|
|
+{
|
|
|
+ struct hdd_station_ctx *sta_ctx = WLAN_HDD_GET_STATION_CTX_PTR(adapter);
|
|
|
+
|
|
|
+ if (sta_ctx->conn_info.conn_state != eConnectionState_NdiConnected) {
|
|
|
+ hdd_debug("NDI has no NDPs");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ sta_ctx->conn_info.conn_state = eConnectionState_NdiDisconnected;
|
|
|
+ hdd_conn_set_connection_state(adapter,
|
|
|
+ eConnectionState_NdiDisconnected);
|
|
|
+ hdd_info("Stop netif tx queues.");
|
|
|
+ wlan_hdd_netif_queue_control(adapter, WLAN_STOP_ALL_NETIF_QUEUE,
|
|
|
+ WLAN_CONTROL_PATH);
|
|
|
+ hdd_bus_bw_compute_reset_prev_txrx_stats(adapter);
|
|
|
+ hdd_bus_bw_compute_timer_try_stop(hdd_ctx);
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* hdd_ndp_peer_departed_handler() - Handle NDP peer departed indication
|
|
|
* @adapter: pointer to adapter context
|
|
@@ -927,14 +946,7 @@ void hdd_ndp_peer_departed_handler(uint8_t vdev_id, uint16_t sta_id,
|
|
|
|
|
|
if (last_peer) {
|
|
|
hdd_info("No more ndp peers.");
|
|
|
- sta_ctx->conn_info.conn_state = eConnectionState_NdiDisconnected;
|
|
|
- hdd_conn_set_connection_state(adapter,
|
|
|
- eConnectionState_NdiDisconnected);
|
|
|
- hdd_info("Stop netif tx queues.");
|
|
|
- wlan_hdd_netif_queue_control(adapter, WLAN_STOP_ALL_NETIF_QUEUE,
|
|
|
- WLAN_CONTROL_PATH);
|
|
|
- hdd_bus_bw_compute_reset_prev_txrx_stats(adapter);
|
|
|
- hdd_bus_bw_compute_timer_try_stop(hdd_ctx);
|
|
|
+ hdd_cleanup_ndi(hdd_ctx, adapter);
|
|
|
}
|
|
|
|
|
|
hdd_exit();
|