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

2018-10-03 Thread Flavio Leitner
On Fri, Sep 28, 2018 at 05:15:04PM +0100, 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 syste

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

2018-09-28 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