Re: [ovs-dev] [PATCH 1/2] datapath: Add pre_tunnel support

2013-01-23 Thread Lori Jakab
On 01/23/13 16:01, Jarno Rajahalme wrote: > > On Jan 22, 2013, at 20:36 , ext Kyle Mestery wrote: > >> Add support to the tunneling code for a "pre_tunnel" >> function. This allows the tunneling code to perform >> operations on the packet before the outer IP header is >> added. >> >> A tunneling

Re: [ovs-dev] [PATCH 1/2] datapath: Add pre_tunnel support

2013-01-23 Thread Jarno Rajahalme
On Jan 22, 2013, at 20:36 , ext Kyle Mestery wrote: > Add support to the tunneling code for a "pre_tunnel" > function. This allows the tunneling code to perform > operations on the packet before the outer IP header is > added. > > A tunneling protocol such as LISP may require this, as it needs >

[ovs-dev] [PATCH 1/2] datapath: Add pre_tunnel support

2013-01-22 Thread Kyle Mestery
Add support to the tunneling code for a "pre_tunnel" function. This allows the tunneling code to perform operations on the packet before the outer IP header is added. A tunneling protocol such as LISP may require this, as it needs to remove the MAC header before applying the LISP header. Signed-o