DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net/mlx5: update counter API for upstream
@ 2019-04-01 15:27 Ori Kam
  2019-04-01 15:27 ` Ori Kam
  2019-04-02  4:56 ` Shahaf Shuler
  0 siblings, 2 replies; 8+ messages in thread
From: Ori Kam @ 2019-04-01 15:27 UTC (permalink / raw)
  To: Matan Azrad, Yongseok Koh, Shahaf Shuler; +Cc: dev, Ori Kam

The API that was defined in OFED 4.5 was replaced both in OFED 4.6 and
in upstream.

This commit updates the API to match the upstream one.

Signed-off-by: Ori Kam <orika@mellanox.com>
---
 drivers/net/mlx5/Makefile       | 2 +-
 drivers/net/mlx5/mlx5_flow_dv.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/mlx5/Makefile b/drivers/net/mlx5/Makefile
index c326494..671fdb8 100644
--- a/drivers/net/mlx5/Makefile
+++ b/drivers/net/mlx5/Makefile
@@ -163,7 +163,7 @@ mlx5_autoconf.h.new: $(RTE_SDK)/buildtools/auto-config-h.sh
 	$Q sh -- '$<' '$@' \
 		HAVE_IBV_FLOW_DEVX_COUNTERS \
 		infiniband/mlx5dv.h \
-		enum MLX5DV_FLOW_ACTION_COUNTER_DEVX \
+		enum MLX5DV_FLOW_ACTION_COUNTERS_DEVX \
 		$(AUTOCONF_OUTPUT)
 	$Q sh -- '$<' '$@' \
 		HAVE_ETHTOOL_LINK_MODE_25G \
diff --git a/drivers/net/mlx5/mlx5_flow_dv.c b/drivers/net/mlx5/mlx5_flow_dv.c
index 57847fb..2fe2836 100644
--- a/drivers/net/mlx5/mlx5_flow_dv.c
+++ b/drivers/net/mlx5/mlx5_flow_dv.c
@@ -36,7 +36,7 @@
 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
 
 #ifndef HAVE_IBV_FLOW_DEVX_COUNTERS
-#define MLX5DV_FLOW_ACTION_COUNTER_DEVX 0
+#define MLX5DV_FLOW_ACTION_COUNTERS_DEVX 0
 #endif
 
 union flow_dv_attr {
@@ -2939,7 +2939,7 @@ struct field_modify_info modify_tcp[] = {
 			if (flow->counter == NULL)
 				goto cnt_err;
 			dev_flow->dv.actions[actions_n].type =
-					MLX5DV_FLOW_ACTION_COUNTER_DEVX;
+					MLX5DV_FLOW_ACTION_COUNTERS_DEVX;
 			dev_flow->dv.actions[actions_n].obj =
 						flow->counter->dcs->obj;
 			action_flags |= MLX5_FLOW_ACTION_COUNT;
-- 
1.8.3.1

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [dpdk-dev] [PATCH] net/mlx5: update counter API for upstream
  2019-04-01 15:27 [dpdk-dev] [PATCH] net/mlx5: update counter API for upstream Ori Kam
@ 2019-04-01 15:27 ` Ori Kam
  2019-04-02  4:56 ` Shahaf Shuler
  1 sibling, 0 replies; 8+ messages in thread
From: Ori Kam @ 2019-04-01 15:27 UTC (permalink / raw)
  To: Matan Azrad, Yongseok Koh, Shahaf Shuler; +Cc: dev, Ori Kam

The API that was defined in OFED 4.5 was replaced both in OFED 4.6 and
in upstream.

This commit updates the API to match the upstream one.

Signed-off-by: Ori Kam <orika@mellanox.com>
---
 drivers/net/mlx5/Makefile       | 2 +-
 drivers/net/mlx5/mlx5_flow_dv.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/mlx5/Makefile b/drivers/net/mlx5/Makefile
index c326494..671fdb8 100644
--- a/drivers/net/mlx5/Makefile
+++ b/drivers/net/mlx5/Makefile
@@ -163,7 +163,7 @@ mlx5_autoconf.h.new: $(RTE_SDK)/buildtools/auto-config-h.sh
 	$Q sh -- '$<' '$@' \
 		HAVE_IBV_FLOW_DEVX_COUNTERS \
 		infiniband/mlx5dv.h \
-		enum MLX5DV_FLOW_ACTION_COUNTER_DEVX \
+		enum MLX5DV_FLOW_ACTION_COUNTERS_DEVX \
 		$(AUTOCONF_OUTPUT)
 	$Q sh -- '$<' '$@' \
 		HAVE_ETHTOOL_LINK_MODE_25G \
diff --git a/drivers/net/mlx5/mlx5_flow_dv.c b/drivers/net/mlx5/mlx5_flow_dv.c
index 57847fb..2fe2836 100644
--- a/drivers/net/mlx5/mlx5_flow_dv.c
+++ b/drivers/net/mlx5/mlx5_flow_dv.c
@@ -36,7 +36,7 @@
 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
 
 #ifndef HAVE_IBV_FLOW_DEVX_COUNTERS
-#define MLX5DV_FLOW_ACTION_COUNTER_DEVX 0
+#define MLX5DV_FLOW_ACTION_COUNTERS_DEVX 0
 #endif
 
 union flow_dv_attr {
@@ -2939,7 +2939,7 @@ struct field_modify_info modify_tcp[] = {
 			if (flow->counter == NULL)
 				goto cnt_err;
 			dev_flow->dv.actions[actions_n].type =
-					MLX5DV_FLOW_ACTION_COUNTER_DEVX;
+					MLX5DV_FLOW_ACTION_COUNTERS_DEVX;
 			dev_flow->dv.actions[actions_n].obj =
 						flow->counter->dcs->obj;
 			action_flags |= MLX5_FLOW_ACTION_COUNT;
-- 
1.8.3.1


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [dpdk-dev] [PATCH] net/mlx5: update counter API for upstream
  2019-04-01 15:27 [dpdk-dev] [PATCH] net/mlx5: update counter API for upstream Ori Kam
  2019-04-01 15:27 ` Ori Kam
@ 2019-04-02  4:56 ` Shahaf Shuler
  2019-04-02  4:56   ` Shahaf Shuler
  2019-04-02  5:24   ` Ori Kam
  1 sibling, 2 replies; 8+ messages in thread
From: Shahaf Shuler @ 2019-04-02  4:56 UTC (permalink / raw)
  To: Ori Kam, Matan Azrad, Yongseok Koh; +Cc: dev

Hi Ori,

Monday, April 1, 2019 6:28 PM, Ori Kam:
> Subject: [PATCH] net/mlx5: update counter API for upstream

This is not an update, this is a fix. 

> 
> The API that was defined in OFED 4.5 was replaced both in OFED 4.6 and in
> upstream.
> 
> This commit updates the API to match the upstream one.

Need to add Cc stable + the offending commit which caused the issue. 

> 
> Signed-off-by: Ori Kam <orika@mellanox.com>
> ---
>  drivers/net/mlx5/Makefile       | 2 +-
>  drivers/net/mlx5/mlx5_flow_dv.c | 4 ++--
>  2 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/net/mlx5/Makefile b/drivers/net/mlx5/Makefile index
> c326494..671fdb8 100644
> --- a/drivers/net/mlx5/Makefile
> +++ b/drivers/net/mlx5/Makefile
> @@ -163,7 +163,7 @@ mlx5_autoconf.h.new: $(RTE_SDK)/buildtools/auto-
> config-h.sh
>  	$Q sh -- '$<' '$@' \
>  		HAVE_IBV_FLOW_DEVX_COUNTERS \
>  		infiniband/mlx5dv.h \
> -		enum MLX5DV_FLOW_ACTION_COUNTER_DEVX \
> +		enum MLX5DV_FLOW_ACTION_COUNTERS_DEVX \
>  		$(AUTOCONF_OUTPUT)
>  	$Q sh -- '$<' '$@' \
>  		HAVE_ETHTOOL_LINK_MODE_25G \
> diff --git a/drivers/net/mlx5/mlx5_flow_dv.c
> b/drivers/net/mlx5/mlx5_flow_dv.c index 57847fb..2fe2836 100644
> --- a/drivers/net/mlx5/mlx5_flow_dv.c
> +++ b/drivers/net/mlx5/mlx5_flow_dv.c
> @@ -36,7 +36,7 @@
>  #ifdef HAVE_IBV_FLOW_DV_SUPPORT
> 
>  #ifndef HAVE_IBV_FLOW_DEVX_COUNTERS
> -#define MLX5DV_FLOW_ACTION_COUNTER_DEVX 0
> +#define MLX5DV_FLOW_ACTION_COUNTERS_DEVX 0
>  #endif
> 
>  union flow_dv_attr {
> @@ -2939,7 +2939,7 @@ struct field_modify_info modify_tcp[] = {
>  			if (flow->counter == NULL)
>  				goto cnt_err;
>  			dev_flow->dv.actions[actions_n].type =
> -
> 	MLX5DV_FLOW_ACTION_COUNTER_DEVX;
> +
> 	MLX5DV_FLOW_ACTION_COUNTERS_DEVX;
>  			dev_flow->dv.actions[actions_n].obj =
>  						flow->counter->dcs->obj;
>  			action_flags |= MLX5_FLOW_ACTION_COUNT;
> --
> 1.8.3.1

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [dpdk-dev] [PATCH] net/mlx5: update counter API for upstream
  2019-04-02  4:56 ` Shahaf Shuler
@ 2019-04-02  4:56   ` Shahaf Shuler
  2019-04-02  5:24   ` Ori Kam
  1 sibling, 0 replies; 8+ messages in thread
From: Shahaf Shuler @ 2019-04-02  4:56 UTC (permalink / raw)
  To: Ori Kam, Matan Azrad, Yongseok Koh; +Cc: dev

Hi Ori,

Monday, April 1, 2019 6:28 PM, Ori Kam:
> Subject: [PATCH] net/mlx5: update counter API for upstream

This is not an update, this is a fix. 

> 
> The API that was defined in OFED 4.5 was replaced both in OFED 4.6 and in
> upstream.
> 
> This commit updates the API to match the upstream one.

Need to add Cc stable + the offending commit which caused the issue. 

> 
> Signed-off-by: Ori Kam <orika@mellanox.com>
> ---
>  drivers/net/mlx5/Makefile       | 2 +-
>  drivers/net/mlx5/mlx5_flow_dv.c | 4 ++--
>  2 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/net/mlx5/Makefile b/drivers/net/mlx5/Makefile index
> c326494..671fdb8 100644
> --- a/drivers/net/mlx5/Makefile
> +++ b/drivers/net/mlx5/Makefile
> @@ -163,7 +163,7 @@ mlx5_autoconf.h.new: $(RTE_SDK)/buildtools/auto-
> config-h.sh
>  	$Q sh -- '$<' '$@' \
>  		HAVE_IBV_FLOW_DEVX_COUNTERS \
>  		infiniband/mlx5dv.h \
> -		enum MLX5DV_FLOW_ACTION_COUNTER_DEVX \
> +		enum MLX5DV_FLOW_ACTION_COUNTERS_DEVX \
>  		$(AUTOCONF_OUTPUT)
>  	$Q sh -- '$<' '$@' \
>  		HAVE_ETHTOOL_LINK_MODE_25G \
> diff --git a/drivers/net/mlx5/mlx5_flow_dv.c
> b/drivers/net/mlx5/mlx5_flow_dv.c index 57847fb..2fe2836 100644
> --- a/drivers/net/mlx5/mlx5_flow_dv.c
> +++ b/drivers/net/mlx5/mlx5_flow_dv.c
> @@ -36,7 +36,7 @@
>  #ifdef HAVE_IBV_FLOW_DV_SUPPORT
> 
>  #ifndef HAVE_IBV_FLOW_DEVX_COUNTERS
> -#define MLX5DV_FLOW_ACTION_COUNTER_DEVX 0
> +#define MLX5DV_FLOW_ACTION_COUNTERS_DEVX 0
>  #endif
> 
>  union flow_dv_attr {
> @@ -2939,7 +2939,7 @@ struct field_modify_info modify_tcp[] = {
>  			if (flow->counter == NULL)
>  				goto cnt_err;
>  			dev_flow->dv.actions[actions_n].type =
> -
> 	MLX5DV_FLOW_ACTION_COUNTER_DEVX;
> +
> 	MLX5DV_FLOW_ACTION_COUNTERS_DEVX;
>  			dev_flow->dv.actions[actions_n].obj =
>  						flow->counter->dcs->obj;
>  			action_flags |= MLX5_FLOW_ACTION_COUNT;
> --
> 1.8.3.1


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [dpdk-dev] [PATCH] net/mlx5: update counter API for upstream
  2019-04-02  4:56 ` Shahaf Shuler
  2019-04-02  4:56   ` Shahaf Shuler
@ 2019-04-02  5:24   ` Ori Kam
  2019-04-02  5:24     ` Ori Kam
  2019-04-02  5:32     ` Shahaf Shuler
  1 sibling, 2 replies; 8+ messages in thread
From: Ori Kam @ 2019-04-02  5:24 UTC (permalink / raw)
  To: Shahaf Shuler, Matan Azrad, Yongseok Koh; +Cc: dev

Hi PSB

> -----Original Message-----
> From: Shahaf Shuler
> Sent: Tuesday, April 2, 2019 7:57 AM
> To: Ori Kam <orika@mellanox.com>; Matan Azrad <matan@mellanox.com>;
> Yongseok Koh <yskoh@mellanox.com>
> Cc: dev@dpdk.org
> Subject: RE: [PATCH] net/mlx5: update counter API for upstream
> 
> Hi Ori,
> 
> Monday, April 1, 2019 6:28 PM, Ori Kam:
> > Subject: [PATCH] net/mlx5: update counter API for upstream
> 
> This is not an update, this is a fix.

The reason that I don't think this is a fix since in the original commit it was stated that it is only for OFED 4.5
and in this case it is correct OFED changed the API. It is not an issue with the original commit.

> 
> >
> > The API that was defined in OFED 4.5 was replaced both in OFED 4.6 and in
> > upstream.
> >
> > This commit updates the API to match the upstream one.
> 
> Need to add Cc stable + the offending commit which caused the issue.
> 
> >
> > Signed-off-by: Ori Kam <orika@mellanox.com>
> > ---
> >  drivers/net/mlx5/Makefile       | 2 +-
> >  drivers/net/mlx5/mlx5_flow_dv.c | 4 ++--
> >  2 files changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/net/mlx5/Makefile b/drivers/net/mlx5/Makefile index
> > c326494..671fdb8 100644
> > --- a/drivers/net/mlx5/Makefile
> > +++ b/drivers/net/mlx5/Makefile
> > @@ -163,7 +163,7 @@ mlx5_autoconf.h.new: $(RTE_SDK)/buildtools/auto-
> > config-h.sh
> >  	$Q sh -- '$<' '$@' \
> >  		HAVE_IBV_FLOW_DEVX_COUNTERS \
> >  		infiniband/mlx5dv.h \
> > -		enum MLX5DV_FLOW_ACTION_COUNTER_DEVX \
> > +		enum MLX5DV_FLOW_ACTION_COUNTERS_DEVX \
> >  		$(AUTOCONF_OUTPUT)
> >  	$Q sh -- '$<' '$@' \
> >  		HAVE_ETHTOOL_LINK_MODE_25G \
> > diff --git a/drivers/net/mlx5/mlx5_flow_dv.c
> > b/drivers/net/mlx5/mlx5_flow_dv.c index 57847fb..2fe2836 100644
> > --- a/drivers/net/mlx5/mlx5_flow_dv.c
> > +++ b/drivers/net/mlx5/mlx5_flow_dv.c
> > @@ -36,7 +36,7 @@
> >  #ifdef HAVE_IBV_FLOW_DV_SUPPORT
> >
> >  #ifndef HAVE_IBV_FLOW_DEVX_COUNTERS
> > -#define MLX5DV_FLOW_ACTION_COUNTER_DEVX 0
> > +#define MLX5DV_FLOW_ACTION_COUNTERS_DEVX 0
> >  #endif
> >
> >  union flow_dv_attr {
> > @@ -2939,7 +2939,7 @@ struct field_modify_info modify_tcp[] = {
> >  			if (flow->counter == NULL)
> >  				goto cnt_err;
> >  			dev_flow->dv.actions[actions_n].type =
> > -
> > 	MLX5DV_FLOW_ACTION_COUNTER_DEVX;
> > +
> > 	MLX5DV_FLOW_ACTION_COUNTERS_DEVX;
> >  			dev_flow->dv.actions[actions_n].obj =
> >  						flow->counter->dcs->obj;
> >  			action_flags |= MLX5_FLOW_ACTION_COUNT;
> > --
> > 1.8.3.1

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [dpdk-dev] [PATCH] net/mlx5: update counter API for upstream
  2019-04-02  5:24   ` Ori Kam
@ 2019-04-02  5:24     ` Ori Kam
  2019-04-02  5:32     ` Shahaf Shuler
  1 sibling, 0 replies; 8+ messages in thread
From: Ori Kam @ 2019-04-02  5:24 UTC (permalink / raw)
  To: Shahaf Shuler, Matan Azrad, Yongseok Koh; +Cc: dev

Hi PSB

> -----Original Message-----
> From: Shahaf Shuler
> Sent: Tuesday, April 2, 2019 7:57 AM
> To: Ori Kam <orika@mellanox.com>; Matan Azrad <matan@mellanox.com>;
> Yongseok Koh <yskoh@mellanox.com>
> Cc: dev@dpdk.org
> Subject: RE: [PATCH] net/mlx5: update counter API for upstream
> 
> Hi Ori,
> 
> Monday, April 1, 2019 6:28 PM, Ori Kam:
> > Subject: [PATCH] net/mlx5: update counter API for upstream
> 
> This is not an update, this is a fix.

The reason that I don't think this is a fix since in the original commit it was stated that it is only for OFED 4.5
and in this case it is correct OFED changed the API. It is not an issue with the original commit.

> 
> >
> > The API that was defined in OFED 4.5 was replaced both in OFED 4.6 and in
> > upstream.
> >
> > This commit updates the API to match the upstream one.
> 
> Need to add Cc stable + the offending commit which caused the issue.
> 
> >
> > Signed-off-by: Ori Kam <orika@mellanox.com>
> > ---
> >  drivers/net/mlx5/Makefile       | 2 +-
> >  drivers/net/mlx5/mlx5_flow_dv.c | 4 ++--
> >  2 files changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/net/mlx5/Makefile b/drivers/net/mlx5/Makefile index
> > c326494..671fdb8 100644
> > --- a/drivers/net/mlx5/Makefile
> > +++ b/drivers/net/mlx5/Makefile
> > @@ -163,7 +163,7 @@ mlx5_autoconf.h.new: $(RTE_SDK)/buildtools/auto-
> > config-h.sh
> >  	$Q sh -- '$<' '$@' \
> >  		HAVE_IBV_FLOW_DEVX_COUNTERS \
> >  		infiniband/mlx5dv.h \
> > -		enum MLX5DV_FLOW_ACTION_COUNTER_DEVX \
> > +		enum MLX5DV_FLOW_ACTION_COUNTERS_DEVX \
> >  		$(AUTOCONF_OUTPUT)
> >  	$Q sh -- '$<' '$@' \
> >  		HAVE_ETHTOOL_LINK_MODE_25G \
> > diff --git a/drivers/net/mlx5/mlx5_flow_dv.c
> > b/drivers/net/mlx5/mlx5_flow_dv.c index 57847fb..2fe2836 100644
> > --- a/drivers/net/mlx5/mlx5_flow_dv.c
> > +++ b/drivers/net/mlx5/mlx5_flow_dv.c
> > @@ -36,7 +36,7 @@
> >  #ifdef HAVE_IBV_FLOW_DV_SUPPORT
> >
> >  #ifndef HAVE_IBV_FLOW_DEVX_COUNTERS
> > -#define MLX5DV_FLOW_ACTION_COUNTER_DEVX 0
> > +#define MLX5DV_FLOW_ACTION_COUNTERS_DEVX 0
> >  #endif
> >
> >  union flow_dv_attr {
> > @@ -2939,7 +2939,7 @@ struct field_modify_info modify_tcp[] = {
> >  			if (flow->counter == NULL)
> >  				goto cnt_err;
> >  			dev_flow->dv.actions[actions_n].type =
> > -
> > 	MLX5DV_FLOW_ACTION_COUNTER_DEVX;
> > +
> > 	MLX5DV_FLOW_ACTION_COUNTERS_DEVX;
> >  			dev_flow->dv.actions[actions_n].obj =
> >  						flow->counter->dcs->obj;
> >  			action_flags |= MLX5_FLOW_ACTION_COUNT;
> > --
> > 1.8.3.1


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [dpdk-dev] [PATCH] net/mlx5: update counter API for upstream
  2019-04-02  5:24   ` Ori Kam
  2019-04-02  5:24     ` Ori Kam
@ 2019-04-02  5:32     ` Shahaf Shuler
  2019-04-02  5:32       ` Shahaf Shuler
  1 sibling, 1 reply; 8+ messages in thread
From: Shahaf Shuler @ 2019-04-02  5:32 UTC (permalink / raw)
  To: Ori Kam, Matan Azrad, Yongseok Koh; +Cc: dev

Tuesday, April 2, 2019 8:25 AM, Ori Kam:
> Subject: RE: [PATCH] net/mlx5: update counter API for upstream
> 
> Hi PSB
> 
> > -----Original Message-----
> > From: Shahaf Shuler
> > Sent: Tuesday, April 2, 2019 7:57 AM
> > To: Ori Kam <orika@mellanox.com>; Matan Azrad
> <matan@mellanox.com>;
> > Yongseok Koh <yskoh@mellanox.com>
> > Cc: dev@dpdk.org
> > Subject: RE: [PATCH] net/mlx5: update counter API for upstream
> >
> > Hi Ori,
> >
> > Monday, April 1, 2019 6:28 PM, Ori Kam:
> > > Subject: [PATCH] net/mlx5: update counter API for upstream
> >
> > This is not an update, this is a fix.
> 
> The reason that I don't think this is a fix since in the original commit it was
> stated that it is only for OFED 4.5 and in this case it is correct OFED changed
> the API. It is not an issue with the original commit.

It is an issue w/ the previous commit, since it should not be accepted in first place since it reference APIs which are not upstream. 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [dpdk-dev] [PATCH] net/mlx5: update counter API for upstream
  2019-04-02  5:32     ` Shahaf Shuler
@ 2019-04-02  5:32       ` Shahaf Shuler
  0 siblings, 0 replies; 8+ messages in thread
From: Shahaf Shuler @ 2019-04-02  5:32 UTC (permalink / raw)
  To: Ori Kam, Matan Azrad, Yongseok Koh; +Cc: dev

Tuesday, April 2, 2019 8:25 AM, Ori Kam:
> Subject: RE: [PATCH] net/mlx5: update counter API for upstream
> 
> Hi PSB
> 
> > -----Original Message-----
> > From: Shahaf Shuler
> > Sent: Tuesday, April 2, 2019 7:57 AM
> > To: Ori Kam <orika@mellanox.com>; Matan Azrad
> <matan@mellanox.com>;
> > Yongseok Koh <yskoh@mellanox.com>
> > Cc: dev@dpdk.org
> > Subject: RE: [PATCH] net/mlx5: update counter API for upstream
> >
> > Hi Ori,
> >
> > Monday, April 1, 2019 6:28 PM, Ori Kam:
> > > Subject: [PATCH] net/mlx5: update counter API for upstream
> >
> > This is not an update, this is a fix.
> 
> The reason that I don't think this is a fix since in the original commit it was
> stated that it is only for OFED 4.5 and in this case it is correct OFED changed
> the API. It is not an issue with the original commit.

It is an issue w/ the previous commit, since it should not be accepted in first place since it reference APIs which are not upstream. 


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-04-02  5:32 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-01 15:27 [dpdk-dev] [PATCH] net/mlx5: update counter API for upstream Ori Kam
2019-04-01 15:27 ` Ori Kam
2019-04-02  4:56 ` Shahaf Shuler
2019-04-02  4:56   ` Shahaf Shuler
2019-04-02  5:24   ` Ori Kam
2019-04-02  5:24     ` Ori Kam
2019-04-02  5:32     ` Shahaf Shuler
2019-04-02  5:32       ` Shahaf Shuler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).