Searched refs:tx_req (Results 1 - 4 of 4) sorted by relevance

/freebsd-12-stable/sys/ofed/drivers/infiniband/ulp/ipoib/
H A Dipoib_ib.c278 int ipoib_dma_map_tx(struct ib_device *ca, struct ipoib_tx_buf *tx_req, int max) argument
280 struct mbuf *mb = tx_req->mb;
281 u64 *mapping = tx_req->mapping;
297 tx_req->mb = mb = m_defrag(mb, M_NOWAIT);
324 void ipoib_dma_unmap_tx(struct ib_device *ca, struct ipoib_tx_buf *tx_req) argument
326 struct mbuf *mb = tx_req->mb;
327 u64 *mapping = tx_req->mapping;
339 struct ipoib_tx_buf *tx_req; local
350 tx_req = &priv->tx_ring[wr_id];
352 ipoib_dma_unmap_tx(priv->ca, tx_req);
451 post_send(struct ipoib_dev_priv *priv, unsigned int wr_id, struct ib_ah *address, u32 qpn, struct ipoib_tx_buf *tx_req, void *head, int hlen) argument
486 struct ipoib_tx_buf *tx_req; local
781 struct ipoib_tx_buf *tx_req; local
[all...]
H A Dipoib_cm.c600 struct ipoib_cm_tx_buf *tx_req,
604 struct mbuf *mb = tx_req->mb;
605 u64 *mapping = tx_req->mapping;
622 struct ipoib_cm_tx_buf *tx_req; local
650 tx_req = &tx->tx_ring[tx->tx_head & (ipoib_sendq_size - 1)];
651 tx_req->mb = mb;
652 if (unlikely(ipoib_dma_map_tx(priv->ca, (struct ipoib_tx_buf *)tx_req,
655 if (tx_req->mb)
656 m_freem(tx_req->mb);
660 if (unlikely(post_send(priv, tx, tx_req, t
598 post_send(struct ipoib_dev_priv *priv, struct ipoib_cm_tx *tx, struct ipoib_cm_tx_buf *tx_req, unsigned int wr_id) argument
684 struct ipoib_cm_tx_buf *tx_req; local
1065 struct ipoib_cm_tx_buf *tx_req; local
[all...]
H A Dipoib.h525 int ipoib_dma_map_tx(struct ib_device *ca, struct ipoib_tx_buf *tx_req, int max);
526 void ipoib_dma_unmap_tx(struct ib_device *ca, struct ipoib_tx_buf *tx_req);
/freebsd-12-stable/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_tx.c68 struct sdp_buf *tx_req; local
123 tx_req = &ssk->tx_ring.buffer[mseq & (SDP_TX_SIZE - 1)];
124 tx_req->mb = mb;
133 tx_req->mapping[i] = addr;
144 if (unlikely(tx_req->mb->m_flags & M_URG))
152 sdp_cleanup_sdp_buf(ssk, tx_req, DMA_TO_DEVICE);
155 m_freem(tx_req->mb);
170 struct sdp_buf *tx_req; local
181 tx_req = &tx_ring->buffer[mseq & (SDP_TX_SIZE - 1)];
182 mb = tx_req
[all...]

Completed in 168 milliseconds