Re: [dpdk-dev] [PATCH v2] examples/ip_pipeline: fix freebsd build error

2018-04-10 Thread Thomas Monjalon
10/04/2018 11:51, Jasvinder Singh: > IP_Pipeline app is not supported in FreeBSD environment. Therefore, > skip it while building the sample apps on FreeBSD. > > Fixes: 4bbf8e30aa5e ("examples/ip_pipeline: add CLI interface") > Fixes: 2f74ae28e23f ("examples/ip_pipeline: add tap object") > > Sign

Re: [dpdk-dev] [PATCH v2] examples/ip_pipeline: fix freebsd build error

2018-04-10 Thread Bruce Richardson
On Tue, Apr 10, 2018 at 02:19:38PM +0200, Thomas Monjalon wrote: > 10/04/2018 12:25, Singh, Jasvinder: > > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > > 10/04/2018 11:51, Jasvinder Singh: > > > > IP_Pipeline app is not supported in FreeBSD environment. Therefore, > > > > skip it while bu

Re: [dpdk-dev] [PATCH v2] examples/ip_pipeline: fix freebsd build error

2018-04-10 Thread Thomas Monjalon
10/04/2018 12:25, Singh, Jasvinder: > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > 10/04/2018 11:51, Jasvinder Singh: > > > IP_Pipeline app is not supported in FreeBSD environment. Therefore, > > > skip it while building the sample apps on FreeBSD. > > [...] > > > --- a/examples/ip_pipeli

Re: [dpdk-dev] [PATCH v2] examples/ip_pipeline: fix freebsd build error

2018-04-10 Thread Singh, Jasvinder
> -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Tuesday, April 10, 2018 11:15 AM > To: Singh, Jasvinder > Cc: dev@dpdk.org; Dumitrescu, Cristian > Subject: Re: [dpdk-dev] [PATCH v2] examples/ip_pipeline: fix freebsd build > error

Re: [dpdk-dev] [PATCH v2] examples/ip_pipeline: fix freebsd build error

2018-04-10 Thread Thomas Monjalon
10/04/2018 11:51, Jasvinder Singh: > IP_Pipeline app is not supported in FreeBSD environment. Therefore, > skip it while building the sample apps on FreeBSD. [...] > --- a/examples/ip_pipeline/Makefile > +++ b/examples/ip_pipeline/Makefile > @@ -67,6 +67,13 @@ RTE_TARGET ?= x86_64-native-linuxapp-g

[dpdk-dev] [PATCH v2] examples/ip_pipeline: fix freebsd build error

2018-04-10 Thread Jasvinder Singh
IP_Pipeline app is not supported in FreeBSD environment. Therefore, skip it while building the sample apps on FreeBSD. Fixes: 4bbf8e30aa5e ("examples/ip_pipeline: add CLI interface") Fixes: 2f74ae28e23f ("examples/ip_pipeline: add tap object") Signed-off-by: Jasvinder Singh Acked-by: Cristian Du