Re: [PATCH v5 1/2] geneve: implement support for IPv6-based tunnels
From: John W. Linville <hidden>
Date: 2015-10-23 13:45:28
On Fri, Oct 23, 2015 at 01:48:49PM +0900, YOSHIFUJI Hideaki wrote:
Hi, John W. Linville wrote:quoted
NOTE: Link-local IPv6 addresses for remote endpoints are not supported, since the driver currently has no capacity for binding a geneve interface to a specific link. Signed-off-by: John W. Linville <redacted> --- v5: - wrap declaration of sock6 in geneve_dev with IS_ENABLED(CONFIG_IPV6) - remove superfluous '!!' when assigning geneve->collect_md to bool - use skb_scrub_packet in IPv4 tx path as well - check for NULL ip_tunnel_info pointer in geneve[6]_xmit_skb - use ipv6_addr_equal for comparing IPv6 addresses - more use of IS_ENABLED(CONFIG_IPV6) for preserving build integrity - reject link-local ipv6 address for remote tunnel endpoint:quoted
@@ -870,15 +1147,35 @@ static int geneve_newlink(struct net *net, struct net_device *dev,:quoted
+ + if (ipv6_addr_type(&remote.sin6.sin6_addr) & + IPV6_ADDR_LINKLOCAL) + netdev_dbg(dev, "link-local remote is unsupported\n"); + return -EINVAL; + } +This always returns -EINVAL; {} is missing.
Yikes! I posted the wrong patch...good eyes! I will repost... John -- John W. Linville Someday the world will need a hero, and you linville@tuxdriver.com might be all we have. Be ready.