diff options
author | KY Srinivasan <kys@microsoft.com> | 2015-12-02 01:43:09 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-12-03 05:43:24 +0100 |
commit | 074c2fe5ef3d09e9a1008d307a22ab5086e22728 (patch) | |
tree | 66a3446ccf144404a8239822791dc3c341444d2a /drivers/net/hyperv/netvsc.c | |
parent | hv_netvsc: Eliminate send_completion from struct hv_netvsc_packet (diff) | |
download | linux-074c2fe5ef3d09e9a1008d307a22ab5086e22728.tar.xz linux-074c2fe5ef3d09e9a1008d307a22ab5086e22728.zip |
hv_netvsc: Eliminate send_completion_ctx from struct hv_netvsc_packet
Eliminate send_completion_ctx from struct hv_netvsc_packet.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Reviewed-by: Haiyang Zhang <haiyangz@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.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/hyperv/netvsc.c b/drivers/net/hyperv/netvsc.c index 34c16d19f05d..0e0b723df1ac 100644 --- a/drivers/net/hyperv/netvsc.c +++ b/drivers/net/hyperv/netvsc.c @@ -653,8 +653,7 @@ static void netvsc_send_completion(struct netvsc_device *net_device, netvsc_free_send_slot(net_device, send_index); q_idx = nvsc_packet->q_idx; channel = incoming_channel; - netvsc_xmit_completion(nvsc_packet-> - send_completion_ctx); + netvsc_xmit_completion(nvsc_packet); } num_outstanding_sends = |