Re: [dpdk-dev] [PATCH v3] app/pdump: enhance to support multi-core capture

2019-03-31 Thread Varghese, Vipin
dev@dpdk.org > Cc: Wiles, Keith ; Mcnamara, John > ; Byrne, Stephen1 ; > Tamboli, Amit S ; Padubidri, Sanjay A > ; Patel, Amol ; Kovacevic, > Marko > Subject: Re: [dpdk-dev] [PATCH v3] app/pdump: enhance to support multi-core > capture > > On 3/29/2019 10:22 AM,

Re: [dpdk-dev] [PATCH v3] app/pdump: enhance to support multi-core capture

2019-03-29 Thread Ferruh Yigit
On 3/29/2019 10:22 AM, Varghese, Vipin wrote: > Hi Reshma, > > snipped >>> >>> /* true if x is a power of 2 */ >>> #define POWEROF2(x) x)-1) & (x)) == 0) @@ -144,7 +145,7 @@ static >>> volatile uint8_t quit_signal; static void pdump_usage(const char >>> *prgname) { >>> - printf("usage:

Re: [dpdk-dev] [PATCH v3] app/pdump: enhance to support multi-core capture

2019-03-29 Thread Pattan, Reshma
> -Original Message- > From: Varghese, Vipin > Subject: RE: [PATCH v3] app/pdump: enhance to support multi-core capture > > > > > "'(port= | device_id=)," > > > "(queue=)," > > > "(rx-dev= |" > > > @@ -415,6 +416,7 @@ print_pdump_stat

Re: [dpdk-dev] [PATCH v3] app/pdump: enhance to support multi-core capture

2019-03-29 Thread Varghese, Vipin
Hi Reshma, snipped > > > > /* true if x is a power of 2 */ > > #define POWEROF2(x) x)-1) & (x)) == 0) @@ -144,7 +145,7 @@ static > > volatile uint8_t quit_signal; static void pdump_usage(const char > > *prgname) { > > - printf("usage: %s [EAL options] -- --pdump " > > + printf("usage

Re: [dpdk-dev] [PATCH v3] app/pdump: enhance to support multi-core capture

2019-03-29 Thread Pattan, Reshma
> -Original Message- > From: Varghese, Vipin > > /* true if x is a power of 2 */ > #define POWEROF2(x) x)-1) & (x)) == 0) @@ -144,7 +145,7 @@ static > volatile > uint8_t quit_signal; static void pdump_usage(const char *prgname) { > - printf("usage: %s [EAL options] -- --pd

Re: [dpdk-dev] [PATCH v3] app/pdump: enhance to support multi-core capture

2019-03-28 Thread Wiles, Keith
> On Mar 28, 2019, at 10:04 AM, Varghese, Vipin > wrote: > > Enhance pdump application, to allow user to run on multiple cores. > > Signed-off-by: Vipin Varghese > --- > > Change Log: > > V3: > - correct the parse_usage - Vipin Varghese > - add change log - Vipin Varghese > > V2: > - Rep

[dpdk-dev] [PATCH v3] app/pdump: enhance to support multi-core capture

2019-03-28 Thread Vipin Varghese
Enhance pdump application, to allow user to run on multiple cores. Signed-off-by: Vipin Varghese --- Change Log: V3: - correct the parse_usage - Vipin Varghese - add change log - Vipin Varghese V2: - Replace option '-c' to '-l' - Keith Wiles --- app/pdump/main.c | 75