Re: [ovs-dev] [PATCH v8 03/13] dp-packet: Fix allocated size on DPDK init.

2018-06-18 Thread Eelco Chaudron
On 11 Jun 2018, at 18:21, Tiago Lam wrote: When enabled with DPDK OvS deals with two types of packets, the ones coming from the mempool and the ones locally created by OvS - which are copied to mempool mbufs before output. In the latter, the space is allocated from the system, while in the f

[ovs-dev] [PATCH v8 03/13] dp-packet: Fix allocated size on DPDK init.

2018-06-11 Thread Tiago Lam
When enabled with DPDK OvS deals with two types of packets, the ones coming from the mempool and the ones locally created by OvS - which are copied to mempool mbufs before output. In the latter, the space is allocated from the system, while in the former the mbufs are allocated from a mempool, whic