[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20130418143407.GA28374@zed.ravello.local>
Date: Thu, 18 Apr 2013 17:34:08 +0300
From: Mike Rapoport <mike.rapoport@...ellosystems.com>
To: Cong Wang <amwang@...hat.com>
Cc: netdev@...r.kernel.org, David Stevens <dlstevens@...ibm.com>,
Stephen Hemminger <stephen@...workplumber.org>,
"David S. Miller" <davem@...emloft.net>
Subject: Re: [Patch net-next v4 3/5] vxlan: add ipv6 support
On Wed, Apr 17, 2013 at 01:10:20PM +0800, Cong Wang wrote:
> From: Cong Wang <amwang@...hat.com>
>
> This patch adds IPv6 support to vxlan device, as the new version
> RFC already mentioned it:
>
> http://tools.ietf.org/html/draft-mahalingam-dutt-dcops-vxlan-03
>
> Cc: David Stevens <dlstevens@...ibm.com>
> Cc: Stephen Hemminger <stephen@...workplumber.org>
> Cc: David S. Miller <davem@...emloft.net>
> Signed-off-by: Cong Wang <amwang@...hat.com>
> ---
> drivers/net/vxlan.c | 639 +++++++++++++++++++++++++++++++++---------
> include/uapi/linux/if_link.h | 2 +
> 2 files changed, 505 insertions(+), 136 deletions(-)
>
> diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
> index f8ac900..43ed40f 100644
> --- a/drivers/net/vxlan.c
> +++ b/drivers/net/vxlan.c
[ snip ]
> +#if IS_ENABLED(CONFIG_IPV6)
> + else {
> + loopback.va_sin6 = in6addr_loopback;
When building vxlan as module I get:
MODPOST 45 modules
VOFFSET arch/x86/boot/voffset.h
CC arch/x86/boot/version.o
AS arch/x86/boot/compressed/head_64.o
ERROR: "in6addr_loopback" [drivers/net/vxlan.ko] undefined!
Seems, that either in6addr_loopback should be exported, or
IN6ADDR_LOOPBACK_INIT should be used as initializer for
loopback.va_sin6.
> + loopback.va_sa = AF_INET6;
> + }
> +#endif
> +
> if (dst_vxlan->flags & VXLAN_F_LEARN)
> - vxlan_snoop(skb->dev, htonl(INADDR_LOOPBACK),
> - eth_hdr(skb)->h_source);
> + vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source);
>
> u64_stats_update_begin(&tx_stats->syncp);
> tx_stats->tx_packets++;
--
Sincerely yours,
Mike.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists