projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
774521f
)
vti6: return GRE_KEY for vti6
author
David Forster
<dforster@brocade.com>
Fri, 24 Feb 2017 14:20:32 +0000
(14:20 +0000)
committer
David S. Miller
<davem@davemloft.net>
Fri, 24 Feb 2017 16:42:55 +0000
(11:42 -0500)
Align vti6 with vti by returning GRE_KEY flag. This enables iproute2
to display tunnel keys on "ip -6 tunnel show"
Signed-off-by: David Forster <dforster@brocade.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/ip6_vti.c
patch
|
blob
|
blame
|
history
diff --git
a/net/ipv6/ip6_vti.c
b/net/ipv6/ip6_vti.c
index c795fee372c4992cf6c391330a85d7d017a7a3a5..644ba59fbd9d5ed8d6ba4a8082dd327589c9bb68 100644
(file)
--- a/
net/ipv6/ip6_vti.c
+++ b/
net/ipv6/ip6_vti.c
@@
-693,6
+693,10
@@
vti6_parm_to_user(struct ip6_tnl_parm2 *u, const struct __ip6_tnl_parm *p)
u->link = p->link;
u->i_key = p->i_key;
u->o_key = p->o_key;
+ if (u->i_key)
+ u->i_flags |= GRE_KEY;
+ if (u->o_key)
+ u->o_flags |= GRE_KEY;
u->proto = p->proto;
memcpy(u->name, p->name, sizeof(u->name));