Re: [dpdk-dev] [PATCH] examples/l3fwd: add support for eventdev mode

2019-09-06 Thread Aaron Conole
Sunil Kumar Kori writes: > Signed-off-by: Sunil Kumar Kori > --- > examples/l3fwd/Makefile | 2 +- Please also update the meson.build file so that this example will build properly. > examples/l3fwd/l3fwd.h | 21 +- > examples/l3fwd/l3fwd_common.h | 10 + > examples/l3fw

[dpdk-dev] [PATCH] examples/l3fwd: add support for eventdev mode

2019-09-06 Thread Sunil Kumar Kori
Patchset adds support for eventdev mode for packet enqueue/dequeue. Following is the summary of newly added features: 1. Exposing new command line parameters. - mode: It dictates the mode of operation i.e. poll or eventdev. - eventq_sync: It dictates eventq synchronization method i.e.

Re: [dpdk-dev] [PATCH] examples/l3fwd: add support for eventdev mode

2019-09-06 Thread Akhil Goyal
Hi Sunil, Please give a sample command line argument to run this mode and explain the parameters that we need to configure. There is no description where we can look into the details for review. Regards, Akhil > > Signed-off-by: Sunil Kumar Kori > --- > examples/l3fwd/Makefile | 2

[dpdk-dev] [PATCH] examples/l3fwd: add support for eventdev mode

2019-09-06 Thread Sunil Kumar Kori
Signed-off-by: Sunil Kumar Kori --- examples/l3fwd/Makefile | 2 +- examples/l3fwd/l3fwd.h | 21 +- examples/l3fwd/l3fwd_common.h | 10 + examples/l3fwd/l3fwd_em.c | 69 + examples/l3fwd/l3fwd_eventdev.c | 593 examples/l3