* [PATCH] vxlan: allow a user to set TTL value
@ 2012-10-30 20:27 Vincent Bernat
2012-10-30 20:53 ` Stephen Hemminger
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Vincent Bernat @ 2012-10-30 20:27 UTC (permalink / raw)
To: Stephen Hemminger, David Miller, netdev; +Cc: Vincent Bernat
"ip link add ... type vxlan ... ttl X" allows a user to set the TTL
used by a VXLAN for encapsulation. The provided value was ignored by
vxlan module and the default value of 1 was used when encapsulating
multicast packets.
Signed-off-by: Vincent Bernat <bernat@luffy.cx>
---
drivers/net/vxlan.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
index 607976c..030559d 100644
--- a/drivers/net/vxlan.c
+++ b/drivers/net/vxlan.c
@@ -1107,6 +1107,9 @@ static int vxlan_newlink(struct net *net, struct net_device *dev,
if (data[IFLA_VXLAN_TOS])
vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
+ if (data[IFLA_VXLAN_TTL])
+ vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
+
if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
vxlan->learn = true;
--
1.7.10.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] vxlan: allow a user to set TTL value
2012-10-30 20:27 [PATCH] vxlan: allow a user to set TTL value Vincent Bernat
@ 2012-10-30 20:53 ` Stephen Hemminger
2012-10-30 20:54 ` Stephen Hemminger
2012-11-03 19:25 ` David Miller
2 siblings, 0 replies; 4+ messages in thread
From: Stephen Hemminger @ 2012-10-30 20:53 UTC (permalink / raw)
To: Vincent Bernat; +Cc: David Miller, netdev
On Tue, 30 Oct 2012 21:27:16 +0100
Vincent Bernat <bernat@luffy.cx> wrote:
> "ip link add ... type vxlan ... ttl X" allows a user to set the TTL
> used by a VXLAN for encapsulation. The provided value was ignored by
> vxlan module and the default value of 1 was used when encapsulating
> multicast packets.
>
> Signed-off-by: Vincent Bernat <bernat@luffy.cx>
> ---
> drivers/net/vxlan.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
> index 607976c..030559d 100644
> --- a/drivers/net/vxlan.c
> +++ b/drivers/net/vxlan.c
> @@ -1107,6 +1107,9 @@ static int vxlan_newlink(struct net *net, struct net_device *dev,
> if (data[IFLA_VXLAN_TOS])
> vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
>
> + if (data[IFLA_VXLAN_TTL])
> + vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
> +
> if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
> vxlan->learn = true;
>
Acked-by: Stephen Hemminger <shemminger@vyatta.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] vxlan: allow a user to set TTL value
2012-10-30 20:27 [PATCH] vxlan: allow a user to set TTL value Vincent Bernat
2012-10-30 20:53 ` Stephen Hemminger
@ 2012-10-30 20:54 ` Stephen Hemminger
2012-11-03 19:25 ` David Miller
2 siblings, 0 replies; 4+ messages in thread
From: Stephen Hemminger @ 2012-10-30 20:54 UTC (permalink / raw)
To: Vincent Bernat; +Cc: David Miller, netdev
On Tue, 30 Oct 2012 21:27:16 +0100
Vincent Bernat <bernat@luffy.cx> wrote:
> "ip link add ... type vxlan ... ttl X" allows a user to set the TTL
> used by a VXLAN for encapsulation. The provided value was ignored by
> vxlan module and the default value of 1 was used when encapsulating
> multicast packets.
>
> Signed-off-by: Vincent Bernat <bernat@luffy.cx>
> ---
> drivers/net/vxlan.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
> index 607976c..030559d 100644
> --- a/drivers/net/vxlan.c
> +++ b/drivers/net/vxlan.c
> @@ -1107,6 +1107,9 @@ static int vxlan_newlink(struct net *net, struct net_device *dev,
> if (data[IFLA_VXLAN_TOS])
> vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
>
> + if (data[IFLA_VXLAN_TTL])
> + vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
> +
> if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
> vxlan->learn = true;
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] vxlan: allow a user to set TTL value
2012-10-30 20:27 [PATCH] vxlan: allow a user to set TTL value Vincent Bernat
2012-10-30 20:53 ` Stephen Hemminger
2012-10-30 20:54 ` Stephen Hemminger
@ 2012-11-03 19:25 ` David Miller
2 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2012-11-03 19:25 UTC (permalink / raw)
To: bernat; +Cc: shemminger, netdev
From: Vincent Bernat <bernat@luffy.cx>
Date: Tue, 30 Oct 2012 21:27:16 +0100
> "ip link add ... type vxlan ... ttl X" allows a user to set the TTL
> used by a VXLAN for encapsulation. The provided value was ignored by
> vxlan module and the default value of 1 was used when encapsulating
> multicast packets.
>
> Signed-off-by: Vincent Bernat <bernat@luffy.cx>
Applied net-next.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-11-03 19:25 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-30 20:27 [PATCH] vxlan: allow a user to set TTL value Vincent Bernat
2012-10-30 20:53 ` Stephen Hemminger
2012-10-30 20:54 ` Stephen Hemminger
2012-11-03 19:25 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).