[dpdk-dev] [PATCH v2] examples/l3fwd: exact-match rework

2016-02-28 Thread Thomas Monjalon
Hi, There is an error when compiling: examples/l3fwd/l3fwd_em.c:304:1: error: unused function 'l3fwd_em_simple_forward' 2016-02-24 10:48, Tomasz Kulasek: > - l3fwd_em_simple_forward(pkts_burst[j], portid, qconf); > - l3fwd_em_simple_forward(pkts_burst[j

[dpdk-dev] [PATCH v2] examples/l3fwd: exact-match rework

2016-02-24 Thread Tomasz Kulasek
Current implementation of Exact-Match uses different execution path than for LPM. Unifying them allows to reuse big part of LPM code and sightly increase performance of Exact-Match. Main changes: - * Packet classification stage is separated from the rest of path for both LPM and EM.