Re: [dpdk-dev] [PATCH v2] net/tap: support segmented mbufs

2017-03-24 Thread Ferruh Yigit
On 3/16/2017 8:59 AM, Pascal Mazon wrote: > Support for segmented packets (scatter/gather) is mandatory for most > purposes, regardless of the MTU size. Tx packets are often the result of > mbuf concatenation, and an mbuf is not necessarily large enough for Rx > packets to fit in a single one. > >

[dpdk-dev] [PATCH v2] net/tap: support segmented mbufs

2017-03-16 Thread Pascal Mazon
Support for segmented packets (scatter/gather) is mandatory for most purposes, regardless of the MTU size. Tx packets are often the result of mbuf concatenation, and an mbuf is not necessarily large enough for Rx packets to fit in a single one. Signed-off-by: Pascal Mazon Acked-by: Keith Wiles -