Re: [dpdk-dev] [PATCH v2] pdump: change to use generic multi-process channel

2018-04-05 Thread Tan, Jianfeng
Sorry, it seems that I missed this email. On 4/5/2018 5:45 PM, Pattan, Reshma wrote: Hi Signed-off-by: Jianfeng Tan --- Note this patch needs this patch set: http://dpdk.org/dev/patchwork/patch/36814/ v2: - Update doc for deprecation of API, rte_pdump_set_socket_dir, and API change f

Re: [dpdk-dev] [PATCH v2] pdump: change to use generic multi-process channel

2018-04-05 Thread Tan, Jianfeng
On 4/5/2018 6:37 PM, Pattan, Reshma wrote: Hi, -Original Message- From: Tan, Jianfeng Sent: Wednesday, April 4, 2018 4:08 PM To: dev@dpdk.org Cc: Tan, Jianfeng ; Pattan, Reshma Subject: [PATCH v2] pdump: change to use generic multi-process channel The original code replies on the pr

Re: [dpdk-dev] [PATCH v2] pdump: change to use generic multi-process channel

2018-04-05 Thread Pattan, Reshma
Hi, > -Original Message- > From: Tan, Jianfeng > Sent: Wednesday, April 4, 2018 4:08 PM > To: dev@dpdk.org > Cc: Tan, Jianfeng ; Pattan, Reshma > > Subject: [PATCH v2] pdump: change to use generic multi-process channel > > The original code replies on the private channel for primary and

Re: [dpdk-dev] [PATCH v2] pdump: change to use generic multi-process channel

2018-04-05 Thread Pattan, Reshma
Hi > > Signed-off-by: Jianfeng Tan > --- > Note this patch needs this patch set: > http://dpdk.org/dev/patchwork/patch/36814/ > v2: > - Update doc for deprecation of API, rte_pdump_set_socket_dir, > and API change for rte_pdump_init. > - Add notice for known incompatibility issue in doc.

[dpdk-dev] [PATCH v2] pdump: change to use generic multi-process channel

2018-04-04 Thread Jianfeng Tan
The original code replies on the private channel for primary and secondary communication. Change to use the generic multi-process channel. Note with this change, dpdk-pdump will be not compatible with old version DPDK applications. Cc: reshma.pat...@intel.com Signed-off-by: Jianfeng Tan --- Not