Commit d762acdb authored by David S. Miller's avatar David S. Miller

[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: default avatarDavid S. Miller <davem@davemloft.net>
parent a4cd1845
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment