Message ID | 20201206052127.21450-4-ljp@linux.ibm.com (mailing list archive) |
---|---|
State | RFC |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | lockless version of | expand |
Context | Check | Description |
---|---|---|
netdev/apply | fail | Patch does not apply to net-next |
netdev/tree_selection | success | Clearly marked for net-next |
diff --git a/drivers/net/hyperv/netvsc_drv.c b/drivers/net/hyperv/netvsc_drv.c index 261e6e55a907..5483ad697d19 100644 --- a/drivers/net/hyperv/netvsc_drv.c +++ b/drivers/net/hyperv/netvsc_drv.c @@ -2129,10 +2129,10 @@ static void netvsc_link_change(struct work_struct *w) break; } - rtnl_unlock(); - if (notify) - netdev_notify_peers(net); + netdev_notify_peers_locked(net); + + rtnl_unlock(); /* link_watch only sends one notification with current state per * second, handle next reconfig event in 2 seconds.
Start to use the lockless version of netdev_notify_peers. Cc: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Lijun Pan <ljp@linux.ibm.com> --- drivers/net/hyperv/netvsc_drv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)