Re: [dpdk-dev] [PATCH v2] examples/l3fwd: support separate buffer pool per port

2019-05-02 Thread Thomas Monjalon
25/04/2019 11:40, Shreyansh Jain: > Traditionally, only a single buffer pool per port > (or, per-port-per-socket) is created in l3fwd application. > > If separate pools are created per-port, it might lead to gain in > performance as packet alloc/dealloc requests would be isolated > across ports (a

[dpdk-dev] [PATCH v2] examples/l3fwd: support separate buffer pool per port

2019-04-25 Thread Shreyansh Jain
Traditionally, only a single buffer pool per port (or, per-port-per-socket) is created in l3fwd application. If separate pools are created per-port, it might lead to gain in performance as packet alloc/dealloc requests would be isolated across ports (and their corresponding lcores). This patch ad