From: Eduardo Otubo Date: Fri, 5 Jan 2018 08:42:16 +0000 (+0100) Subject: xen-netfront: enable device after manual module load X-Git-Tag: v4.1.51~78 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=71af42a5681b918e67bcf52bae1db20b1304985f;p=platform%2Fkernel%2Flinux-exynos.git xen-netfront: enable device after manual module load [ Upstream commit b707fda2df4070785d0fa8a278aa13944c5f51f8 ] When loading the module after unloading it, the network interface would not be enabled and thus wouldn't have a backend counterpart and unable to be used by the guest. The guest would face errors like: [root@guest ~]# ethtool -i eth0 Cannot get driver information: No such device [root@guest ~]# ifconfig eth0 eth0: error fetching interface information: Device not found This patch initializes the state of the netfront device whenever it is loaded manually, this state would communicate the netback to create its device and establish the connection between them. Signed-off-by: Eduardo Otubo Reviewed-by: Boris Ostrovsky Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c index 9e8461466534..fd9f6ce14e8e 100644 --- a/drivers/net/xen-netfront.c +++ b/drivers/net/xen-netfront.c @@ -1284,6 +1284,7 @@ static struct net_device *xennet_create_dev(struct xenbus_device *dev) netif_carrier_off(netdev); + xenbus_switch_state(dev, XenbusStateInitialising); return netdev; exit: