|
@@ -515,6 +515,27 @@ void dp_tx_flow_control_init(struct dp_soc *soc)
|
|
|
qdf_spinlock_create(&soc->flow_pool_array_lock);
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * dp_tx_desc_pool_dealloc() - De-allocate tx desc pool
|
|
|
+ * @tx_desc_pool: Handle to flow_pool
|
|
|
+ *
|
|
|
+ * Return: none
|
|
|
+ */
|
|
|
+static inline void dp_tx_desc_pool_dealloc(struct dp_soc *soc)
|
|
|
+{
|
|
|
+ struct dp_tx_desc_pool_s *tx_desc_pool;
|
|
|
+ int i;
|
|
|
+
|
|
|
+ for (i = 0; i < MAX_TXDESC_POOLS; i++) {
|
|
|
+ tx_desc_pool = &((soc)->tx_desc[i]);
|
|
|
+ if (!tx_desc_pool->desc_pages.num_pages)
|
|
|
+ continue;
|
|
|
+
|
|
|
+ if (dp_tx_desc_pool_free(soc, i) != QDF_STATUS_SUCCESS)
|
|
|
+ dp_err("Tx Desc Pool:%d Free failed", i);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* dp_tx_flow_control_deinit() - Deregister fw based tx flow control
|
|
|
* @tx_desc_pool: Handle to flow_pool
|
|
@@ -523,6 +544,8 @@ void dp_tx_flow_control_init(struct dp_soc *soc)
|
|
|
*/
|
|
|
void dp_tx_flow_control_deinit(struct dp_soc *soc)
|
|
|
{
|
|
|
+ dp_tx_desc_pool_dealloc(soc);
|
|
|
+
|
|
|
qdf_spinlock_destroy(&soc->flow_pool_array_lock);
|
|
|
}
|
|
|
|