Merge branch 'cpuidle' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux...
[deliverable/linux.git] / drivers / net / hyperv / netvsc_drv.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
fceaf24a 22#include <linux/init.h>
9079ce69 23#include <linux/atomic.h>
fceaf24a
HJ
24#include <linux/module.h>
25#include <linux/highmem.h>
26#include <linux/device.h>
fceaf24a 27#include <linux/io.h>
fceaf24a
HJ
28#include <linux/delay.h>
29#include <linux/netdevice.h>
30#include <linux/inetdevice.h>
31#include <linux/etherdevice.h>
32#include <linux/skbuff.h>
c802db11 33#include <linux/if_vlan.h>
fceaf24a 34#include <linux/in.h>
5a0e3ad6 35#include <linux/slab.h>
fceaf24a
HJ
36#include <net/arp.h>
37#include <net/route.h>
38#include <net/sock.h>
39#include <net/pkt_sched.h>
3f335ea2 40
5ca7252a 41#include "hyperv_net.h"
fceaf24a 42
fceaf24a 43
fa85a6c2 44#define RING_SIZE_MIN 64
27a70af3 45#define LINKCHANGE_INT (2 * HZ)
99c8da0f 46static int ring_size = 128;
450d7a4b
SH
47module_param(ring_size, int, S_IRUGO);
48MODULE_PARM_DESC(ring_size, "Ring buffer size (# of pages)");
fceaf24a 49
e01ec219
KS
50static int max_num_vrss_chns = 8;
51
3f300ff4
SX
52static const u32 default_msg = NETIF_MSG_DRV | NETIF_MSG_PROBE |
53 NETIF_MSG_LINK | NETIF_MSG_IFUP |
54 NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR |
55 NETIF_MSG_TX_ERR;
56
57static int debug = -1;
58module_param(debug, int, S_IRUGO);
59MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
60
d426b2e3
HZ
61static void do_set_multicast(struct work_struct *w)
62{
792df872
WM
63 struct net_device_context *ndevctx =
64 container_of(w, struct net_device_context, work);
d426b2e3
HZ
65 struct netvsc_device *nvdev;
66 struct rndis_device *rdev;
67
68 nvdev = hv_get_drvdata(ndevctx->device_ctx);
792df872
WM
69 if (nvdev == NULL || nvdev->ndev == NULL)
70 return;
d426b2e3
HZ
71
72 rdev = nvdev->extension;
73 if (rdev == NULL)
792df872 74 return;
d426b2e3 75
792df872 76 if (nvdev->ndev->flags & IFF_PROMISC)
d426b2e3
HZ
77 rndis_filter_set_packet_filter(rdev,
78 NDIS_PACKET_TYPE_PROMISCUOUS);
79 else
80 rndis_filter_set_packet_filter(rdev,
81 NDIS_PACKET_TYPE_BROADCAST |
82 NDIS_PACKET_TYPE_ALL_MULTICAST |
83 NDIS_PACKET_TYPE_DIRECTED);
d426b2e3
HZ
84}
85
4e9bfefa 86static void netvsc_set_multicast_list(struct net_device *net)
fceaf24a 87{
792df872 88 struct net_device_context *net_device_ctx = netdev_priv(net);
d426b2e3 89
792df872 90 schedule_work(&net_device_ctx->work);
fceaf24a
HJ
91}
92
fceaf24a
HJ
93static int netvsc_open(struct net_device *net)
94{
fceaf24a 95 struct net_device_context *net_device_ctx = netdev_priv(net);
6bad88da 96 struct hv_device *device_obj = net_device_ctx->device_ctx;
891de74d
HZ
97 struct netvsc_device *nvdev;
98 struct rndis_device *rdev;
02fafbc6 99 int ret = 0;
fceaf24a 100
891de74d
HZ
101 netif_carrier_off(net);
102
d515d0ff
HZ
103 /* Open up the device */
104 ret = rndis_filter_open(device_obj);
105 if (ret != 0) {
106 netdev_err(net, "unable to open device (ret %d).\n", ret);
107 return ret;
fceaf24a
HJ
108 }
109
2de8530b 110 netif_tx_wake_all_queues(net);
d515d0ff 111
891de74d
HZ
112 nvdev = hv_get_drvdata(device_obj);
113 rdev = nvdev->extension;
114 if (!rdev->link_state)
115 netif_carrier_on(net);
116
fceaf24a
HJ
117 return ret;
118}
119
fceaf24a
HJ
120static int netvsc_close(struct net_device *net)
121{
fceaf24a 122 struct net_device_context *net_device_ctx = netdev_priv(net);
6bad88da 123 struct hv_device *device_obj = net_device_ctx->device_ctx;
2de8530b 124 struct netvsc_device *nvdev = hv_get_drvdata(device_obj);
02fafbc6 125 int ret;
2de8530b
HZ
126 u32 aread, awrite, i, msec = 10, retry = 0, retry_max = 20;
127 struct vmbus_channel *chn;
fceaf24a 128
0a282538 129 netif_tx_disable(net);
fceaf24a 130
792df872
WM
131 /* Make sure netvsc_set_multicast_list doesn't re-enable filter! */
132 cancel_work_sync(&net_device_ctx->work);
9c26aa0d 133 ret = rndis_filter_close(device_obj);
2de8530b 134 if (ret != 0) {
eb335bc4 135 netdev_err(net, "unable to close device (ret %d).\n", ret);
2de8530b
HZ
136 return ret;
137 }
138
139 /* Ensure pending bytes in ring are read */
140 while (true) {
141 aread = 0;
142 for (i = 0; i < nvdev->num_chn; i++) {
143 chn = nvdev->chn_table[i];
144 if (!chn)
145 continue;
146
147 hv_get_ringbuffer_availbytes(&chn->inbound, &aread,
148 &awrite);
149
150 if (aread)
151 break;
152
153 hv_get_ringbuffer_availbytes(&chn->outbound, &aread,
154 &awrite);
155
156 if (aread)
157 break;
158 }
159
160 retry++;
161 if (retry > retry_max || aread == 0)
162 break;
163
164 msleep(msec);
165
166 if (msec < 1000)
167 msec *= 2;
168 }
169
170 if (aread) {
171 netdev_err(net, "Ring buffer not empty after closing rndis\n");
172 ret = -ETIMEDOUT;
173 }
fceaf24a 174
fceaf24a
HJ
175 return ret;
176}
177
8a00251a
KS
178static void *init_ppi_data(struct rndis_message *msg, u32 ppi_size,
179 int pkt_type)
180{
181 struct rndis_packet *rndis_pkt;
182 struct rndis_per_packet_info *ppi;
183
184 rndis_pkt = &msg->msg.pkt;
185 rndis_pkt->data_offset += ppi_size;
186
187 ppi = (struct rndis_per_packet_info *)((void *)rndis_pkt +
188 rndis_pkt->per_pkt_info_offset + rndis_pkt->per_pkt_info_len);
189
190 ppi->size = ppi_size;
191 ppi->type = pkt_type;
192 ppi->ppi_offset = sizeof(struct rndis_per_packet_info);
193
194 rndis_pkt->per_pkt_info_len += ppi_size;
195
196 return ppi;
197}
198
5b54dac8
HZ
199static u16 netvsc_select_queue(struct net_device *ndev, struct sk_buff *skb,
200 void *accel_priv, select_queue_fallback_t fallback)
201{
202 struct net_device_context *net_device_ctx = netdev_priv(ndev);
203 struct hv_device *hdev = net_device_ctx->device_ctx;
204 struct netvsc_device *nvsc_dev = hv_get_drvdata(hdev);
205 u32 hash;
206 u16 q_idx = 0;
207
208 if (nvsc_dev == NULL || ndev->real_num_tx_queues <= 1)
209 return 0;
210
757647e1
VK
211 hash = skb_get_hash(skb);
212 q_idx = nvsc_dev->send_table[hash % VRSS_SEND_TAB_SIZE] %
213 ndev->real_num_tx_queues;
5b54dac8 214
8b9fbe1a
VK
215 if (!nvsc_dev->chn_table[q_idx])
216 q_idx = 0;
217
5b54dac8
HZ
218 return q_idx;
219}
220
54a7357f
KS
221static u32 fill_pg_buf(struct page *page, u32 offset, u32 len,
222 struct hv_page_buffer *pb)
223{
224 int j = 0;
225
226 /* Deal with compund pages by ignoring unused part
227 * of the page.
228 */
229 page += (offset >> PAGE_SHIFT);
230 offset &= ~PAGE_MASK;
231
232 while (len > 0) {
233 unsigned long bytes;
234
235 bytes = PAGE_SIZE - offset;
236 if (bytes > len)
237 bytes = len;
238 pb[j].pfn = page_to_pfn(page);
239 pb[j].offset = offset;
240 pb[j].len = bytes;
241
242 offset += bytes;
243 len -= bytes;
244
245 if (offset == PAGE_SIZE && len) {
246 page++;
247 offset = 0;
248 j++;
249 }
250 }
251
252 return j + 1;
253}
254
8a00251a 255static u32 init_page_array(void *hdr, u32 len, struct sk_buff *skb,
a9f2e2d6
KS
256 struct hv_netvsc_packet *packet,
257 struct hv_page_buffer **page_buf)
54a7357f 258{
a9f2e2d6 259 struct hv_page_buffer *pb = *page_buf;
54a7357f
KS
260 u32 slots_used = 0;
261 char *data = skb->data;
262 int frags = skb_shinfo(skb)->nr_frags;
263 int i;
264
265 /* The packet is laid out thus:
aa0a34be 266 * 1. hdr: RNDIS header and PPI
54a7357f
KS
267 * 2. skb linear data
268 * 3. skb fragment data
269 */
270 if (hdr != NULL)
271 slots_used += fill_pg_buf(virt_to_page(hdr),
272 offset_in_page(hdr),
273 len, &pb[slots_used]);
274
aa0a34be
HZ
275 packet->rmsg_size = len;
276 packet->rmsg_pgcnt = slots_used;
277
54a7357f
KS
278 slots_used += fill_pg_buf(virt_to_page(data),
279 offset_in_page(data),
280 skb_headlen(skb), &pb[slots_used]);
281
282 for (i = 0; i < frags; i++) {
283 skb_frag_t *frag = skb_shinfo(skb)->frags + i;
284
285 slots_used += fill_pg_buf(skb_frag_page(frag),
286 frag->page_offset,
287 skb_frag_size(frag), &pb[slots_used]);
288 }
8a00251a 289 return slots_used;
54a7357f
KS
290}
291
292static int count_skb_frag_slots(struct sk_buff *skb)
293{
294 int i, frags = skb_shinfo(skb)->nr_frags;
295 int pages = 0;
296
297 for (i = 0; i < frags; i++) {
298 skb_frag_t *frag = skb_shinfo(skb)->frags + i;
299 unsigned long size = skb_frag_size(frag);
300 unsigned long offset = frag->page_offset;
301
302 /* Skip unused frames from start of page */
303 offset &= ~PAGE_MASK;
304 pages += PFN_UP(offset + size);
305 }
306 return pages;
307}
308
309static int netvsc_get_slots(struct sk_buff *skb)
310{
311 char *data = skb->data;
312 unsigned int offset = offset_in_page(data);
313 unsigned int len = skb_headlen(skb);
314 int slots;
315 int frag_slots;
316
317 slots = DIV_ROUND_UP(offset + len, PAGE_SIZE);
318 frag_slots = count_skb_frag_slots(skb);
319 return slots + frag_slots;
320}
321
08cd04bf
KS
322static u32 get_net_transport_info(struct sk_buff *skb, u32 *trans_off)
323{
324 u32 ret_val = TRANSPORT_INFO_NOT_IP;
325
326 if ((eth_hdr(skb)->h_proto != htons(ETH_P_IP)) &&
327 (eth_hdr(skb)->h_proto != htons(ETH_P_IPV6))) {
328 goto not_ip;
329 }
330
331 *trans_off = skb_transport_offset(skb);
332
333 if ((eth_hdr(skb)->h_proto == htons(ETH_P_IP))) {
334 struct iphdr *iphdr = ip_hdr(skb);
335
336 if (iphdr->protocol == IPPROTO_TCP)
337 ret_val = TRANSPORT_INFO_IPV4_TCP;
338 else if (iphdr->protocol == IPPROTO_UDP)
339 ret_val = TRANSPORT_INFO_IPV4_UDP;
340 } else {
341 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
342 ret_val = TRANSPORT_INFO_IPV6_TCP;
343 else if (ipv6_hdr(skb)->nexthdr == IPPROTO_UDP)
344 ret_val = TRANSPORT_INFO_IPV6_UDP;
345 }
346
347not_ip:
348 return ret_val;
349}
350
02fafbc6 351static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net)
fceaf24a 352{
fceaf24a 353 struct net_device_context *net_device_ctx = netdev_priv(net);
981a1bd8 354 struct hv_netvsc_packet *packet = NULL;
02fafbc6 355 int ret;
8a00251a
KS
356 unsigned int num_data_pgs;
357 struct rndis_message *rndis_msg;
358 struct rndis_packet *rndis_pkt;
359 u32 rndis_msg_size;
360 bool isvlan;
e88f7e07 361 bool linear = false;
8a00251a 362 struct rndis_per_packet_info *ppi;
08cd04bf 363 struct ndis_tcp_ip_checksum_info *csum_info;
77bf5487 364 struct ndis_tcp_lso_info *lso_info;
08cd04bf
KS
365 int hdr_offset;
366 u32 net_trans_info;
307f0995 367 u32 hash;
e88f7e07 368 u32 skb_length;
b08cc791 369 struct hv_page_buffer page_buf[MAX_PAGE_BUFFER_COUNT];
a9f2e2d6 370 struct hv_page_buffer *pb = page_buf;
7eafd9b4 371 struct netvsc_stats *tx_stats = this_cpu_ptr(net_device_ctx->tx_stats);
fceaf24a 372
54a7357f
KS
373 /* We will atmost need two pages to describe the rndis
374 * header. We can only transmit MAX_PAGE_BUFFER_COUNT number
e88f7e07
VK
375 * of pages in a single packet. If skb is scattered around
376 * more pages we try linearizing it.
54a7357f 377 */
e88f7e07
VK
378
379check_size:
380 skb_length = skb->len;
8a00251a 381 num_data_pgs = netvsc_get_slots(skb) + 2;
e88f7e07
VK
382 if (num_data_pgs > MAX_PAGE_BUFFER_COUNT && linear) {
383 net_alert_ratelimited("packet too big: %u pages (%u bytes)\n",
384 num_data_pgs, skb->len);
981a1bd8
VK
385 ret = -EFAULT;
386 goto drop;
e88f7e07
VK
387 } else if (num_data_pgs > MAX_PAGE_BUFFER_COUNT) {
388 if (skb_linearize(skb)) {
389 net_alert_ratelimited("failed to linearize skb\n");
390 ret = -ENOMEM;
391 goto drop;
392 }
393 linear = true;
394 goto check_size;
54a7357f 395 }
fceaf24a 396
c0eb4540
KS
397 /*
398 * Place the rndis header in the skb head room and
399 * the skb->cb will be used for hv_netvsc_packet
400 * structure.
401 */
402 ret = skb_cow_head(skb, RNDIS_AND_PPI_SIZE);
b56fc3c5
KS
403 if (ret) {
404 netdev_err(net, "unable to alloc hv_netvsc_packet\n");
405 ret = -ENOMEM;
406 goto drop;
fceaf24a 407 }
c0eb4540
KS
408 /* Use the skb control buffer for building up the packet */
409 BUILD_BUG_ON(sizeof(struct hv_netvsc_packet) >
410 FIELD_SIZEOF(struct sk_buff, cb));
411 packet = (struct hv_netvsc_packet *)skb->cb;
fceaf24a 412
1f5f3a75 413
5b54dac8
HZ
414 packet->q_idx = skb_get_queue_mapping(skb);
415
4d447c9a 416 packet->total_data_buflen = skb->len;
fceaf24a 417
c0eb4540 418 rndis_msg = (struct rndis_message *)skb->head;
b08cc791 419
24476760 420 memset(rndis_msg, 0, RNDIS_AND_PPI_SIZE);
fceaf24a 421
760d1e36 422 isvlan = skb->vlan_tci & VLAN_TAG_PRESENT;
8a00251a
KS
423
424 /* Add the rndis header */
8a00251a
KS
425 rndis_msg->ndis_msg_type = RNDIS_MSG_PACKET;
426 rndis_msg->msg_len = packet->total_data_buflen;
427 rndis_pkt = &rndis_msg->msg.pkt;
428 rndis_pkt->data_offset = sizeof(struct rndis_packet);
429 rndis_pkt->data_len = packet->total_data_buflen;
430 rndis_pkt->per_pkt_info_offset = sizeof(struct rndis_packet);
431
432 rndis_msg_size = RNDIS_MESSAGE_SIZE(struct rndis_packet);
433
307f0995
HZ
434 hash = skb_get_hash_raw(skb);
435 if (hash != 0 && net->real_num_tx_queues > 1) {
436 rndis_msg_size += NDIS_HASH_PPI_SIZE;
437 ppi = init_ppi_data(rndis_msg, NDIS_HASH_PPI_SIZE,
438 NBL_HASH_VALUE);
439 *(u32 *)((void *)ppi + ppi->ppi_offset) = hash;
440 }
441
8a00251a
KS
442 if (isvlan) {
443 struct ndis_pkt_8021q_info *vlan;
444
445 rndis_msg_size += NDIS_VLAN_PPI_SIZE;
446 ppi = init_ppi_data(rndis_msg, NDIS_VLAN_PPI_SIZE,
447 IEEE_8021Q_INFO);
448 vlan = (struct ndis_pkt_8021q_info *)((void *)ppi +
449 ppi->ppi_offset);
760d1e36
KS
450 vlan->vlanid = skb->vlan_tci & VLAN_VID_MASK;
451 vlan->pri = (skb->vlan_tci & VLAN_PRIO_MASK) >>
8a00251a
KS
452 VLAN_PRIO_SHIFT;
453 }
454
08cd04bf
KS
455 net_trans_info = get_net_transport_info(skb, &hdr_offset);
456 if (net_trans_info == TRANSPORT_INFO_NOT_IP)
457 goto do_send;
458
459 /*
460 * Setup the sendside checksum offload only if this is not a
461 * GSO packet.
462 */
463 if (skb_is_gso(skb))
77bf5487 464 goto do_lso;
08cd04bf 465
22041fb0
KS
466 if ((skb->ip_summed == CHECKSUM_NONE) ||
467 (skb->ip_summed == CHECKSUM_UNNECESSARY))
468 goto do_send;
469
08cd04bf
KS
470 rndis_msg_size += NDIS_CSUM_PPI_SIZE;
471 ppi = init_ppi_data(rndis_msg, NDIS_CSUM_PPI_SIZE,
472 TCPIP_CHKSUM_PKTINFO);
473
474 csum_info = (struct ndis_tcp_ip_checksum_info *)((void *)ppi +
475 ppi->ppi_offset);
476
477 if (net_trans_info & (INFO_IPV4 << 16))
478 csum_info->transmit.is_ipv4 = 1;
479 else
480 csum_info->transmit.is_ipv6 = 1;
481
482 if (net_trans_info & INFO_TCP) {
483 csum_info->transmit.tcp_checksum = 1;
484 csum_info->transmit.tcp_header_offset = hdr_offset;
485 } else if (net_trans_info & INFO_UDP) {
af9893a3
KS
486 /* UDP checksum offload is not supported on ws2008r2.
487 * Furthermore, on ws2012 and ws2012r2, there are some
488 * issues with udp checksum offload from Linux guests.
489 * (these are host issues).
490 * For now compute the checksum here.
491 */
492 struct udphdr *uh;
493 u16 udp_len;
494
495 ret = skb_cow_head(skb, 0);
496 if (ret)
497 goto drop;
498
499 uh = udp_hdr(skb);
500 udp_len = ntohs(uh->len);
501 uh->check = 0;
502 uh->check = csum_tcpudp_magic(ip_hdr(skb)->saddr,
503 ip_hdr(skb)->daddr,
504 udp_len, IPPROTO_UDP,
505 csum_partial(uh, udp_len, 0));
506 if (uh->check == 0)
507 uh->check = CSUM_MANGLED_0;
508
509 csum_info->transmit.udp_checksum = 0;
08cd04bf 510 }
77bf5487
KS
511 goto do_send;
512
513do_lso:
514 rndis_msg_size += NDIS_LSO_PPI_SIZE;
515 ppi = init_ppi_data(rndis_msg, NDIS_LSO_PPI_SIZE,
516 TCP_LARGESEND_PKTINFO);
517
518 lso_info = (struct ndis_tcp_lso_info *)((void *)ppi +
519 ppi->ppi_offset);
520
521 lso_info->lso_v2_transmit.type = NDIS_TCP_LARGE_SEND_OFFLOAD_V2_TYPE;
522 if (net_trans_info & (INFO_IPV4 << 16)) {
523 lso_info->lso_v2_transmit.ip_version =
524 NDIS_TCP_LARGE_SEND_OFFLOAD_IPV4;
525 ip_hdr(skb)->tot_len = 0;
526 ip_hdr(skb)->check = 0;
527 tcp_hdr(skb)->check =
528 ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
529 ip_hdr(skb)->daddr, 0, IPPROTO_TCP, 0);
530 } else {
531 lso_info->lso_v2_transmit.ip_version =
532 NDIS_TCP_LARGE_SEND_OFFLOAD_IPV6;
533 ipv6_hdr(skb)->payload_len = 0;
534 tcp_hdr(skb)->check =
535 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
536 &ipv6_hdr(skb)->daddr, 0, IPPROTO_TCP, 0);
537 }
538 lso_info->lso_v2_transmit.tcp_header_offset = hdr_offset;
539 lso_info->lso_v2_transmit.mss = skb_shinfo(skb)->gso_size;
08cd04bf
KS
540
541do_send:
8a00251a
KS
542 /* Start filling in the page buffers with the rndis hdr */
543 rndis_msg->msg_len += rndis_msg_size;
942396b0 544 packet->total_data_buflen = rndis_msg->msg_len;
8a00251a 545 packet->page_buf_cnt = init_page_array(rndis_msg, rndis_msg_size,
a9f2e2d6 546 skb, packet, &pb);
8a00251a 547
3a3d9a0a
KS
548 ret = netvsc_send(net_device_ctx->device_ctx, packet,
549 rndis_msg, &pb, skb);
8a00251a 550
af9893a3 551drop:
02fafbc6 552 if (ret == 0) {
4b02b58b 553 u64_stats_update_begin(&tx_stats->syncp);
7eafd9b4 554 tx_stats->packets++;
555 tx_stats->bytes += skb_length;
4b02b58b 556 u64_stats_update_end(&tx_stats->syncp);
b220f5f9 557 } else {
33be96e4
HZ
558 if (ret != -EAGAIN) {
559 dev_kfree_skb_any(skb);
560 net->stats.tx_dropped++;
561 }
fceaf24a
HJ
562 }
563
33be96e4 564 return (ret == -EAGAIN) ? NETDEV_TX_BUSY : NETDEV_TX_OK;
fceaf24a
HJ
565}
566
3e189519 567/*
02fafbc6
GKH
568 * netvsc_linkstatus_callback - Link up/down notification
569 */
90ef117a 570void netvsc_linkstatus_callback(struct hv_device *device_obj,
3a494e71 571 struct rndis_message *resp)
fceaf24a 572{
3a494e71 573 struct rndis_indicate_status *indicate = &resp->msg.indicate_status;
2ddd5e5f 574 struct net_device *net;
c996edcf 575 struct net_device_context *ndev_ctx;
2ddd5e5f 576 struct netvsc_device *net_device;
27a70af3
VK
577 struct netvsc_reconfig *event;
578 unsigned long flags;
891de74d 579
27a70af3
VK
580 /* Handle link change statuses only */
581 if (indicate->status != RNDIS_STATUS_NETWORK_CHANGE &&
582 indicate->status != RNDIS_STATUS_MEDIA_CONNECT &&
583 indicate->status != RNDIS_STATUS_MEDIA_DISCONNECT)
3a494e71 584 return;
891de74d 585
27a70af3 586 net_device = hv_get_drvdata(device_obj);
2ddd5e5f 587 net = net_device->ndev;
fceaf24a 588
891de74d 589 if (!net || net->reg_state != NETREG_REGISTERED)
fceaf24a 590 return;
fceaf24a 591
891de74d 592 ndev_ctx = netdev_priv(net);
27a70af3
VK
593
594 event = kzalloc(sizeof(*event), GFP_ATOMIC);
595 if (!event)
596 return;
597 event->event = indicate->status;
598
599 spin_lock_irqsave(&ndev_ctx->lock, flags);
600 list_add_tail(&event->list, &ndev_ctx->reconfig_events);
601 spin_unlock_irqrestore(&ndev_ctx->lock, flags);
602
603 schedule_delayed_work(&ndev_ctx->dwork, 0);
fceaf24a
HJ
604}
605
3e189519
HJ
606/*
607 * netvsc_recv_callback - Callback when we receive a packet from the
608 * "wire" on the specified device.
02fafbc6 609 */
f79adf8f 610int netvsc_recv_callback(struct hv_device *device_obj,
e3d605ed 611 struct hv_netvsc_packet *packet,
c4b20c63 612 void **data,
25b85ee8 613 struct ndis_tcp_ip_checksum_info *csum_info,
760d1e36
KS
614 struct vmbus_channel *channel,
615 u16 vlan_tci)
fceaf24a 616{
6f4c4446 617 struct net_device *net;
7eafd9b4 618 struct net_device_context *net_device_ctx;
fceaf24a 619 struct sk_buff *skb;
7eafd9b4 620 struct netvsc_stats *rx_stats;
fceaf24a 621
6f4c4446 622 net = ((struct netvsc_device *)hv_get_drvdata(device_obj))->ndev;
a68f9614 623 if (!net || net->reg_state != NETREG_REGISTERED) {
10082f98 624 return NVSP_STAT_FAIL;
fceaf24a 625 }
7eafd9b4 626 net_device_ctx = netdev_priv(net);
627 rx_stats = this_cpu_ptr(net_device_ctx->rx_stats);
fceaf24a 628
9495c282 629 /* Allocate a skb - TODO direct I/O to pages? */
72a2f5bd 630 skb = netdev_alloc_skb_ip_align(net, packet->total_data_buflen);
9495c282
SH
631 if (unlikely(!skb)) {
632 ++net->stats.rx_dropped;
10082f98 633 return NVSP_STAT_FAIL;
9495c282 634 }
fceaf24a 635
02fafbc6
GKH
636 /*
637 * Copy to skb. This copy is needed here since the memory pointed by
638 * hv_netvsc_packet cannot be deallocated
639 */
c4b20c63 640 memcpy(skb_put(skb, packet->total_data_buflen), *data,
45326342 641 packet->total_data_buflen);
fceaf24a
HJ
642
643 skb->protocol = eth_type_trans(skb, net);
e3d605ed
KS
644 if (csum_info) {
645 /* We only look at the IP checksum here.
646 * Should we be dropping the packet if checksum
647 * failed? How do we deal with other checksums - TCP/UDP?
648 */
649 if (csum_info->receive.ip_checksum_succeeded)
650 skb->ip_summed = CHECKSUM_UNNECESSARY;
651 else
652 skb->ip_summed = CHECKSUM_NONE;
653 }
654
760d1e36 655 if (vlan_tci & VLAN_TAG_PRESENT)
93725cbd 656 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
760d1e36 657 vlan_tci);
fceaf24a 658
25b85ee8 659 skb_record_rx_queue(skb, channel->
e565e803 660 offermsg.offer.sub_channel_index);
5b54dac8 661
4b02b58b 662 u64_stats_update_begin(&rx_stats->syncp);
7eafd9b4 663 rx_stats->packets++;
664 rx_stats->bytes += packet->total_data_buflen;
4b02b58b 665 u64_stats_update_end(&rx_stats->syncp);
9495c282 666
02fafbc6
GKH
667 /*
668 * Pass the skb back up. Network stack will deallocate the skb when it
9495c282
SH
669 * is done.
670 * TODO - use NAPI?
02fafbc6 671 */
9495c282 672 netif_rx(skb);
fceaf24a 673
fceaf24a
HJ
674 return 0;
675}
676
f82f4ad7
SH
677static void netvsc_get_drvinfo(struct net_device *net,
678 struct ethtool_drvinfo *info)
679{
7826d43f 680 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
7826d43f 681 strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
f82f4ad7
SH
682}
683
59995370
AS
684static void netvsc_get_channels(struct net_device *net,
685 struct ethtool_channels *channel)
686{
687 struct net_device_context *net_device_ctx = netdev_priv(net);
688 struct hv_device *dev = net_device_ctx->device_ctx;
689 struct netvsc_device *nvdev = hv_get_drvdata(dev);
690
691 if (nvdev) {
692 channel->max_combined = nvdev->max_chn;
693 channel->combined_count = nvdev->num_chn;
694 }
695}
696
b5960e6e
AS
697static int netvsc_set_channels(struct net_device *net,
698 struct ethtool_channels *channels)
699{
700 struct net_device_context *net_device_ctx = netdev_priv(net);
701 struct hv_device *dev = net_device_ctx->device_ctx;
702 struct netvsc_device *nvdev = hv_get_drvdata(dev);
703 struct netvsc_device_info device_info;
954591b9
AS
704 u32 num_chn;
705 u32 max_chn;
b5960e6e
AS
706 int ret = 0;
707 bool recovering = false;
708
709 if (!nvdev || nvdev->destroy)
710 return -ENODEV;
711
954591b9
AS
712 num_chn = nvdev->num_chn;
713 max_chn = min_t(u32, nvdev->max_chn, num_online_cpus());
714
b5960e6e
AS
715 if (nvdev->nvsp_version < NVSP_PROTOCOL_VERSION_5) {
716 pr_info("vRSS unsupported before NVSP Version 5\n");
717 return -EINVAL;
718 }
719
720 /* We do not support rx, tx, or other */
721 if (!channels ||
722 channels->rx_count ||
723 channels->tx_count ||
724 channels->other_count ||
725 (channels->combined_count < 1))
726 return -EINVAL;
727
728 if (channels->combined_count > max_chn) {
729 pr_info("combined channels too high, using %d\n", max_chn);
730 channels->combined_count = max_chn;
731 }
732
733 ret = netvsc_close(net);
734 if (ret)
735 goto out;
736
737 do_set:
738 nvdev->start_remove = true;
739 rndis_filter_device_remove(dev);
740
741 nvdev->num_chn = channels->combined_count;
742
743 net_device_ctx->device_ctx = dev;
744 hv_set_drvdata(dev, net);
745
746 memset(&device_info, 0, sizeof(device_info));
747 device_info.num_chn = nvdev->num_chn; /* passed to RNDIS */
748 device_info.ring_size = ring_size;
749 device_info.max_num_vrss_chns = max_num_vrss_chns;
750
751 ret = rndis_filter_device_add(dev, &device_info);
752 if (ret) {
753 if (recovering) {
754 netdev_err(net, "unable to add netvsc device (ret %d)\n", ret);
755 return ret;
756 }
757 goto recover;
758 }
759
760 nvdev = hv_get_drvdata(dev);
761
762 ret = netif_set_real_num_tx_queues(net, nvdev->num_chn);
763 if (ret) {
764 if (recovering) {
765 netdev_err(net, "could not set tx queue count (ret %d)\n", ret);
766 return ret;
767 }
768 goto recover;
769 }
770
771 ret = netif_set_real_num_rx_queues(net, nvdev->num_chn);
772 if (ret) {
773 if (recovering) {
774 netdev_err(net, "could not set rx queue count (ret %d)\n", ret);
775 return ret;
776 }
777 goto recover;
778 }
779
780 out:
781 netvsc_open(net);
782
783 return ret;
784
785 recover:
786 /* If the above failed, we attempt to recover through the same
787 * process but with the original number of channels.
788 */
789 netdev_err(net, "could not set channels, recovering\n");
790 recovering = true;
791 channels->combined_count = num_chn;
792 goto do_set;
793}
794
4d447c9a
HZ
795static int netvsc_change_mtu(struct net_device *ndev, int mtu)
796{
797 struct net_device_context *ndevctx = netdev_priv(ndev);
798 struct hv_device *hdev = ndevctx->device_ctx;
799 struct netvsc_device *nvdev = hv_get_drvdata(hdev);
800 struct netvsc_device_info device_info;
801 int limit = ETH_DATA_LEN;
2de8530b 802 int ret = 0;
4d447c9a
HZ
803
804 if (nvdev == NULL || nvdev->destroy)
805 return -ENODEV;
806
a1eabb01 807 if (nvdev->nvsp_version >= NVSP_PROTOCOL_VERSION_2)
4d3c9d37 808 limit = NETVSC_MTU - ETH_HLEN;
4d447c9a 809
f9cbce34 810 if (mtu < NETVSC_MTU_MIN || mtu > limit)
4d447c9a
HZ
811 return -EINVAL;
812
2de8530b
HZ
813 ret = netvsc_close(ndev);
814 if (ret)
815 goto out;
816
4d447c9a 817 nvdev->start_remove = true;
4d447c9a
HZ
818 rndis_filter_device_remove(hdev);
819
820 ndev->mtu = mtu;
821
822 ndevctx->device_ctx = hdev;
823 hv_set_drvdata(hdev, ndev);
8ebdcc52
AS
824
825 memset(&device_info, 0, sizeof(device_info));
4d447c9a 826 device_info.ring_size = ring_size;
b5960e6e 827 device_info.num_chn = nvdev->num_chn;
e01ec219 828 device_info.max_num_vrss_chns = max_num_vrss_chns;
4d447c9a 829 rndis_filter_device_add(hdev, &device_info);
4d447c9a 830
2de8530b
HZ
831out:
832 netvsc_open(ndev);
833
834 return ret;
4d447c9a
HZ
835}
836
7eafd9b4 837static struct rtnl_link_stats64 *netvsc_get_stats64(struct net_device *net,
838 struct rtnl_link_stats64 *t)
839{
840 struct net_device_context *ndev_ctx = netdev_priv(net);
841 int cpu;
842
843 for_each_possible_cpu(cpu) {
844 struct netvsc_stats *tx_stats = per_cpu_ptr(ndev_ctx->tx_stats,
845 cpu);
846 struct netvsc_stats *rx_stats = per_cpu_ptr(ndev_ctx->rx_stats,
847 cpu);
848 u64 tx_packets, tx_bytes, rx_packets, rx_bytes;
849 unsigned int start;
850
851 do {
4b02b58b 852 start = u64_stats_fetch_begin_irq(&tx_stats->syncp);
7eafd9b4 853 tx_packets = tx_stats->packets;
854 tx_bytes = tx_stats->bytes;
4b02b58b 855 } while (u64_stats_fetch_retry_irq(&tx_stats->syncp, start));
7eafd9b4 856
857 do {
4b02b58b 858 start = u64_stats_fetch_begin_irq(&rx_stats->syncp);
7eafd9b4 859 rx_packets = rx_stats->packets;
860 rx_bytes = rx_stats->bytes;
4b02b58b 861 } while (u64_stats_fetch_retry_irq(&rx_stats->syncp, start));
7eafd9b4 862
863 t->tx_bytes += tx_bytes;
864 t->tx_packets += tx_packets;
865 t->rx_bytes += rx_bytes;
866 t->rx_packets += rx_packets;
867 }
868
869 t->tx_dropped = net->stats.tx_dropped;
870 t->tx_errors = net->stats.tx_dropped;
871
872 t->rx_dropped = net->stats.rx_dropped;
873 t->rx_errors = net->stats.rx_errors;
874
875 return t;
876}
1ce09e89
HZ
877
878static int netvsc_set_mac_addr(struct net_device *ndev, void *p)
879{
880 struct net_device_context *ndevctx = netdev_priv(ndev);
881 struct hv_device *hdev = ndevctx->device_ctx;
882 struct sockaddr *addr = p;
9a4c831e 883 char save_adr[ETH_ALEN];
1ce09e89
HZ
884 unsigned char save_aatype;
885 int err;
886
887 memcpy(save_adr, ndev->dev_addr, ETH_ALEN);
888 save_aatype = ndev->addr_assign_type;
889
890 err = eth_mac_addr(ndev, p);
891 if (err != 0)
892 return err;
893
894 err = rndis_filter_set_device_mac(hdev, addr->sa_data);
895 if (err != 0) {
896 /* roll back to saved MAC */
897 memcpy(ndev->dev_addr, save_adr, ETH_ALEN);
898 ndev->addr_assign_type = save_aatype;
899 }
900
901 return err;
902}
903
316158fe
RW
904#ifdef CONFIG_NET_POLL_CONTROLLER
905static void netvsc_poll_controller(struct net_device *net)
906{
907 /* As netvsc_start_xmit() works synchronous we don't have to
908 * trigger anything here.
909 */
910}
911#endif
1ce09e89 912
f82f4ad7
SH
913static const struct ethtool_ops ethtool_ops = {
914 .get_drvinfo = netvsc_get_drvinfo,
f82f4ad7 915 .get_link = ethtool_op_get_link,
59995370 916 .get_channels = netvsc_get_channels,
b5960e6e 917 .set_channels = netvsc_set_channels,
f82f4ad7
SH
918};
919
df2fff28
GKH
920static const struct net_device_ops device_ops = {
921 .ndo_open = netvsc_open,
922 .ndo_stop = netvsc_close,
923 .ndo_start_xmit = netvsc_start_xmit,
afc4b13d 924 .ndo_set_rx_mode = netvsc_set_multicast_list,
4d447c9a 925 .ndo_change_mtu = netvsc_change_mtu,
b681b588 926 .ndo_validate_addr = eth_validate_addr,
1ce09e89 927 .ndo_set_mac_address = netvsc_set_mac_addr,
5b54dac8 928 .ndo_select_queue = netvsc_select_queue,
7eafd9b4 929 .ndo_get_stats64 = netvsc_get_stats64,
316158fe
RW
930#ifdef CONFIG_NET_POLL_CONTROLLER
931 .ndo_poll_controller = netvsc_poll_controller,
932#endif
df2fff28
GKH
933};
934
c996edcf 935/*
27a70af3
VK
936 * Handle link status changes. For RNDIS_STATUS_NETWORK_CHANGE emulate link
937 * down/up sequence. In case of RNDIS_STATUS_MEDIA_CONNECT when carrier is
938 * present send GARP packet to network peers with netif_notify_peers().
c996edcf 939 */
891de74d 940static void netvsc_link_change(struct work_struct *w)
c996edcf
HZ
941{
942 struct net_device_context *ndev_ctx;
943 struct net_device *net;
2ddd5e5f 944 struct netvsc_device *net_device;
891de74d 945 struct rndis_device *rdev;
27a70af3
VK
946 struct netvsc_reconfig *event = NULL;
947 bool notify = false, reschedule = false;
948 unsigned long flags, next_reconfig, delay;
c996edcf 949
122a5f64 950 ndev_ctx = container_of(w, struct net_device_context, dwork.work);
2ddd5e5f 951 net_device = hv_get_drvdata(ndev_ctx->device_ctx);
891de74d 952 rdev = net_device->extension;
2ddd5e5f 953 net = net_device->ndev;
891de74d 954
27a70af3
VK
955 next_reconfig = ndev_ctx->last_reconfig + LINKCHANGE_INT;
956 if (time_is_after_jiffies(next_reconfig)) {
957 /* link_watch only sends one notification with current state
958 * per second, avoid doing reconfig more frequently. Handle
959 * wrap around.
960 */
961 delay = next_reconfig - jiffies;
962 delay = delay < LINKCHANGE_INT ? delay : LINKCHANGE_INT;
963 schedule_delayed_work(&ndev_ctx->dwork, delay);
964 return;
965 }
966 ndev_ctx->last_reconfig = jiffies;
967
968 spin_lock_irqsave(&ndev_ctx->lock, flags);
969 if (!list_empty(&ndev_ctx->reconfig_events)) {
970 event = list_first_entry(&ndev_ctx->reconfig_events,
971 struct netvsc_reconfig, list);
972 list_del(&event->list);
973 reschedule = !list_empty(&ndev_ctx->reconfig_events);
974 }
975 spin_unlock_irqrestore(&ndev_ctx->lock, flags);
976
977 if (!event)
978 return;
979
980 rtnl_lock();
981
982 switch (event->event) {
983 /* Only the following events are possible due to the check in
984 * netvsc_linkstatus_callback()
985 */
986 case RNDIS_STATUS_MEDIA_CONNECT:
987 if (rdev->link_state) {
988 rdev->link_state = false;
989 netif_carrier_on(net);
990 netif_tx_wake_all_queues(net);
991 } else {
992 notify = true;
993 }
994 kfree(event);
995 break;
996 case RNDIS_STATUS_MEDIA_DISCONNECT:
997 if (!rdev->link_state) {
998 rdev->link_state = true;
999 netif_carrier_off(net);
1000 netif_tx_stop_all_queues(net);
1001 }
1002 kfree(event);
1003 break;
1004 case RNDIS_STATUS_NETWORK_CHANGE:
1005 /* Only makes sense if carrier is present */
1006 if (!rdev->link_state) {
1007 rdev->link_state = true;
1008 netif_carrier_off(net);
1009 netif_tx_stop_all_queues(net);
1010 event->event = RNDIS_STATUS_MEDIA_CONNECT;
1011 spin_lock_irqsave(&ndev_ctx->lock, flags);
1012 list_add_tail(&event->list, &ndev_ctx->reconfig_events);
1013 spin_unlock_irqrestore(&ndev_ctx->lock, flags);
1014 reschedule = true;
3a494e71 1015 }
27a70af3 1016 break;
891de74d
HZ
1017 }
1018
1019 rtnl_unlock();
1020
1021 if (notify)
1022 netdev_notify_peers(net);
27a70af3
VK
1023
1024 /* link_watch only sends one notification with current state per
1025 * second, handle next reconfig event in 2 seconds.
1026 */
1027 if (reschedule)
1028 schedule_delayed_work(&ndev_ctx->dwork, LINKCHANGE_INT);
c996edcf
HZ
1029}
1030
7eafd9b4 1031static void netvsc_free_netdev(struct net_device *netdev)
1032{
1033 struct net_device_context *net_device_ctx = netdev_priv(netdev);
1034
1035 free_percpu(net_device_ctx->tx_stats);
1036 free_percpu(net_device_ctx->rx_stats);
1037 free_netdev(netdev);
1038}
c996edcf 1039
84946899
S
1040static int netvsc_probe(struct hv_device *dev,
1041 const struct hv_vmbus_device_id *dev_id)
df2fff28 1042{
df2fff28
GKH
1043 struct net_device *net = NULL;
1044 struct net_device_context *net_device_ctx;
1045 struct netvsc_device_info device_info;
5b54dac8 1046 struct netvsc_device *nvdev;
df2fff28
GKH
1047 int ret;
1048
5b54dac8
HZ
1049 net = alloc_etherdev_mq(sizeof(struct net_device_context),
1050 num_online_cpus());
df2fff28 1051 if (!net)
51a805d0 1052 return -ENOMEM;
df2fff28 1053
1b07da51
HZ
1054 netif_carrier_off(net);
1055
df2fff28 1056 net_device_ctx = netdev_priv(net);
9efd21e1 1057 net_device_ctx->device_ctx = dev;
3f300ff4
SX
1058 net_device_ctx->msg_enable = netif_msg_init(debug, default_msg);
1059 if (netif_msg_probe(net_device_ctx))
1060 netdev_dbg(net, "netvsc msg_enable: %d\n",
1061 net_device_ctx->msg_enable);
1062
7eafd9b4 1063 net_device_ctx->tx_stats = netdev_alloc_pcpu_stats(struct netvsc_stats);
1064 if (!net_device_ctx->tx_stats) {
1065 free_netdev(net);
1066 return -ENOMEM;
1067 }
1068 net_device_ctx->rx_stats = netdev_alloc_pcpu_stats(struct netvsc_stats);
1069 if (!net_device_ctx->rx_stats) {
1070 free_percpu(net_device_ctx->tx_stats);
1071 free_netdev(net);
1072 return -ENOMEM;
1073 }
1074
2ddd5e5f 1075 hv_set_drvdata(dev, net);
891de74d 1076 INIT_DELAYED_WORK(&net_device_ctx->dwork, netvsc_link_change);
792df872 1077 INIT_WORK(&net_device_ctx->work, do_set_multicast);
df2fff28 1078
27a70af3
VK
1079 spin_lock_init(&net_device_ctx->lock);
1080 INIT_LIST_HEAD(&net_device_ctx->reconfig_events);
1081
df2fff28
GKH
1082 net->netdev_ops = &device_ops;
1083
77bf5487
KS
1084 net->hw_features = NETIF_F_RXCSUM | NETIF_F_SG | NETIF_F_IP_CSUM |
1085 NETIF_F_TSO;
08cd04bf 1086 net->features = NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_SG | NETIF_F_RXCSUM |
77bf5487 1087 NETIF_F_IP_CSUM | NETIF_F_TSO;
6048718d 1088
7ad24ea4 1089 net->ethtool_ops = &ethtool_ops;
9efd21e1 1090 SET_NETDEV_DEV(net, &dev->device);
df2fff28 1091
692e084e 1092 /* Notify the netvsc driver of the new device */
8ebdcc52 1093 memset(&device_info, 0, sizeof(device_info));
692e084e 1094 device_info.ring_size = ring_size;
e01ec219 1095 device_info.max_num_vrss_chns = max_num_vrss_chns;
692e084e
HZ
1096 ret = rndis_filter_device_add(dev, &device_info);
1097 if (ret != 0) {
1098 netdev_err(net, "unable to add netvsc device (ret %d)\n", ret);
7eafd9b4 1099 netvsc_free_netdev(net);
2ddd5e5f 1100 hv_set_drvdata(dev, NULL);
692e084e 1101 return ret;
df2fff28 1102 }
692e084e
HZ
1103 memcpy(net->dev_addr, device_info.mac_adr, ETH_ALEN);
1104
5b54dac8
HZ
1105 nvdev = hv_get_drvdata(dev);
1106 netif_set_real_num_tx_queues(net, nvdev->num_chn);
1107 netif_set_real_num_rx_queues(net, nvdev->num_chn);
5b54dac8 1108
a68f9614
HZ
1109 ret = register_netdev(net);
1110 if (ret != 0) {
1111 pr_err("Unable to register netdev.\n");
1112 rndis_filter_device_remove(dev);
7eafd9b4 1113 netvsc_free_netdev(net);
a68f9614
HZ
1114 }
1115
df2fff28
GKH
1116 return ret;
1117}
1118
415b023a 1119static int netvsc_remove(struct hv_device *dev)
df2fff28 1120{
2ddd5e5f 1121 struct net_device *net;
122a5f64 1122 struct net_device_context *ndev_ctx;
2ddd5e5f
S
1123 struct netvsc_device *net_device;
1124
1125 net_device = hv_get_drvdata(dev);
1126 net = net_device->ndev;
df2fff28 1127
df2fff28 1128 if (net == NULL) {
415b023a 1129 dev_err(&dev->device, "No net device to remove\n");
df2fff28
GKH
1130 return 0;
1131 }
1132
4d447c9a
HZ
1133 net_device->start_remove = true;
1134
122a5f64
HZ
1135 ndev_ctx = netdev_priv(net);
1136 cancel_delayed_work_sync(&ndev_ctx->dwork);
792df872 1137 cancel_work_sync(&ndev_ctx->work);
122a5f64 1138
df2fff28 1139 /* Stop outbound asap */
0a282538 1140 netif_tx_disable(net);
df2fff28
GKH
1141
1142 unregister_netdev(net);
1143
1144 /*
1145 * Call to the vsc driver to let it know that the device is being
1146 * removed
1147 */
df06bcff 1148 rndis_filter_device_remove(dev);
df2fff28 1149
7eafd9b4 1150 netvsc_free_netdev(net);
df06bcff 1151 return 0;
df2fff28
GKH
1152}
1153
345c4cc3 1154static const struct hv_vmbus_device_id id_table[] = {
c45cf2d4 1155 /* Network guid */
8f505944 1156 { HV_NIC_GUID, },
c45cf2d4 1157 { },
345c4cc3
S
1158};
1159
1160MODULE_DEVICE_TABLE(vmbus, id_table);
1161
f1542a66 1162/* The one and only one */
fde0ef9b 1163static struct hv_driver netvsc_drv = {
d31b20fc 1164 .name = KBUILD_MODNAME,
345c4cc3 1165 .id_table = id_table,
fde0ef9b
S
1166 .probe = netvsc_probe,
1167 .remove = netvsc_remove,
d4890970 1168};
f1542a66 1169
a9869c94 1170static void __exit netvsc_drv_exit(void)
fceaf24a 1171{
768fa219 1172 vmbus_driver_unregister(&netvsc_drv);
fceaf24a
HJ
1173}
1174
1fde28cf 1175static int __init netvsc_drv_init(void)
df2fff28 1176{
fa85a6c2
HZ
1177 if (ring_size < RING_SIZE_MIN) {
1178 ring_size = RING_SIZE_MIN;
1179 pr_info("Increased ring_size to %d (min allowed)\n",
1180 ring_size);
1181 }
768fa219 1182 return vmbus_driver_register(&netvsc_drv);
df2fff28
GKH
1183}
1184
26c14cc1 1185MODULE_LICENSE("GPL");
7880fc54 1186MODULE_DESCRIPTION("Microsoft Hyper-V network driver");
fceaf24a 1187
1fde28cf 1188module_init(netvsc_drv_init);
a9869c94 1189module_exit(netvsc_drv_exit);
This page took 0.622303 seconds and 5 git commands to generate.