Re: [ovs-dev] [PATCH v3] dpdk: Migrate to the new pdump API.

2019-11-19 Thread Stokes, Ian
On 11/13/2019 3:26 PM, Ilya Maximets wrote: On 13.11.2019 15:28, Stokes, Ian wrote: On 11/12/2019 7:40 PM, Ilya Maximets wrote: On 12.11.2019 19:51, Stokes, Ian wrote: On 11/12/2019 5:15 PM, David Marchand wrote: On Tue, Nov 12, 2019 at 6:07 PM Stokes, Ian wrote: On 11/11/2019 3:01

Re: [ovs-dev] [PATCH v3] dpdk: Migrate to the new pdump API.

2019-11-13 Thread David Marchand
On Wed, Nov 13, 2019 at 4:48 PM Ilya Maximets wrote: > On 12.11.2019 21:13, David Marchand wrote: > > This is pure speculation, but when I saw the crash before, I thought > > that the problem was in the way ovs creates its thread without the > > dpdk being aware of it. > > At least, lcore_ids are

Re: [ovs-dev] [PATCH v3] dpdk: Migrate to the new pdump API.

2019-11-13 Thread Ilya Maximets
On 12.11.2019 21:13, David Marchand wrote: > On Tue, Nov 12, 2019 at 8:41 PM Ilya Maximets wrote: >> >> On 12.11.2019 19:51, Stokes, Ian wrote: >>> >>> >>> On 11/12/2019 5:15 PM, David Marchand wrote: On Tue, Nov 12, 2019 at 6:07 PM Stokes, Ian wrote: > On 11/11/2019 3:01 PM, Ilya

Re: [ovs-dev] [PATCH v3] dpdk: Migrate to the new pdump API.

2019-11-13 Thread Ilya Maximets
On 13.11.2019 15:28, Stokes, Ian wrote: > > > On 11/12/2019 7:40 PM, Ilya Maximets wrote: >> On 12.11.2019 19:51, Stokes, Ian wrote: >>> >>> >>> On 11/12/2019 5:15 PM, David Marchand wrote: On Tue, Nov 12, 2019 at 6:07 PM Stokes, Ian wrote: > On 11/11/2019 3:01 PM, Ilya Maximets wrote:

Re: [ovs-dev] [PATCH v3] dpdk: Migrate to the new pdump API.

2019-11-13 Thread Stokes, Ian
On 11/12/2019 7:40 PM, Ilya Maximets wrote: On 12.11.2019 19:51, Stokes, Ian wrote: On 11/12/2019 5:15 PM, David Marchand wrote: On Tue, Nov 12, 2019 at 6:07 PM Stokes, Ian wrote: On 11/11/2019 3:01 PM, Ilya Maximets wrote: DPDK commit 660098d61f57 ("pdump: use generic multi-process

Re: [ovs-dev] [PATCH v3] dpdk: Migrate to the new pdump API.

2019-11-12 Thread David Marchand
On Tue, Nov 12, 2019 at 8:41 PM Ilya Maximets wrote: > > On 12.11.2019 19:51, Stokes, Ian wrote: > > > > > > On 11/12/2019 5:15 PM, David Marchand wrote: > >> On Tue, Nov 12, 2019 at 6:07 PM Stokes, Ian wrote: > >>> On 11/11/2019 3:01 PM, Ilya Maximets wrote: > DPDK commit 660098d61f57

Re: [ovs-dev] [PATCH v3] dpdk: Migrate to the new pdump API.

2019-11-12 Thread Ilya Maximets
On 12.11.2019 19:51, Stokes, Ian wrote: > > > On 11/12/2019 5:15 PM, David Marchand wrote: >> On Tue, Nov 12, 2019 at 6:07 PM Stokes, Ian wrote: >>> On 11/11/2019 3:01 PM, Ilya Maximets wrote: DPDK commit 660098d61f57 ("pdump: use generic multi-process channel") switched pdump to use

Re: [ovs-dev] [PATCH v3] dpdk: Migrate to the new pdump API.

2019-11-12 Thread Stokes, Ian
On 11/12/2019 5:15 PM, David Marchand wrote: On Tue, Nov 12, 2019 at 6:07 PM Stokes, Ian wrote: On 11/11/2019 3:01 PM, Ilya Maximets wrote: DPDK commit 660098d61f57 ("pdump: use generic multi-process channel") switched pdump to use generic DPDK IPC instead of sockets. Old API was

Re: [ovs-dev] [PATCH v3] dpdk: Migrate to the new pdump API.

2019-11-12 Thread David Marchand
On Tue, Nov 12, 2019 at 6:07 PM Stokes, Ian wrote: > On 11/11/2019 3:01 PM, Ilya Maximets wrote: > > DPDK commit 660098d61f57 ("pdump: use generic multi-process channel") > > switched pdump to use generic DPDK IPC instead of sockets. > > Old API was deprecated and removed. Updating OVS code

Re: [ovs-dev] [PATCH v3] dpdk: Migrate to the new pdump API.

2019-11-12 Thread Stokes, Ian
On 11/11/2019 3:01 PM, Ilya Maximets wrote: DPDK commit 660098d61f57 ("pdump: use generic multi-process channel") switched pdump to use generic DPDK IPC instead of sockets. Old API was deprecated and removed. Updating OVS code accordingly. Signed-off-by: Ilya Maximets Thanks for the

Re: [ovs-dev] [PATCH v3] dpdk: Migrate to the new pdump API.

2019-11-11 Thread Ilya Maximets
Sorry, I missed the 'dpdk-latest' tag. On 11.11.2019 16:01, Ilya Maximets wrote: > DPDK commit 660098d61f57 ("pdump: use generic multi-process channel") > switched pdump to use generic DPDK IPC instead of sockets. > Old API was deprecated and removed. Updating OVS code accordingly. > >

[ovs-dev] [PATCH v3] dpdk: Migrate to the new pdump API.

2019-11-11 Thread Ilya Maximets
DPDK commit 660098d61f57 ("pdump: use generic multi-process channel") switched pdump to use generic DPDK IPC instead of sockets. Old API was deprecated and removed. Updating OVS code accordingly. Signed-off-by: Ilya Maximets --- Version 3: * Added note about XDG_RUNTIME_DIR. Version 2: *