[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1386234096-18441-1-git-send-email-gaofeng@cn.fujitsu.com>
Date: Thu, 5 Dec 2013 17:01:35 +0800
From: Gao feng <gaofeng@...fujitsu.com>
To: stephen@...workplumber.org
Cc: netdev@...r.kernel.org, Gao feng <gaofeng@...fujitsu.com>
Subject: [PATCH 1/2] vxlan: remove vxlan_group_used in vxlan_open
In vxlan_open, vxlan_group_used always returns true,
because the state of the vxlan deivces which we want
to open has alreay been running. and it has already
in vxlan_list.
Since ip_mc_join_group takes care of the reference
problem. we can remove vxlan_group_used here, let
ip_mc_join_group resolve the reference problem.
Signed-off-by: Gao feng <gaofeng@...fujitsu.com>
---
drivers/net/vxlan.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
index 0358c07..8c40254 100644
--- a/drivers/net/vxlan.c
+++ b/drivers/net/vxlan.c
@@ -1943,8 +1943,7 @@ static int vxlan_open(struct net_device *dev)
if (!vs)
return -ENOTCONN;
- if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
- vxlan_group_used(vn, &vxlan->default_dst.remote_ip)) {
+ if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
vxlan_sock_hold(vs);
dev_hold(dev);
queue_work(vxlan_wq, &vxlan->igmp_join);
--
1.8.3.1
--
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