Commit 1d7a5526 authored by Guillaume Nault's avatar Guillaume Nault Committed by David S. Miller
Browse files

vxlan: drop "vxlan" parameter in vxlan_fdb_alloc()



This parameter has never been used.

Signed-off-by: default avatarGuillaume Nault <gnault@redhat.com>
Reviewed-by: default avatarSimon Horman <simon.horman@netronome.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a319fb52
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -793,8 +793,7 @@ static int vxlan_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff)
	return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
}

static struct vxlan_fdb *vxlan_fdb_alloc(struct vxlan_dev *vxlan,
					 const u8 *mac, __u16 state,
static struct vxlan_fdb *vxlan_fdb_alloc(const u8 *mac, __u16 state,
					 __be32 src_vni, __u16 ndm_flags)
{
	struct vxlan_fdb *f;
@@ -835,7 +834,7 @@ static int vxlan_fdb_create(struct vxlan_dev *vxlan,
		return -ENOSPC;

	netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
	f = vxlan_fdb_alloc(vxlan, mac, state, src_vni, ndm_flags);
	f = vxlan_fdb_alloc(mac, state, src_vni, ndm_flags);
	if (!f)
		return -ENOMEM;