From: David S. Miller Date: Wed, 18 Jul 2007 07:07:39 +0000 (-0700) Subject: [SPARC64]: Fix reset handling in VNET driver. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d762acdbd3b2bd9a714ace47d7b0c76133d7b295;p=linux-beck.git [SPARC64]: Fix reset handling in VNET driver. In vnet_event(), if the channel was reset, try to get the link going again by invoking vio_port_up() after dropping the lock. Signed-off-by: David S. Miller --- diff --git a/drivers/net/sunvnet.c b/drivers/net/sunvnet.c index b69f55226bd6..b801e3b3a11a 100644 --- a/drivers/net/sunvnet.c +++ b/drivers/net/sunvnet.c @@ -498,6 +498,8 @@ static void vnet_event(void *arg, int event) vio_link_state_change(vio, event); spin_unlock_irqrestore(&vio->lock, flags); + if (event == LDC_EVENT_RESET) + vio_port_up(vio); return; }