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()
225 struct ath12k_tx_desc_info *tx_desc; in ath12k_dp_tx() local
271 tx_desc = ath12k_dp_tx_assign_buffer(dp, pool_id); in ath12k_dp_tx()
272 if (!tx_desc) in ath12k_dp_tx()
376 tx_desc->skb = skb; in ath12k_dp_tx()
377 tx_desc->mac_id = ar->pdev_idx; in ath12k_dp_tx()
378 ti.desc_id = tx_desc->desc_id; in ath12k_dp_tx()
474 ath12k_dp_tx_release_txbuf(dp, tx_desc, pool_id); in ath12k_dp_tx()
699 struct ath12k_tx_desc_info *tx_desc = NULL; in ath12k_dp_tx_completion_handler() local
745 tx_desc = (struct ath12k_tx_desc_info *)((unsigned long)desc_va); in ath12k_dp_tx_completion_handler()
751 tx_desc = ath12k_dp_get_tx_desc(ab, desc_id); in ath12k_dp_tx_completion_handler()
753 if (!tx_desc) { in ath12k_dp_tx_completion_handler()
754 ath12k_warn(ab, "unable to retrieve tx_desc!"); in ath12k_dp_tx_completion_handler()
758 msdu = tx_desc->skb; in ath12k_dp_tx_completion_handler()
759 mac_id = tx_desc->mac_id; in ath12k_dp_tx_completion_handler()
764 ath12k_dp_tx_release_txbuf(dp, tx_desc, tx_desc->pool_id); in ath12k_dp_tx_completion_handler()