* [PATCH net] openvswitch: fix hangup on vxlan/gre/geneve device deletion
@ 2015-12-01 17:33 Paolo Abeni
2015-12-02 15:58 ` Flavio Leitner
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Paolo Abeni @ 2015-12-01 17:33 UTC (permalink / raw)
To: netdev; +Cc: Pravin B Shelar, Thomas Graf, dev, fbl
Each openvswitch tunnel vport (vxlan,gre,geneve) holds a reference
to the underlying tunnel device, but never released it when such
device is deleted.
Deleting the underlying device via the ip tool cause the kernel to
hangup in the netdev_wait_allrefs() loop.
This commit ensure that on device unregistration dp_detach_port_notify()
is called for all vports that hold the device reference, properly
releasing it.
Fixes: 614732eaa12d ("openvswitch: Use regular VXLAN net_device device")
Fixes: b2acd1dc3949 ("openvswitch: Use regular GRE net_device instead of vport")
Fixes: 6b001e682e90 ("openvswitch: Use Geneve device.")
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
---
net/openvswitch/dp_notify.c | 2 +-
net/openvswitch/vport-netdev.c | 8 ++++++--
2 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/net/openvswitch/dp_notify.c b/net/openvswitch/dp_notify.c
index a7a80a6..653d073 100644
--- a/net/openvswitch/dp_notify.c
+++ b/net/openvswitch/dp_notify.c
@@ -58,7 +58,7 @@ void ovs_dp_notify_wq(struct work_struct *work)
struct hlist_node *n;
hlist_for_each_entry_safe(vport, n, &dp->ports[i], dp_hash_node) {
- if (vport->ops->type != OVS_VPORT_TYPE_NETDEV)
+ if (vport->ops->type == OVS_VPORT_TYPE_INTERNAL)
continue;
if (!(vport->dev->priv_flags & IFF_OVS_DATAPATH))
diff --git a/net/openvswitch/vport-netdev.c b/net/openvswitch/vport-netdev.c
index b327368..6b0190b 100644
--- a/net/openvswitch/vport-netdev.c
+++ b/net/openvswitch/vport-netdev.c
@@ -180,9 +180,13 @@ void ovs_netdev_tunnel_destroy(struct vport *vport)
if (vport->dev->priv_flags & IFF_OVS_DATAPATH)
ovs_netdev_detach_dev(vport);
- /* Early release so we can unregister the device */
+ /* We can be invoked by both explicit vport deletion and
+ * underlying netdev deregistration; delete the link only
+ * if it's not already shutting down.
+ */
+ if (vport->dev->reg_state == NETREG_REGISTERED)
+ rtnl_delete_link(vport->dev);
dev_put(vport->dev);
- rtnl_delete_link(vport->dev);
vport->dev = NULL;
rtnl_unlock();
--
1.8.3.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net] openvswitch: fix hangup on vxlan/gre/geneve device deletion
2015-12-01 17:33 [PATCH net] openvswitch: fix hangup on vxlan/gre/geneve device deletion Paolo Abeni
@ 2015-12-02 15:58 ` Flavio Leitner
[not found] ` <d3c53f79dfaacd71bebf97427388d60dc5652eae.1448989843.git.pabeni-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-12-03 19:30 ` David Miller
2 siblings, 0 replies; 4+ messages in thread
From: Flavio Leitner @ 2015-12-02 15:58 UTC (permalink / raw)
To: Paolo Abeni; +Cc: netdev, Pravin B Shelar, Thomas Graf, dev
On Tue, Dec 01, 2015 at 06:33:36PM +0100, Paolo Abeni wrote:
> Each openvswitch tunnel vport (vxlan,gre,geneve) holds a reference
> to the underlying tunnel device, but never released it when such
> device is deleted.
> Deleting the underlying device via the ip tool cause the kernel to
> hangup in the netdev_wait_allrefs() loop.
> This commit ensure that on device unregistration dp_detach_port_notify()
> is called for all vports that hold the device reference, properly
> releasing it.
>
> Fixes: 614732eaa12d ("openvswitch: Use regular VXLAN net_device device")
> Fixes: b2acd1dc3949 ("openvswitch: Use regular GRE net_device instead of vport")
> Fixes: 6b001e682e90 ("openvswitch: Use Geneve device.")
> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
> ---
LGTM and fixes the issue in my env.
Acked-by: Flavio Leitner <fbl@sysclose.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] openvswitch: fix hangup on vxlan/gre/geneve device deletion
[not found] ` <d3c53f79dfaacd71bebf97427388d60dc5652eae.1448989843.git.pabeni-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2015-12-02 23:00 ` Pravin Shelar
0 siblings, 0 replies; 4+ messages in thread
From: Pravin Shelar @ 2015-12-02 23:00 UTC (permalink / raw)
To: Paolo Abeni
Cc: netdev, dev-yBygre7rU0TnMu66kgdUjQ@public.gmane.org,
Flavio Leitner
On Tue, Dec 1, 2015 at 9:33 AM, Paolo Abeni <pabeni@redhat.com> wrote:
> Each openvswitch tunnel vport (vxlan,gre,geneve) holds a reference
> to the underlying tunnel device, but never released it when such
> device is deleted.
> Deleting the underlying device via the ip tool cause the kernel to
> hangup in the netdev_wait_allrefs() loop.
> This commit ensure that on device unregistration dp_detach_port_notify()
> is called for all vports that hold the device reference, properly
> releasing it.
>
> Fixes: 614732eaa12d ("openvswitch: Use regular VXLAN net_device device")
> Fixes: b2acd1dc3949 ("openvswitch: Use regular GRE net_device instead of vport")
> Fixes: 6b001e682e90 ("openvswitch: Use Geneve device.")
> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Thanks for the fix.
Acked-by: Pravin B Shelar <pshelar@nicira.com>
_______________________________________________
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] openvswitch: fix hangup on vxlan/gre/geneve device deletion
2015-12-01 17:33 [PATCH net] openvswitch: fix hangup on vxlan/gre/geneve device deletion Paolo Abeni
2015-12-02 15:58 ` Flavio Leitner
[not found] ` <d3c53f79dfaacd71bebf97427388d60dc5652eae.1448989843.git.pabeni-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2015-12-03 19:30 ` David Miller
2 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2015-12-03 19:30 UTC (permalink / raw)
To: pabeni; +Cc: netdev, pshelar, tgraf, dev, fbl
From: Paolo Abeni <pabeni@redhat.com>
Date: Tue, 1 Dec 2015 18:33:36 +0100
> Each openvswitch tunnel vport (vxlan,gre,geneve) holds a reference
> to the underlying tunnel device, but never released it when such
> device is deleted.
> Deleting the underlying device via the ip tool cause the kernel to
> hangup in the netdev_wait_allrefs() loop.
> This commit ensure that on device unregistration dp_detach_port_notify()
> is called for all vports that hold the device reference, properly
> releasing it.
>
> Fixes: 614732eaa12d ("openvswitch: Use regular VXLAN net_device device")
> Fixes: b2acd1dc3949 ("openvswitch: Use regular GRE net_device instead of vport")
> Fixes: 6b001e682e90 ("openvswitch: Use Geneve device.")
> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Applied and queued up for -stable, thank you.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-12-03 19:30 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-01 17:33 [PATCH net] openvswitch: fix hangup on vxlan/gre/geneve device deletion Paolo Abeni
2015-12-02 15:58 ` Flavio Leitner
[not found] ` <d3c53f79dfaacd71bebf97427388d60dc5652eae.1448989843.git.pabeni-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-12-02 23:00 ` Pravin Shelar
2015-12-03 19:30 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).