Home
last modified time | relevance | path

Searched refs:skb_cb (Results 1 – 5 of 5) sorted by relevance

/linux-4.4.14/drivers/net/wireless/ath/ath10k/
Dhtt_tx.c448 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(msdu); in ath10k_htt_mgmt_tx() local
449 u8 vdev_id = skb_cb->vdev_id; in ath10k_htt_mgmt_tx()
486 skb_cb->paddr = dma_map_single(dev, msdu->data, msdu->len, in ath10k_htt_mgmt_tx()
488 res = dma_mapping_error(dev, skb_cb->paddr); in ath10k_htt_mgmt_tx()
506 skb_cb->htt.txbuf = NULL; in ath10k_htt_mgmt_tx()
515 dma_unmap_single(dev, skb_cb->paddr, msdu->len, DMA_TO_DEVICE); in ath10k_htt_mgmt_tx()
533 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(msdu); in ath10k_htt_tx() local
536 u8 vdev_id = skb_cb->vdev_id; in ath10k_htt_tx()
537 u8 tid = skb_cb->htt.tid; in ath10k_htt_tx()
570 skb_cb->htt.txbuf = &htt->txbuf.vaddr[msdu_id]; in ath10k_htt_tx()
[all …]
Dhtc.c35 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 …]
Dtxrx.c53 struct ath10k_skb_cb *skb_cb; in ath10k_txrx_tx_unref() local
92 skb_cb = ATH10K_SKB_CB(msdu); in ath10k_txrx_tx_unref()
93 dma_unmap_single(dev, skb_cb->paddr, msdu->len, DMA_TO_DEVICE); in ath10k_txrx_tx_unref()
Dwmi.c1631 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(skb); in ath10k_wmi_cmd_send_nowait() local
1644 memset(skb_cb, 0, sizeof(*skb_cb)); in ath10k_wmi_cmd_send_nowait()
/linux-4.4.14/net/bluetooth/
D6lowpan.c37 struct skb_cb { struct
43 #define lowpan_cb(skb) ((struct skb_cb *)((skb)->cb)) argument