From: Viacheslav Ovsiienko Date: Tue, 12 Nov 2019 08:53:58 +0000 (+0000) Subject: net/mlx5: fix query host adapter attributes X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=dcd1b653e9e5f423e99d0cccf6469c2532c63111;p=dpdk.git net/mlx5: fix query host adapter attributes Host adapter attributes are queried from kernel via multiple DevX calls. The retrieved data were erroneously overwritten, the order of querying is fixed. Fixes: 6bc327b94fe8 ("net/mlx5: fill meter capabilities using DevX") Signed-off-by: Viacheslav Ovsiienko Acked-by: Matan Azrad --- diff --git a/drivers/net/mlx5/mlx5_devx_cmds.c b/drivers/net/mlx5/mlx5_devx_cmds.c index dcb76098c2..9893287ba8 100644 --- a/drivers/net/mlx5/mlx5_devx_cmds.c +++ b/drivers/net/mlx5/mlx5_devx_cmds.c @@ -335,6 +335,11 @@ mlx5_devx_cmd_query_hca_attr(struct ibv_context *ctx, attr->log_max_hairpin_num_packets = MLX5_GET (cmd_hca_cap, hcattr, log_min_hairpin_wq_data_sz); attr->vhca_id = MLX5_GET(cmd_hca_cap, hcattr, vhca_id); + attr->eth_net_offloads = MLX5_GET(cmd_hca_cap, hcattr, + eth_net_offloads); + attr->eth_virt = MLX5_GET(cmd_hca_cap, hcattr, eth_virt); + attr->flex_parser_protocols = MLX5_GET(cmd_hca_cap, hcattr, + flex_parser_protocols); attr->qos.sup = MLX5_GET(cmd_hca_cap, hcattr, qos); if (attr->qos.sup) { MLX5_SET(query_hca_cap_in, in, op_mod, @@ -358,11 +363,6 @@ mlx5_devx_cmd_query_hca_attr(struct ibv_context *ctx, attr->qos.flow_meter_reg_c_ids = MLX5_GET(qos_cap, hcattr, flow_meter_reg_id); } - attr->eth_net_offloads = MLX5_GET(cmd_hca_cap, hcattr, - eth_net_offloads); - attr->eth_virt = MLX5_GET(cmd_hca_cap, hcattr, eth_virt); - attr->flex_parser_protocols = MLX5_GET(cmd_hca_cap, hcattr, - flex_parser_protocols); if (!attr->eth_net_offloads) return 0;