netvsc: fix hang on netvsc module removal
authorstephen hemminger <stephen@networkplumber.org>
Thu, 9 Mar 2017 23:04:15 +0000 (15:04 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 13 Mar 2017 06:15:43 +0000 (23:15 -0700)
The code in netvsc_device_remove was incorrectly calling napi_disable
repeatedly on the same element. This would cause attempts
to remove netvsc module to hang.

Fixes: 2506b1dc4bbe ("netvsc: implement NAPI")
Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/hyperv/netvsc.c

index 0e0c757..8f9aeec 100644 (file)
@@ -562,8 +562,8 @@ void netvsc_device_remove(struct hv_device *device)
        /* Now, we can close the channel safely */
        vmbus_close(device->channel);
 
-       for (i = 0; i < VRSS_CHANNEL_MAX; i++)
-               napi_disable(&net_device->chan_table[0].napi);
+       for (i = 0; i < net_device->num_chn; i++)
+               napi_disable(&net_device->chan_table[i].napi);
 
        /* Release all resources */
        free_netvsc_device(net_device);