Re: [dpdk-dev] [PATCH v6 01/10] examples/l2fwd-event: add default poll mode routines

2019-10-20 Thread Varghese, Vipin
HI Pavan, snipped > + > +/* Print out statistics on packets dropped */ void print_stats(struct > +l2fwd_resources *rsrc) { > + uint64_t total_packets_dropped, total_packets_tx, total_packets_rx; > + uint32_t port_id; > + > + total_packets_dropped = 0; > + total_packets_tx = 0; > +

Re: [dpdk-dev] [PATCH v6 01/10] examples/l2fwd-event: add default poll mode routines

2019-10-16 Thread Pavan Nikhilesh Bhagavatula
>On Mon, 14 Oct 2019 23:52:38 +0530 > wrote: > >> From: Pavan Nikhilesh >> >> Add the default l2fwd poll mode routines similar to examples/l2fwd. >> >> Signed-off-by: Sunil Kumar Kori >> Signed-off-by: Pavan Nikhilesh > >Patchwork CI reports build failures on this. >Every patch must build, even

Re: [dpdk-dev] [PATCH v6 01/10] examples/l2fwd-event: add default poll mode routines

2019-10-16 Thread Stephen Hemminger
On Mon, 14 Oct 2019 23:52:38 +0530 wrote: > From: Pavan Nikhilesh > > Add the default l2fwd poll mode routines similar to examples/l2fwd. > > Signed-off-by: Sunil Kumar Kori > Signed-off-by: Pavan Nikhilesh Patchwork CI reports build failures on this. Every patch must build, even if part of

[dpdk-dev] [PATCH v6 01/10] examples/l2fwd-event: add default poll mode routines

2019-10-14 Thread pbhagavatula
From: Pavan Nikhilesh Add the default l2fwd poll mode routines similar to examples/l2fwd. Signed-off-by: Sunil Kumar Kori Signed-off-by: Pavan Nikhilesh --- MAINTAINERS | 5 + examples/Makefile | 1 + examples/l2fwd-event/Makefile | 59