[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <532885E7.9090602@hp.com>
Date: Tue, 18 Mar 2014 13:44:07 -0400
From: Brian Haley <brian.haley@...com>
To: David L Stevens <dlstevens@...ibm.com>,
David Miller <davem@...emloft.net>,
Stephen Hemminger <shemminger@...tta.com>,
Cong Wang <amwang@...hat.com>
CC: netdev@...r.kernel.org
Subject: Re: [PATCHv3 net-next] VXLAN: fix nonfunctional neigh_reduce
On 03/18/2014 12:20 PM, David L Stevens wrote:
>
> The VXLAN neigh_reduce() code is completely non-functional since
> check-in. Specific errors:
<snip>
>
> diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
> index eb59b14..f6ddde9 100644
> --- a/drivers/net/vxlan.c
> +++ b/drivers/net/vxlan.c
> @@ -1336,14 +1336,102 @@ out:
> }
>
> #if IS_ENABLED(CONFIG_IPV6)
> +
> +static struct sk_buff *vxlan_na_create(struct sk_buff *request,
> + struct neighbour *n, bool isrouter)
> +{
> + struct net_device *dev = request->dev;
> + struct sk_buff *reply = NULL;
Don't need this initialization as it's assigned below before using.
> + struct nd_msg *ns, *na;
> + struct ipv6hdr *pip6;
> + u8 *daddr;
> + int olen = 8; /* opt hdr + ETH_ALEN for target */
> + int i, len;
> +
> + if (dev == NULL)
> + return NULL;
> +
> + ns = (struct nd_msg *)skb_transport_header(request);
Nit: don't use this until below, can move initialization.
> + len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
> + sizeof(*na) + olen + dev->needed_tailroom;
> + reply = alloc_skb(len, GFP_ATOMIC);
> + if (reply == NULL)
> + return NULL;
> +
> + reply->protocol = htons(ETH_P_IPV6);
> + reply->dev = dev;
> + skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
> + skb_push(reply, sizeof(struct ethhdr));
> + skb_set_mac_header(reply, 0);
> +
> + daddr = eth_hdr(request)->h_source;
> + olen = request->len - skb_transport_offset(request) - sizeof(*ns);
> + for (i = 0; i < olen-1; i += (ns->opt[i+1]<<3)) {
> + if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) {
> + daddr = ns->opt + i + sizeof(struct nd_opt_hdr);
> + break;
> + }
> + }
> +
> + /* Ethernet header */
> + memcpy(eth_hdr(reply)->h_dest, daddr, ETH_ALEN);
> + memcpy(eth_hdr(reply)->h_source, n->ha, ETH_ALEN);
Can use ether_addr_copy() here.
-Brian
--
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