Re: [dpdk-dev] [PATCH v16 7/8] examples/l2fwd: disable ptype parsing

2019-11-07 Thread Ferruh Yigit
On 11/6/2019 7:18 PM, pbhagavat...@marvell.com wrote: > diff --git a/examples/l2fwd/Makefile b/examples/l2fwd/Makefile > index 230352093..123e6161c 100644 > --- a/examples/l2fwd/Makefile > +++ b/examples/l2fwd/Makefile > @@ -51,6 +51,7 @@ include $(RTE_SDK)/mk/rte.vars.mk > > CFLAGS += -O3 > CF

Re: [dpdk-dev] [PATCH v16 7/8] examples/l2fwd: disable ptype parsing

2019-11-07 Thread Ferruh Yigit
On 11/6/2019 7:18 PM, pbhagavat...@marvell.com wrote: > From: Pavan Nikhilesh > > Disable packet type parsing as l2fwd doesn't rely on packet types. > > Signed-off-by: Pavan Nikhilesh > --- > examples/l2fwd/Makefile| 1 + > examples/l2fwd/main.c | 2 ++ > examples/l2fwd/meson.build |

[dpdk-dev] [PATCH v16 7/8] examples/l2fwd: disable ptype parsing

2019-11-06 Thread pbhagavatula
From: Pavan Nikhilesh Disable packet type parsing as l2fwd doesn't rely on packet types. Signed-off-by: Pavan Nikhilesh --- examples/l2fwd/Makefile| 1 + examples/l2fwd/main.c | 2 ++ examples/l2fwd/meson.build | 1 + 3 files changed, 4 insertions(+) diff --git a/examples/l2fwd/Makef