blob: d97d5f39a04e4a307bb1e5b53eaab18a85b6b828 [file] [log] [blame]
Hank Janssenfceaf242009-07-13 15:34:54 -07001/*
Hank Janssenfceaf242009-07-13 15:34:54 -07002 * 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
Jeff Kirsheradf8d3f2013-12-06 06:28:47 -080014 * this program; if not, see <http://www.gnu.org/licenses/>.
Hank Janssenfceaf242009-07-13 15:34:54 -070015 *
16 * Authors:
Haiyang Zhangd0e94d12009-11-23 17:00:22 +000017 * Haiyang Zhang <haiyangz@microsoft.com>
Hank Janssenfceaf242009-07-13 15:34:54 -070018 * Hank Janssen <hjanssen@microsoft.com>
Hank Janssenfceaf242009-07-13 15:34:54 -070019 */
Hank Jansseneb335bc2011-03-29 13:58:48 -070020#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
Greg Kroah-Hartman5654e932009-07-14 15:08:20 -070022#include <linux/kernel.h>
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -080023#include <linux/sched.h>
24#include <linux/wait.h>
Greg Kroah-Hartman0ffa63b2009-07-15 11:06:01 -070025#include <linux/mm.h>
Greg Kroah-Hartmanb4362c92009-07-16 11:50:41 -070026#include <linux/delay.h>
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -070027#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Haiyang Zhangd9871152011-09-01 12:19:41 -070029#include <linux/netdevice.h>
Haiyang Zhangf157e782011-12-15 13:45:16 -080030#include <linux/if_ether.h>
KY Srinivasanc25aaf82014-04-30 10:14:31 -070031#include <asm/sync_bitops.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070032
K. Y. Srinivasan5ca72522011-05-12 19:34:37 -070033#include "hyperv_net.h"
Hank Janssenfceaf242009-07-13 15:34:54 -070034
35
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080036static struct netvsc_device *alloc_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070037{
Haiyang Zhang85799a32010-12-10 12:03:54 -080038 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070039 struct net_device *ndev = hv_get_drvdata(device);
Hank Janssenfceaf242009-07-13 15:34:54 -070040
Haiyang Zhang85799a32010-12-10 12:03:54 -080041 net_device = kzalloc(sizeof(struct netvsc_device), GFP_KERNEL);
42 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -070043 return NULL;
44
Haiyang Zhangdc5cd892012-06-04 06:42:38 +000045 init_waitqueue_head(&net_device->wait_drain);
Haiyang Zhang4d447c92011-12-15 13:45:17 -080046 net_device->start_remove = false;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -070047 net_device->destroy = false;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -080048 net_device->dev = device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070049 net_device->ndev = ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -070050
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070051 hv_set_drvdata(device, net_device);
Haiyang Zhang85799a32010-12-10 12:03:54 -080052 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070053}
54
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080055static struct netvsc_device *get_outbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070056{
Haiyang Zhang85799a32010-12-10 12:03:54 -080057 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070058
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070059 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070060 if (net_device && net_device->destroy)
Haiyang Zhang85799a32010-12-10 12:03:54 -080061 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070062
Haiyang Zhang85799a32010-12-10 12:03:54 -080063 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070064}
65
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080066static struct netvsc_device *get_inbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070067{
Haiyang Zhang85799a32010-12-10 12:03:54 -080068 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070069
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070070 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070071
72 if (!net_device)
73 goto get_in_err;
74
75 if (net_device->destroy &&
76 atomic_read(&net_device->num_outstanding_sends) == 0)
Haiyang Zhang85799a32010-12-10 12:03:54 -080077 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070078
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070079get_in_err:
Haiyang Zhang85799a32010-12-10 12:03:54 -080080 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070081}
82
Hank Janssenfceaf242009-07-13 15:34:54 -070083
KY Srinivasanc25aaf82014-04-30 10:14:31 -070084static int netvsc_destroy_buf(struct netvsc_device *net_device)
Haiyang Zhangec91cd02011-04-21 12:30:43 -070085{
86 struct nvsp_message *revoke_packet;
87 int ret = 0;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070088 struct net_device *ndev = net_device->ndev;
Haiyang Zhangec91cd02011-04-21 12:30:43 -070089
90 /*
91 * If we got a section count, it means we received a
92 * SendReceiveBufferComplete msg (ie sent
93 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
94 * to send a revoke msg here
95 */
96 if (net_device->recv_section_cnt) {
97 /* Send the revoke receive buffer */
98 revoke_packet = &net_device->revoke_packet;
99 memset(revoke_packet, 0, sizeof(struct nvsp_message));
100
101 revoke_packet->hdr.msg_type =
102 NVSP_MSG1_TYPE_REVOKE_RECV_BUF;
103 revoke_packet->msg.v1_msg.
104 revoke_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
105
106 ret = vmbus_sendpacket(net_device->dev->channel,
107 revoke_packet,
108 sizeof(struct nvsp_message),
109 (unsigned long)revoke_packet,
110 VM_PKT_DATA_INBAND, 0);
111 /*
112 * If we failed here, we might as well return and
113 * have a leak rather than continue and a bugchk
114 */
115 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700116 netdev_err(ndev, "unable to send "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700117 "revoke receive buffer to netvsp\n");
K. Y. Srinivasana3e00532011-08-25 09:49:12 -0700118 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700119 }
120 }
121
122 /* Teardown the gpadl on the vsp end */
123 if (net_device->recv_buf_gpadl_handle) {
124 ret = vmbus_teardown_gpadl(net_device->dev->channel,
125 net_device->recv_buf_gpadl_handle);
126
127 /* If we failed here, we might as well return and have a leak
128 * rather than continue and a bugchk
129 */
130 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700131 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700132 "unable to teardown receive buffer's gpadl\n");
Dan Carpenter7f9615e2011-08-27 14:06:07 +0300133 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700134 }
135 net_device->recv_buf_gpadl_handle = 0;
136 }
137
138 if (net_device->recv_buf) {
139 /* Free up the receive buffer */
Haiyang Zhangb679ef72014-01-27 15:03:42 -0800140 vfree(net_device->recv_buf);
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700141 net_device->recv_buf = NULL;
142 }
143
144 if (net_device->recv_section) {
145 net_device->recv_section_cnt = 0;
146 kfree(net_device->recv_section);
147 net_device->recv_section = NULL;
148 }
149
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700150 /* Deal with the send buffer we may have setup.
151 * If we got a send section size, it means we received a
152 * SendsendBufferComplete msg (ie sent
153 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
154 * to send a revoke msg here
155 */
156 if (net_device->send_section_size) {
157 /* Send the revoke receive buffer */
158 revoke_packet = &net_device->revoke_packet;
159 memset(revoke_packet, 0, sizeof(struct nvsp_message));
160
161 revoke_packet->hdr.msg_type =
162 NVSP_MSG1_TYPE_REVOKE_SEND_BUF;
163 revoke_packet->msg.v1_msg.revoke_recv_buf.id = 0;
164
165 ret = vmbus_sendpacket(net_device->dev->channel,
166 revoke_packet,
167 sizeof(struct nvsp_message),
168 (unsigned long)revoke_packet,
169 VM_PKT_DATA_INBAND, 0);
170 /* If we failed here, we might as well return and
171 * have a leak rather than continue and a bugchk
172 */
173 if (ret != 0) {
174 netdev_err(ndev, "unable to send "
175 "revoke send buffer to netvsp\n");
176 return ret;
177 }
178 }
179 /* Teardown the gpadl on the vsp end */
180 if (net_device->send_buf_gpadl_handle) {
181 ret = vmbus_teardown_gpadl(net_device->dev->channel,
182 net_device->send_buf_gpadl_handle);
183
184 /* If we failed here, we might as well return and have a leak
185 * rather than continue and a bugchk
186 */
187 if (ret != 0) {
188 netdev_err(ndev,
189 "unable to teardown send buffer's gpadl\n");
190 return ret;
191 }
Dave Jones2f184232014-06-16 16:59:02 -0400192 net_device->send_buf_gpadl_handle = 0;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700193 }
194 if (net_device->send_buf) {
195 /* Free up the receive buffer */
196 free_pages((unsigned long)net_device->send_buf,
197 get_order(net_device->send_buf_size));
198 net_device->send_buf = NULL;
199 }
200 kfree(net_device->send_section_map);
201
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700202 return ret;
203}
204
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700205static int netvsc_init_buf(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700206{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700207 int ret = 0;
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700208 int t;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800209 struct netvsc_device *net_device;
210 struct nvsp_message *init_packet;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700211 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700212
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800213 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700214 if (!net_device)
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700215 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700216 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700217
Haiyang Zhangb679ef72014-01-27 15:03:42 -0800218 net_device->recv_buf = vzalloc(net_device->recv_buf_size);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800219 if (!net_device->recv_buf) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700220 netdev_err(ndev, "unable to allocate receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700221 "buffer of size %d\n", net_device->recv_buf_size);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700222 ret = -ENOMEM;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800223 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700224 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700225
Bill Pemberton454f18a2009-07-27 16:47:24 -0400226 /*
227 * Establish the gpadl handle for this buffer on this
228 * channel. Note: This call uses the vmbus connection rather
229 * than the channel to establish the gpadl handle.
230 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800231 ret = vmbus_establish_gpadl(device->channel, net_device->recv_buf,
232 net_device->recv_buf_size,
233 &net_device->recv_buf_gpadl_handle);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700234 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700235 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700236 "unable to establish receive buffer's gpadl\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800237 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700238 }
239
Hank Janssenfceaf242009-07-13 15:34:54 -0700240
Bill Pemberton454f18a2009-07-27 16:47:24 -0400241 /* Notify the NetVsp of the gpadl handle */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800242 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700243
Haiyang Zhang85799a32010-12-10 12:03:54 -0800244 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700245
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800246 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF;
247 init_packet->msg.v1_msg.send_recv_buf.
248 gpadl_handle = net_device->recv_buf_gpadl_handle;
249 init_packet->msg.v1_msg.
250 send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
Hank Janssenfceaf242009-07-13 15:34:54 -0700251
Bill Pemberton454f18a2009-07-27 16:47:24 -0400252 /* Send the gpadl notification request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800253 ret = vmbus_sendpacket(device->channel, init_packet,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700254 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800255 (unsigned long)init_packet,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800256 VM_PKT_DATA_INBAND,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700257 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700258 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700259 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700260 "unable to send receive buffer's gpadl to netvsp\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800261 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700262 }
263
K. Y. Srinivasan5c5781b32011-06-16 13:16:35 -0700264 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700265 BUG_ON(t == 0);
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800266
Hank Janssenfceaf242009-07-13 15:34:54 -0700267
Bill Pemberton454f18a2009-07-27 16:47:24 -0400268 /* Check the response */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800269 if (init_packet->msg.v1_msg.
270 send_recv_buf_complete.status != NVSP_STAT_SUCCESS) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700271 netdev_err(ndev, "Unable to complete receive buffer "
Haiyang Zhang8bff33a2011-09-01 12:19:48 -0700272 "initialization with NetVsp - status %d\n",
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800273 init_packet->msg.v1_msg.
274 send_recv_buf_complete.status);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700275 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800276 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700277 }
278
Bill Pemberton454f18a2009-07-27 16:47:24 -0400279 /* Parse the response */
Hank Janssenfceaf242009-07-13 15:34:54 -0700280
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800281 net_device->recv_section_cnt = init_packet->msg.
282 v1_msg.send_recv_buf_complete.num_sections;
Hank Janssenfceaf242009-07-13 15:34:54 -0700283
Haiyang Zhangc1813202011-11-30 07:19:07 -0800284 net_device->recv_section = kmemdup(
285 init_packet->msg.v1_msg.send_recv_buf_complete.sections,
286 net_device->recv_section_cnt *
287 sizeof(struct nvsp_1_receive_buffer_section),
288 GFP_KERNEL);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800289 if (net_device->recv_section == NULL) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700290 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800291 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700292 }
293
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700294 /*
295 * For 1st release, there should only be 1 section that represents the
296 * entire receive buffer
297 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800298 if (net_device->recv_section_cnt != 1 ||
299 net_device->recv_section->offset != 0) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700300 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800301 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700302 }
303
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700304 /* Now setup the send buffer.
305 */
306 net_device->send_buf =
307 (void *)__get_free_pages(GFP_KERNEL|__GFP_ZERO,
308 get_order(net_device->send_buf_size));
309 if (!net_device->send_buf) {
310 netdev_err(ndev, "unable to allocate send "
311 "buffer of size %d\n", net_device->send_buf_size);
312 ret = -ENOMEM;
313 goto cleanup;
314 }
315
316 /* Establish the gpadl handle for this buffer on this
317 * channel. Note: This call uses the vmbus connection rather
318 * than the channel to establish the gpadl handle.
319 */
320 ret = vmbus_establish_gpadl(device->channel, net_device->send_buf,
321 net_device->send_buf_size,
322 &net_device->send_buf_gpadl_handle);
323 if (ret != 0) {
324 netdev_err(ndev,
325 "unable to establish send buffer's gpadl\n");
326 goto cleanup;
327 }
328
329 /* Notify the NetVsp of the gpadl handle */
330 init_packet = &net_device->channel_init_pkt;
331 memset(init_packet, 0, sizeof(struct nvsp_message));
332 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_SEND_BUF;
333 init_packet->msg.v1_msg.send_recv_buf.gpadl_handle =
334 net_device->send_buf_gpadl_handle;
335 init_packet->msg.v1_msg.send_recv_buf.id = 0;
336
337 /* Send the gpadl notification request */
338 ret = vmbus_sendpacket(device->channel, init_packet,
339 sizeof(struct nvsp_message),
340 (unsigned long)init_packet,
341 VM_PKT_DATA_INBAND,
342 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
343 if (ret != 0) {
344 netdev_err(ndev,
345 "unable to send send buffer's gpadl to netvsp\n");
346 goto cleanup;
347 }
348
349 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
350 BUG_ON(t == 0);
351
352 /* Check the response */
353 if (init_packet->msg.v1_msg.
354 send_send_buf_complete.status != NVSP_STAT_SUCCESS) {
355 netdev_err(ndev, "Unable to complete send buffer "
356 "initialization with NetVsp - status %d\n",
357 init_packet->msg.v1_msg.
358 send_recv_buf_complete.status);
359 ret = -EINVAL;
360 goto cleanup;
361 }
362
363 /* Parse the response */
364 net_device->send_section_size = init_packet->msg.
365 v1_msg.send_send_buf_complete.section_size;
366
367 /* Section count is simply the size divided by the section size.
368 */
369 net_device->send_section_cnt =
370 net_device->send_buf_size/net_device->send_section_size;
371
372 dev_info(&device->device, "Send section size: %d, Section count:%d\n",
373 net_device->send_section_size, net_device->send_section_cnt);
374
375 /* Setup state for managing the send buffer. */
376 net_device->map_words = DIV_ROUND_UP(net_device->send_section_cnt,
377 BITS_PER_LONG);
378
379 net_device->send_section_map =
380 kzalloc(net_device->map_words * sizeof(ulong), GFP_KERNEL);
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800381 if (net_device->send_section_map == NULL) {
382 ret = -ENOMEM;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700383 goto cleanup;
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800384 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700385
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800386 goto exit;
Hank Janssenfceaf242009-07-13 15:34:54 -0700387
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800388cleanup:
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700389 netvsc_destroy_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700390
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800391exit:
Hank Janssenfceaf242009-07-13 15:34:54 -0700392 return ret;
393}
394
Hank Janssenfceaf242009-07-13 15:34:54 -0700395
Haiyang Zhangf157e782011-12-15 13:45:16 -0800396/* Negotiate NVSP protocol version */
397static int negotiate_nvsp_ver(struct hv_device *device,
398 struct netvsc_device *net_device,
399 struct nvsp_message *init_packet,
400 u32 nvsp_ver)
Hank Janssenfceaf242009-07-13 15:34:54 -0700401{
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700402 int ret, t;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800403
404 memset(init_packet, 0, sizeof(struct nvsp_message));
405 init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT;
406 init_packet->msg.init_msg.init.min_protocol_ver = nvsp_ver;
407 init_packet->msg.init_msg.init.max_protocol_ver = nvsp_ver;
408
409 /* Send the init request */
410 ret = vmbus_sendpacket(device->channel, init_packet,
411 sizeof(struct nvsp_message),
412 (unsigned long)init_packet,
413 VM_PKT_DATA_INBAND,
414 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
415
416 if (ret != 0)
417 return ret;
418
419 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
420
421 if (t == 0)
422 return -ETIMEDOUT;
423
424 if (init_packet->msg.init_msg.init_complete.status !=
425 NVSP_STAT_SUCCESS)
426 return -EINVAL;
427
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800428 if (nvsp_ver == NVSP_PROTOCOL_VERSION_1)
Haiyang Zhangf157e782011-12-15 13:45:16 -0800429 return 0;
430
431 /* NVSPv2 only: Send NDIS config */
432 memset(init_packet, 0, sizeof(struct nvsp_message));
433 init_packet->hdr.msg_type = NVSP_MSG2_TYPE_SEND_NDIS_CONFIG;
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800434 init_packet->msg.v2_msg.send_ndis_config.mtu = net_device->ndev->mtu;
Haiyang Zhang1f5f3a72012-03-12 10:20:50 +0000435 init_packet->msg.v2_msg.send_ndis_config.capability.ieee8021q = 1;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800436
437 ret = vmbus_sendpacket(device->channel, init_packet,
438 sizeof(struct nvsp_message),
439 (unsigned long)init_packet,
440 VM_PKT_DATA_INBAND, 0);
441
442 return ret;
443}
444
445static int netvsc_connect_vsp(struct hv_device *device)
446{
447 int ret;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800448 struct netvsc_device *net_device;
449 struct nvsp_message *init_packet;
450 int ndis_version;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700451 struct net_device *ndev;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800452 u32 ver_list[] = { NVSP_PROTOCOL_VERSION_1, NVSP_PROTOCOL_VERSION_2,
453 NVSP_PROTOCOL_VERSION_4, NVSP_PROTOCOL_VERSION_5 };
454 int i, num_ver = 4; /* number of different NVSP versions */
Hank Janssenfceaf242009-07-13 15:34:54 -0700455
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800456 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700457 if (!net_device)
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700458 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700459 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700460
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800461 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700462
Haiyang Zhangf157e782011-12-15 13:45:16 -0800463 /* Negotiate the latest NVSP protocol supported */
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800464 for (i = num_ver - 1; i >= 0; i--)
465 if (negotiate_nvsp_ver(device, net_device, init_packet,
466 ver_list[i]) == 0) {
467 net_device->nvsp_version = ver_list[i];
468 break;
469 }
470
471 if (i < 0) {
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700472 ret = -EPROTO;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800473 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700474 }
Haiyang Zhangf157e782011-12-15 13:45:16 -0800475
476 pr_debug("Negotiated NVSP version:%x\n", net_device->nvsp_version);
477
Bill Pemberton454f18a2009-07-27 16:47:24 -0400478 /* Send the ndis version */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800479 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700480
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800481 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_4)
KY Srinivasan1f73db42014-04-09 15:00:46 -0700482 ndis_version = 0x00060001;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800483 else
484 ndis_version = 0x0006001e;
Hank Janssenfceaf242009-07-13 15:34:54 -0700485
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800486 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER;
487 init_packet->msg.v1_msg.
488 send_ndis_ver.ndis_major_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800489 (ndis_version & 0xFFFF0000) >> 16;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800490 init_packet->msg.v1_msg.
491 send_ndis_ver.ndis_minor_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800492 ndis_version & 0xFFFF;
Hank Janssenfceaf242009-07-13 15:34:54 -0700493
Bill Pemberton454f18a2009-07-27 16:47:24 -0400494 /* Send the init request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800495 ret = vmbus_sendpacket(device->channel, init_packet,
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800496 sizeof(struct nvsp_message),
497 (unsigned long)init_packet,
498 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700499 if (ret != 0)
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800500 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700501
Bill Pemberton454f18a2009-07-27 16:47:24 -0400502 /* Post the big receive buffer to NetVSP */
Haiyang Zhang99d30162014-03-09 16:10:59 -0700503 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_2)
504 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE_LEGACY;
505 else
506 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700507 net_device->send_buf_size = NETVSC_SEND_BUFFER_SIZE;
Haiyang Zhang99d30162014-03-09 16:10:59 -0700508
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700509 ret = netvsc_init_buf(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700510
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800511cleanup:
Hank Janssenfceaf242009-07-13 15:34:54 -0700512 return ret;
513}
514
Haiyang Zhang648dc592011-04-21 12:30:47 -0700515static void netvsc_disconnect_vsp(struct netvsc_device *net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700516{
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700517 netvsc_destroy_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700518}
519
Hank Janssen3e189512010-03-04 22:11:00 +0000520/*
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800521 * netvsc_device_remove - Callback when the root bus device is removed
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700522 */
K. Y. Srinivasan905620d2011-05-10 07:54:54 -0700523int netvsc_device_remove(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700524{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800525 struct netvsc_device *net_device;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700526 unsigned long flags;
Hank Janssenfceaf242009-07-13 15:34:54 -0700527
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700528 net_device = hv_get_drvdata(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700529
Haiyang Zhang648dc592011-04-21 12:30:47 -0700530 netvsc_disconnect_vsp(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700531
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700532 /*
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700533 * Since we have already drained, we don't need to busy wait
534 * as was done in final_release_stor_device()
535 * Note that we cannot set the ext pointer to NULL until
536 * we have drained - to drain the outgoing packets, we need to
537 * allow incoming packets.
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700538 */
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700539
540 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700541 hv_set_drvdata(device, NULL);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700542 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700543
K. Y. Srinivasan86c921a2011-09-13 10:59:54 -0700544 /*
545 * At this point, no one should be accessing net_device
546 * except in here
547 */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700548 dev_notice(&device->device, "net device safe to remove\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700549
Bill Pemberton454f18a2009-07-27 16:47:24 -0400550 /* Now, we can close the channel safely */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800551 vmbus_close(device->channel);
Hank Janssenfceaf242009-07-13 15:34:54 -0700552
Bill Pemberton454f18a2009-07-27 16:47:24 -0400553 /* Release all resources */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700554 if (net_device->sub_cb_buf)
555 vfree(net_device->sub_cb_buf);
556
K. Y. Srinivasan356c4652011-08-27 11:31:10 -0700557 kfree(net_device);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700558 return 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700559}
560
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000561
562#define RING_AVAIL_PERCENT_HIWATER 20
563#define RING_AVAIL_PERCENT_LOWATER 10
564
565/*
566 * Get the percentage of available bytes to write in the ring.
567 * The return value is in range from 0 to 100.
568 */
569static inline u32 hv_ringbuf_avail_percent(
570 struct hv_ring_buffer_info *ring_info)
571{
572 u32 avail_read, avail_write;
573
574 hv_get_ringbuffer_availbytes(ring_info, &avail_read, &avail_write);
575
576 return avail_write * 100 / ring_info->ring_datasize;
577}
578
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700579static inline void netvsc_free_send_slot(struct netvsc_device *net_device,
580 u32 index)
581{
582 sync_change_bit(index, net_device->send_section_map);
583}
584
KY Srinivasan97c17232014-02-16 16:38:44 -0800585static void netvsc_send_completion(struct netvsc_device *net_device,
586 struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800587 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700588{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800589 struct nvsp_message *nvsp_packet;
590 struct hv_netvsc_packet *nvsc_packet;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700591 struct net_device *ndev;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700592 u32 send_index;
Hank Janssenfceaf242009-07-13 15:34:54 -0700593
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700594 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700595
Haiyang Zhang85799a32010-12-10 12:03:54 -0800596 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800597 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700598
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800599 if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) ||
600 (nvsp_packet->hdr.msg_type ==
601 NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) ||
602 (nvsp_packet->hdr.msg_type ==
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700603 NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE) ||
604 (nvsp_packet->hdr.msg_type ==
605 NVSP_MSG5_TYPE_SUBCHANNEL)) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400606 /* Copy the response back */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800607 memcpy(&net_device->channel_init_pkt, nvsp_packet,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700608 sizeof(struct nvsp_message));
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700609 complete(&net_device->channel_init_wait);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800610 } else if (nvsp_packet->hdr.msg_type ==
611 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) {
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000612 int num_outstanding_sends;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700613 u16 q_idx = 0;
614 struct vmbus_channel *channel = device->channel;
615 int queue_sends;
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000616
Bill Pemberton454f18a2009-07-27 16:47:24 -0400617 /* Get the send context */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800618 nvsc_packet = (struct hv_netvsc_packet *)(unsigned long)
Haiyang Zhang415f2282011-01-26 12:12:13 -0800619 packet->trans_id;
Hank Janssenfceaf242009-07-13 15:34:54 -0700620
Bill Pemberton454f18a2009-07-27 16:47:24 -0400621 /* Notify the layer above us */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700622 if (nvsc_packet) {
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700623 send_index = nvsc_packet->send_buf_index;
624 if (send_index != NETVSC_INVALID_INDEX)
625 netvsc_free_send_slot(net_device, send_index);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700626 q_idx = nvsc_packet->q_idx;
627 channel = nvsc_packet->channel;
Haiyang Zhang893f6622014-04-21 14:54:44 -0700628 nvsc_packet->send_completion(nvsc_packet->
629 send_completion_ctx);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700630 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700631
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000632 num_outstanding_sends =
633 atomic_dec_return(&net_device->num_outstanding_sends);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700634 queue_sends = atomic_dec_return(&net_device->
635 queue_sends[q_idx]);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800636
Haiyang Zhangdc5cd892012-06-04 06:42:38 +0000637 if (net_device->destroy && num_outstanding_sends == 0)
638 wake_up(&net_device->wait_drain);
639
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700640 if (netif_tx_queue_stopped(netdev_get_tx_queue(ndev, q_idx)) &&
641 !net_device->start_remove &&
642 (hv_ringbuf_avail_percent(&channel->outbound) >
643 RING_AVAIL_PERCENT_HIWATER || queue_sends < 1))
644 netif_tx_wake_queue(netdev_get_tx_queue(
645 ndev, q_idx));
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700646 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700647 netdev_err(ndev, "Unknown send completion packet type- "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700648 "%d received!!\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700649 }
650
Hank Janssenfceaf242009-07-13 15:34:54 -0700651}
652
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700653static u32 netvsc_get_next_send_section(struct netvsc_device *net_device)
654{
655 unsigned long index;
656 u32 max_words = net_device->map_words;
657 unsigned long *map_addr = (unsigned long *)net_device->send_section_map;
658 u32 section_cnt = net_device->send_section_cnt;
659 int ret_val = NETVSC_INVALID_INDEX;
660 int i;
661 int prev_val;
662
663 for (i = 0; i < max_words; i++) {
664 if (!~(map_addr[i]))
665 continue;
666 index = ffz(map_addr[i]);
667 prev_val = sync_test_and_set_bit(index, &map_addr[i]);
668 if (prev_val)
669 continue;
670 if ((index + (i * BITS_PER_LONG)) >= section_cnt)
671 break;
672 ret_val = (index + (i * BITS_PER_LONG));
673 break;
674 }
675 return ret_val;
676}
677
678u32 netvsc_copy_to_send_buf(struct netvsc_device *net_device,
679 unsigned int section_index,
680 struct hv_netvsc_packet *packet)
681{
682 char *start = net_device->send_buf;
683 char *dest = (start + (section_index * net_device->send_section_size));
684 int i;
685 u32 msg_size = 0;
686
687 for (i = 0; i < packet->page_buf_cnt; i++) {
688 char *src = phys_to_virt(packet->page_buf[i].pfn << PAGE_SHIFT);
689 u32 offset = packet->page_buf[i].offset;
690 u32 len = packet->page_buf[i].len;
691
692 memcpy(dest, (src + offset), len);
693 msg_size += len;
694 dest += len;
695 }
696 return msg_size;
697}
698
K. Y. Srinivasanf9819f02011-05-12 19:34:49 -0700699int netvsc_send(struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800700 struct hv_netvsc_packet *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700701{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800702 struct netvsc_device *net_device;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700703 int ret = 0;
Greg Kroah-Hartman223c1aa2009-08-28 16:20:53 -0700704 struct nvsp_message sendMessage;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700705 struct net_device *ndev;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700706 struct vmbus_channel *out_channel = NULL;
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000707 u64 req_id;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700708 unsigned int section_index = NETVSC_INVALID_INDEX;
709 u32 msg_size = 0;
710 struct sk_buff *skb;
711
Hank Janssenfceaf242009-07-13 15:34:54 -0700712
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800713 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700714 if (!net_device)
K. Y. Srinivasanff2bd692011-08-25 09:49:15 -0700715 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700716 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700717
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800718 sendMessage.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800719 if (packet->is_data_pkt) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700720 /* 0 is RMC_DATA; */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800721 sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 0;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700722 } else {
723 /* 1 is RMC_CONTROL; */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800724 sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 1;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700725 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700726
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700727 /* Attempt to send via sendbuf */
728 if (packet->total_data_buflen < net_device->send_section_size) {
729 section_index = netvsc_get_next_send_section(net_device);
730 if (section_index != NETVSC_INVALID_INDEX) {
731 msg_size = netvsc_copy_to_send_buf(net_device,
732 section_index,
733 packet);
734 skb = (struct sk_buff *)
735 (unsigned long)packet->send_completion_tid;
736 if (skb)
737 dev_kfree_skb_any(skb);
738 packet->page_buf_cnt = 0;
739 }
740 }
741 packet->send_buf_index = section_index;
742
743
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800744 sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_index =
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700745 section_index;
746 sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_size = msg_size;
Hank Janssenfceaf242009-07-13 15:34:54 -0700747
Haiyang Zhang893f6622014-04-21 14:54:44 -0700748 if (packet->send_completion)
Haiyang Zhang00ca8f02013-04-26 08:25:55 +0000749 req_id = (ulong)packet;
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000750 else
751 req_id = 0;
752
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700753 out_channel = net_device->chn_table[packet->q_idx];
754 if (out_channel == NULL)
755 out_channel = device->channel;
756 packet->channel = out_channel;
757
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800758 if (packet->page_buf_cnt) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700759 ret = vmbus_sendpacket_pagebuffer(out_channel,
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800760 packet->page_buf,
761 packet->page_buf_cnt,
Greg Kroah-Hartmanff3f8ee2010-10-21 09:32:46 -0700762 &sendMessage,
763 sizeof(struct nvsp_message),
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000764 req_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700765 } else {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700766 ret = vmbus_sendpacket(out_channel, &sendMessage,
Haiyang Zhange4d59ac2011-06-17 07:58:04 -0700767 sizeof(struct nvsp_message),
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000768 req_id,
Haiyang Zhange4d59ac2011-06-17 07:58:04 -0700769 VM_PKT_DATA_INBAND,
770 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Hank Janssenfceaf242009-07-13 15:34:54 -0700771 }
772
Haiyang Zhang1d068252011-12-02 11:56:25 -0800773 if (ret == 0) {
774 atomic_inc(&net_device->num_outstanding_sends);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700775 atomic_inc(&net_device->queue_sends[packet->q_idx]);
776
777 if (hv_ringbuf_avail_percent(&out_channel->outbound) <
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000778 RING_AVAIL_PERCENT_LOWATER) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700779 netif_tx_stop_queue(netdev_get_tx_queue(
780 ndev, packet->q_idx));
781
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000782 if (atomic_read(&net_device->
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700783 queue_sends[packet->q_idx]) < 1)
784 netif_tx_wake_queue(netdev_get_tx_queue(
785 ndev, packet->q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000786 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800787 } else if (ret == -EAGAIN) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700788 netif_tx_stop_queue(netdev_get_tx_queue(
789 ndev, packet->q_idx));
790 if (atomic_read(&net_device->queue_sends[packet->q_idx]) < 1) {
791 netif_tx_wake_queue(netdev_get_tx_queue(
792 ndev, packet->q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000793 ret = -ENOSPC;
794 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800795 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700796 netdev_err(ndev, "Unable to send packet %p ret %d\n",
Haiyang Zhang85799a32010-12-10 12:03:54 -0800797 packet, ret);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800798 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700799
Hank Janssenfceaf242009-07-13 15:34:54 -0700800 return ret;
801}
802
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700803static void netvsc_send_recv_completion(struct hv_device *device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700804 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800805 struct netvsc_device *net_device,
Haiyang Zhang63f69212012-10-02 05:30:23 +0000806 u64 transaction_id, u32 status)
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700807{
808 struct nvsp_message recvcompMessage;
809 int retries = 0;
810 int ret;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700811 struct net_device *ndev;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700812
813 ndev = net_device->ndev;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700814
815 recvcompMessage.hdr.msg_type =
816 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE;
817
Haiyang Zhang63f69212012-10-02 05:30:23 +0000818 recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status = status;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700819
820retry_send_cmplt:
821 /* Send the completion */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700822 ret = vmbus_sendpacket(channel, &recvcompMessage,
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700823 sizeof(struct nvsp_message), transaction_id,
824 VM_PKT_COMP, 0);
825 if (ret == 0) {
826 /* success */
827 /* no-op */
K. Y. Srinivasand2598f02011-08-25 09:48:58 -0700828 } else if (ret == -EAGAIN) {
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700829 /* no more room...wait a bit and attempt to retry 3 times */
830 retries++;
Haiyang Zhangd9871152011-09-01 12:19:41 -0700831 netdev_err(ndev, "unable to send receive completion pkt"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700832 " (tid %llx)...retrying %d\n", transaction_id, retries);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700833
834 if (retries < 4) {
835 udelay(100);
836 goto retry_send_cmplt;
837 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700838 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700839 "completion pkt (tid %llx)...give up retrying\n",
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700840 transaction_id);
841 }
842 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700843 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700844 "completion pkt - %llx\n", transaction_id);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700845 }
846}
847
KY Srinivasan97c17232014-02-16 16:38:44 -0800848static void netvsc_receive(struct netvsc_device *net_device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700849 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800850 struct hv_device *device,
851 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700852{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800853 struct vmtransfer_page_packet_header *vmxferpage_packet;
854 struct nvsp_message *nvsp_packet;
Haiyang Zhang4baab262014-04-21 14:54:43 -0700855 struct hv_netvsc_packet nv_pkt;
856 struct hv_netvsc_packet *netvsc_packet = &nv_pkt;
857 u32 status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -0800858 int i;
859 int count = 0;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700860 struct net_device *ndev;
K. Y. Srinivasan779b4d12011-04-26 09:20:22 -0700861
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700862 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700863
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700864 /*
865 * All inbound packets other than send completion should be xfer page
866 * packet
867 */
Haiyang Zhang415f2282011-01-26 12:12:13 -0800868 if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700869 netdev_err(ndev, "Unknown packet type received - %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -0800870 packet->type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700871 return;
872 }
873
Haiyang Zhang85799a32010-12-10 12:03:54 -0800874 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800875 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700876
Bill Pemberton454f18a2009-07-27 16:47:24 -0400877 /* Make sure this is a valid nvsp packet */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800878 if (nvsp_packet->hdr.msg_type !=
879 NVSP_MSG1_TYPE_SEND_RNDIS_PKT) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700880 netdev_err(ndev, "Unknown nvsp packet type received-"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700881 " %d\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700882 return;
883 }
884
Haiyang Zhang85799a32010-12-10 12:03:54 -0800885 vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet;
Hank Janssenfceaf242009-07-13 15:34:54 -0700886
Haiyang Zhang415f2282011-01-26 12:12:13 -0800887 if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700888 netdev_err(ndev, "Invalid xfer page set id - "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700889 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800890 vmxferpage_packet->xfer_pageset_id);
Hank Janssenfceaf242009-07-13 15:34:54 -0700891 return;
892 }
893
Haiyang Zhang4baab262014-04-21 14:54:43 -0700894 count = vmxferpage_packet->range_cnt;
895 netvsc_packet->device = device;
896 netvsc_packet->channel = channel;
Hank Janssenfceaf242009-07-13 15:34:54 -0700897
Bill Pemberton454f18a2009-07-27 16:47:24 -0400898 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
Haiyang Zhang4baab262014-04-21 14:54:43 -0700899 for (i = 0; i < count; i++) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400900 /* Initialize the netvsc packet */
Haiyang Zhang63f69212012-10-02 05:30:23 +0000901 netvsc_packet->status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -0800902 netvsc_packet->data = (void *)((unsigned long)net_device->
903 recv_buf + vmxferpage_packet->ranges[i].byte_offset);
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800904 netvsc_packet->total_data_buflen =
Haiyang Zhang415f2282011-01-26 12:12:13 -0800905 vmxferpage_packet->ranges[i].byte_count;
Hank Janssenfceaf242009-07-13 15:34:54 -0700906
Bill Pemberton454f18a2009-07-27 16:47:24 -0400907 /* Pass it to the upper layer */
K. Y. Srinivasanac6f7852011-05-12 19:34:58 -0700908 rndis_filter_receive(device, netvsc_packet);
Hank Janssenfceaf242009-07-13 15:34:54 -0700909
Haiyang Zhang4baab262014-04-21 14:54:43 -0700910 if (netvsc_packet->status != NVSP_STAT_SUCCESS)
911 status = NVSP_STAT_FAIL;
Hank Janssenfceaf242009-07-13 15:34:54 -0700912 }
913
Haiyang Zhang4baab262014-04-21 14:54:43 -0700914 netvsc_send_recv_completion(device, channel, net_device,
915 vmxferpage_packet->d.trans_id, status);
Hank Janssenfceaf242009-07-13 15:34:54 -0700916}
917
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700918
919static void netvsc_send_table(struct hv_device *hdev,
920 struct vmpacket_descriptor *vmpkt)
921{
922 struct netvsc_device *nvscdev;
923 struct net_device *ndev;
924 struct nvsp_message *nvmsg;
925 int i;
926 u32 count, *tab;
927
928 nvscdev = get_outbound_net_device(hdev);
929 if (!nvscdev)
930 return;
931 ndev = nvscdev->ndev;
932
933 nvmsg = (struct nvsp_message *)((unsigned long)vmpkt +
934 (vmpkt->offset8 << 3));
935
936 if (nvmsg->hdr.msg_type != NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE)
937 return;
938
939 count = nvmsg->msg.v5_msg.send_table.count;
940 if (count != VRSS_SEND_TAB_SIZE) {
941 netdev_err(ndev, "Received wrong send-table size:%u\n", count);
942 return;
943 }
944
945 tab = (u32 *)((unsigned long)&nvmsg->msg.v5_msg.send_table +
946 nvmsg->msg.v5_msg.send_table.offset);
947
948 for (i = 0; i < count; i++)
949 nvscdev->send_table[i] = tab[i];
950}
951
952void netvsc_channel_cb(void *context)
Hank Janssenfceaf242009-07-13 15:34:54 -0700953{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700954 int ret;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700955 struct vmbus_channel *channel = (struct vmbus_channel *)context;
956 struct hv_device *device;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800957 struct netvsc_device *net_device;
958 u32 bytes_recvd;
959 u64 request_id;
Greg Kroah-Hartman8dc0a062009-08-27 16:02:36 -0700960 struct vmpacket_descriptor *desc;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400961 unsigned char *buffer;
962 int bufferlen = NETVSC_PACKET_SIZE;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700963 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700964
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700965 if (channel->primary_channel != NULL)
966 device = channel->primary_channel->device_obj;
967 else
968 device = channel->device_obj;
969
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800970 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700971 if (!net_device)
KY Srinivasanee0c4c32014-02-16 16:38:45 -0800972 return;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700973 ndev = net_device->ndev;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700974 buffer = get_per_channel_state(channel);
Hank Janssenfceaf242009-07-13 15:34:54 -0700975
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700976 do {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700977 ret = vmbus_recvpacket_raw(channel, buffer, bufferlen,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800978 &bytes_recvd, &request_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700979 if (ret == 0) {
Haiyang Zhang85799a32010-12-10 12:03:54 -0800980 if (bytes_recvd > 0) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700981 desc = (struct vmpacket_descriptor *)buffer;
Haiyang Zhang415f2282011-01-26 12:12:13 -0800982 switch (desc->type) {
983 case VM_PKT_COMP:
KY Srinivasan97c17232014-02-16 16:38:44 -0800984 netvsc_send_completion(net_device,
985 device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700986 break;
Hank Janssenfceaf242009-07-13 15:34:54 -0700987
Haiyang Zhang415f2282011-01-26 12:12:13 -0800988 case VM_PKT_DATA_USING_XFER_PAGES:
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700989 netvsc_receive(net_device, channel,
990 device, desc);
991 break;
992
993 case VM_PKT_DATA_INBAND:
994 netvsc_send_table(device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700995 break;
Hank Janssenfceaf242009-07-13 15:34:54 -0700996
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700997 default:
Haiyang Zhangd9871152011-09-01 12:19:41 -0700998 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700999 "unhandled packet type %d, "
1000 "tid %llx len %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -08001001 desc->type, request_id,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001002 bytes_recvd);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001003 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001004 }
1005
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001006 } else {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001007 /*
1008 * We are done for this pass.
1009 */
Hank Janssenfceaf242009-07-13 15:34:54 -07001010 break;
1011 }
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001012
K. Y. Srinivasan3d5cad92011-08-25 09:48:59 -07001013 } else if (ret == -ENOBUFS) {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001014 if (bufferlen > NETVSC_PACKET_SIZE)
1015 kfree(buffer);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001016 /* Handle large packet */
Haiyang Zhang85799a32010-12-10 12:03:54 -08001017 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001018 if (buffer == NULL) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001019 /* Try again next time around */
Haiyang Zhangd9871152011-09-01 12:19:41 -07001020 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001021 "unable to allocate buffer of size "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001022 "(%d)!!\n", bytes_recvd);
Hank Janssenfceaf242009-07-13 15:34:54 -07001023 break;
1024 }
1025
Haiyang Zhang85799a32010-12-10 12:03:54 -08001026 bufferlen = bytes_recvd;
Hank Janssenfceaf242009-07-13 15:34:54 -07001027 }
1028 } while (1);
1029
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001030 if (bufferlen > NETVSC_PACKET_SIZE)
1031 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -07001032 return;
1033}
Haiyang Zhangaf24ce42011-04-21 12:30:40 -07001034
1035/*
Haiyang Zhangb637e022011-04-21 12:30:45 -07001036 * netvsc_device_add - Callback when the device belonging to this
1037 * driver is added
1038 */
K. Y. Srinivasan7bd23a42011-05-10 07:54:53 -07001039int netvsc_device_add(struct hv_device *device, void *additional_info)
Haiyang Zhangb637e022011-04-21 12:30:45 -07001040{
1041 int ret = 0;
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001042 int ring_size =
1043 ((struct netvsc_device_info *)additional_info)->ring_size;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001044 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001045 struct net_device *ndev;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001046
1047 net_device = alloc_net_device(device);
1048 if (!net_device) {
K. Y. Srinivasanace163a2011-08-25 09:49:16 -07001049 ret = -ENOMEM;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001050 goto cleanup;
1051 }
1052
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001053 net_device->ring_size = ring_size;
1054
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001055 /*
1056 * Coming into this function, struct net_device * is
1057 * registered as the driver private data.
1058 * In alloc_net_device(), we register struct netvsc_device *
1059 * as the driver private data and stash away struct net_device *
1060 * in struct netvsc_device *.
1061 */
1062 ndev = net_device->ndev;
1063
Haiyang Zhangb637e022011-04-21 12:30:45 -07001064 /* Initialize the NetVSC channel extension */
K. Y. Srinivasan35abb212011-05-10 07:55:41 -07001065 init_completion(&net_device->channel_init_wait);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001066
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001067 set_per_channel_state(device->channel, net_device->cb_buffer);
1068
Haiyang Zhangb637e022011-04-21 12:30:45 -07001069 /* Open the channel */
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001070 ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
1071 ring_size * PAGE_SIZE, NULL, 0,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001072 netvsc_channel_cb, device->channel);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001073
1074 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001075 netdev_err(ndev, "unable to open channel: %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001076 goto cleanup;
1077 }
1078
1079 /* Channel is opened */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001080 pr_info("hv_netvsc channel opened successfully\n");
Haiyang Zhangb637e022011-04-21 12:30:45 -07001081
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001082 net_device->chn_table[0] = device->channel;
1083
Haiyang Zhangb637e022011-04-21 12:30:45 -07001084 /* Connect with the NetVsp */
1085 ret = netvsc_connect_vsp(device);
1086 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001087 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001088 "unable to connect to NetVSP - %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001089 goto close;
1090 }
1091
1092 return ret;
1093
1094close:
1095 /* Now, we can close the channel safely */
1096 vmbus_close(device->channel);
1097
1098cleanup:
1099
Haiyang Zhang4baab262014-04-21 14:54:43 -07001100 if (net_device)
K. Y. Srinivasan356c4652011-08-27 11:31:10 -07001101 kfree(net_device);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001102
1103 return ret;
1104}