Skip to content

Commit

Permalink
Staging: hv: netvsc: Prevent outgoing traffic when netvsc dev is dest…
Browse files Browse the repository at this point in the history
…royed

Prevent outgoing traffic when netvsc dev is destroyed.

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>
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Aug 29, 2011
1 parent c38b9c7 commit 2ef7714
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/staging/hv/netvsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ static struct netvsc_device *get_outbound_net_device(struct hv_device *device)
struct netvsc_device *net_device;

net_device = device->ext;
if (net_device && atomic_read(&net_device->refcnt) > 1)
if (net_device && (atomic_read(&net_device->refcnt) > 1) &&
!net_device->destroy)
atomic_inc(&net_device->refcnt);
else
net_device = NULL;
Expand Down

0 comments on commit 2ef7714

Please sign in to comment.