]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/staging/hv/netvsc_drv.c
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[mirror_ubuntu-bionic-kernel.git] / drivers / staging / hv / 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
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
16 *
17 * Authors:
d0e94d17 18 * Haiyang Zhang <haiyangz@microsoft.com>
fceaf24a 19 * Hank Janssen <hjanssen@microsoft.com>
fceaf24a 20 */
fceaf24a
HJ
21#include <linux/init.h>
22#include <linux/module.h>
23#include <linux/highmem.h>
24#include <linux/device.h>
fceaf24a 25#include <linux/io.h>
fceaf24a
HJ
26#include <linux/delay.h>
27#include <linux/netdevice.h>
28#include <linux/inetdevice.h>
29#include <linux/etherdevice.h>
30#include <linux/skbuff.h>
31#include <linux/in.h>
5a0e3ad6 32#include <linux/slab.h>
fceaf24a
HJ
33#include <net/arp.h>
34#include <net/route.h>
35#include <net/sock.h>
36#include <net/pkt_sched.h>
4983b39a 37#include "osd.h"
645954c5 38#include "logging.h"
26c14cc1 39#include "VersionInfo.h"
870cde80 40#include "vmbus.h"
cc211812 41#include "NetVscApi.h"
fceaf24a 42
fceaf24a 43struct net_device_context {
02fafbc6 44 /* point back to our device context */
f916a34d 45 struct vm_device *device_ctx;
fceaf24a
HJ
46 struct net_device_stats stats;
47};
48
49struct netvsc_driver_context {
454f18a9 50 /* !! These must be the first 2 fields !! */
7e23a6e9 51 /* Which is a bug FIXME! */
02fafbc6 52 struct driver_context drv_ctx;
7e23a6e9 53 struct netvsc_driver drv_obj;
fceaf24a
HJ
54};
55
fceaf24a
HJ
56static int netvsc_ringbuffer_size = NETVSC_DEVICE_RING_BUFFER_SIZE;
57
454f18a9 58/* The one and only one */
fceaf24a
HJ
59static struct netvsc_driver_context g_netvsc_drv;
60
fceaf24a
HJ
61static struct net_device_stats *netvsc_get_stats(struct net_device *net)
62{
63 struct net_device_context *net_device_ctx = netdev_priv(net);
64
65 return &net_device_ctx->stats;
66}
67
4e9bfefa 68static void netvsc_set_multicast_list(struct net_device *net)
fceaf24a
HJ
69{
70}
71
fceaf24a
HJ
72static int netvsc_open(struct net_device *net)
73{
fceaf24a 74 struct net_device_context *net_device_ctx = netdev_priv(net);
3d3b5518 75 struct hv_device *device_obj = &net_device_ctx->device_ctx->device_obj;
02fafbc6 76 int ret = 0;
fceaf24a
HJ
77
78 DPRINT_ENTER(NETVSC_DRV);
79
02fafbc6
GKH
80 if (netif_carrier_ok(net)) {
81 memset(&net_device_ctx->stats, 0,
82 sizeof(struct net_device_stats));
fceaf24a 83
454f18a9 84 /* Open up the device */
2d075346 85 ret = RndisFilterOnOpen(device_obj);
02fafbc6
GKH
86 if (ret != 0) {
87 DPRINT_ERR(NETVSC_DRV,
88 "unable to open device (ret %d).", ret);
fceaf24a
HJ
89 return ret;
90 }
91
92 netif_start_queue(net);
02fafbc6 93 } else {
fceaf24a
HJ
94 DPRINT_ERR(NETVSC_DRV, "unable to open device...link is down.");
95 }
96
97 DPRINT_EXIT(NETVSC_DRV);
98 return ret;
99}
100
fceaf24a
HJ
101static int netvsc_close(struct net_device *net)
102{
fceaf24a 103 struct net_device_context *net_device_ctx = netdev_priv(net);
3d3b5518 104 struct hv_device *device_obj = &net_device_ctx->device_ctx->device_obj;
02fafbc6 105 int ret;
fceaf24a
HJ
106
107 DPRINT_ENTER(NETVSC_DRV);
108
109 netif_stop_queue(net);
110
4f28900b 111 ret = RndisFilterOnClose(device_obj);
fceaf24a 112 if (ret != 0)
fceaf24a 113 DPRINT_ERR(NETVSC_DRV, "unable to close device (ret %d).", ret);
fceaf24a
HJ
114
115 DPRINT_EXIT(NETVSC_DRV);
116
117 return ret;
118}
119
fceaf24a
HJ
120static void netvsc_xmit_completion(void *context)
121{
4193d4f4 122 struct hv_netvsc_packet *packet = (struct hv_netvsc_packet *)context;
02fafbc6
GKH
123 struct sk_buff *skb = (struct sk_buff *)
124 (unsigned long)packet->Completion.Send.SendCompletionTid;
125 struct net_device *net;
fceaf24a
HJ
126
127 DPRINT_ENTER(NETVSC_DRV);
128
129 kfree(packet);
130
02fafbc6 131 if (skb) {
fceaf24a 132 net = skb->dev;
fceaf24a
HJ
133 dev_kfree_skb_any(skb);
134
02fafbc6
GKH
135 if (netif_queue_stopped(net)) {
136 DPRINT_INFO(NETVSC_DRV, "net device (%p) waking up...",
137 net);
fceaf24a
HJ
138
139 netif_wake_queue(net);
140 }
141 }
142
143 DPRINT_EXIT(NETVSC_DRV);
144}
145
02fafbc6 146static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net)
fceaf24a 147{
fceaf24a 148 struct net_device_context *net_device_ctx = netdev_priv(net);
02fafbc6
GKH
149 struct driver_context *driver_ctx =
150 driver_to_driver_context(net_device_ctx->device_ctx->device.driver);
151 struct netvsc_driver_context *net_drv_ctx =
152 (struct netvsc_driver_context *)driver_ctx;
7e23a6e9 153 struct netvsc_driver *net_drv_obj = &net_drv_ctx->drv_obj;
4193d4f4 154 struct hv_netvsc_packet *packet;
02fafbc6
GKH
155 int i;
156 int ret;
fceaf24a 157 int num_frags;
02fafbc6 158 int retries = 0;
fceaf24a
HJ
159
160 DPRINT_ENTER(NETVSC_DRV);
161
454f18a9 162 /* Support only 1 chain of frags */
fceaf24a
HJ
163 ASSERT(skb_shinfo(skb)->frag_list == NULL);
164 ASSERT(skb->dev == net);
165
02fafbc6
GKH
166 DPRINT_DBG(NETVSC_DRV, "xmit packet - len %d data_len %d",
167 skb->len, skb->data_len);
fceaf24a 168
454f18a9 169 /* Add 1 for skb->data and any additional ones requested */
02fafbc6
GKH
170 num_frags = skb_shinfo(skb)->nr_frags + 1 +
171 net_drv_obj->AdditionalRequestPageBufferCount;
fceaf24a 172
454f18a9 173 /* Allocate a netvsc packet based on # of frags. */
02fafbc6
GKH
174 packet = kzalloc(sizeof(struct hv_netvsc_packet) +
175 (num_frags * sizeof(struct hv_page_buffer)) +
176 net_drv_obj->RequestExtSize, GFP_ATOMIC);
177 if (!packet) {
4193d4f4 178 DPRINT_ERR(NETVSC_DRV, "unable to allocate hv_netvsc_packet");
fceaf24a
HJ
179 return -1;
180 }
181
02fafbc6
GKH
182 packet->Extension = (void *)(unsigned long)packet +
183 sizeof(struct hv_netvsc_packet) +
184 (num_frags * sizeof(struct hv_page_buffer));
fceaf24a 185
454f18a9 186 /* Setup the rndis header */
fceaf24a
HJ
187 packet->PageBufferCount = num_frags;
188
454f18a9
BP
189 /* TODO: Flush all write buffers/ memory fence ??? */
190 /* wmb(); */
fceaf24a 191
454f18a9 192 /* Initialize it from the skb */
fceaf24a
HJ
193 ASSERT(skb->data);
194 packet->TotalDataBufferLength = skb->len;
195
02fafbc6
GKH
196 /*
197 * Start filling in the page buffers starting at
198 * AdditionalRequestPageBufferCount offset
199 */
200 packet->PageBuffers[net_drv_obj->AdditionalRequestPageBufferCount].Pfn = virt_to_phys(skb->data) >> PAGE_SHIFT;
201 packet->PageBuffers[net_drv_obj->AdditionalRequestPageBufferCount].Offset = (unsigned long)skb->data & (PAGE_SIZE - 1);
202 packet->PageBuffers[net_drv_obj->AdditionalRequestPageBufferCount].Length = skb->len - skb->data_len;
fceaf24a
HJ
203
204 ASSERT((skb->len - skb->data_len) <= PAGE_SIZE);
205
02fafbc6
GKH
206 for (i = net_drv_obj->AdditionalRequestPageBufferCount + 1;
207 i < num_frags; i++) {
208 packet->PageBuffers[i].Pfn =
209 page_to_pfn(skb_shinfo(skb)->frags[i-(net_drv_obj->AdditionalRequestPageBufferCount+1)].page);
210 packet->PageBuffers[i].Offset =
211 skb_shinfo(skb)->frags[i-(net_drv_obj->AdditionalRequestPageBufferCount+1)].page_offset;
212 packet->PageBuffers[i].Length =
213 skb_shinfo(skb)->frags[i-(net_drv_obj->AdditionalRequestPageBufferCount+1)].size;
fceaf24a
HJ
214 }
215
454f18a9 216 /* Set the completion routine */
fceaf24a
HJ
217 packet->Completion.Send.OnSendCompletion = netvsc_xmit_completion;
218 packet->Completion.Send.SendCompletionContext = packet;
c4b0bc94 219 packet->Completion.Send.SendCompletionTid = (unsigned long)skb;
fceaf24a
HJ
220
221retry_send:
02fafbc6
GKH
222 ret = net_drv_obj->OnSend(&net_device_ctx->device_ctx->device_obj,
223 packet);
fceaf24a 224
02fafbc6 225 if (ret == 0) {
fceaf24a
HJ
226 ret = NETDEV_TX_OK;
227 net_device_ctx->stats.tx_bytes += skb->len;
228 net_device_ctx->stats.tx_packets++;
02fafbc6 229 } else {
fceaf24a 230 retries++;
02fafbc6
GKH
231 if (retries < 4) {
232 DPRINT_ERR(NETVSC_DRV, "unable to send..."
233 "retrying %d...", retries);
fceaf24a
HJ
234 udelay(100);
235 goto retry_send;
236 }
237
454f18a9 238 /* no more room or we are shutting down */
02fafbc6
GKH
239 DPRINT_ERR(NETVSC_DRV, "unable to send (%d)..."
240 "marking net device (%p) busy", ret, net);
fceaf24a
HJ
241 DPRINT_INFO(NETVSC_DRV, "net device (%p) stopping", net);
242
243 ret = NETDEV_TX_BUSY;
244 net_device_ctx->stats.tx_dropped++;
245
246 netif_stop_queue(net);
247
02fafbc6
GKH
248 /*
249 * Null it since the caller will free it instead of the
250 * completion routine
251 */
fceaf24a
HJ
252 packet->Completion.Send.SendCompletionTid = 0;
253
02fafbc6
GKH
254 /*
255 * Release the resources since we will not get any send
256 * completion
257 */
258 netvsc_xmit_completion((void *)packet);
fceaf24a
HJ
259 }
260
02fafbc6
GKH
261 DPRINT_DBG(NETVSC_DRV, "# of xmits %lu total size %lu",
262 net_device_ctx->stats.tx_packets,
263 net_device_ctx->stats.tx_bytes);
fceaf24a
HJ
264
265 DPRINT_EXIT(NETVSC_DRV);
266 return ret;
267}
268
02fafbc6
GKH
269/**
270 * netvsc_linkstatus_callback - Link up/down notification
271 */
272static void netvsc_linkstatus_callback(struct hv_device *device_obj,
273 unsigned int status)
fceaf24a 274{
f916a34d 275 struct vm_device *device_ctx = to_vm_device(device_obj);
02fafbc6 276 struct net_device *net = dev_get_drvdata(&device_ctx->device);
fceaf24a
HJ
277
278 DPRINT_ENTER(NETVSC_DRV);
279
02fafbc6
GKH
280 if (!net) {
281 DPRINT_ERR(NETVSC_DRV, "got link status but net device "
282 "not initialized yet");
fceaf24a
HJ
283 return;
284 }
285
02fafbc6 286 if (status == 1) {
fceaf24a
HJ
287 netif_carrier_on(net);
288 netif_wake_queue(net);
02fafbc6 289 } else {
fceaf24a
HJ
290 netif_carrier_off(net);
291 netif_stop_queue(net);
292 }
293 DPRINT_EXIT(NETVSC_DRV);
294}
295
02fafbc6
GKH
296/**
297 * netvsc_recv_callback - Callback when we receive a packet from the "wire" on the specified device.
298 */
299static int netvsc_recv_callback(struct hv_device *device_obj,
300 struct hv_netvsc_packet *packet)
fceaf24a 301{
f916a34d 302 struct vm_device *device_ctx = to_vm_device(device_obj);
621d7fb7 303 struct net_device *net = dev_get_drvdata(&device_ctx->device);
fceaf24a 304 struct net_device_context *net_device_ctx;
fceaf24a
HJ
305 struct sk_buff *skb;
306 void *data;
02fafbc6
GKH
307 int ret;
308 int i;
fceaf24a
HJ
309 unsigned long flags;
310
311 DPRINT_ENTER(NETVSC_DRV);
312
02fafbc6
GKH
313 if (!net) {
314 DPRINT_ERR(NETVSC_DRV, "got receive callback but net device "
315 "not initialized yet");
fceaf24a
HJ
316 return 0;
317 }
318
319 net_device_ctx = netdev_priv(net);
320
454f18a9 321 /* Allocate a skb - TODO preallocate this */
02fafbc6
GKH
322 /* Pad 2-bytes to align IP header to 16 bytes */
323 skb = dev_alloc_skb(packet->TotalDataBufferLength + 2);
fceaf24a
HJ
324 ASSERT(skb);
325 skb_reserve(skb, 2);
326 skb->dev = net;
327
454f18a9 328 /* for kmap_atomic */
fceaf24a
HJ
329 local_irq_save(flags);
330
02fafbc6
GKH
331 /*
332 * Copy to skb. This copy is needed here since the memory pointed by
333 * hv_netvsc_packet cannot be deallocated
334 */
335 for (i = 0; i < packet->PageBufferCount; i++) {
336 data = kmap_atomic(pfn_to_page(packet->PageBuffers[i].Pfn),
337 KM_IRQ1);
338 data = (void *)(unsigned long)data +
339 packet->PageBuffers[i].Offset;
340
341 memcpy(skb_put(skb, packet->PageBuffers[i].Length), data,
342 packet->PageBuffers[i].Length);
343
344 kunmap_atomic((void *)((unsigned long)data -
345 packet->PageBuffers[i].Offset), KM_IRQ1);
fceaf24a
HJ
346 }
347
348 local_irq_restore(flags);
349
350 skb->protocol = eth_type_trans(skb, net);
351
352 skb->ip_summed = CHECKSUM_NONE;
353
02fafbc6
GKH
354 /*
355 * Pass the skb back up. Network stack will deallocate the skb when it
356 * is done
357 */
fceaf24a
HJ
358 ret = netif_rx(skb);
359
02fafbc6 360 switch (ret) {
fceaf24a
HJ
361 case NET_RX_DROP:
362 net_device_ctx->stats.rx_dropped++;
363 break;
364 default:
365 net_device_ctx->stats.rx_packets++;
366 net_device_ctx->stats.rx_bytes += skb->len;
367 break;
368
369 }
02fafbc6
GKH
370 DPRINT_DBG(NETVSC_DRV, "# of recvs %lu total size %lu",
371 net_device_ctx->stats.rx_packets,
372 net_device_ctx->stats.rx_bytes);
fceaf24a
HJ
373
374 DPRINT_EXIT(NETVSC_DRV);
375
376 return 0;
377}
378
df2fff28
GKH
379static const struct net_device_ops device_ops = {
380 .ndo_open = netvsc_open,
381 .ndo_stop = netvsc_close,
382 .ndo_start_xmit = netvsc_start_xmit,
383 .ndo_get_stats = netvsc_get_stats,
384 .ndo_set_multicast_list = netvsc_set_multicast_list,
385};
386
387static int netvsc_probe(struct device *device)
388{
389 struct driver_context *driver_ctx =
390 driver_to_driver_context(device->driver);
391 struct netvsc_driver_context *net_drv_ctx =
392 (struct netvsc_driver_context *)driver_ctx;
393 struct netvsc_driver *net_drv_obj = &net_drv_ctx->drv_obj;
f916a34d 394 struct vm_device *device_ctx = device_to_vm_device(device);
df2fff28
GKH
395 struct hv_device *device_obj = &device_ctx->device_obj;
396 struct net_device *net = NULL;
397 struct net_device_context *net_device_ctx;
398 struct netvsc_device_info device_info;
399 int ret;
400
401 DPRINT_ENTER(NETVSC_DRV);
402
403 if (!net_drv_obj->Base.OnDeviceAdd)
404 return -1;
405
406 net = alloc_netdev(sizeof(struct net_device_context), "seth%d",
407 ether_setup);
408 if (!net)
409 return -1;
410
411 /* Set initial state */
412 netif_carrier_off(net);
413 netif_stop_queue(net);
414
415 net_device_ctx = netdev_priv(net);
416 net_device_ctx->device_ctx = device_ctx;
417 dev_set_drvdata(device, net);
418
419 /* Notify the netvsc driver of the new device */
420 ret = net_drv_obj->Base.OnDeviceAdd(device_obj, &device_info);
421 if (ret != 0) {
422 free_netdev(net);
423 dev_set_drvdata(device, NULL);
424
425 DPRINT_ERR(NETVSC_DRV, "unable to add netvsc device (ret %d)",
426 ret);
427 return ret;
428 }
429
430 /*
431 * If carrier is still off ie we did not get a link status callback,
432 * update it if necessary
433 */
434 /*
435 * FIXME: We should use a atomic or test/set instead to avoid getting
436 * out of sync with the device's link status
437 */
438 if (!netif_carrier_ok(net))
439 if (!device_info.LinkState)
440 netif_carrier_on(net);
441
442 memcpy(net->dev_addr, device_info.MacAddr, ETH_ALEN);
443
444 net->netdev_ops = &device_ops;
445
446 SET_NETDEV_DEV(net, device);
447
448 ret = register_netdev(net);
449 if (ret != 0) {
450 /* Remove the device and release the resource */
451 net_drv_obj->Base.OnDeviceRemove(device_obj);
452 free_netdev(net);
453 }
454
455 DPRINT_EXIT(NETVSC_DRV);
456 return ret;
457}
458
459static int netvsc_remove(struct device *device)
460{
461 struct driver_context *driver_ctx =
462 driver_to_driver_context(device->driver);
463 struct netvsc_driver_context *net_drv_ctx =
464 (struct netvsc_driver_context *)driver_ctx;
465 struct netvsc_driver *net_drv_obj = &net_drv_ctx->drv_obj;
f916a34d 466 struct vm_device *device_ctx = device_to_vm_device(device);
df2fff28
GKH
467 struct net_device *net = dev_get_drvdata(&device_ctx->device);
468 struct hv_device *device_obj = &device_ctx->device_obj;
469 int ret;
470
471 DPRINT_ENTER(NETVSC_DRV);
472
473 if (net == NULL) {
474 DPRINT_INFO(NETVSC, "no net device to remove");
475 DPRINT_EXIT(NETVSC_DRV);
476 return 0;
477 }
478
479 if (!net_drv_obj->Base.OnDeviceRemove) {
480 DPRINT_EXIT(NETVSC_DRV);
481 return -1;
482 }
483
484 /* Stop outbound asap */
485 netif_stop_queue(net);
486 /* netif_carrier_off(net); */
487
488 unregister_netdev(net);
489
490 /*
491 * Call to the vsc driver to let it know that the device is being
492 * removed
493 */
494 ret = net_drv_obj->Base.OnDeviceRemove(device_obj);
495 if (ret != 0) {
496 /* TODO: */
497 DPRINT_ERR(NETVSC, "unable to remove vsc device (ret %d)", ret);
498 }
499
500 free_netdev(net);
501 DPRINT_EXIT(NETVSC_DRV);
502 return ret;
503}
504
fceaf24a
HJ
505static int netvsc_drv_exit_cb(struct device *dev, void *data)
506{
507 struct device **curr = (struct device **)data;
02fafbc6 508
fceaf24a 509 *curr = dev;
02fafbc6
GKH
510 /* stop iterating */
511 return 1;
fceaf24a
HJ
512}
513
bd1de709 514static void netvsc_drv_exit(void)
fceaf24a 515{
02fafbc6
GKH
516 struct netvsc_driver *netvsc_drv_obj = &g_netvsc_drv.drv_obj;
517 struct driver_context *drv_ctx = &g_netvsc_drv.drv_ctx;
518 struct device *current_dev;
2295ba2e 519 int ret;
fceaf24a
HJ
520
521 DPRINT_ENTER(NETVSC_DRV);
522
02fafbc6 523 while (1) {
fceaf24a
HJ
524 current_dev = NULL;
525
454f18a9 526 /* Get the device */
2295ba2e 527 ret = driver_for_each_device(&drv_ctx->driver, NULL,
02fafbc6 528 &current_dev, netvsc_drv_exit_cb);
2295ba2e
BP
529 if (ret)
530 DPRINT_WARN(NETVSC_DRV,
531 "driver_for_each_device returned %d", ret);
532
fceaf24a
HJ
533 if (current_dev == NULL)
534 break;
535
454f18a9 536 /* Initiate removal from the top-down */
02fafbc6
GKH
537 DPRINT_INFO(NETVSC_DRV, "unregistering device (%p)...",
538 current_dev);
fceaf24a
HJ
539
540 device_unregister(current_dev);
541 }
542
543 if (netvsc_drv_obj->Base.OnCleanup)
544 netvsc_drv_obj->Base.OnCleanup(&netvsc_drv_obj->Base);
545
546 vmbus_child_driver_unregister(drv_ctx);
547
548 DPRINT_EXIT(NETVSC_DRV);
549
550 return;
551}
552
21707bed 553static int netvsc_drv_init(int (*drv_init)(struct hv_driver *drv))
df2fff28
GKH
554{
555 struct netvsc_driver *net_drv_obj = &g_netvsc_drv.drv_obj;
556 struct driver_context *drv_ctx = &g_netvsc_drv.drv_ctx;
557 int ret;
558
559 DPRINT_ENTER(NETVSC_DRV);
560
561 vmbus_get_interface(&net_drv_obj->Base.VmbusChannelInterface);
562
563 net_drv_obj->RingBufferSize = netvsc_ringbuffer_size;
564 net_drv_obj->OnReceiveCallback = netvsc_recv_callback;
565 net_drv_obj->OnLinkStatusChanged = netvsc_linkstatus_callback;
566
567 /* Callback to client driver to complete the initialization */
21707bed 568 drv_init(&net_drv_obj->Base);
df2fff28
GKH
569
570 drv_ctx->driver.name = net_drv_obj->Base.name;
571 memcpy(&drv_ctx->class_id, &net_drv_obj->Base.deviceType,
572 sizeof(struct hv_guid));
573
574 drv_ctx->probe = netvsc_probe;
575 drv_ctx->remove = netvsc_remove;
576
577 /* The driver belongs to vmbus */
578 ret = vmbus_child_driver_register(drv_ctx);
579
580 DPRINT_EXIT(NETVSC_DRV);
581
582 return ret;
583}
584
fceaf24a
HJ
585static int __init netvsc_init(void)
586{
587 int ret;
588
589 DPRINT_ENTER(NETVSC_DRV);
590 DPRINT_INFO(NETVSC_DRV, "Netvsc initializing....");
591
592 ret = netvsc_drv_init(NetVscInitialize);
593
594 DPRINT_EXIT(NETVSC_DRV);
595
596 return ret;
597}
598
599static void __exit netvsc_exit(void)
600{
601 DPRINT_ENTER(NETVSC_DRV);
fceaf24a 602 netvsc_drv_exit();
fceaf24a
HJ
603 DPRINT_EXIT(NETVSC_DRV);
604}
605
26c14cc1
HJ
606MODULE_LICENSE("GPL");
607MODULE_VERSION(HV_DRV_VERSION);
fceaf24a
HJ
608module_param(netvsc_ringbuffer_size, int, S_IRUGO);
609
610module_init(netvsc_init);
611module_exit(netvsc_exit);