All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xen-netfront: wait xenbus state change when load module manually
@ 2018-07-27  9:56 Xiao Liang
  2018-07-27 18:40 ` Boris Ostrovsky
                   ` (5 more replies)
  0 siblings, 6 replies; 21+ messages in thread
From: Xiao Liang @ 2018-07-27  9:56 UTC (permalink / raw)
  To: netdev, xen-devel, davem, jgross, boris.ostrovsky
  Cc: linux-kernel, Xiao Liang

When loading module manually, after call xenbus_switch_state to initializes
the state of the netfront device, the driver state did not change so fast
that may lead no dev created in latest kernel. This patch adds wait to make
sure xenbus knows the driver is not in closed/unknown state.

Current state:
[vm]# ethtool eth0
Settings for eth0:
	Link detected: yes
[vm]# modprobe -r xen_netfront
[vm]# modprobe  xen_netfront
[vm]# ethtool eth0
Settings for eth0:
Cannot get device settings: No such device
Cannot get wake-on-lan settings: No such device
Cannot get message level: No such device
Cannot get link status: No such device
No data available

With the patch installed.
[vm]# ethtool eth0
Settings for eth0:
	Link detected: yes
[vm]# modprobe -r xen_netfront
[vm]# modprobe xen_netfront
[vm]# ethtool eth0
Settings for eth0:
	Link detected: yes

Signed-off-by: Xiao Liang <xiliang@redhat.com>
---
 drivers/net/xen-netfront.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c
index a57daecf1d57..2d8812dd1534 100644
--- a/drivers/net/xen-netfront.c
+++ b/drivers/net/xen-netfront.c
@@ -87,6 +87,7 @@ struct netfront_cb {
 /* IRQ name is queue name with "-tx" or "-rx" appended */
 #define IRQ_NAME_SIZE (QUEUE_NAME_SIZE + 3)
 
+static DECLARE_WAIT_QUEUE_HEAD(module_load_q);
 static DECLARE_WAIT_QUEUE_HEAD(module_unload_q);
 
 struct netfront_stats {
@@ -1330,6 +1331,11 @@ static struct net_device *xennet_create_dev(struct xenbus_device *dev)
 	netif_carrier_off(netdev);
 
 	xenbus_switch_state(dev, XenbusStateInitialising);
+	wait_event(module_load_q,
+			   xenbus_read_driver_state(dev->otherend) !=
+			   XenbusStateClosed &&
+			   xenbus_read_driver_state(dev->otherend) !=
+			   XenbusStateUnknown);
 	return netdev;
 
  exit:
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2018-09-07 11:30 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-27  9:56 [PATCH] xen-netfront: wait xenbus state change when load module manually Xiao Liang
2018-07-27 18:40 ` Boris Ostrovsky
2018-07-30  7:43   ` Xiao Liang
2018-07-30  7:43   ` [Xen-devel] " Xiao Liang
2018-07-27 18:40 ` Boris Ostrovsky
2018-07-29 15:30 ` David Miller
2018-07-29 15:30 ` David Miller
2018-07-30  8:18   ` [Xen-devel] " Xiao Liang
2018-08-24 11:12     ` Jiri Slaby
2018-08-24 11:26       ` Juergen Gross
2018-08-24 14:26         ` Boris Ostrovsky
2018-08-24 14:26         ` [Xen-devel] " Boris Ostrovsky
2018-09-07 11:06           ` Jiri Slaby
2018-09-07 11:30             ` Juergen Gross
2018-09-07 11:30             ` Juergen Gross
2018-09-07 11:06           ` Jiri Slaby
2018-08-24 11:26       ` Juergen Gross
2018-08-24 11:12     ` Jiri Slaby
2018-07-30  8:18   ` Xiao Liang
2018-07-30 16:41 ` David Miller
2018-07-30 16:41 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.