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
270 tx_desc = ath12k_dp_tx_assign_buffer(dp, pool_id); in ath12k_dp_tx()
271 if (!tx_desc) in ath12k_dp_tx()
374 tx_desc->skb = skb; in ath12k_dp_tx()
375 tx_desc->mac_id = ar->pdev_idx; in ath12k_dp_tx()
376 ti.desc_id = tx_desc->desc_id; in ath12k_dp_tx()
471 ath12k_dp_tx_release_txbuf(dp, tx_desc, pool_id); in ath12k_dp_tx()
696 struct ath12k_tx_desc_info *tx_desc = NULL; in ath12k_dp_tx_completion_handler() local
742 tx_desc = (struct ath12k_tx_desc_info *)((unsigned long)desc_va); in ath12k_dp_tx_completion_handler()
748 tx_desc = ath12k_dp_get_tx_desc(ab, desc_id); in ath12k_dp_tx_completion_handler()
750 if (!tx_desc) { in ath12k_dp_tx_completion_handler()
751 ath12k_warn(ab, "unable to retrieve tx_desc!"); in ath12k_dp_tx_completion_handler()
755 msdu = tx_desc->skb; in ath12k_dp_tx_completion_handler()
756 mac_id = tx_desc->mac_id; in ath12k_dp_tx_completion_handler()
761 ath12k_dp_tx_release_txbuf(dp, tx_desc, tx_desc->pool_id); in ath12k_dp_tx_completion_handler()