From: Stephen Hemminger <stephen@networkplumber.org>
To: David Miller <davem@davemloft.net>
Cc: vkuznets@redhat.com, sthemmin@microsoft.com,
eric.dumazet@gmail.com, netdev@vger.kernel.org,
haiyangz@microsoft.com, linux-kernel@vger.kernel.org,
devel@linuxdriverproject.org
Subject: [RFC] hv_netvsc: safer orderly shutdown
Date: Fri, 10 Nov 2017 12:53:42 +0900 [thread overview]
Message-ID: <20171110125342.7aa7943c@shemminger-XPS-13-9360> (raw)
In-Reply-To: <20171108.103105.142249724388345463.davem@davemloft.net>
Several types of control operations require that the underlying RNDIS
infrastructure be restarted. This patch changes the ordering of the
shutdown to avoid race conditions.
Stop all transmits before doing RNDIS halt. This involves stopping the
network device transmit queues, then waiting for all outstanding
sends before informing host to halt.
Also, check for successful restart of the device when after the
change is done.
For review, not tested on Hyper-V yet.
Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
---
drivers/net/hyperv/netvsc_drv.c | 40 ++++++++++++++++++++++++++++++---------
drivers/net/hyperv/rndis_filter.c | 23 +++++++++++-----------
2 files changed, 42 insertions(+), 21 deletions(-)
diff --git a/drivers/net/hyperv/netvsc_drv.c b/drivers/net/hyperv/netvsc_drv.c
index da216ca4f2b2..3afa082e093d 100644
--- a/drivers/net/hyperv/netvsc_drv.c
+++ b/drivers/net/hyperv/netvsc_drv.c
@@ -855,8 +855,10 @@ static int netvsc_set_channels(struct net_device *net,
orig = nvdev->num_chn;
was_opened = rndis_filter_opened(nvdev);
- if (was_opened)
+ if (was_opened) {
+ netif_tx_disable(net);
rndis_filter_close(nvdev);
+ }
memset(&device_info, 0, sizeof(device_info));
device_info.num_chn = count;
@@ -881,8 +883,13 @@ static int netvsc_set_channels(struct net_device *net,
}
}
- if (was_opened)
- rndis_filter_open(nvdev);
+ if (was_opened) {
+ ret = rndis_filter_open(nvdev);
+ if (ret)
+ netdev_err(net, "reopening device failed: %d\n", ret);
+ else
+ netif_tx_start_all_queues(net);
+ }
/* We may have missed link change notifications */
net_device_ctx->last_reconfig = 0;
@@ -971,8 +978,10 @@ static int netvsc_change_mtu(struct net_device *ndev, int mtu)
netif_device_detach(ndev);
was_opened = rndis_filter_opened(nvdev);
- if (was_opened)
+ if (was_opened) {
+ netif_tx_disable(net);
rndis_filter_close(nvdev);
+ }
memset(&device_info, 0, sizeof(device_info));
device_info.ring_size = ring_size;
@@ -1004,8 +1013,13 @@ static int netvsc_change_mtu(struct net_device *ndev, int mtu)
}
}
- if (was_opened)
- rndis_filter_open(nvdev);
+ if (was_opened) {
+ ret = rndis_filter_open(nvdev);
+ if (ret)
+ netdev_err(net, "reopening device failed: %d\n", ret);
+ else
+ netif_tx_start_all_queues(net);
+ }
netif_device_attach(ndev);
@@ -1547,8 +1561,10 @@ static int netvsc_set_ringparam(struct net_device *ndev,
netif_device_detach(ndev);
was_opened = rndis_filter_opened(nvdev);
- if (was_opened)
+ if (was_opened) {
+ netif_tx_disable(net);
rndis_filter_close(nvdev);
+ }
rndis_filter_device_remove(hdev, nvdev);
@@ -1566,8 +1582,14 @@ static int netvsc_set_ringparam(struct net_device *ndev,
}
}
- if (was_opened)
- rndis_filter_open(nvdev);
+ if (was_opened) {
+ ret = rndis_filter_open(nvdev);
+ if (ret)
+ netdev_err(net, "reopening device failed: %d\n", ret);
+ else
+ netif_tx_start_all_queues(net);
+ }
+
netif_device_attach(ndev);
/* We may have missed link change notifications */
diff --git a/drivers/net/hyperv/rndis_filter.c b/drivers/net/hyperv/rndis_filter.c
index 0648eebda829..164f5ffe9c50 100644
--- a/drivers/net/hyperv/rndis_filter.c
+++ b/drivers/net/hyperv/rndis_filter.c
@@ -948,11 +948,20 @@ static void rndis_filter_halt_device(struct rndis_device *dev)
struct net_device_context *net_device_ctx = netdev_priv(dev->ndev);
struct netvsc_device *nvdev = rtnl_dereference(net_device_ctx->nvdev);
+ /* tell bottom half that deice is being closed */
+ nvdev->destroy = true;
+
+ /* Force flag to be ordered before waiting */
+ wmb();
+
+ /* Wait for all send completions */
+ wait_event(nvdev->wait_drain, netvsc_device_idle(nvdev));
+
/* Attempt to do a rndis device halt */
request = get_rndis_request(dev, RNDIS_MSG_HALT,
RNDIS_MESSAGE_SIZE(struct rndis_halt_request));
if (!request)
- goto cleanup;
+ return;
/* Setup the rndis set */
halt = &request->request_msg.msg.halt_req;
@@ -963,17 +972,7 @@ static void rndis_filter_halt_device(struct rndis_device *dev)
dev->state = RNDIS_DEV_UNINITIALIZED;
-cleanup:
- nvdev->destroy = true;
-
- /* Force flag to be ordered before waiting */
- wmb();
-
- /* Wait for all send completions */
- wait_event(nvdev->wait_drain, netvsc_device_idle(nvdev));
-
- if (request)
- put_rndis_request(dev, request);
+ put_rndis_request(dev, request);
}
static int rndis_filter_open_device(struct rndis_device *dev)
--
2.11.0
next prev parent reply other threads:[~2017-11-10 3:53 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-02 10:35 [PATCH net-next v2 0/2] hv_netvsc: fix a hang on channel/mtu changes Vitaly Kuznetsov
2017-11-02 10:35 ` [PATCH net-next v2 1/2] hv_netvsc: netvsc_teardown_gpadl() split Vitaly Kuznetsov
2017-11-02 10:35 ` [PATCH net-next v2 2/2] hv_netvsc: hide warnings about uninitialized/missing rndis device Vitaly Kuznetsov
[not found] ` <CAOaVG14eqAq8irLbgR9b-JA--aiTov=VWZpTi2maKQ=nbo_ByQ@mail.gmail.com>
[not found] ` <CAOaVG16ekV3rP4dA3GgnAcodPuALXd4W5eTtjNr_Pwtn3JVkxQ@mail.gmail.com>
[not found] ` <CAOaVG17ctoE53UkBG4O1=962K4qOzAjteEeG6uiNDgCUGq4jYQ@mail.gmail.com>
2017-11-08 9:36 ` Vitaly Kuznetsov
2017-11-08 1:31 ` [PATCH net-next v2 0/2] hv_netvsc: fix a hang on channel/mtu changes David Miller
2017-11-10 3:53 ` Stephen Hemminger [this message]
2017-11-10 10:42 ` [RFC] hv_netvsc: safer orderly shutdown Vitaly Kuznetsov
[not found] ` <CAOaVG15dBsPcpi1buaKyW5oRGmGUczgaO54De6eYXUqp-1z+gw@mail.gmail.com>
2017-11-13 10:57 ` Vitaly Kuznetsov
2017-11-13 17:22 ` Stephen Hemminger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171110125342.7aa7943c@shemminger-XPS-13-9360 \
--to=stephen@networkplumber.org \
--cc=davem@davemloft.net \
--cc=devel@linuxdriverproject.org \
--cc=eric.dumazet@gmail.com \
--cc=haiyangz@microsoft.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=sthemmin@microsoft.com \
--cc=vkuznets@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox