Commit 5abb0029 authored by Pravin B Shelar's avatar Pravin B Shelar Committed by David S. Miller

VXLAN: Fix sparse warnings.

Fixes following warning:-
drivers/net/vxlan.c:471:35: warning: symbol 'dev' shadows an earlier one
drivers/net/vxlan.c:433:26: originally declared here
drivers/net/vxlan.c:794:34: warning: symbol 'vxlan' shadows an earlier one
drivers/net/vxlan.c:757:26: originally declared here

CC: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: default avatarPravin B Shelar <pshelar@nicira.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d4ec1b5c
...@@ -468,15 +468,15 @@ static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[], ...@@ -468,15 +468,15 @@ static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
vni = vxlan->vni; vni = vxlan->vni;
if (tb[NDA_IFINDEX]) { if (tb[NDA_IFINDEX]) {
struct net_device *dev; struct net_device *tdev;
if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32)) if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
return -EINVAL; return -EINVAL;
ifindex = nla_get_u32(tb[NDA_IFINDEX]); ifindex = nla_get_u32(tb[NDA_IFINDEX]);
dev = dev_get_by_index(net, ifindex); tdev = dev_get_by_index(net, ifindex);
if (!dev) if (!tdev)
return -EADDRNOTAVAIL; return -EADDRNOTAVAIL;
dev_put(dev); dev_put(tdev);
} else } else
ifindex = 0; ifindex = 0;
...@@ -792,7 +792,6 @@ static int arp_reduce(struct net_device *dev, struct sk_buff *skb) ...@@ -792,7 +792,6 @@ static int arp_reduce(struct net_device *dev, struct sk_buff *skb)
n = neigh_lookup(&arp_tbl, &tip, dev); n = neigh_lookup(&arp_tbl, &tip, dev);
if (n) { if (n) {
struct vxlan_dev *vxlan = netdev_priv(dev);
struct vxlan_fdb *f; struct vxlan_fdb *f;
struct sk_buff *reply; struct sk_buff *reply;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment