Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/net/wireless/ath/ath10k/
Dhtt_tx.c343 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(msdu); in ath10k_htt_mgmt_tx() local
344 u8 vdev_id = skb_cb->vdev_id; in ath10k_htt_mgmt_tx()
371 skb_cb->paddr = dma_map_single(dev, msdu->data, msdu->len, in ath10k_htt_mgmt_tx()
373 res = dma_mapping_error(dev, skb_cb->paddr); in ath10k_htt_mgmt_tx()
389 skb_cb->htt.txbuf = NULL; in ath10k_htt_mgmt_tx()
398 dma_unmap_single(dev, skb_cb->paddr, msdu->len, DMA_TO_DEVICE); in ath10k_htt_mgmt_tx()
416 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(msdu); in ath10k_htt_tx() local
419 u8 vdev_id = skb_cb->vdev_id; in ath10k_htt_tx()
420 u8 tid = skb_cb->htt.tid; in ath10k_htt_tx()
451 skb_cb->htt.txbuf = dma_pool_alloc(htt->tx_pool, GFP_ATOMIC, in ath10k_htt_tx()
[all …]
Dtxrx.c53 struct ath10k_skb_cb *skb_cb; in ath10k_txrx_tx_unref() local
74 skb_cb = ATH10K_SKB_CB(msdu); in ath10k_txrx_tx_unref()
76 dma_unmap_single(dev, skb_cb->paddr, msdu->len, DMA_TO_DEVICE); in ath10k_txrx_tx_unref()
78 if (skb_cb->htt.txbuf) in ath10k_txrx_tx_unref()
80 skb_cb->htt.txbuf, in ath10k_txrx_tx_unref()
81 skb_cb->htt.txbuf_paddr); in ath10k_txrx_tx_unref()
Dhtc.c45 struct ath10k_skb_cb *skb_cb; in ath10k_htc_build_tx_ctrl_skb() local
54 skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_build_tx_ctrl_skb()
55 memset(skb_cb, 0, sizeof(*skb_cb)); in ath10k_htc_build_tx_ctrl_skb()
64 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_restore_tx_skb() local
66 dma_unmap_single(htc->ar->dev, skb_cb->paddr, skb->len, DMA_TO_DEVICE); in ath10k_htc_restore_tx_skb()
130 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_send() local
163 skb_cb->eid = eid; in ath10k_htc_send()
164 skb_cb->paddr = dma_map_single(dev, skb->data, skb->len, DMA_TO_DEVICE); in ath10k_htc_send()
165 ret = dma_mapping_error(dev, skb_cb->paddr); in ath10k_htc_send()
174 sg_item.paddr = skb_cb->paddr; in ath10k_htc_send()
[all …]
Dwmi.c930 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(skb); in ath10k_wmi_cmd_send_nowait() local
943 memset(skb_cb, 0, sizeof(*skb_cb)); in ath10k_wmi_cmd_send_nowait()
/linux-4.1.27/net/bluetooth/
D6lowpan.c40 struct skb_cb { struct
46 #define lowpan_cb(skb) ((struct skb_cb *)((skb)->cb)) argument