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

/freebsd-10.3-release/sys/ofed/drivers/infiniband/ulp/ipoib/
H A Dipoib_ib.c271 int ipoib_dma_map_tx(struct ib_device *ca, struct ipoib_tx_buf *tx_req, int max) argument
273 struct mbuf *mb = tx_req->mb;
274 u64 *mapping = tx_req->mapping;
290 tx_req->mb = mb = m_defrag(mb, M_NOWAIT);
317 void ipoib_dma_unmap_tx(struct ib_device *ca, struct ipoib_tx_buf *tx_req) argument
319 struct mbuf *mb = tx_req->mb;
320 u64 *mapping = tx_req->mapping;
332 struct ipoib_tx_buf *tx_req; local
343 tx_req = &priv->tx_ring[wr_id];
345 ipoib_dma_unmap_tx(priv->ca, tx_req);
440 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
476 struct ipoib_tx_buf *tx_req; local
743 struct ipoib_tx_buf *tx_req; local
[all...]
H A Dipoib_cm.c586 struct ipoib_cm_tx_buf *tx_req,
590 struct mbuf *mb = tx_req->mb;
591 u64 *mapping = tx_req->mapping;
608 struct ipoib_cm_tx_buf *tx_req; local
634 tx_req = &tx->tx_ring[tx->tx_head & (ipoib_sendq_size - 1)];
635 tx_req->mb = mb;
636 if (unlikely(ipoib_dma_map_tx(priv->ca, (struct ipoib_tx_buf *)tx_req,
639 if (tx_req->mb)
640 m_freem(tx_req->mb);
644 if (unlikely(post_send(priv, tx, tx_req, t
584 post_send(struct ipoib_dev_priv *priv, struct ipoib_cm_tx *tx, struct ipoib_cm_tx_buf *tx_req, unsigned int wr_id) argument
668 struct ipoib_cm_tx_buf *tx_req; local
1050 struct ipoib_cm_tx_buf *tx_req; local
[all...]
H A Dipoib.h526 int ipoib_dma_map_tx(struct ib_device *ca, struct ipoib_tx_buf *tx_req, int max);
527 void ipoib_dma_unmap_tx(struct ib_device *ca, struct ipoib_tx_buf *tx_req);
/freebsd-10.3-release/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_tx.c66 struct sdp_buf *tx_req; local
121 tx_req = &ssk->tx_ring.buffer[mseq & (SDP_TX_SIZE - 1)];
122 tx_req->mb = mb;
131 tx_req->mapping[i] = addr;
142 if (unlikely(tx_req->mb->m_flags & M_URG))
150 sdp_cleanup_sdp_buf(ssk, tx_req, DMA_TO_DEVICE);
153 m_freem(tx_req->mb);
168 struct sdp_buf *tx_req; local
179 tx_req = &tx_ring->buffer[mseq & (SDP_TX_SIZE - 1)];
180 mb = tx_req
[all...]

Completed in 105 milliseconds