Lines Matching full:tx_desc
80 struct ath12k_tx_desc_info *tx_desc, in ath12k_dp_tx_release_txbuf() argument
84 list_move_tail(&tx_desc->list, &dp->tx_desc_free_list[pool_id]); in ath12k_dp_tx_release_txbuf()
134 struct ath12k_tx_desc_info *tx_desc; in ath12k_dp_tx() local
177 tx_desc = ath12k_dp_tx_assign_buffer(dp, pool_id); in ath12k_dp_tx()
178 if (!tx_desc) in ath12k_dp_tx()
252 tx_desc->skb = skb; in ath12k_dp_tx()
253 tx_desc->mac_id = ar->pdev_idx; in ath12k_dp_tx()
254 ti.desc_id = tx_desc->desc_id; in ath12k_dp_tx()
340 ath12k_dp_tx_release_txbuf(dp, tx_desc, pool_id); in ath12k_dp_tx()
538 struct ath12k_tx_desc_info *tx_desc = NULL; in ath12k_dp_tx_completion_handler() local
584 tx_desc = (struct ath12k_tx_desc_info *)((unsigned long)desc_va); in ath12k_dp_tx_completion_handler()
590 tx_desc = ath12k_dp_get_tx_desc(ab, desc_id); in ath12k_dp_tx_completion_handler()
592 if (!tx_desc) { in ath12k_dp_tx_completion_handler()
593 ath12k_warn(ab, "unable to retrieve tx_desc!"); in ath12k_dp_tx_completion_handler()
597 msdu = tx_desc->skb; in ath12k_dp_tx_completion_handler()
598 mac_id = tx_desc->mac_id; in ath12k_dp_tx_completion_handler()
603 ath12k_dp_tx_release_txbuf(dp, tx_desc, tx_desc->pool_id); in ath12k_dp_tx_completion_handler()