Staging: hv: netvsc: Cleanup alloc_net_device()
authorK. Y. Srinivasan <kys@microsoft.com>
Sat, 27 Aug 2011 18:31:11 +0000 (11:31 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 29 Aug 2011 18:01:04 +0000 (11:01 -0700)
Cleanup alloc_net_device(); we can directly set the refcnt.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/hv/netvsc.c

index 75c6ed7..7722102 100644 (file)
@@ -41,7 +41,7 @@ static struct netvsc_device *alloc_net_device(struct hv_device *device)
                return NULL;
 
        /* Set to 2 to allow both inbound and outbound traffic */
-       atomic_cmpxchg(&net_device->refcnt, 0, 2);
+       atomic_set(&net_device->refcnt, 2);
 
        net_device->dev = device;
        device->ext = net_device;