Home
last modified time | relevance | path

Searched refs:tx_req (Results 1 – 7 of 7) sorted by relevance

/linux-4.4.14/drivers/infiniband/ulp/ipoib/
Dipoib_ib.c266 int ipoib_dma_map_tx(struct ib_device *ca, struct ipoib_tx_buf *tx_req) in ipoib_dma_map_tx() argument
268 struct sk_buff *skb = tx_req->skb; in ipoib_dma_map_tx()
269 u64 *mapping = tx_req->mapping; in ipoib_dma_map_tx()
308 struct ipoib_tx_buf *tx_req) in ipoib_dma_unmap_tx() argument
310 struct sk_buff *skb = tx_req->skb; in ipoib_dma_unmap_tx()
311 u64 *mapping = tx_req->mapping; in ipoib_dma_unmap_tx()
379 struct ipoib_tx_buf *tx_req; in ipoib_ib_handle_tx_wc() local
390 tx_req = &priv->tx_ring[wr_id]; in ipoib_ib_handle_tx_wc()
392 ipoib_dma_unmap_tx(priv, tx_req); in ipoib_ib_handle_tx_wc()
395 dev->stats.tx_bytes += tx_req->skb->len; in ipoib_ib_handle_tx_wc()
[all …]
Dipoib_cm.c697 struct ipoib_tx_buf *tx_req) in post_send() argument
701 ipoib_build_sge(priv, tx_req); in post_send()
711 struct ipoib_tx_buf *tx_req; in ipoib_cm_send() local
733 tx_req = &tx->tx_ring[tx->tx_head & (ipoib_sendq_size - 1)]; in ipoib_cm_send()
734 tx_req->skb = skb; in ipoib_cm_send()
736 if (unlikely(ipoib_dma_map_tx(priv->ca, tx_req))) { in ipoib_cm_send()
745 rc = post_send(priv, tx, tx->tx_head & (ipoib_sendq_size - 1), tx_req); in ipoib_cm_send()
749 ipoib_dma_unmap_tx(priv, tx_req); in ipoib_cm_send()
774 struct ipoib_tx_buf *tx_req; in ipoib_cm_handle_tx_wc() local
786 tx_req = &tx->tx_ring[wr_id]; in ipoib_cm_handle_tx_wc()
[all …]
Dipoib.h507 int ipoib_dma_map_tx(struct ib_device *ca, struct ipoib_tx_buf *tx_req);
509 struct ipoib_tx_buf *tx_req);
512 struct ipoib_tx_buf *tx_req) in ipoib_build_sge() argument
515 struct sk_buff *skb = tx_req->skb; in ipoib_build_sge()
518 u64 *mapping = tx_req->mapping; in ipoib_build_sge()
/linux-4.4.14/arch/arm/mach-omap1/
Ddevices.c156 unsigned rx_req, unsigned tx_req, in omap_mmc_add() argument
176 res[3].start = tx_req; in omap_mmc_add()
213 unsigned rx_req, tx_req; in omap1_init_mmc() local
226 tx_req = 21; in omap1_init_mmc()
234 tx_req = 54; in omap1_init_mmc()
242 rx_req, tx_req, mmc_data[i]); in omap1_init_mmc()
/linux-4.4.14/drivers/usb/gadget/udc/
Dfsl_qe_udc.c1144 if (ep->tx_req != NULL) { in txcomplete()
1145 struct qe_req *req = ep->tx_req; in txcomplete()
1170 if (((ep->tx_req->req.length - ep->sent) <= 0) && !zlp) { in txcomplete()
1171 done(ep, ep->tx_req, 0); in txcomplete()
1172 ep->tx_req = NULL; in txcomplete()
1179 if (ep->tx_req == NULL) { in txcomplete()
1181 ep->tx_req = list_entry(ep->queue.next, struct qe_req, in txcomplete()
1198 size = min_t(u32, (ep->tx_req->req.length - ep->sent), in qe_usb_senddata()
1200 buf = (u8 *)ep->tx_req->req.buf + ep->sent; in qe_usb_senddata()
1203 ep->tx_req->req.actual += size; in qe_usb_senddata()
[all …]
Dfsl_qe_udc.h289 struct qe_req *tx_req; member
/linux-4.4.14/drivers/mmc/host/
Domap_hsmmc.c2006 unsigned tx_req, rx_req; in omap_hsmmc_probe() local
2143 tx_req = res->start; in omap_hsmmc_probe()
2169 &tx_req, &pdev->dev, "tx"); in omap_hsmmc_probe()
2172 dev_err(mmc_dev(host->mmc), "unable to obtain TX DMA engine channel %u\n", tx_req); in omap_hsmmc_probe()