Re: [dpdk-dev] [RFC] ethdev: add generic L2/L3 tunnel encapsulation actions

2018-08-23 Thread Ferruh Yigit
On 7/30/2018 5:19 PM, Ori Kam wrote: > Currenlty the encap/decap actions only support encapsulation > of VXLAN and NVGRE L2 packets. > There is a need to add more L2 tunnels and also L3 tunnels. > > One issue with the current approch is the duplication of code. > For example the code for handling

Re: [dpdk-dev] [RFC] ethdev: add generic L2/L3 tunnel encapsulation actions

2018-08-21 Thread Ori Kam
homas Monjalon > ; Yongseok Koh ; > ferruh.yi...@intel.com; arybche...@solarflare.com; dev@dpdk.org > Subject: RE: [dpdk-dev] [RFC] ethdev: add generic L2/L3 tunnel > encapsulation actions > > > > > -Original Message- > > From: Stephen Hemminger [mailto:step...@network

Re: [dpdk-dev] [RFC] ethdev: add generic L2/L3 tunnel encapsulation actions

2018-07-30 Thread Ori Kam
uh.yi...@intel.com; arybche...@solarflare.com; dev@dpdk.org > Subject: Re: [dpdk-dev] [RFC] ethdev: add generic L2/L3 tunnel > encapsulation actions > > On Mon, 30 Jul 2018 19:19:25 +0300 > Ori Kam wrote: > > > Currenlty the encap/decap actions only support encapsulation >

Re: [dpdk-dev] [RFC] ethdev: add generic L2/L3 tunnel encapsulation actions

2018-07-30 Thread Stephen Hemminger
On Mon, 30 Jul 2018 19:19:25 +0300 Ori Kam wrote: > Currenlty the encap/decap actions only support encapsulation > of VXLAN and NVGRE L2 packets. > There is a need to add more L2 tunnels and also L3 tunnels. > > One issue with the current approch is the duplication of code. > For example the cod

[dpdk-dev] [RFC] ethdev: add generic L2/L3 tunnel encapsulation actions

2018-07-30 Thread Ori Kam
Currenlty the encap/decap actions only support encapsulation of VXLAN and NVGRE L2 packets. There is a need to add more L2 tunnels and also L3 tunnels. One issue with the current approch is the duplication of code. For example the code for handling NVGRE and VXLAN are exactly the same, and each ne