Re: [ovs-dev] [PATCH 5/5] datapath: lisp: Relax MTU constraints.

2016-02-17 Thread Jesse Gross
On Wed, Feb 17, 2016 at 10:26 AM, Joe Stringer wrote: > On 16 February 2016 at 12:35, Joe Stringer wrote: >> On 16 February 2016 at 11:43, Jesse Gross wrote: >>> On Tue, Feb 16, 2016 at 10:43 AM, Joe Stringer wrote: diff --git a/datapath/linux/compat/lisp.c b/datapath/linux/compat/lisp.c >

Re: [ovs-dev] [PATCH 5/5] datapath: lisp: Relax MTU constraints.

2016-02-17 Thread Joe Stringer
On 16 February 2016 at 12:35, Joe Stringer wrote: > On 16 February 2016 at 11:43, Jesse Gross wrote: >> On Tue, Feb 16, 2016 at 10:43 AM, Joe Stringer wrote: >>> diff --git a/datapath/linux/compat/lisp.c b/datapath/linux/compat/lisp.c >>> index e5a6a7fe00a4..0c81dd52ecab 100644 >>> --- a/datapat

Re: [ovs-dev] [PATCH 5/5] datapath: lisp: Relax MTU constraints.

2016-02-16 Thread Joe Stringer
On 16 February 2016 at 11:43, Jesse Gross wrote: > On Tue, Feb 16, 2016 at 10:43 AM, Joe Stringer wrote: >> diff --git a/datapath/linux/compat/lisp.c b/datapath/linux/compat/lisp.c >> index e5a6a7fe00a4..0c81dd52ecab 100644 >> --- a/datapath/linux/compat/lisp.c >> +++ b/datapath/linux/compat/lisp

Re: [ovs-dev] [PATCH 5/5] datapath: lisp: Relax MTU constraints.

2016-02-16 Thread Jesse Gross
On Tue, Feb 16, 2016 at 10:43 AM, Joe Stringer wrote: > diff --git a/datapath/linux/compat/lisp.c b/datapath/linux/compat/lisp.c > index e5a6a7fe00a4..0c81dd52ecab 100644 > --- a/datapath/linux/compat/lisp.c > +++ b/datapath/linux/compat/lisp.c > @@ -114,6 +114,7 @@ struct lisphdr { > }; > > #de

[ovs-dev] [PATCH 5/5] datapath: lisp: Relax MTU constraints.

2016-02-16 Thread Joe Stringer
Currently, even if the entire path supports jumbo frames, the LISP netdev limits the path MTU to 1500 bytes, and cannot be configured otherwise. Relax the constraints on modifying the device MTU, and set it to the maximum by default. Signed-off-by: Joe Stringer --- datapath/linux/compat/lisp.c |