Re: [ovs-dev] [PATCH] datapath: Fix ip tunnel compilation for newer kernel.

2016-07-11 Thread pravin shelar
On Mon, Jul 11, 2016 at 1:00 PM, Jesse Gross wrote: > On Mon, Jul 11, 2016 at 11:49 AM, Pravin B Shelar wrote: >> compat iptunnel_xmit is used in backported tunnel code. but >> it was only defined for kernel older than 3.18, This patch fixes >> it by compiling

Re: [ovs-dev] [PATCH] datapath: Fix ip tunnel compilation for newer kernel.

2016-07-11 Thread Jesse Gross
On Mon, Jul 11, 2016 at 11:49 AM, Pravin B Shelar wrote: > compat iptunnel_xmit is used in backported tunnel code. but > it was only defined for kernel older than 3.18, This patch fixes > it by compiling it for all kernel which needs to use backported > tunnel implementation. > >

[ovs-dev] [PATCH] datapath: Fix ip tunnel compilation for newer kernel.

2016-07-11 Thread Pravin B Shelar
compat iptunnel_xmit is used in backported tunnel code. but it was only defined for kernel older than 3.18, This patch fixes it by compiling it for all kernel which needs to use backported tunnel implementation. Reported-by: Justin Pettit Reported-by: Joe Stringer