DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] test/ipsec: fix compile error on BSD
@ 2019-01-16 13:45 Bernard Iremonger
  2019-01-16 14:01 ` Ananyev, Konstantin
  2019-01-17  1:18 ` Wu, ChangqingX
  0 siblings, 2 replies; 5+ messages in thread
From: Bernard Iremonger @ 2019-01-16 13:45 UTC (permalink / raw)
  To: dev, konstantin.ananyev, changqingx.wu; +Cc: Bernard Iremonger

Removed ip.h and in.h headers to fix unknown type errors
when compiling on BSD.

Fixes: 05fe65eb66b2 ("test/ipsec: introduce functional test")
Signed-off-by: Bernard Iremonger <bernard.iremonger@intel.com>
---
 test/test/test_ipsec.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/test/test/test_ipsec.c b/test/test/test_ipsec.c
index ff1a1c4..f49c8d8 100644
--- a/test/test/test_ipsec.c
+++ b/test/test/test_ipsec.c
@@ -4,9 +4,6 @@
 
 #include <time.h>
 
-#include <netinet/in.h>
-#include <netinet/ip.h>
-
 #include <rte_common.h>
 #include <rte_hexdump.h>
 #include <rte_mbuf.h>
-- 
2.7.4

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

* Re: [dpdk-dev] [PATCH] test/ipsec: fix compile error on BSD
  2019-01-16 13:45 [dpdk-dev] [PATCH] test/ipsec: fix compile error on BSD Bernard Iremonger
@ 2019-01-16 14:01 ` Ananyev, Konstantin
  2019-01-17  1:17   ` Wu, ChangqingX
  2019-01-17 23:25   ` Thomas Monjalon
  2019-01-17  1:18 ` Wu, ChangqingX
  1 sibling, 2 replies; 5+ messages in thread
From: Ananyev, Konstantin @ 2019-01-16 14:01 UTC (permalink / raw)
  To: Iremonger, Bernard, dev, Wu, ChangqingX



> -----Original Message-----
> From: Iremonger, Bernard
> Sent: Wednesday, January 16, 2019 1:46 PM
> To: dev@dpdk.org; Ananyev, Konstantin <konstantin.ananyev@intel.com>; Wu, ChangqingX <changqingx.wu@intel.com>
> Cc: Iremonger, Bernard <bernard.iremonger@intel.com>
> Subject: [PATCH] test/ipsec: fix compile error on BSD
> 
> Removed ip.h and in.h headers to fix unknown type errors
> when compiling on BSD.
> 
> Fixes: 05fe65eb66b2 ("test/ipsec: introduce functional test")
> Signed-off-by: Bernard Iremonger <bernard.iremonger@intel.com>
> ---
>  test/test/test_ipsec.c | 3 ---
>  1 file changed, 3 deletions(-)
> 
> diff --git a/test/test/test_ipsec.c b/test/test/test_ipsec.c
> index ff1a1c4..f49c8d8 100644
> --- a/test/test/test_ipsec.c
> +++ b/test/test/test_ipsec.c
> @@ -4,9 +4,6 @@
> 
>  #include <time.h>
> 
> -#include <netinet/in.h>
> -#include <netinet/ip.h>
> -
>  #include <rte_common.h>
>  #include <rte_hexdump.h>
>  #include <rte_mbuf.h>
> --

Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>

> 2.7.4

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

* Re: [dpdk-dev] [PATCH] test/ipsec: fix compile error on BSD
  2019-01-16 14:01 ` Ananyev, Konstantin
@ 2019-01-17  1:17   ` Wu, ChangqingX
  2019-01-17 23:25   ` Thomas Monjalon
  1 sibling, 0 replies; 5+ messages in thread
From: Wu, ChangqingX @ 2019-01-17  1:17 UTC (permalink / raw)
  To: Ananyev, Konstantin, Iremonger, Bernard, dev

Tested-by: Wu, ChangqingX <changqingx.wu@intel.com>

-----Original Message-----
From: Ananyev, Konstantin 
Sent: Wednesday, January 16, 2019 10:01 PM
To: Iremonger, Bernard <bernard.iremonger@intel.com>; dev@dpdk.org; Wu, ChangqingX <changqingx.wu@intel.com>
Subject: RE: [PATCH] test/ipsec: fix compile error on BSD



> -----Original Message-----
> From: Iremonger, Bernard
> Sent: Wednesday, January 16, 2019 1:46 PM
> To: dev@dpdk.org; Ananyev, Konstantin <konstantin.ananyev@intel.com>; 
> Wu, ChangqingX <changqingx.wu@intel.com>
> Cc: Iremonger, Bernard <bernard.iremonger@intel.com>
> Subject: [PATCH] test/ipsec: fix compile error on BSD
> 
> Removed ip.h and in.h headers to fix unknown type errors when 
> compiling on BSD.
> 
> Fixes: 05fe65eb66b2 ("test/ipsec: introduce functional test")
> Signed-off-by: Bernard Iremonger <bernard.iremonger@intel.com>
> ---
>  test/test/test_ipsec.c | 3 ---
>  1 file changed, 3 deletions(-)
> 
> diff --git a/test/test/test_ipsec.c b/test/test/test_ipsec.c index 
> ff1a1c4..f49c8d8 100644
> --- a/test/test/test_ipsec.c
> +++ b/test/test/test_ipsec.c
> @@ -4,9 +4,6 @@
> 
>  #include <time.h>
> 
> -#include <netinet/in.h>
> -#include <netinet/ip.h>
> -
>  #include <rte_common.h>
>  #include <rte_hexdump.h>
>  #include <rte_mbuf.h>
> --

Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>

> 2.7.4

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

* Re: [dpdk-dev] [PATCH] test/ipsec: fix compile error on BSD
  2019-01-16 13:45 [dpdk-dev] [PATCH] test/ipsec: fix compile error on BSD Bernard Iremonger
  2019-01-16 14:01 ` Ananyev, Konstantin
@ 2019-01-17  1:18 ` Wu, ChangqingX
  1 sibling, 0 replies; 5+ messages in thread
From: Wu, ChangqingX @ 2019-01-17  1:18 UTC (permalink / raw)
  To: Iremonger, Bernard, dev, Ananyev, Konstantin

Tested-by: Wu, ChangqingX <changqingx.wu@intel.com>

-----Original Message-----
From: Iremonger, Bernard 
Sent: Wednesday, January 16, 2019 9:46 PM
To: dev@dpdk.org; Ananyev, Konstantin <konstantin.ananyev@intel.com>; Wu, ChangqingX <changqingx.wu@intel.com>
Cc: Iremonger, Bernard <bernard.iremonger@intel.com>
Subject: [PATCH] test/ipsec: fix compile error on BSD

Removed ip.h and in.h headers to fix unknown type errors when compiling on BSD.

Fixes: 05fe65eb66b2 ("test/ipsec: introduce functional test")
Signed-off-by: Bernard Iremonger <bernard.iremonger@intel.com>
---
 test/test/test_ipsec.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/test/test/test_ipsec.c b/test/test/test_ipsec.c index ff1a1c4..f49c8d8 100644
--- a/test/test/test_ipsec.c
+++ b/test/test/test_ipsec.c
@@ -4,9 +4,6 @@
 
 #include <time.h>
 
-#include <netinet/in.h>
-#include <netinet/ip.h>
-
 #include <rte_common.h>
 #include <rte_hexdump.h>
 #include <rte_mbuf.h>
--
2.7.4

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

* Re: [dpdk-dev] [PATCH] test/ipsec: fix compile error on BSD
  2019-01-16 14:01 ` Ananyev, Konstantin
  2019-01-17  1:17   ` Wu, ChangqingX
@ 2019-01-17 23:25   ` Thomas Monjalon
  1 sibling, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2019-01-17 23:25 UTC (permalink / raw)
  To: Iremonger, Bernard; +Cc: dev, Ananyev, Konstantin, Wu, ChangqingX

> > Removed ip.h and in.h headers to fix unknown type errors
> > when compiling on BSD.
> > 
> > Fixes: 05fe65eb66b2 ("test/ipsec: introduce functional test")
> > Signed-off-by: Bernard Iremonger <bernard.iremonger@intel.com>
> 
> Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>

Applied, thanks

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

end of thread, other threads:[~2019-01-17 23:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-16 13:45 [dpdk-dev] [PATCH] test/ipsec: fix compile error on BSD Bernard Iremonger
2019-01-16 14:01 ` Ananyev, Konstantin
2019-01-17  1:17   ` Wu, ChangqingX
2019-01-17 23:25   ` Thomas Monjalon
2019-01-17  1:18 ` Wu, ChangqingX

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).