Re: [ovs-dev] [PATCH v11 07/14] dp-packet: Handle multi-seg mubfs in shift() func.

2018-12-17 Thread Ian Stokes
On 10/10/2018 5:22 PM, Tiago Lam wrote: In its current implementation dp_packet_shift() is also unaware of multi-seg mbufs (that holds data in memory non-contiguously) and assumes that data exists contiguously in memory, memmove'ing data to perform the shift. To add support for multi-seg mbufs

[ovs-dev] [PATCH v11 07/14] dp-packet: Handle multi-seg mubfs in shift() func.

2018-10-10 Thread Tiago Lam
In its current implementation dp_packet_shift() is also unaware of multi-seg mbufs (that holds data in memory non-contiguously) and assumes that data exists contiguously in memory, memmove'ing data to perform the shift. To add support for multi-seg mbufs a new set of functions was introduced,