Lines Matching refs:msdu

291 	struct sk_buff *msdu;  in ath11k_dp_tx_free_txbuf()  local
295 msdu = idr_remove(&tx_ring->txbuf_idr, msdu_id); in ath11k_dp_tx_free_txbuf()
298 if (unlikely(!msdu)) { in ath11k_dp_tx_free_txbuf()
304 skb_cb = ATH11K_SKB_CB(msdu); in ath11k_dp_tx_free_txbuf()
306 dma_unmap_single(ab->dev, skb_cb->paddr, msdu->len, DMA_TO_DEVICE); in ath11k_dp_tx_free_txbuf()
307 dev_kfree_skb_any(msdu); in ath11k_dp_tx_free_txbuf()
319 struct sk_buff *msdu; in ath11k_dp_tx_htt_tx_complete_buf() local
325 msdu = idr_remove(&tx_ring->txbuf_idr, ts->msdu_id); in ath11k_dp_tx_htt_tx_complete_buf()
328 if (unlikely(!msdu)) { in ath11k_dp_tx_htt_tx_complete_buf()
334 skb_cb = ATH11K_SKB_CB(msdu); in ath11k_dp_tx_htt_tx_complete_buf()
335 info = IEEE80211_SKB_CB(msdu); in ath11k_dp_tx_htt_tx_complete_buf()
342 dma_unmap_single(ab->dev, skb_cb->paddr, msdu->len, DMA_TO_DEVICE); in ath11k_dp_tx_htt_tx_complete_buf()
358 ieee80211_tx_status(ar->hw, msdu); in ath11k_dp_tx_htt_tx_complete_buf()
400 struct sk_buff *msdu, in ath11k_dp_tx_cache_peer_stats() argument
407 peer_stats->retry_bytes += (ts->try_cnt - 1) * msdu->len; in ath11k_dp_tx_cache_peer_stats()
411 peer_stats->failed_bytes += msdu->len; in ath11k_dp_tx_cache_peer_stats()
516 struct sk_buff *msdu, in ath11k_dp_tx_complete_msdu() argument
533 skb_cb = ATH11K_SKB_CB(msdu); in ath11k_dp_tx_complete_msdu()
535 dma_unmap_single(ab->dev, skb_cb->paddr, msdu->len, DMA_TO_DEVICE); in ath11k_dp_tx_complete_msdu()
538 dev_kfree_skb_any(msdu); in ath11k_dp_tx_complete_msdu()
543 dev_kfree_skb_any(msdu); in ath11k_dp_tx_complete_msdu()
547 info = IEEE80211_SKB_CB(msdu); in ath11k_dp_tx_complete_msdu()
586 ath11k_dp_tx_cache_peer_stats(ar, msdu, ts); in ath11k_dp_tx_complete_msdu()
596 dev_kfree_skb_any(msdu); in ath11k_dp_tx_complete_msdu()
601 status.skb = msdu; in ath11k_dp_tx_complete_msdu()
653 struct sk_buff *msdu; in ath11k_dp_tx_completion_handler() local
707 msdu = idr_remove(&tx_ring->txbuf_idr, msdu_id); in ath11k_dp_tx_completion_handler()
708 if (unlikely(!msdu)) { in ath11k_dp_tx_completion_handler()
722 ath11k_dp_tx_complete_msdu(ar, msdu, &ts); in ath11k_dp_tx_completion_handler()