Lines Matching full:tx_desc
84 struct ath12k_tx_desc_info *tx_desc, in ath12k_dp_tx_release_txbuf() argument
88 list_move_tail(&tx_desc->list, &dp->tx_desc_free_list[pool_id]); in ath12k_dp_tx_release_txbuf()
138 struct ath12k_tx_desc_info *tx_desc; in ath12k_dp_tx() local
181 tx_desc = ath12k_dp_tx_assign_buffer(dp, pool_id); in ath12k_dp_tx()
182 if (!tx_desc) in ath12k_dp_tx()
256 tx_desc->skb = skb; in ath12k_dp_tx()
257 tx_desc->mac_id = ar->pdev_idx; in ath12k_dp_tx()
258 ti.desc_id = tx_desc->desc_id; in ath12k_dp_tx()
341 ath12k_dp_tx_release_txbuf(dp, tx_desc, pool_id); in ath12k_dp_tx()
543 struct ath12k_tx_desc_info *tx_desc = NULL; in ath12k_dp_tx_completion_handler() local
589 tx_desc = (struct ath12k_tx_desc_info *)((unsigned long)desc_va); in ath12k_dp_tx_completion_handler()
595 tx_desc = ath12k_dp_get_tx_desc(ab, desc_id); in ath12k_dp_tx_completion_handler()
597 if (!tx_desc) { in ath12k_dp_tx_completion_handler()
598 ath12k_warn(ab, "unable to retrieve tx_desc!"); in ath12k_dp_tx_completion_handler()
602 msdu = tx_desc->skb; in ath12k_dp_tx_completion_handler()
603 mac_id = tx_desc->mac_id; in ath12k_dp_tx_completion_handler()
608 ath12k_dp_tx_release_txbuf(dp, tx_desc, tx_desc->pool_id); in ath12k_dp_tx_completion_handler()