atomic_dec(&net_device->refcnt);
 }
 
-static struct netvsc_device *release_inbound_net_device(
-               struct hv_device *device)
-{
-       struct netvsc_device *net_device;
-
-       net_device = device->ext;
-       if (net_device == NULL)
-               return NULL;
-
-       /* Busy wait until the ref drop to 1, then set it to 0 */
-       while (atomic_cmpxchg(&net_device->refcnt, 1, 0) != 1)
-               udelay(100);
-
-       device->ext = NULL;
-       return net_device;
-}
-
 static int netvsc_destroy_recv_buf(struct netvsc_device *net_device)
 {
        struct nvsp_message *revoke_packet;
 
        netvsc_disconnect_vsp(net_device);
 
-       /* Stop inbound traffic ie receives and sends completions */
-       net_device = release_inbound_net_device(device);
-
+       atomic_dec(&net_device->refcnt);
+       device->ext = NULL;
        /*
         * Wait until the ref cnt falls to 0.
         * We have already stopped any new references
                        kfree(packet);
                }
 
-               release_inbound_net_device(device);
-
                kfree(net_device);
        }