diff options
author | Nicolas Dichtel <nicolas.dichtel@6wind.com> | 2015-05-07 12:02:49 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-05-10 05:15:30 +0300 |
commit | 7a0877d4b438886b72be61632eaa774d13262f70 (patch) | |
tree | b8cb00423af5be00667a07302128f0fe7c4f66a0 /drivers/net/vxlan.c | |
parent | cab3c8ec8d57ef48ed754ee7acf2b9bdce80fa5f (diff) | |
download | linux-7a0877d4b438886b72be61632eaa774d13262f70.tar.xz |
netns: rename peernet2id() to peernet2id_alloc()
In a following commit, a new function will be introduced to only lookup for
a nsid (no allocation if the nsid doesn't exist). To avoid confusion, the
existing function is renamed.
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Acked-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/vxlan.c')
-rw-r--r-- | drivers/net/vxlan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c index 3517ab0aa803..48341ae49012 100644 --- a/drivers/net/vxlan.c +++ b/drivers/net/vxlan.c @@ -336,7 +336,7 @@ static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan, if (!net_eq(dev_net(vxlan->dev), vxlan->net) && nla_put_s32(skb, NDA_LINK_NETNSID, - peernet2id(dev_net(vxlan->dev), vxlan->net))) + peernet2id_alloc(dev_net(vxlan->dev), vxlan->net))) goto nla_put_failure; if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr)) |