projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
356c465
)
Staging: hv: netvsc: Cleanup alloc_net_device()
author
K. Y. Srinivasan
<kys@microsoft.com>
Sat, 27 Aug 2011 18:31:11 +0000
(11:31 -0700)
committer
Greg 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
patch
|
blob
|
history
diff --git
a/drivers/staging/hv/netvsc.c
b/drivers/staging/hv/netvsc.c
index 75c6ed7b790aee5a1424086612db5837406671ab..772210268787ce96e9dd1af01e7fb5511d32d6b7 100644
(file)
--- a/
drivers/staging/hv/netvsc.c
+++ b/
drivers/staging/hv/netvsc.c
@@
-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;