Re: [dpdk-dev] [PATCH v3 1/3] ethdev: support PPP and L2TPV2 procotol

2021-10-17 Thread Ori Kam
Hi Jie, > -Original Message- > From: Jie Wang > Sent: Friday, October 15, 2021 12:58 PM > To: dev@dpdk.org > Wang > Subject: [PATCH v3 1/3] ethdev: support PPP and L2TPV2 procotol > > Added flow pattern items and header formats of L2TPv2 and PPP to support PPP > over L2TPv2 over > UD

Re: [dpdk-dev] [PATCH v3 1/3] ethdev: support PPP and L2TPV2 procotol

2021-10-17 Thread Ori Kam
HI Jie, > -Original Message- > From: Ferruh Yigit > Sent: Friday, October 15, 2021 2:10 PM > Subject: Re: [PATCH v3 1/3] ethdev: support PPP and L2TPV2 procotol > > On 10/15/2021 10:58 AM, Jie Wang wrote: > > +/** > > + * @warning > > + * @b EXPERIMENTAL: this structure may change withou

Re: [dpdk-dev] [PATCH v3 1/3] ethdev: support PPP and L2TPV2 procotol

2021-10-15 Thread Ferruh Yigit
On 10/15/2021 10:58 AM, Jie Wang wrote: +/** + * @warning + * @b EXPERIMENTAL: this structure may change without prior notice + * RTE_FLOW_ITEM_TYPE_PPP + * + * Matches PPP Header + */ +struct rte_flow_item_ppp { + uint8_t addr; /**< ppp address(8) */ + uint8_t ctrl; /**< ppp control(

[dpdk-dev] [PATCH v3 1/3] ethdev: support PPP and L2TPV2 procotol

2021-10-15 Thread Jie Wang
Added flow pattern items and header formats of L2TPv2 and PPP to support PPP over L2TPv2 over UDP protocol RSS Hash. Signed-off-by: Wenjun Wu Signed-off-by: Jie Wang --- doc/guides/prog_guide/rte_flow.rst | 25 +++ doc/guides/rel_notes/release_21_11.rst | 5 + lib/ethdev/rte_flow.c