@@ -927,7 +927,8 @@ static void create_qp_handle_resp_common(struct ibv_context *context,
enum {
CREATE_QP_EX2_SUP_CREATE_FLAGS = IBV_QP_CREATE_BLOCK_SELF_MCAST_LB |
IBV_QP_CREATE_SCATTER_FCS |
- IBV_QP_CREATE_CVLAN_STRIPPING,
+ IBV_QP_CREATE_CVLAN_STRIPPING |
+ IBV_QP_CREATE_SOURCE_QPN,
};
int ibv_cmd_create_qp_ex2(struct ibv_context *context,
@@ -967,6 +968,9 @@ int ibv_cmd_create_qp_ex2(struct ibv_context *context,
sizeof(qp_attr->create_flags))
return EINVAL;
cmd->create_flags = qp_attr->create_flags;
+
+ if (qp_attr->create_flags & IBV_QP_CREATE_SOURCE_QPN)
+ cmd->source_qpn = qp_attr->source_qpn;
}
if (qp_attr->comp_mask & IBV_QP_INIT_ATTR_IND_TABLE) {
@@ -679,7 +679,7 @@ struct ibv_create_qp_ex {
__u32 comp_mask;
__u32 create_flags;
__u32 ind_tbl_handle;
- __u32 reserved1;
+ __u32 source_qpn;
};
struct ibv_create_qp_resp_ex {
@@ -38,6 +38,7 @@ enum ibv_qp_create_flags create_flags; /* Creation flags for this QP */
uint16_t max_tso_header; /* Maximum TSO header size */
struct ibv_rwq_ind_table *rwq_ind_tbl; /* Indirection table to be associated with the QP */
struct ibv_rx_hash_conf rx_hash_conf; /* RX hash configuration to be used */
+uint32_t source_qpn; /* Source QP number, creation flag IBV_QP_CREATE_SOURCE_QPN should be set */
.in -8
};
.sp
@@ -790,6 +790,7 @@ enum ibv_qp_create_flags {
IBV_QP_CREATE_BLOCK_SELF_MCAST_LB = 1 << 1,
IBV_QP_CREATE_SCATTER_FCS = 1 << 8,
IBV_QP_CREATE_CVLAN_STRIPPING = 1 << 9,
+ IBV_QP_CREATE_SOURCE_QPN = 1 << 10,
};
struct ibv_rx_hash_conf {
@@ -817,6 +818,7 @@ struct ibv_qp_init_attr_ex {
uint16_t max_tso_header;
struct ibv_rwq_ind_table *rwq_ind_tbl;
struct ibv_rx_hash_conf rx_hash_conf;
+ uint32_t source_qpn;
};
enum ibv_qp_open_attr_mask {
Enable QP creation with a given source QP number. The created QP will use the source QPN as its wire QP number. This comes as a pre-patch for downstream patches in this series to allow user space applications to accelerate traffic which is typically handled by IPoIB ULP. In the IPoIB use case, the source QPN can be achieved by using some networking tool as of ifconfig, ip link show on the interface and use the value of 3 bytes from the hardware address starting after the first byte. Signed-off-by: Yishai Hadas <yishaih@mellanox.com> --- libibverbs/cmd.c | 6 +++++- libibverbs/kern-abi.h | 2 +- libibverbs/man/ibv_create_qp_ex.3 | 1 + libibverbs/verbs.h | 2 ++ 4 files changed, 9 insertions(+), 2 deletions(-)