Re: [PATCH iproute2 net-next 1/2] iplink_vxlan: Add DF configuration

2018-11-07 Thread Stefano Brivio
On Wed, 7 Nov 2018 13:03:34 -0700 David Ahern wrote: > On 11/6/18 2:39 PM, Stefano Brivio wrote: > > diff --git a/ip/iplink_vxlan.c b/ip/iplink_vxlan.c > > index 7fc0e2b4eb06..86afbe1334f0 100644 > > --- a/ip/iplink_vxlan.c > > +++ b/ip/iplink_vxlan.c > > @@ -31,6 +31,7 @@ static void print_expla

Re: [PATCH iproute2 net-next 1/2] iplink_vxlan: Add DF configuration

2018-11-07 Thread David Ahern
On 11/6/18 2:39 PM, Stefano Brivio wrote: > diff --git a/ip/iplink_vxlan.c b/ip/iplink_vxlan.c > index 7fc0e2b4eb06..86afbe1334f0 100644 > --- a/ip/iplink_vxlan.c > +++ b/ip/iplink_vxlan.c > @@ -31,6 +31,7 @@ static void print_explain(FILE *f) > " [ local ADDR ]\n" >

[PATCH iproute2 net-next 1/2] iplink_vxlan: Add DF configuration

2018-11-06 Thread Stefano Brivio
Allow to set the DF bit behaviour for outgoing IPv4 packets: it can be always on, inherited from the inner header, or, by default, always off, which is the current behaviour. Signed-off-by: Stefano Brivio --- include/uapi/linux/if_link.h | 9 + ip/iplink_vxlan.c| 29