aboutsummaryrefslogtreecommitdiff
path: root/drivers/net/hyperv/netvsc.c
diff options
context:
space:
mode:
authorGravatar stephen hemminger <stephen@networkplumber.org> 2017-03-16 16:12:37 -0700
committerGravatar David S. Miller <davem@davemloft.net> 2017-03-16 21:39:50 -0700
commit6de38af611ca81a970965c06231cd2d5f30b2566 (patch)
treeae4d4f7d6917a8dc79e039ce6d5747f8da5890a2 /drivers/net/hyperv/netvsc.c
parentMerge branch 'bpf-inline-lookups' (diff)
downloadlinux-6de38af611ca81a970965c06231cd2d5f30b2566.tar.gz
linux-6de38af611ca81a970965c06231cd2d5f30b2566.tar.bz2
linux-6de38af611ca81a970965c06231cd2d5f30b2566.zip
netvsc: avoid race with callback
Change the argument to channel callback from the channel pointer to the internal data structure containing per-channel info. This avoids any possible races when callback happens during initialization and makes IRQ code simpler. Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/hyperv/netvsc.c')
-rw-r--r--drivers/net/hyperv/netvsc.c18
1 files changed, 5 insertions, 13 deletions
diff --git a/drivers/net/hyperv/netvsc.c b/drivers/net/hyperv/netvsc.c
index 0e71164849dd..0a2e9bd98d2c 100644
--- a/drivers/net/hyperv/netvsc.c
+++ b/drivers/net/hyperv/netvsc.c
@@ -1250,21 +1250,12 @@ int netvsc_poll(struct napi_struct *napi, int budget)
void netvsc_channel_cb(void *context)
{
- struct vmbus_channel *channel = context;
- struct hv_device *device = netvsc_channel_to_device(channel);
- u16 q_idx = channel->offermsg.offer.sub_channel_index;
- struct netvsc_device *net_device;
- struct net_device *ndev;
-
- ndev = hv_get_drvdata(device);
- if (unlikely(!ndev))
- return;
+ struct netvsc_channel *nvchan = context;
/* disable interupts from host */
- hv_begin_read(&channel->inbound);
+ hv_begin_read(&nvchan->channel->inbound);
- net_device = net_device_to_netvsc_device(ndev);
- napi_schedule(&net_device->chan_table[q_idx].napi);
+ napi_schedule(&nvchan->napi);
}
/*
@@ -1294,7 +1285,8 @@ int netvsc_device_add(struct hv_device *device,
/* Open the channel */
ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
ring_size * PAGE_SIZE, NULL, 0,
- netvsc_channel_cb, device->channel);
+ netvsc_channel_cb,
+ net_device->chan_table);
if (ret != 0) {
netdev_err(ndev, "unable to open channel: %d\n", ret);