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

2017-09-14 Thread Hu, Jiayu
Hi Ferruh, > -Original Message- > From: Yigit, Ferruh > Sent: Friday, September 15, 2017 2:33 AM > To: Hu, Jiayu ; dev@dpdk.org > Cc: Ananyev, Konstantin ; Kavanagh, Mark > B ; Tan, Jianfeng > Subject: Re: [dpdk-dev] [PATCH v3 1/5] gso: add Generic Segmentation &g

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

2017-09-14 Thread Ferruh Yigit
On 9/12/2017 3:43 AM, Jiayu Hu wrote: > 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,

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

2017-09-12 Thread Jiayu Hu
Hi Konstantin, Thanks for your quick feedbacks. Replies are inline. Thanks, Jiayu On Tue, Sep 12, 2017 at 06:36:41PM +0800, Ananyev, Konstantin wrote: > Hi Jiayu, > Few comments from be inline. > Konstantin > > > diff --git a/lib/librte_gso/rte_gso.c b/lib/librte_gso/rte_gso.c > > new file mode

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

2017-09-12 Thread Ananyev, Konstantin
Hi Jiayu, Few comments from be inline. Konstantin > diff --git a/lib/librte_gso/rte_gso.c b/lib/librte_gso/rte_gso.c > new file mode 100644 > index 000..dda50ee > --- /dev/null > +++ b/lib/librte_gso/rte_gso.c > @@ -0,0 +1,50 @@ > +/*- > + * BSD LICENSE > + * > + * Copyright(c) 2017 Intel

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

2017-09-11 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.