[dpdk-dev] ip_reassembly doesn't start

2016-04-10 Thread Victor Detoni
hi, I'm trying to run ip_reassembly application but it is showing the error below. please, someone knows what's happing? The other app like l2fwd/l3fwd works fine. root at ubuntu:~# cd dpdk-2.1.0/examples/ip_reassembly/ root at ubuntu:~/dpdk-2.1.0/examples/ip_reassembly# ./build/ip_reassembly -

[dpdk-dev] [PATCH] vhost: fix mem share between VM and host

2016-04-10 Thread Thomas Monjalon
2016-04-11 01:28, Zhe Tao: > The reason cause this problem is that in QEMU, when assign the > memory-backend-file without share option, will cause QEMU mmap the mem file > without using the MAP_SHARED flag, so the page cache for that file will not > shared between other processes, all the upated to

[dpdk-dev] [PATCH 0/2] Fix Xen compilation for 32 bits

2016-04-10 Thread Thomas Monjalon
2016-04-10 20:25, Pablo de Lara: > Xen library and vhost_xen app cannot build on 32 bits, > so this patchset fixes both. > > Pablo de Lara (2): > xen: fix compilation on 32 bits > vhost_xen: fix compilation on 32 bits Applied, thanks

[dpdk-dev] [PATCH 2/2] vhost_xen: fix compilation on 32 bits

2016-04-10 Thread Pablo de Lara
Compilation fails on 32 bits on Vhost_xen sample app, due to wrong casting: examples/vhost_xen/vhost_monitor.c: In function ?new_device?: examples/vhost_xen/vhost_monitor.c:288:62: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]

[dpdk-dev] [PATCH 1/2] xen: fix compilation on 32 bits

2016-04-10 Thread Pablo de Lara
Compilation fails on 32 bits on Xen driver, due to wrong casting: drivers/net/xenvirt/virtqueue.h: In function ?virtqueue_enqueue_xmit?: drivers/net/xenvirt/virtqueue.h:234:24: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast] start_d

[dpdk-dev] [PATCH 0/2] Fix Xen compilation for 32 bits

2016-04-10 Thread Pablo de Lara
Xen library and vhost_xen app cannot build on 32 bits, so this patchset fixes both. Pablo de Lara (2): xen: fix compilation on 32 bits vhost_xen: fix compilation on 32 bits drivers/net/xenvirt/virtqueue.h| 2 +- examples/vhost_xen/vhost_monitor.c | 10 +++--- 2 files changed, 8 inse

[dpdk-dev] pktgen-2.9.13 not compiling with gcc 4.9 because of -Wdiscarded-qualifiers / 2.9.12 fine

2016-04-10 Thread Wiles, Keith
>On Sun, 2016-04-10 at 04:59 +, Wiles, Keith wrote: >> >Hi, >> > >> >pktgen-2.9.13 is not compiling with gcc 4.9, see below >> > >> >2.9.12 is compiling fine with gcc 4.9, so looks like new >> >IPv6 code recently added is the culprit. >> > >> >I think -Wdiscarded-qualifiers is available only wi

[dpdk-dev] [PATCH] doc: announce API changes for device objects

2016-04-10 Thread Thomas Monjalon
> > >> Following discussions with Jan, here is a deprecation notice to prepare > > >> for > > >> hotplug and rte_device changes to come in 16.07. > > >> > > >> Signed-off-by: David Marchand > > >> --- > > > Acked-by: Jan Viktorin > > > > Acked-by: Olivier Matz > > Acked-by: Thomas Monjalon

[dpdk-dev] [PATCH] vhost: ABI/API change announcement due to refactor

2016-04-10 Thread Thomas Monjalon
> > > +* A librte_vhost public structures refactor is planned for DPDK 16.07 > > > + that requires both ABI and API change. > > > + The proposed refactor would expose DPDK vhost dev to applications as > > > + a handle, like the way kernel exposes an fd to user for locating a > > > + specific fi

[dpdk-dev] [PATCH] vhost: ABI/API change announcement due to refactor

2016-04-10 Thread Thomas Monjalon
2016-04-07 10:12, Panu Matilainen: > On 04/06/2016 09:53 AM, Yuanhan Liu wrote: > > +* A librte_vhost public structures refactor is planned for DPDK 16.07 > > + that requires both ABI and API change. > > + The proposed refactor would expose DPDK vhost dev to applications as > > + a handle, like

[dpdk-dev] [PATCH] doc: announce ABI changes for user-owned mempool caches

2016-04-10 Thread Thomas Monjalon
> >> Deprecation notice for 16.04 for changes targeting release 16.07. > >> The changes affect struct rte_mempool, rte_mempool_cache and the > >> mempool API. > >> > >> Signed-off-by: Lazaros Koromilas > > Acked-by: Olivier Matz > Acked-by: David Hunt It is the fourth change announced for rte_me

[dpdk-dev] [PATCH] maintainers: claim responsibility for pcap PMD

2016-04-10 Thread Thomas Monjalon
> > Signed-off-by: Ferruh Yigit > > Acked-by: John McNamara Applied, thanks

[dpdk-dev] [PATCH v2] doc: fill nics features matrix for pcap

2016-04-10 Thread Thomas Monjalon
> > Signed-off-by: Ferruh Yigit > > Acked-by: John McNamara Applied, thanks

[dpdk-dev] pktgen-2.9.13 not compiling with gcc 4.9 because of -Wdiscarded-qualifiers / 2.9.12 fine

2016-04-10 Thread Laurent GUERBY
On Sun, 2016-04-10 at 04:59 +, Wiles, Keith wrote: > >Hi, > > > >pktgen-2.9.13 is not compiling with gcc 4.9, see below > > > >2.9.12 is compiling fine with gcc 4.9, so looks like new > >IPv6 code recently added is the culprit. > > > >I think -Wdiscarded-qualifiers is available only with gcc 5+

[dpdk-dev] pktgen-2.9.13 not compiling with gcc 4.9 because of -Wdiscarded-qualifiers / 2.9.12 fine

2016-04-10 Thread Wiles, Keith
>Hi, > >pktgen-2.9.13 is not compiling with gcc 4.9, see below > >2.9.12 is compiling fine with gcc 4.9, so looks like new >IPv6 code recently added is the culprit. > >I think -Wdiscarded-qualifiers is available only with gcc 5+ >https://gcc.gnu.org/gcc-5/changes.html Thanks I have fixed the prob

[dpdk-dev] pktgen-2.9.13 not compiling with gcc 4.9 because of -Wdiscarded-qualifiers / 2.9.12 fine

2016-04-10 Thread Laurent GUERBY
Hi, pktgen-2.9.13 is not compiling with gcc 4.9, see below 2.9.12 is compiling fine with gcc 4.9, so looks like new IPv6 code recently added is the culprit. I think -Wdiscarded-qualifiers is available only with gcc 5+ https://gcc.gnu.org/gcc-5/changes.html Sincerely, Laurent root at dpdk3:~/