[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <2276c137-d5c0-bdbe-f5c7-5985ffc497ce@huawei.com>
Date: Fri, 15 Mar 2019 18:06:45 +0800
From: Zhiqiang Liu <liuzhiqiang26@...wei.com>
To: <davem@...emloft.net>, <petrm@...lanox.com>, <idosch@...lanox.com>,
<sd@...asysnail.net>, <sbrivio@...hat.com>,
<mousuanming@...wei.com>
CC: <netdev@...r.kernel.org>, Mingfangsen <mingfangsen@...wei.com>,
"Zhoukang (A)" <zhoukang7@...wei.com>,
"wangxiaogang (F)" <wangxiaogang3@...wei.com>
Subject: [PATCH] vxlan: remove the redundant gro_cells_destroy() calling.
From: "Suanming.Mou" <mousuanming@...wei.com>
With ad6c9986bcb6, GRO cells will be destroyed in vxlan_uninit.
Fixes: ad6c9986bcb6 ("vxlan: Fix GRO cells race condition between receive and link delete")
Signed-off-by: Suanming.Mou <mousuanming@...wei.com>
---
drivers/net/vxlan.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
index 077f1b9f2761..d76dfed8d9bb 100644
--- a/drivers/net/vxlan.c
+++ b/drivers/net/vxlan.c
@@ -4335,10 +4335,8 @@ static void vxlan_destroy_tunnels(struct net *net, struct list_head *head)
/* If vxlan->dev is in the same netns, it has already been added
* to the list by the previous loop.
*/
- if (!net_eq(dev_net(vxlan->dev), net)) {
- gro_cells_destroy(&vxlan->gro_cells);
+ if (!net_eq(dev_net(vxlan->dev), net))
unregister_netdevice_queue(vxlan->dev, head);
- }
}
for (h = 0; h < PORT_HASH_SIZE; ++h)
--
1.7.12.4
Powered by blists - more mailing lists