Re: [dpdk-dev] [PATCH 1/5] lib: add Generic Segmentation Offload API framework

2017-08-30 Thread Jiayu Hu
Hi Konstantin, On Wed, Aug 30, 2017 at 09:38:02AM +0800, Ananyev, Konstantin wrote: > Hi Jiayu, > > > > > Generic Segmentation Offload (GSO) is a SW technique to split large > > packets into small ones. Akin to TSO, GSO enables applications to > > operate on large packets, thus reducing per-pack

Re: [dpdk-dev] [PATCH 1/5] lib: add Generic Segmentation Offload API framework

2017-08-29 Thread Ananyev, Konstantin
Hi Jiayu, > > Generic Segmentation Offload (GSO) is a SW technique to split large > packets into small ones. Akin to TSO, GSO enables applications to > operate on large packets, thus reducing per-packet processing overhead. > > To enable more flexibility to applications, DPDK GSO is implemented

[dpdk-dev] [PATCH 1/5] lib: add Generic Segmentation Offload API framework

2017-08-24 Thread Jiayu Hu
Generic Segmentation Offload (GSO) is a SW technique to split large packets into small ones. Akin to TSO, GSO enables applications to operate on large packets, thus reducing per-packet processing overhead. To enable more flexibility to applications, DPDK GSO is implemented as a standalone library.