From: Weihang Li <liweihang@xxxxxxxxxxxxx> User can set loopback indicator by exporting an environment variable "HNS_ROCE_LOOPBACK". Signed-off-by: Weihang Li <liweihang@xxxxxxxxxxxxx> --- providers/hns/hns_roce_u.c | 15 +++++++++++++++ providers/hns/hns_roce_u.h | 2 ++ providers/hns/hns_roce_u_hw_v2.c | 3 ++- providers/hns/hns_roce_u_verbs.c | 1 + 4 files changed, 20 insertions(+), 1 deletion(-) diff --git a/providers/hns/hns_roce_u.c b/providers/hns/hns_roce_u.c index 8ba41de..f68c84b 100644 --- a/providers/hns/hns_roce_u.c +++ b/providers/hns/hns_roce_u.c @@ -40,6 +40,8 @@ #include "hns_roce_u.h" #include "hns_roce_u_abi.h" +bool loopback; + #define HID_LEN 15 #define DEV_MATCH_LEN 128 @@ -85,6 +87,17 @@ static const struct verbs_context_ops hns_common_ops = { .destroy_ah = hns_roce_u_destroy_ah, }; +static bool get_param_config(const char *var) +{ + char *env; + + env = getenv(var); + if (env) + return strcmp(env, "true") ? true : false; + + return false; +} + static struct verbs_context *hns_roce_alloc_context(struct ibv_device *ibdev, int cmd_fd, void *private_data) @@ -105,6 +118,8 @@ static struct verbs_context *hns_roce_alloc_context(struct ibv_device *ibdev, &resp.ibv_resp, sizeof(resp))) goto err_free; + loopback = get_param_config("HNS_ROCE_LOOPBACK"); + context->num_qps = resp.qp_tab_size; context->qp_table_shift = ffs(context->num_qps) - 1 - HNS_ROCE_QP_TABLE_BITS; diff --git a/providers/hns/hns_roce_u.h b/providers/hns/hns_roce_u.h index 27e6704..bff482a 100644 --- a/providers/hns/hns_roce_u.h +++ b/providers/hns/hns_roce_u.h @@ -43,6 +43,7 @@ #include <ccan/bitmap.h> #include <ccan/container_of.h> +extern bool loopback; #define HNS_ROCE_HW_VER1 ('h' << 24 | 'i' << 16 | '0' << 8 | '6') #define HNS_ROCE_HW_VER2 ('h' << 24 | 'i' << 16 | '0' << 8 | '8') @@ -268,6 +269,7 @@ struct hns_roce_av { uint8_t mac[ETH_ALEN]; uint16_t vlan_id; uint8_t vlan_en; + uint8_t loopback; }; struct hns_roce_ah { diff --git a/providers/hns/hns_roce_u_hw_v2.c b/providers/hns/hns_roce_u_hw_v2.c index f0f76cc..2ccb2dd 100644 --- a/providers/hns/hns_roce_u_hw_v2.c +++ b/providers/hns/hns_roce_u_hw_v2.c @@ -703,7 +703,8 @@ static void set_ud_wqe(void *wqe, struct hns_roce_qp *qp, roce_set_bit(ud_sq_wqe->lbi_flow_label, UD_SQ_WQE_VLAN_EN_S, ah->av.vlan_en ? 1 : 0); - roce_set_bit(ud_sq_wqe->lbi_flow_label, UD_SQ_WQE_LBI_S, 0); + roce_set_bit(ud_sq_wqe->lbi_flow_label, UD_SQ_WQE_LBI_S, + ah->av.loopback); roce_set_field(ud_sq_wqe->lbi_flow_label, UD_SQ_WQE_SL_M, UD_SQ_WQE_SL_S, ah->av.sl); diff --git a/providers/hns/hns_roce_u_verbs.c b/providers/hns/hns_roce_u_verbs.c index 07597a0..45ea317 100644 --- a/providers/hns/hns_roce_u_verbs.c +++ b/providers/hns/hns_roce_u_verbs.c @@ -972,6 +972,7 @@ struct ibv_ah *hns_roce_u_create_ah(struct ibv_pd *pd, struct ibv_ah_attr *attr) ah->av.port = attr->port_num; ah->av.sl = attr->sl; + ah->av.loopback = loopback ? 1 : 0; if (attr->static_rate) ah->av.static_rate = IBV_RATE_10_GBPS; -- 2.8.1