Re: [dpdk-dev] [PATCH v6] doc: add GRO limitations in prog_guide

2019-01-17 Thread Thomas Monjalon
16/01/2019 10:50, Ananyev, Konstantin: > From: Hu, Jiayu > > > > This patch adds GRO limitations in the programmer guide. > > > > Fixes: 2c900d09055e ("doc: add GRO guide") > > Cc: sta...@dpdk.org > > > > Signed-off-by: Jiayu Hu > > --- > > changes in v6: > > - add VLAN limitation > > changes i

Re: [dpdk-dev] [PATCH v6] doc: add GRO limitations in prog_guide

2019-01-17 Thread Kovacevic, Marko
> +GRO Library Limitations > +--- > + > +- GRO library uses MBUF->l2_len/l3_len/l4_len/outer_l2_len/ > + outer_l3_len/packet_type to get protocol headers for the > + input packet, rather than parsing the packet header. Therefore, > + before call GRO APIs to merge packets, use

Re: [dpdk-dev] [PATCH v6] doc: add GRO limitations in prog_guide

2019-01-16 Thread Ananyev, Konstantin
> -Original Message- > From: Hu, Jiayu > Sent: Wednesday, January 16, 2019 2:14 AM > To: dev@dpdk.org > Cc: Ananyev, Konstantin ; tho...@monjalon.net; > Hu, Jiayu ; sta...@dpdk.org > Subject: [PATCH v6] doc: add GRO limitations in prog_guide > > This patch adds GRO limitations in the p

[dpdk-dev] [PATCH v6] doc: add GRO limitations in prog_guide

2019-01-15 Thread Jiayu Hu
This patch adds GRO limitations in the programmer guide. Fixes: 2c900d09055e ("doc: add GRO guide") Cc: sta...@dpdk.org Signed-off-by: Jiayu Hu --- changes in v6: - add VLAN limitation changes in v5: - remove fix commit 9e0b9d2ec0f4 changes in v4: - update MBUF->l2_len/... requirement changes in