mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 20:33:49 -04:00
Staging: hv: netvsc: Cleanup alloc_net_device()
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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
356c465719
commit
509ee3878b
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user