NAME |SYNOPSIS |DESCRIPTION |RETURN VALUE |NOTES |SEE ALSO |AUTHORS |COLOPHON | |
IBV_POST_SEND(3) Libibverbs Programmer's ManualIBV_POST_SEND(3)ibv_post_send - post a list of work requests (WRs) to a send queue
#include <infiniband/verbs.h>int ibv_post_send(struct ibv_qp*qp, struct ibv_send_wr*wr,struct ibv_send_wr**bad_wr);
ibv_post_send()posts the linked list of work requests (WRs) starting withwr to the send queue of the queue pairqp. It stops processing WRs from this list at the first failure (that can be detected immediately while requests are being posted), and returns this failing WR throughbad_wr. The argumentwr is an ibv_send_wr struct, as defined in <infiniband/verbs.h>. struct ibv_send_wr { uint64_t wr_id; /* User defined WR ID */ struct ibv_send_wr *next; /* Pointer to next WR in list, NULL if last WR */ struct ibv_sge *sg_list; /* Pointer to the s/g array */ int num_sge; /* Size of the s/g array */ enum ibv_wr_opcode opcode; /* Operation type */ unsigned int send_flags; /* Flags of the WR properties */ union { __be32 imm_data; /* Immediate data (in network byte order) */ uint32_t invalidate_rkey; /* Remote rkey to invalidate */ }; union { struct { uint64_t remote_addr; /* Start address of remote memory buffer */ uint32_t rkey; /* Key of the remote Memory Region */ } rdma; struct { uint64_t remote_addr; /* Start address of remote memory buffer */ uint64_t compare_add; /* Compare operand */ uint64_t swap; /* Swap operand */ uint32_t rkey; /* Key of the remote Memory Region */ } atomic; struct { struct ibv_ah *ah; /* Address handle (AH) for the remote node address */ uint32_t remote_qpn; /* QP number of the destination QP */ uint32_t remote_qkey; /* Q_Key number of the destination QP */ } ud; } wr; union { struct { uint32_t remote_srqn; /* Number of the remote SRQ */ } xrc; } qp_type; union { struct { struct ibv_mw *mw; /* Memory window (MW) of type 2 to bind */ uint32_t rkey; /* The desired new rkey of the MW */ struct ibv_mw_bind_info bind_info; /* MW additional bind information */ } bind_mw; struct { void *hdr; /* Pointer address of inline header */ uint16_t hdr_sz; /* Inline header size */ uint16_t mss; /* Maximum segment size for each TSO fragment */ } tso; }; }; struct ibv_mw_bind_info { struct ibv_mr *mr; /* The Memory region (MR) to bind the MW to */ uint64_t addr; /* The address the MW should start at */ uint64_t length; /* The length (in bytes) the MW should span */ unsigned int mw_access_flags; /* Access flags to the MW. Use ibv_access_flags */ }; struct ibv_sge { uint64_t addr; /* Start address of the local memory buffer or number of bytes from the start of the MR for MRs which are IBV_ACCESS_ZERO_BASED */ uint32_t length; /* Length of the buffer */ uint32_t lkey; /* Key of the local Memory Region */ }; Each QP Transport Service Type supports a specific set of opcodes, as shown in the following table: OPCODE | IBV_QPT_UD | IBV_QPT_UC | IBV_QPT_RC | IBV_QPT_XRC_SEND | IBV_QPT_RAW_PACKET ----------------------------+------------+------------+------------+------------------+-------------------- IBV_WR_SEND | X | X | X | X | X IBV_WR_SEND_WITH_IMM | X | X | X | X | IBV_WR_RDMA_WRITE | | X | X | X | IBV_WR_RDMA_WRITE_WITH_IMM | | X | X | X | IBV_WR_RDMA_READ | | | X | X | IBV_WR_ATOMIC_CMP_AND_SWP | | | X | X | IBV_WR_ATOMIC_FETCH_AND_ADD | | | X | X | IBV_WR_LOCAL_INV | | X | X | X | IBV_WR_BIND_MW | | X | X | X | IBV_WR_SEND_WITH_INV | | X | X | X | IBV_WR_TSO | X | | | | X The attribute send_flags describes the properties of the WR. It is either 0 or the bitwise OR of one or more of the following flags:IBV_SEND_FENCESet the fence indicator. Valid only for QPs with Transport Service TypeIBV_QPT_RCIBV_SEND_SIGNALEDSet the completion notification indicator. Relevant only if QP was created with sq_sig_all=0IBV_SEND_SOLICITEDSet the solicited event indicator. Valid only for Send and RDMA Write with immediateIBV_SEND_INLINESend data in given gather list as inline data in a send WQE. Valid only for Send and RDMA Write. The L_Key will not be checked.IBV_SEND_IP_CSUMOffload the IPv4 and TCP/UDP checksum calculation. Valid only whendevice_cap_flagsin device_attr indicates current QP is supported by checksum offload.ibv_post_send()returns 0 on success, or the value of errno on failure (which indicates the failure reason).
The user should not alter or destroy AHs associated with WRs until request is fully executed and a work completion has been retrieved from the corresponding completion queue (CQ) to avoid unexpected behavior. The buffers used by a WR can only be safely reused after WR the request is fully executed and a work completion has been retrieved from the corresponding completion queue (CQ). However, if the IBV_SEND_INLINE flag was set, the buffer can be reused immediately after the call returns. IBV_WR_DRIVER1 is an opcode that should be used to issue a specific driver operation.
ibv_create_qp(3),ibv_create_ah(3),ibv_post_recv(3),ibv_post_srq_recv(3),ibv_poll_cq(3)
Dotan Barak <dotanba@gmail.com> Majd Dibbiny <majd@mellanox.com> Yishai Hadas <yishaih@mellanox.com>
This page is part of therdma-core (RDMA Core Userspace Libraries and Daemons) project. Information about the project can be found at ⟨https://github.com/linux-rdma/rdma-core⟩. If you have a bug report for this manual page, send it to linux-rdma@vger.kernel.org. This page was obtained from the project's upstream Git repository ⟨https://github.com/linux-rdma/rdma-core.git⟩ on 2025-08-11. (At that time, the date of the most recent commit that was found in the repository was 2025-08-04.) If you discover any rendering problems in this HTML version of the page, or you believe there is a better or more up-to-date source for the page, or you have corrections or improvements to the information in this COLOPHON (which isnot part of the original manual page), send a mail to man-pages@man7.orglibibverbs 2006-10-31IBV_POST_SEND(3)Pages that refer to this page:ibv_alloc_mw(3), ibv_bind_mw(3), ibv_poll_cq(3), ibv_post_recv(3), ibv_post_srq_recv(3), ibv_reg_mr(3), ibv_wr_abort(3), ibv_wr_atomic_cmp_swp(3), ibv_wr_atomic_fetch_add(3), ibv_wr_bind_mw(3), ibv_wr_complete(3), ibv_wr_flush(3), ibv_wr_local_inv(3), ibv_wr_post(3), ibv_wr_rdma_read(3), ibv_wr_rdma_write(3), ibv_wr_rdma_write_imm(3), ibv_wr_send(3), ibv_wr_send_imm(3), ibv_wr_send_inv(3), ibv_wr_send_tso(3), ibv_wr_set_inline_data(3), ibv_wr_set_inline_data_list(3), ibv_wr_set_sge(3), ibv_wr_set_sge_list(3), ibv_wr_set_ud_addr(3), ibv_wr_set_xrc_srqn(3), ibv_wr_start(3), mlx5dv_qp_ex_from_ibv_qp_ex(3), mlx5dv_wr_memcpy(3), mlx5dv_wr_mr_interleaved(3), mlx5dv_wr_mr_list(3), mlx5dv_wr_post(3), mlx5dv_wr_raw_wqe(3), mlx5dv_wr_set_dc_addr(3), mlx5dv_wr_set_dc_addr_stream(3), rdma_post_read(3), rdma_post_readv(3), rdma_post_send(3), rdma_post_sendv(3), rdma_post_ud_send(3), rdma_post_write(3), rdma_post_writev(3), mlx4dv(7), mlx5dv(7)
HTML rendering created 2025-09-06 byMichael Kerrisk, author ofThe Linux Programming Interface. For details of in-depthLinux/UNIX system programming training courses that I teach, lookhere. Hosting byjambit GmbH. | ![]() |