net/mlx5: support matching on ICMP/ICMP6
[dpdk.git] / drivers / net / mlx5 / mlx5_glue.c
index 6172e0d..d038373 100644 (file)
@@ -87,6 +87,13 @@ mlx5_glue_query_device_ex(struct ibv_context *context,
        return ibv_query_device_ex(context, input, attr);
 }
 
+static int
+mlx5_glue_query_rt_values_ex(struct ibv_context *context,
+                         struct ibv_values_ex *values)
+{
+       return ibv_query_rt_values_ex(context, values);
+}
+
 static int
 mlx5_glue_query_port(struct ibv_context *context, uint8_t port_num,
                     struct ibv_port_attr *port_attr)
@@ -296,6 +303,7 @@ mlx5_glue_create_counters(struct ibv_context *context,
 #ifndef HAVE_IBV_DEVICE_COUNTERS_SET_V45
        (void)context;
        (void)init_attr;
+       errno = ENOTSUP;
        return NULL;
 #else
        return ibv_create_counters(context, init_attr);
@@ -377,6 +385,7 @@ mlx5_glue_dr_create_flow_action_dest_flow_tbl(void *tbl)
        return mlx5dv_dr_action_create_dest_table(tbl);
 #else
        (void)tbl;
+       errno = ENOTSUP;
        return NULL;
 #endif
 }
@@ -389,6 +398,7 @@ mlx5_glue_dr_create_flow_action_dest_vport(void *domain, uint32_t vport)
 #else
        (void)domain;
        (void)vport;
+       errno = ENOTSUP;
        return NULL;
 #endif
 }
@@ -399,6 +409,7 @@ mlx5_glue_dr_create_flow_action_drop(void)
 #ifdef HAVE_MLX5DV_DR_ESWITCH
        return mlx5dv_dr_action_create_drop();
 #else
+       errno = ENOTSUP;
        return NULL;
 #endif
 }
@@ -411,6 +422,7 @@ mlx5_glue_dr_create_flow_tbl(void *domain, uint32_t level)
 #else
        (void)domain;
        (void)level;
+       errno = ENOTSUP;
        return NULL;
 #endif
 }
@@ -422,7 +434,8 @@ mlx5_glue_dr_destroy_flow_tbl(void *tbl)
        return mlx5dv_dr_table_destroy(tbl);
 #else
        (void)tbl;
-       return 0;
+       errno = ENOTSUP;
+       return errno;
 #endif
 }
 
@@ -435,6 +448,7 @@ mlx5_glue_dr_create_domain(struct ibv_context *ctx,
 #else
        (void)ctx;
        (void)domain;
+       errno = ENOTSUP;
        return NULL;
 #endif
 }
@@ -446,7 +460,8 @@ mlx5_glue_dr_destroy_domain(void *domain)
        return mlx5dv_dr_domain_destroy(domain);
 #else
        (void)domain;
-       return 0;
+       errno = ENOTSUP;
+       return errno;
 #endif
 }
 
@@ -467,6 +482,7 @@ mlx5_glue_dv_create_wq(struct ibv_context *context,
        (void)context;
        (void)wq_attr;
        (void)mlx5_wq_attr;
+       errno = ENOTSUP;
        return NULL;
 #else
        return mlx5dv_create_wq(context, wq_attr, mlx5_wq_attr);
@@ -504,6 +520,7 @@ mlx5_glue_dv_create_qp(struct ibv_context *context,
        (void)context;
        (void)qp_init_attr_ex;
        (void)dv_qp_init_attr;
+       errno = ENOTSUP;
        return NULL;
 #endif
 }
@@ -527,6 +544,7 @@ mlx5_glue_dv_create_flow_matcher(struct ibv_context *context,
        (void)context;
        (void)matcher_attr;
        (void)tbl;
+       errno = ENOTSUP;
        return NULL;
 #endif
 }
@@ -581,6 +599,7 @@ mlx5_glue_dv_create_flow_action_counter(void *counter_obj, uint32_t offset)
 #else
        (void)counter_obj;
        (void)offset;
+       errno = ENOTSUP;
        return NULL;
 #endif
 }
@@ -603,6 +622,7 @@ mlx5_glue_dv_create_flow_action_dest_ibv_qp(void *qp)
 #endif
 #else
        (void)qp;
+       errno = ENOTSUP;
        return NULL;
 #endif
 }
@@ -641,6 +661,7 @@ mlx5_glue_dv_create_flow_action_modify_header
        (void)flags;
        (void)actions_sz;
        (void)actions;
+       errno = ENOTSUP;
        return NULL;
 #endif
 }
@@ -681,6 +702,7 @@ mlx5_glue_dv_create_flow_action_packet_reformat
        (void)flags;
        (void)data_sz;
        (void)data;
+       errno = ENOTSUP;
        return NULL;
 #endif
 }
@@ -702,6 +724,7 @@ mlx5_glue_dv_create_flow_action_tag(uint32_t tag)
 #endif
 #endif
        (void)tag;
+       errno = ENOTSUP;
        return NULL;
 }
 
@@ -726,7 +749,8 @@ mlx5_glue_dv_destroy_flow_matcher(void *matcher)
 #endif
 #else
        (void)matcher;
-       return 0;
+       errno = ENOTSUP;
+       return errno;
 #endif
 }
 
@@ -740,6 +764,7 @@ mlx5_glue_dv_open_device(struct ibv_device *device)
                                  });
 #else
        (void)device;
+       errno = ENOTSUP;
        return NULL;
 #endif
 }
@@ -757,6 +782,7 @@ mlx5_glue_devx_obj_create(struct ibv_context *ctx,
        (void)inlen;
        (void)out;
        (void)outlen;
+       errno = ENOTSUP;
        return NULL;
 #endif
 }
@@ -835,6 +861,7 @@ const struct mlx5_glue *mlx5_glue = &(const struct mlx5_glue){
        .close_device = mlx5_glue_close_device,
        .query_device = mlx5_glue_query_device,
        .query_device_ex = mlx5_glue_query_device_ex,
+       .query_rt_values_ex = mlx5_glue_query_rt_values_ex,
        .query_port = mlx5_glue_query_port,
        .create_comp_channel = mlx5_glue_create_comp_channel,
        .destroy_comp_channel = mlx5_glue_destroy_comp_channel,