]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/net/hyperv/netvsc.c
Merge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next
[mirror_ubuntu-artful-kernel.git] / drivers / net / hyperv / netvsc.c
CommitLineData
fceaf24a 1/*
fceaf24a
HJ
2 * Copyright (c) 2009, Microsoft Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
adf8d3ff 14 * this program; if not, see <http://www.gnu.org/licenses/>.
fceaf24a
HJ
15 *
16 * Authors:
d0e94d17 17 * Haiyang Zhang <haiyangz@microsoft.com>
fceaf24a 18 * Hank Janssen <hjanssen@microsoft.com>
fceaf24a 19 */
eb335bc4
HJ
20#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
5654e932 22#include <linux/kernel.h>
0c3b7b2f
S
23#include <linux/sched.h>
24#include <linux/wait.h>
0ffa63b0 25#include <linux/mm.h>
b4362c9c 26#include <linux/delay.h>
21a80820 27#include <linux/io.h>
5a0e3ad6 28#include <linux/slab.h>
d9871158 29#include <linux/netdevice.h>
f157e78d 30#include <linux/if_ether.h>
c25aaf81 31#include <asm/sync_bitops.h>
3f335ea2 32
5ca7252a 33#include "hyperv_net.h"
fceaf24a
HJ
34
35
5a71ae30 36static struct netvsc_device *alloc_net_device(struct hv_device *device)
fceaf24a 37{
85799a37 38 struct netvsc_device *net_device;
2ddd5e5f 39 struct net_device *ndev = hv_get_drvdata(device);
fceaf24a 40
85799a37
HZ
41 net_device = kzalloc(sizeof(struct netvsc_device), GFP_KERNEL);
42 if (!net_device)
fceaf24a
HJ
43 return NULL;
44
f90251c8
HZ
45 net_device->cb_buffer = kzalloc(NETVSC_PACKET_SIZE, GFP_KERNEL);
46 if (!net_device->cb_buffer) {
47 kfree(net_device);
48 return NULL;
49 }
50
dc5cd894 51 init_waitqueue_head(&net_device->wait_drain);
4d447c9a 52 net_device->start_remove = false;
c38b9c71 53 net_device->destroy = false;
53d21fdb 54 net_device->dev = device;
2ddd5e5f 55 net_device->ndev = ndev;
fceaf24a 56
2ddd5e5f 57 hv_set_drvdata(device, net_device);
85799a37 58 return net_device;
fceaf24a
HJ
59}
60
f90251c8
HZ
61static void free_netvsc_device(struct netvsc_device *nvdev)
62{
63 kfree(nvdev->cb_buffer);
64 kfree(nvdev);
65}
66
5a71ae30 67static struct netvsc_device *get_outbound_net_device(struct hv_device *device)
fceaf24a 68{
85799a37 69 struct netvsc_device *net_device;
fceaf24a 70
2ddd5e5f 71 net_device = hv_get_drvdata(device);
9d88f33a 72 if (net_device && net_device->destroy)
85799a37 73 net_device = NULL;
fceaf24a 74
85799a37 75 return net_device;
fceaf24a
HJ
76}
77
5a71ae30 78static struct netvsc_device *get_inbound_net_device(struct hv_device *device)
fceaf24a 79{
85799a37 80 struct netvsc_device *net_device;
fceaf24a 81
2ddd5e5f 82 net_device = hv_get_drvdata(device);
9d88f33a
S
83
84 if (!net_device)
85 goto get_in_err;
86
87 if (net_device->destroy &&
88 atomic_read(&net_device->num_outstanding_sends) == 0)
85799a37 89 net_device = NULL;
fceaf24a 90
9d88f33a 91get_in_err:
85799a37 92 return net_device;
fceaf24a
HJ
93}
94
fceaf24a 95
c25aaf81 96static int netvsc_destroy_buf(struct netvsc_device *net_device)
ec91cd09
HZ
97{
98 struct nvsp_message *revoke_packet;
99 int ret = 0;
2ddd5e5f 100 struct net_device *ndev = net_device->ndev;
ec91cd09
HZ
101
102 /*
103 * If we got a section count, it means we received a
104 * SendReceiveBufferComplete msg (ie sent
105 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
106 * to send a revoke msg here
107 */
108 if (net_device->recv_section_cnt) {
109 /* Send the revoke receive buffer */
110 revoke_packet = &net_device->revoke_packet;
111 memset(revoke_packet, 0, sizeof(struct nvsp_message));
112
113 revoke_packet->hdr.msg_type =
114 NVSP_MSG1_TYPE_REVOKE_RECV_BUF;
115 revoke_packet->msg.v1_msg.
116 revoke_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
117
118 ret = vmbus_sendpacket(net_device->dev->channel,
119 revoke_packet,
120 sizeof(struct nvsp_message),
121 (unsigned long)revoke_packet,
122 VM_PKT_DATA_INBAND, 0);
123 /*
124 * If we failed here, we might as well return and
125 * have a leak rather than continue and a bugchk
126 */
127 if (ret != 0) {
d9871158 128 netdev_err(ndev, "unable to send "
c909ebbd 129 "revoke receive buffer to netvsp\n");
a3e00530 130 return ret;
ec91cd09
HZ
131 }
132 }
133
134 /* Teardown the gpadl on the vsp end */
135 if (net_device->recv_buf_gpadl_handle) {
136 ret = vmbus_teardown_gpadl(net_device->dev->channel,
137 net_device->recv_buf_gpadl_handle);
138
139 /* If we failed here, we might as well return and have a leak
140 * rather than continue and a bugchk
141 */
142 if (ret != 0) {
d9871158 143 netdev_err(ndev,
c909ebbd 144 "unable to teardown receive buffer's gpadl\n");
7f9615e6 145 return ret;
ec91cd09
HZ
146 }
147 net_device->recv_buf_gpadl_handle = 0;
148 }
149
150 if (net_device->recv_buf) {
151 /* Free up the receive buffer */
b679ef73 152 vfree(net_device->recv_buf);
ec91cd09
HZ
153 net_device->recv_buf = NULL;
154 }
155
156 if (net_device->recv_section) {
157 net_device->recv_section_cnt = 0;
158 kfree(net_device->recv_section);
159 net_device->recv_section = NULL;
160 }
161
c25aaf81
KS
162 /* Deal with the send buffer we may have setup.
163 * If we got a send section size, it means we received a
c51ed182
HZ
164 * NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE msg (ie sent
165 * NVSP_MSG1_TYPE_SEND_SEND_BUF msg) therefore, we need
c25aaf81
KS
166 * to send a revoke msg here
167 */
168 if (net_device->send_section_size) {
169 /* Send the revoke receive buffer */
170 revoke_packet = &net_device->revoke_packet;
171 memset(revoke_packet, 0, sizeof(struct nvsp_message));
172
173 revoke_packet->hdr.msg_type =
174 NVSP_MSG1_TYPE_REVOKE_SEND_BUF;
c51ed182
HZ
175 revoke_packet->msg.v1_msg.revoke_send_buf.id =
176 NETVSC_SEND_BUFFER_ID;
c25aaf81
KS
177
178 ret = vmbus_sendpacket(net_device->dev->channel,
179 revoke_packet,
180 sizeof(struct nvsp_message),
181 (unsigned long)revoke_packet,
182 VM_PKT_DATA_INBAND, 0);
183 /* If we failed here, we might as well return and
184 * have a leak rather than continue and a bugchk
185 */
186 if (ret != 0) {
187 netdev_err(ndev, "unable to send "
188 "revoke send buffer to netvsp\n");
189 return ret;
190 }
191 }
192 /* Teardown the gpadl on the vsp end */
193 if (net_device->send_buf_gpadl_handle) {
194 ret = vmbus_teardown_gpadl(net_device->dev->channel,
195 net_device->send_buf_gpadl_handle);
196
197 /* If we failed here, we might as well return and have a leak
198 * rather than continue and a bugchk
199 */
200 if (ret != 0) {
201 netdev_err(ndev,
202 "unable to teardown send buffer's gpadl\n");
203 return ret;
204 }
2f18423d 205 net_device->send_buf_gpadl_handle = 0;
c25aaf81
KS
206 }
207 if (net_device->send_buf) {
c51ed182 208 /* Free up the send buffer */
06b47aac 209 vfree(net_device->send_buf);
c25aaf81
KS
210 net_device->send_buf = NULL;
211 }
212 kfree(net_device->send_section_map);
213
ec91cd09
HZ
214 return ret;
215}
216
c25aaf81 217static int netvsc_init_buf(struct hv_device *device)
fceaf24a 218{
21a80820 219 int ret = 0;
7390fe9c 220 unsigned long t;
85799a37
HZ
221 struct netvsc_device *net_device;
222 struct nvsp_message *init_packet;
2ddd5e5f 223 struct net_device *ndev;
fceaf24a 224
5a71ae30 225 net_device = get_outbound_net_device(device);
2ddd5e5f 226 if (!net_device)
927bc33c 227 return -ENODEV;
2ddd5e5f 228 ndev = net_device->ndev;
fceaf24a 229
b679ef73 230 net_device->recv_buf = vzalloc(net_device->recv_buf_size);
53d21fdb 231 if (!net_device->recv_buf) {
d9871158 232 netdev_err(ndev, "unable to allocate receive "
c909ebbd 233 "buffer of size %d\n", net_device->recv_buf_size);
927bc33c 234 ret = -ENOMEM;
0c3b7b2f 235 goto cleanup;
fceaf24a 236 }
fceaf24a 237
454f18a9
BP
238 /*
239 * Establish the gpadl handle for this buffer on this
240 * channel. Note: This call uses the vmbus connection rather
241 * than the channel to establish the gpadl handle.
242 */
53d21fdb
HZ
243 ret = vmbus_establish_gpadl(device->channel, net_device->recv_buf,
244 net_device->recv_buf_size,
245 &net_device->recv_buf_gpadl_handle);
21a80820 246 if (ret != 0) {
d9871158 247 netdev_err(ndev,
c909ebbd 248 "unable to establish receive buffer's gpadl\n");
0c3b7b2f 249 goto cleanup;
fceaf24a
HJ
250 }
251
fceaf24a 252
454f18a9 253 /* Notify the NetVsp of the gpadl handle */
53d21fdb 254 init_packet = &net_device->channel_init_pkt;
fceaf24a 255
85799a37 256 memset(init_packet, 0, sizeof(struct nvsp_message));
fceaf24a 257
53d21fdb
HZ
258 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF;
259 init_packet->msg.v1_msg.send_recv_buf.
260 gpadl_handle = net_device->recv_buf_gpadl_handle;
261 init_packet->msg.v1_msg.
262 send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
fceaf24a 263
454f18a9 264 /* Send the gpadl notification request */
85799a37 265 ret = vmbus_sendpacket(device->channel, init_packet,
5a4df290 266 sizeof(struct nvsp_message),
85799a37 267 (unsigned long)init_packet,
415f2287 268 VM_PKT_DATA_INBAND,
5a4df290 269 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
21a80820 270 if (ret != 0) {
d9871158 271 netdev_err(ndev,
c909ebbd 272 "unable to send receive buffer's gpadl to netvsp\n");
0c3b7b2f 273 goto cleanup;
fceaf24a
HJ
274 }
275
5c5781b3 276 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
35abb21a 277 BUG_ON(t == 0);
0c3b7b2f 278
fceaf24a 279
454f18a9 280 /* Check the response */
53d21fdb
HZ
281 if (init_packet->msg.v1_msg.
282 send_recv_buf_complete.status != NVSP_STAT_SUCCESS) {
d9871158 283 netdev_err(ndev, "Unable to complete receive buffer "
8bff33ab 284 "initialization with NetVsp - status %d\n",
53d21fdb
HZ
285 init_packet->msg.v1_msg.
286 send_recv_buf_complete.status);
927bc33c 287 ret = -EINVAL;
0c3b7b2f 288 goto cleanup;
fceaf24a
HJ
289 }
290
454f18a9 291 /* Parse the response */
fceaf24a 292
53d21fdb
HZ
293 net_device->recv_section_cnt = init_packet->msg.
294 v1_msg.send_recv_buf_complete.num_sections;
fceaf24a 295
c1813200
HZ
296 net_device->recv_section = kmemdup(
297 init_packet->msg.v1_msg.send_recv_buf_complete.sections,
298 net_device->recv_section_cnt *
299 sizeof(struct nvsp_1_receive_buffer_section),
300 GFP_KERNEL);
53d21fdb 301 if (net_device->recv_section == NULL) {
927bc33c 302 ret = -EINVAL;
0c3b7b2f 303 goto cleanup;
fceaf24a
HJ
304 }
305
21a80820
GKH
306 /*
307 * For 1st release, there should only be 1 section that represents the
308 * entire receive buffer
309 */
53d21fdb
HZ
310 if (net_device->recv_section_cnt != 1 ||
311 net_device->recv_section->offset != 0) {
927bc33c 312 ret = -EINVAL;
0c3b7b2f 313 goto cleanup;
fceaf24a
HJ
314 }
315
c25aaf81
KS
316 /* Now setup the send buffer.
317 */
06b47aac 318 net_device->send_buf = vzalloc(net_device->send_buf_size);
c25aaf81
KS
319 if (!net_device->send_buf) {
320 netdev_err(ndev, "unable to allocate send "
321 "buffer of size %d\n", net_device->send_buf_size);
322 ret = -ENOMEM;
323 goto cleanup;
324 }
325
326 /* Establish the gpadl handle for this buffer on this
327 * channel. Note: This call uses the vmbus connection rather
328 * than the channel to establish the gpadl handle.
329 */
330 ret = vmbus_establish_gpadl(device->channel, net_device->send_buf,
331 net_device->send_buf_size,
332 &net_device->send_buf_gpadl_handle);
333 if (ret != 0) {
334 netdev_err(ndev,
335 "unable to establish send buffer's gpadl\n");
336 goto cleanup;
337 }
338
339 /* Notify the NetVsp of the gpadl handle */
340 init_packet = &net_device->channel_init_pkt;
341 memset(init_packet, 0, sizeof(struct nvsp_message));
342 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_SEND_BUF;
c51ed182 343 init_packet->msg.v1_msg.send_send_buf.gpadl_handle =
c25aaf81 344 net_device->send_buf_gpadl_handle;
c51ed182 345 init_packet->msg.v1_msg.send_send_buf.id = NETVSC_SEND_BUFFER_ID;
c25aaf81
KS
346
347 /* Send the gpadl notification request */
348 ret = vmbus_sendpacket(device->channel, init_packet,
349 sizeof(struct nvsp_message),
350 (unsigned long)init_packet,
351 VM_PKT_DATA_INBAND,
352 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
353 if (ret != 0) {
354 netdev_err(ndev,
355 "unable to send send buffer's gpadl to netvsp\n");
356 goto cleanup;
357 }
358
359 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
360 BUG_ON(t == 0);
361
362 /* Check the response */
363 if (init_packet->msg.v1_msg.
364 send_send_buf_complete.status != NVSP_STAT_SUCCESS) {
365 netdev_err(ndev, "Unable to complete send buffer "
366 "initialization with NetVsp - status %d\n",
367 init_packet->msg.v1_msg.
c51ed182 368 send_send_buf_complete.status);
c25aaf81
KS
369 ret = -EINVAL;
370 goto cleanup;
371 }
372
373 /* Parse the response */
374 net_device->send_section_size = init_packet->msg.
375 v1_msg.send_send_buf_complete.section_size;
376
377 /* Section count is simply the size divided by the section size.
378 */
379 net_device->send_section_cnt =
380 net_device->send_buf_size/net_device->send_section_size;
381
382 dev_info(&device->device, "Send section size: %d, Section count:%d\n",
383 net_device->send_section_size, net_device->send_section_cnt);
384
385 /* Setup state for managing the send buffer. */
386 net_device->map_words = DIV_ROUND_UP(net_device->send_section_cnt,
387 BITS_PER_LONG);
388
389 net_device->send_section_map =
390 kzalloc(net_device->map_words * sizeof(ulong), GFP_KERNEL);
dd1d3f8f
WY
391 if (net_device->send_section_map == NULL) {
392 ret = -ENOMEM;
c25aaf81 393 goto cleanup;
dd1d3f8f 394 }
c25aaf81 395
0c3b7b2f 396 goto exit;
fceaf24a 397
0c3b7b2f 398cleanup:
c25aaf81 399 netvsc_destroy_buf(net_device);
fceaf24a 400
0c3b7b2f 401exit:
fceaf24a
HJ
402 return ret;
403}
404
fceaf24a 405
f157e78d
HZ
406/* Negotiate NVSP protocol version */
407static int negotiate_nvsp_ver(struct hv_device *device,
408 struct netvsc_device *net_device,
409 struct nvsp_message *init_packet,
410 u32 nvsp_ver)
fceaf24a 411{
7390fe9c
NMG
412 int ret;
413 unsigned long t;
fceaf24a 414
85799a37 415 memset(init_packet, 0, sizeof(struct nvsp_message));
53d21fdb 416 init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT;
f157e78d
HZ
417 init_packet->msg.init_msg.init.min_protocol_ver = nvsp_ver;
418 init_packet->msg.init_msg.init.max_protocol_ver = nvsp_ver;
fceaf24a 419
454f18a9 420 /* Send the init request */
85799a37 421 ret = vmbus_sendpacket(device->channel, init_packet,
5a4df290 422 sizeof(struct nvsp_message),
85799a37 423 (unsigned long)init_packet,
415f2287 424 VM_PKT_DATA_INBAND,
5a4df290 425 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
21a80820 426
b8a3d52b 427 if (ret != 0)
f157e78d 428 return ret;
fceaf24a 429
5c5781b3 430 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
35abb21a 431
f157e78d
HZ
432 if (t == 0)
433 return -ETIMEDOUT;
fceaf24a 434
53d21fdb 435 if (init_packet->msg.init_msg.init_complete.status !=
f157e78d
HZ
436 NVSP_STAT_SUCCESS)
437 return -EINVAL;
fceaf24a 438
a1eabb01 439 if (nvsp_ver == NVSP_PROTOCOL_VERSION_1)
f157e78d
HZ
440 return 0;
441
442 /* NVSPv2 only: Send NDIS config */
443 memset(init_packet, 0, sizeof(struct nvsp_message));
444 init_packet->hdr.msg_type = NVSP_MSG2_TYPE_SEND_NDIS_CONFIG;
4d3c9d37
HZ
445 init_packet->msg.v2_msg.send_ndis_config.mtu = net_device->ndev->mtu +
446 ETH_HLEN;
1f5f3a75 447 init_packet->msg.v2_msg.send_ndis_config.capability.ieee8021q = 1;
f157e78d
HZ
448
449 ret = vmbus_sendpacket(device->channel, init_packet,
450 sizeof(struct nvsp_message),
451 (unsigned long)init_packet,
452 VM_PKT_DATA_INBAND, 0);
453
454 return ret;
455}
456
457static int netvsc_connect_vsp(struct hv_device *device)
458{
459 int ret;
460 struct netvsc_device *net_device;
461 struct nvsp_message *init_packet;
462 int ndis_version;
463 struct net_device *ndev;
a1eabb01
HZ
464 u32 ver_list[] = { NVSP_PROTOCOL_VERSION_1, NVSP_PROTOCOL_VERSION_2,
465 NVSP_PROTOCOL_VERSION_4, NVSP_PROTOCOL_VERSION_5 };
466 int i, num_ver = 4; /* number of different NVSP versions */
f157e78d
HZ
467
468 net_device = get_outbound_net_device(device);
469 if (!net_device)
470 return -ENODEV;
471 ndev = net_device->ndev;
472
473 init_packet = &net_device->channel_init_pkt;
474
475 /* Negotiate the latest NVSP protocol supported */
a1eabb01
HZ
476 for (i = num_ver - 1; i >= 0; i--)
477 if (negotiate_nvsp_ver(device, net_device, init_packet,
478 ver_list[i]) == 0) {
479 net_device->nvsp_version = ver_list[i];
480 break;
481 }
482
483 if (i < 0) {
0f48c72c 484 ret = -EPROTO;
0c3b7b2f 485 goto cleanup;
fceaf24a 486 }
f157e78d
HZ
487
488 pr_debug("Negotiated NVSP version:%x\n", net_device->nvsp_version);
489
454f18a9 490 /* Send the ndis version */
85799a37 491 memset(init_packet, 0, sizeof(struct nvsp_message));
fceaf24a 492
a1eabb01 493 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_4)
1f73db49 494 ndis_version = 0x00060001;
a1eabb01
HZ
495 else
496 ndis_version = 0x0006001e;
fceaf24a 497
53d21fdb
HZ
498 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER;
499 init_packet->msg.v1_msg.
500 send_ndis_ver.ndis_major_ver =
85799a37 501 (ndis_version & 0xFFFF0000) >> 16;
53d21fdb
HZ
502 init_packet->msg.v1_msg.
503 send_ndis_ver.ndis_minor_ver =
85799a37 504 ndis_version & 0xFFFF;
fceaf24a 505
454f18a9 506 /* Send the init request */
85799a37 507 ret = vmbus_sendpacket(device->channel, init_packet,
0c3b7b2f
S
508 sizeof(struct nvsp_message),
509 (unsigned long)init_packet,
510 VM_PKT_DATA_INBAND, 0);
0f48c72c 511 if (ret != 0)
0c3b7b2f 512 goto cleanup;
454f18a9
BP
513
514 /* Post the big receive buffer to NetVSP */
99d3016d
HZ
515 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_2)
516 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE_LEGACY;
517 else
518 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
c25aaf81 519 net_device->send_buf_size = NETVSC_SEND_BUFFER_SIZE;
99d3016d 520
c25aaf81 521 ret = netvsc_init_buf(device);
fceaf24a 522
0c3b7b2f 523cleanup:
fceaf24a
HJ
524 return ret;
525}
526
648dc598 527static void netvsc_disconnect_vsp(struct netvsc_device *net_device)
fceaf24a 528{
c25aaf81 529 netvsc_destroy_buf(net_device);
fceaf24a
HJ
530}
531
3e189519 532/*
5a71ae30 533 * netvsc_device_remove - Callback when the root bus device is removed
21a80820 534 */
905620d1 535int netvsc_device_remove(struct hv_device *device)
fceaf24a 536{
85799a37 537 struct netvsc_device *net_device;
c38b9c71 538 unsigned long flags;
fceaf24a 539
2ddd5e5f 540 net_device = hv_get_drvdata(device);
fceaf24a 541
648dc598 542 netvsc_disconnect_vsp(net_device);
fceaf24a 543
3852409b 544 /*
9d88f33a
S
545 * Since we have already drained, we don't need to busy wait
546 * as was done in final_release_stor_device()
547 * Note that we cannot set the ext pointer to NULL until
548 * we have drained - to drain the outgoing packets, we need to
549 * allow incoming packets.
3852409b 550 */
9d88f33a
S
551
552 spin_lock_irqsave(&device->channel->inbound_lock, flags);
2ddd5e5f 553 hv_set_drvdata(device, NULL);
9d88f33a 554 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
3852409b 555
86c921af
S
556 /*
557 * At this point, no one should be accessing net_device
558 * except in here
559 */
c909ebbd 560 dev_notice(&device->device, "net device safe to remove\n");
fceaf24a 561
454f18a9 562 /* Now, we can close the channel safely */
85799a37 563 vmbus_close(device->channel);
fceaf24a 564
454f18a9 565 /* Release all resources */
aa99c479 566 vfree(net_device->sub_cb_buf);
f90251c8 567 free_netvsc_device(net_device);
21a80820 568 return 0;
fceaf24a
HJ
569}
570
33be96e4
HZ
571
572#define RING_AVAIL_PERCENT_HIWATER 20
573#define RING_AVAIL_PERCENT_LOWATER 10
574
575/*
576 * Get the percentage of available bytes to write in the ring.
577 * The return value is in range from 0 to 100.
578 */
579static inline u32 hv_ringbuf_avail_percent(
580 struct hv_ring_buffer_info *ring_info)
581{
582 u32 avail_read, avail_write;
583
584 hv_get_ringbuffer_availbytes(ring_info, &avail_read, &avail_write);
585
586 return avail_write * 100 / ring_info->ring_datasize;
587}
588
c25aaf81
KS
589static inline void netvsc_free_send_slot(struct netvsc_device *net_device,
590 u32 index)
591{
592 sync_change_bit(index, net_device->send_section_map);
593}
594
97c1723a
KS
595static void netvsc_send_completion(struct netvsc_device *net_device,
596 struct hv_device *device,
85799a37 597 struct vmpacket_descriptor *packet)
fceaf24a 598{
85799a37
HZ
599 struct nvsp_message *nvsp_packet;
600 struct hv_netvsc_packet *nvsc_packet;
2ddd5e5f 601 struct net_device *ndev;
c25aaf81 602 u32 send_index;
fceaf24a 603
2ddd5e5f 604 ndev = net_device->ndev;
fceaf24a 605
85799a37 606 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
415f2287 607 (packet->offset8 << 3));
fceaf24a 608
53d21fdb
HZ
609 if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) ||
610 (nvsp_packet->hdr.msg_type ==
611 NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) ||
612 (nvsp_packet->hdr.msg_type ==
5b54dac8
HZ
613 NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE) ||
614 (nvsp_packet->hdr.msg_type ==
615 NVSP_MSG5_TYPE_SUBCHANNEL)) {
454f18a9 616 /* Copy the response back */
53d21fdb 617 memcpy(&net_device->channel_init_pkt, nvsp_packet,
21a80820 618 sizeof(struct nvsp_message));
35abb21a 619 complete(&net_device->channel_init_wait);
53d21fdb
HZ
620 } else if (nvsp_packet->hdr.msg_type ==
621 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) {
33be96e4 622 int num_outstanding_sends;
5b54dac8
HZ
623 u16 q_idx = 0;
624 struct vmbus_channel *channel = device->channel;
625 int queue_sends;
33be96e4 626
454f18a9 627 /* Get the send context */
85799a37 628 nvsc_packet = (struct hv_netvsc_packet *)(unsigned long)
415f2287 629 packet->trans_id;
fceaf24a 630
454f18a9 631 /* Notify the layer above us */
5b54dac8 632 if (nvsc_packet) {
c25aaf81
KS
633 send_index = nvsc_packet->send_buf_index;
634 if (send_index != NETVSC_INVALID_INDEX)
635 netvsc_free_send_slot(net_device, send_index);
5b54dac8
HZ
636 q_idx = nvsc_packet->q_idx;
637 channel = nvsc_packet->channel;
893f6627
HZ
638 nvsc_packet->send_completion(nvsc_packet->
639 send_completion_ctx);
5b54dac8 640 }
fceaf24a 641
33be96e4
HZ
642 num_outstanding_sends =
643 atomic_dec_return(&net_device->num_outstanding_sends);
5b54dac8
HZ
644 queue_sends = atomic_dec_return(&net_device->
645 queue_sends[q_idx]);
1d06825b 646
dc5cd894
HZ
647 if (net_device->destroy && num_outstanding_sends == 0)
648 wake_up(&net_device->wait_drain);
649
5b54dac8
HZ
650 if (netif_tx_queue_stopped(netdev_get_tx_queue(ndev, q_idx)) &&
651 !net_device->start_remove &&
652 (hv_ringbuf_avail_percent(&channel->outbound) >
653 RING_AVAIL_PERCENT_HIWATER || queue_sends < 1))
654 netif_tx_wake_queue(netdev_get_tx_queue(
655 ndev, q_idx));
21a80820 656 } else {
d9871158 657 netdev_err(ndev, "Unknown send completion packet type- "
c909ebbd 658 "%d received!!\n", nvsp_packet->hdr.msg_type);
fceaf24a
HJ
659 }
660
fceaf24a
HJ
661}
662
c25aaf81
KS
663static u32 netvsc_get_next_send_section(struct netvsc_device *net_device)
664{
665 unsigned long index;
666 u32 max_words = net_device->map_words;
667 unsigned long *map_addr = (unsigned long *)net_device->send_section_map;
668 u32 section_cnt = net_device->send_section_cnt;
669 int ret_val = NETVSC_INVALID_INDEX;
670 int i;
671 int prev_val;
672
673 for (i = 0; i < max_words; i++) {
674 if (!~(map_addr[i]))
675 continue;
676 index = ffz(map_addr[i]);
677 prev_val = sync_test_and_set_bit(index, &map_addr[i]);
678 if (prev_val)
679 continue;
680 if ((index + (i * BITS_PER_LONG)) >= section_cnt)
681 break;
682 ret_val = (index + (i * BITS_PER_LONG));
683 break;
684 }
685 return ret_val;
686}
687
da19fcd0
LP
688static u32 netvsc_copy_to_send_buf(struct netvsc_device *net_device,
689 unsigned int section_index,
690 struct hv_netvsc_packet *packet)
c25aaf81
KS
691{
692 char *start = net_device->send_buf;
693 char *dest = (start + (section_index * net_device->send_section_size));
694 int i;
695 u32 msg_size = 0;
696
697 for (i = 0; i < packet->page_buf_cnt; i++) {
698 char *src = phys_to_virt(packet->page_buf[i].pfn << PAGE_SHIFT);
699 u32 offset = packet->page_buf[i].offset;
700 u32 len = packet->page_buf[i].len;
701
702 memcpy(dest, (src + offset), len);
703 msg_size += len;
704 dest += len;
705 }
706 return msg_size;
707}
708
f9819f05 709int netvsc_send(struct hv_device *device,
85799a37 710 struct hv_netvsc_packet *packet)
fceaf24a 711{
85799a37 712 struct netvsc_device *net_device;
21a80820 713 int ret = 0;
223c1aa6 714 struct nvsp_message sendMessage;
2ddd5e5f 715 struct net_device *ndev;
5b54dac8 716 struct vmbus_channel *out_channel = NULL;
f1ea3cd7 717 u64 req_id;
c25aaf81
KS
718 unsigned int section_index = NETVSC_INVALID_INDEX;
719 u32 msg_size = 0;
d953ca4d 720 struct sk_buff *skb = NULL;
3a67c9cc 721 u16 q_idx = packet->q_idx;
c25aaf81 722
fceaf24a 723
5a71ae30 724 net_device = get_outbound_net_device(device);
2ddd5e5f 725 if (!net_device)
ff2bd69a 726 return -ENODEV;
2ddd5e5f 727 ndev = net_device->ndev;
fceaf24a 728
53d21fdb 729 sendMessage.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT;
72a2f5bd 730 if (packet->is_data_pkt) {
21a80820 731 /* 0 is RMC_DATA; */
53d21fdb 732 sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 0;
21a80820
GKH
733 } else {
734 /* 1 is RMC_CONTROL; */
53d21fdb 735 sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 1;
21a80820 736 }
fceaf24a 737
c25aaf81
KS
738 /* Attempt to send via sendbuf */
739 if (packet->total_data_buflen < net_device->send_section_size) {
740 section_index = netvsc_get_next_send_section(net_device);
741 if (section_index != NETVSC_INVALID_INDEX) {
742 msg_size = netvsc_copy_to_send_buf(net_device,
743 section_index,
744 packet);
745 skb = (struct sk_buff *)
746 (unsigned long)packet->send_completion_tid;
c25aaf81
KS
747 packet->page_buf_cnt = 0;
748 }
749 }
750 packet->send_buf_index = section_index;
751
752
53d21fdb 753 sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_index =
c25aaf81
KS
754 section_index;
755 sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_size = msg_size;
21a80820 756
893f6627 757 if (packet->send_completion)
00ca8f0c 758 req_id = (ulong)packet;
f1ea3cd7
HZ
759 else
760 req_id = 0;
761
5b54dac8
HZ
762 out_channel = net_device->chn_table[packet->q_idx];
763 if (out_channel == NULL)
764 out_channel = device->channel;
765 packet->channel = out_channel;
766
c3582a2c
HZ
767 if (out_channel->rescind)
768 return -ENODEV;
769
72a2f5bd 770 if (packet->page_buf_cnt) {
5b54dac8 771 ret = vmbus_sendpacket_pagebuffer(out_channel,
72a2f5bd
HZ
772 packet->page_buf,
773 packet->page_buf_cnt,
ff3f8eec
GKH
774 &sendMessage,
775 sizeof(struct nvsp_message),
f1ea3cd7 776 req_id);
21a80820 777 } else {
5b54dac8 778 ret = vmbus_sendpacket(out_channel, &sendMessage,
e4d59ac5 779 sizeof(struct nvsp_message),
f1ea3cd7 780 req_id,
e4d59ac5
HZ
781 VM_PKT_DATA_INBAND,
782 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
fceaf24a
HJ
783 }
784
1d06825b
HZ
785 if (ret == 0) {
786 atomic_inc(&net_device->num_outstanding_sends);
3a67c9cc 787 atomic_inc(&net_device->queue_sends[q_idx]);
5b54dac8
HZ
788
789 if (hv_ringbuf_avail_percent(&out_channel->outbound) <
33be96e4 790 RING_AVAIL_PERCENT_LOWATER) {
5b54dac8 791 netif_tx_stop_queue(netdev_get_tx_queue(
3a67c9cc 792 ndev, q_idx));
5b54dac8 793
33be96e4 794 if (atomic_read(&net_device->
3a67c9cc 795 queue_sends[q_idx]) < 1)
5b54dac8 796 netif_tx_wake_queue(netdev_get_tx_queue(
3a67c9cc 797 ndev, q_idx));
33be96e4 798 }
1d06825b 799 } else if (ret == -EAGAIN) {
5b54dac8 800 netif_tx_stop_queue(netdev_get_tx_queue(
3a67c9cc
KS
801 ndev, q_idx));
802 if (atomic_read(&net_device->queue_sends[q_idx]) < 1) {
5b54dac8 803 netif_tx_wake_queue(netdev_get_tx_queue(
3a67c9cc 804 ndev, q_idx));
33be96e4
HZ
805 ret = -ENOSPC;
806 }
1d06825b 807 } else {
d9871158 808 netdev_err(ndev, "Unable to send packet %p ret %d\n",
85799a37 809 packet, ret);
1d06825b 810 }
fceaf24a 811
d953ca4d
HZ
812 if (ret != 0) {
813 if (section_index != NETVSC_INVALID_INDEX)
814 netvsc_free_send_slot(net_device, section_index);
815 } else if (skb) {
816 dev_kfree_skb_any(skb);
817 }
818
fceaf24a
HJ
819 return ret;
820}
821
5fa9d3c5 822static void netvsc_send_recv_completion(struct hv_device *device,
5b54dac8 823 struct vmbus_channel *channel,
97c1723a 824 struct netvsc_device *net_device,
63f6921d 825 u64 transaction_id, u32 status)
5fa9d3c5
HZ
826{
827 struct nvsp_message recvcompMessage;
828 int retries = 0;
829 int ret;
2ddd5e5f 830 struct net_device *ndev;
2ddd5e5f
S
831
832 ndev = net_device->ndev;
5fa9d3c5
HZ
833
834 recvcompMessage.hdr.msg_type =
835 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE;
836
63f6921d 837 recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status = status;
5fa9d3c5
HZ
838
839retry_send_cmplt:
840 /* Send the completion */
5b54dac8 841 ret = vmbus_sendpacket(channel, &recvcompMessage,
5fa9d3c5
HZ
842 sizeof(struct nvsp_message), transaction_id,
843 VM_PKT_COMP, 0);
844 if (ret == 0) {
845 /* success */
846 /* no-op */
d2598f01 847 } else if (ret == -EAGAIN) {
5fa9d3c5
HZ
848 /* no more room...wait a bit and attempt to retry 3 times */
849 retries++;
d9871158 850 netdev_err(ndev, "unable to send receive completion pkt"
c909ebbd 851 " (tid %llx)...retrying %d\n", transaction_id, retries);
5fa9d3c5
HZ
852
853 if (retries < 4) {
854 udelay(100);
855 goto retry_send_cmplt;
856 } else {
d9871158 857 netdev_err(ndev, "unable to send receive "
c909ebbd 858 "completion pkt (tid %llx)...give up retrying\n",
5fa9d3c5
HZ
859 transaction_id);
860 }
861 } else {
d9871158 862 netdev_err(ndev, "unable to send receive "
c909ebbd 863 "completion pkt - %llx\n", transaction_id);
5fa9d3c5
HZ
864 }
865}
866
97c1723a 867static void netvsc_receive(struct netvsc_device *net_device,
5b54dac8 868 struct vmbus_channel *channel,
97c1723a
KS
869 struct hv_device *device,
870 struct vmpacket_descriptor *packet)
fceaf24a 871{
85799a37
HZ
872 struct vmtransfer_page_packet_header *vmxferpage_packet;
873 struct nvsp_message *nvsp_packet;
4baab261
HZ
874 struct hv_netvsc_packet nv_pkt;
875 struct hv_netvsc_packet *netvsc_packet = &nv_pkt;
876 u32 status = NVSP_STAT_SUCCESS;
45326342
HZ
877 int i;
878 int count = 0;
2ddd5e5f 879 struct net_device *ndev;
779b4d17 880
2ddd5e5f 881 ndev = net_device->ndev;
fceaf24a 882
21a80820
GKH
883 /*
884 * All inbound packets other than send completion should be xfer page
885 * packet
886 */
415f2287 887 if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) {
d9871158 888 netdev_err(ndev, "Unknown packet type received - %d\n",
415f2287 889 packet->type);
fceaf24a
HJ
890 return;
891 }
892
85799a37 893 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
415f2287 894 (packet->offset8 << 3));
fceaf24a 895
454f18a9 896 /* Make sure this is a valid nvsp packet */
53d21fdb
HZ
897 if (nvsp_packet->hdr.msg_type !=
898 NVSP_MSG1_TYPE_SEND_RNDIS_PKT) {
d9871158 899 netdev_err(ndev, "Unknown nvsp packet type received-"
c909ebbd 900 " %d\n", nvsp_packet->hdr.msg_type);
fceaf24a
HJ
901 return;
902 }
903
85799a37 904 vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet;
fceaf24a 905
415f2287 906 if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) {
d9871158 907 netdev_err(ndev, "Invalid xfer page set id - "
c909ebbd 908 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID,
415f2287 909 vmxferpage_packet->xfer_pageset_id);
fceaf24a
HJ
910 return;
911 }
912
4baab261
HZ
913 count = vmxferpage_packet->range_cnt;
914 netvsc_packet->device = device;
915 netvsc_packet->channel = channel;
fceaf24a 916
454f18a9 917 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
4baab261 918 for (i = 0; i < count; i++) {
454f18a9 919 /* Initialize the netvsc packet */
63f6921d 920 netvsc_packet->status = NVSP_STAT_SUCCESS;
45326342
HZ
921 netvsc_packet->data = (void *)((unsigned long)net_device->
922 recv_buf + vmxferpage_packet->ranges[i].byte_offset);
72a2f5bd 923 netvsc_packet->total_data_buflen =
415f2287 924 vmxferpage_packet->ranges[i].byte_count;
fceaf24a 925
454f18a9 926 /* Pass it to the upper layer */
ac6f7859 927 rndis_filter_receive(device, netvsc_packet);
fceaf24a 928
4baab261
HZ
929 if (netvsc_packet->status != NVSP_STAT_SUCCESS)
930 status = NVSP_STAT_FAIL;
fceaf24a
HJ
931 }
932
4baab261
HZ
933 netvsc_send_recv_completion(device, channel, net_device,
934 vmxferpage_packet->d.trans_id, status);
fceaf24a
HJ
935}
936
5b54dac8
HZ
937
938static void netvsc_send_table(struct hv_device *hdev,
939 struct vmpacket_descriptor *vmpkt)
940{
941 struct netvsc_device *nvscdev;
942 struct net_device *ndev;
943 struct nvsp_message *nvmsg;
944 int i;
945 u32 count, *tab;
946
947 nvscdev = get_outbound_net_device(hdev);
948 if (!nvscdev)
949 return;
950 ndev = nvscdev->ndev;
951
952 nvmsg = (struct nvsp_message *)((unsigned long)vmpkt +
953 (vmpkt->offset8 << 3));
954
955 if (nvmsg->hdr.msg_type != NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE)
956 return;
957
958 count = nvmsg->msg.v5_msg.send_table.count;
959 if (count != VRSS_SEND_TAB_SIZE) {
960 netdev_err(ndev, "Received wrong send-table size:%u\n", count);
961 return;
962 }
963
964 tab = (u32 *)((unsigned long)&nvmsg->msg.v5_msg.send_table +
965 nvmsg->msg.v5_msg.send_table.offset);
966
967 for (i = 0; i < count; i++)
968 nvscdev->send_table[i] = tab[i];
969}
970
971void netvsc_channel_cb(void *context)
fceaf24a 972{
21a80820 973 int ret;
5b54dac8
HZ
974 struct vmbus_channel *channel = (struct vmbus_channel *)context;
975 struct hv_device *device;
85799a37
HZ
976 struct netvsc_device *net_device;
977 u32 bytes_recvd;
978 u64 request_id;
8dc0a06a 979 struct vmpacket_descriptor *desc;
c6fcf0ba
BP
980 unsigned char *buffer;
981 int bufferlen = NETVSC_PACKET_SIZE;
2ddd5e5f 982 struct net_device *ndev;
fceaf24a 983
5b54dac8
HZ
984 if (channel->primary_channel != NULL)
985 device = channel->primary_channel->device_obj;
986 else
987 device = channel->device_obj;
988
5a71ae30 989 net_device = get_inbound_net_device(device);
2ddd5e5f 990 if (!net_device)
ee0c4c39 991 return;
2ddd5e5f 992 ndev = net_device->ndev;
5b54dac8 993 buffer = get_per_channel_state(channel);
fceaf24a 994
21a80820 995 do {
5b54dac8 996 ret = vmbus_recvpacket_raw(channel, buffer, bufferlen,
85799a37 997 &bytes_recvd, &request_id);
21a80820 998 if (ret == 0) {
85799a37 999 if (bytes_recvd > 0) {
21a80820 1000 desc = (struct vmpacket_descriptor *)buffer;
415f2287
HZ
1001 switch (desc->type) {
1002 case VM_PKT_COMP:
97c1723a
KS
1003 netvsc_send_completion(net_device,
1004 device, desc);
21a80820
GKH
1005 break;
1006
415f2287 1007 case VM_PKT_DATA_USING_XFER_PAGES:
5b54dac8
HZ
1008 netvsc_receive(net_device, channel,
1009 device, desc);
1010 break;
1011
1012 case VM_PKT_DATA_INBAND:
1013 netvsc_send_table(device, desc);
21a80820
GKH
1014 break;
1015
1016 default:
d9871158 1017 netdev_err(ndev,
21a80820
GKH
1018 "unhandled packet type %d, "
1019 "tid %llx len %d\n",
415f2287 1020 desc->type, request_id,
85799a37 1021 bytes_recvd);
21a80820 1022 break;
fceaf24a
HJ
1023 }
1024
21a80820 1025 } else {
ee0c4c39
KS
1026 /*
1027 * We are done for this pass.
1028 */
fceaf24a
HJ
1029 break;
1030 }
ee0c4c39 1031
3d5cad97 1032 } else if (ret == -ENOBUFS) {
ee0c4c39
KS
1033 if (bufferlen > NETVSC_PACKET_SIZE)
1034 kfree(buffer);
21a80820 1035 /* Handle large packet */
85799a37 1036 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
21a80820 1037 if (buffer == NULL) {
454f18a9 1038 /* Try again next time around */
d9871158 1039 netdev_err(ndev,
21a80820 1040 "unable to allocate buffer of size "
c909ebbd 1041 "(%d)!!\n", bytes_recvd);
fceaf24a
HJ
1042 break;
1043 }
1044
85799a37 1045 bufferlen = bytes_recvd;
fceaf24a
HJ
1046 }
1047 } while (1);
1048
ee0c4c39
KS
1049 if (bufferlen > NETVSC_PACKET_SIZE)
1050 kfree(buffer);
fceaf24a
HJ
1051 return;
1052}
af24ce42 1053
b637e023
HZ
1054/*
1055 * netvsc_device_add - Callback when the device belonging to this
1056 * driver is added
1057 */
7bd23a4d 1058int netvsc_device_add(struct hv_device *device, void *additional_info)
b637e023
HZ
1059{
1060 int ret = 0;
aae23986
S
1061 int ring_size =
1062 ((struct netvsc_device_info *)additional_info)->ring_size;
b637e023 1063 struct netvsc_device *net_device;
2ddd5e5f 1064 struct net_device *ndev;
b637e023
HZ
1065
1066 net_device = alloc_net_device(device);
b1c84927
DC
1067 if (!net_device)
1068 return -ENOMEM;
b637e023 1069
5b54dac8
HZ
1070 net_device->ring_size = ring_size;
1071
2ddd5e5f
S
1072 /*
1073 * Coming into this function, struct net_device * is
1074 * registered as the driver private data.
1075 * In alloc_net_device(), we register struct netvsc_device *
1076 * as the driver private data and stash away struct net_device *
1077 * in struct netvsc_device *.
1078 */
1079 ndev = net_device->ndev;
1080
b637e023 1081 /* Initialize the NetVSC channel extension */
35abb21a 1082 init_completion(&net_device->channel_init_wait);
b637e023 1083
5b54dac8
HZ
1084 set_per_channel_state(device->channel, net_device->cb_buffer);
1085
b637e023 1086 /* Open the channel */
aae23986
S
1087 ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
1088 ring_size * PAGE_SIZE, NULL, 0,
5b54dac8 1089 netvsc_channel_cb, device->channel);
b637e023
HZ
1090
1091 if (ret != 0) {
d9871158 1092 netdev_err(ndev, "unable to open channel: %d\n", ret);
b637e023
HZ
1093 goto cleanup;
1094 }
1095
1096 /* Channel is opened */
c909ebbd 1097 pr_info("hv_netvsc channel opened successfully\n");
b637e023 1098
5b54dac8
HZ
1099 net_device->chn_table[0] = device->channel;
1100
b637e023
HZ
1101 /* Connect with the NetVsp */
1102 ret = netvsc_connect_vsp(device);
1103 if (ret != 0) {
d9871158 1104 netdev_err(ndev,
c909ebbd 1105 "unable to connect to NetVSP - %d\n", ret);
b637e023
HZ
1106 goto close;
1107 }
1108
1109 return ret;
1110
1111close:
1112 /* Now, we can close the channel safely */
1113 vmbus_close(device->channel);
1114
1115cleanup:
f90251c8 1116 free_netvsc_device(net_device);
b637e023
HZ
1117
1118 return ret;
1119}