Searched refs:skb_cb (Results 1 – 4 of 4) sorted by relevance
/drivers/net/wireless/ath/ath10k/ |
D | htc.c | 35 struct ath10k_skb_cb *skb_cb; in ath10k_htc_build_tx_ctrl_skb() local 44 skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_build_tx_ctrl_skb() 45 memset(skb_cb, 0, sizeof(*skb_cb)); in ath10k_htc_build_tx_ctrl_skb() 54 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_restore_tx_skb() local 56 dma_unmap_single(htc->ar->dev, skb_cb->paddr, skb->len, DMA_TO_DEVICE); in ath10k_htc_restore_tx_skb() 102 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_send() local 135 skb_cb->eid = eid; in ath10k_htc_send() 136 skb_cb->paddr = dma_map_single(dev, skb->data, skb->len, DMA_TO_DEVICE); in ath10k_htc_send() 137 ret = dma_mapping_error(dev, skb_cb->paddr); in ath10k_htc_send() 146 sg_item.paddr = skb_cb->paddr; in ath10k_htc_send() [all …]
|
D | htt_tx.c | 771 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(msdu); in ath10k_htt_mgmt_tx() local 802 skb_cb->paddr = dma_map_single(dev, msdu->data, msdu->len, in ath10k_htt_mgmt_tx() 804 res = dma_mapping_error(dev, skb_cb->paddr); in ath10k_htt_mgmt_tx() 829 dma_unmap_single(dev, skb_cb->paddr, msdu->len, DMA_TO_DEVICE); in ath10k_htt_mgmt_tx() 847 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(msdu); in ath10k_htt_tx() local 883 } else if (!(skb_cb->flags & ATH10K_SKB_F_NO_HWCRYPT) && in ath10k_htt_tx() 889 skb_cb->paddr = dma_map_single(dev, msdu->data, msdu->len, in ath10k_htt_tx() 891 res = dma_mapping_error(dev, skb_cb->paddr); in ath10k_htt_tx() 913 __cpu_to_le32(skb_cb->paddr); in ath10k_htt_tx() 922 __cpu_to_le32(skb_cb->paddr); in ath10k_htt_tx() [all …]
|
D | txrx.c | 59 struct ath10k_skb_cb *skb_cb; in ath10k_txrx_tx_unref() local 82 skb_cb = ATH10K_SKB_CB(msdu); in ath10k_txrx_tx_unref() 83 txq = skb_cb->txq; in ath10k_txrx_tx_unref() 96 dma_unmap_single(dev, skb_cb->paddr, msdu->len, DMA_TO_DEVICE); in ath10k_txrx_tx_unref()
|
D | wmi.c | 1700 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(skb); in ath10k_wmi_cmd_send_nowait() local 1713 memset(skb_cb, 0, sizeof(*skb_cb)); in ath10k_wmi_cmd_send_nowait()
|