First Support on Ginger and OMAP TI
[linux-ginger.git] / drivers / staging / hv / NetVsc.c
blob1610b845198f79f2c71cbd6f666613cdebddd29d
1 /*
2 * Copyright (c) 2009, Microsoft Corporation.
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.
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.
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.
17 * Authors:
18 * Hank Janssen <hjanssen@microsoft.com>
20 #include <linux/kernel.h>
21 #include <linux/mm.h>
22 #include <linux/delay.h>
23 #include <linux/io.h>
24 #include "osd.h"
25 #include "logging.h"
26 #include "NetVsc.h"
27 #include "RndisFilter.h"
30 /* Globals */
31 static const char *gDriverName = "netvsc";
33 /* {F8615163-DF3E-46c5-913F-F2D2F965ED0E} */
34 static const struct hv_guid gNetVscDeviceType = {
35 .data = {
36 0x63, 0x51, 0x61, 0xF8, 0x3E, 0xDF, 0xc5, 0x46,
37 0x91, 0x3F, 0xF2, 0xD2, 0xF9, 0x65, 0xED, 0x0E
41 static int NetVscOnDeviceAdd(struct hv_device *Device, void *AdditionalInfo);
43 static int NetVscOnDeviceRemove(struct hv_device *Device);
45 static void NetVscOnCleanup(struct hv_driver *Driver);
47 static void NetVscOnChannelCallback(void *context);
49 static int NetVscInitializeSendBufferWithNetVsp(struct hv_device *Device);
51 static int NetVscInitializeReceiveBufferWithNetVsp(struct hv_device *Device);
53 static int NetVscDestroySendBuffer(struct netvsc_device *NetDevice);
55 static int NetVscDestroyReceiveBuffer(struct netvsc_device *NetDevice);
57 static int NetVscConnectToVsp(struct hv_device *Device);
59 static void NetVscOnSendCompletion(struct hv_device *Device,
60 struct vmpacket_descriptor *Packet);
62 static int NetVscOnSend(struct hv_device *Device,
63 struct hv_netvsc_packet *Packet);
65 static void NetVscOnReceive(struct hv_device *Device,
66 struct vmpacket_descriptor *Packet);
68 static void NetVscOnReceiveCompletion(void *Context);
70 static void NetVscSendReceiveCompletion(struct hv_device *Device,
71 u64 TransactionId);
74 static struct netvsc_device *AllocNetDevice(struct hv_device *Device)
76 struct netvsc_device *netDevice;
78 netDevice = kzalloc(sizeof(struct netvsc_device), GFP_KERNEL);
79 if (!netDevice)
80 return NULL;
82 /* Set to 2 to allow both inbound and outbound traffic */
83 atomic_cmpxchg(&netDevice->RefCount, 0, 2);
85 netDevice->Device = Device;
86 Device->Extension = netDevice;
88 return netDevice;
91 static void FreeNetDevice(struct netvsc_device *Device)
93 ASSERT(atomic_read(&Device->RefCount) == 0);
94 Device->Device->Extension = NULL;
95 kfree(Device);
99 /* Get the net device object iff exists and its refcount > 1 */
100 static struct netvsc_device *GetOutboundNetDevice(struct hv_device *Device)
102 struct netvsc_device *netDevice;
104 netDevice = Device->Extension;
105 if (netDevice && atomic_read(&netDevice->RefCount) > 1)
106 atomic_inc(&netDevice->RefCount);
107 else
108 netDevice = NULL;
110 return netDevice;
113 /* Get the net device object iff exists and its refcount > 0 */
114 static struct netvsc_device *GetInboundNetDevice(struct hv_device *Device)
116 struct netvsc_device *netDevice;
118 netDevice = Device->Extension;
119 if (netDevice && atomic_read(&netDevice->RefCount))
120 atomic_inc(&netDevice->RefCount);
121 else
122 netDevice = NULL;
124 return netDevice;
127 static void PutNetDevice(struct hv_device *Device)
129 struct netvsc_device *netDevice;
131 netDevice = Device->Extension;
132 ASSERT(netDevice);
134 atomic_dec(&netDevice->RefCount);
137 static struct netvsc_device *ReleaseOutboundNetDevice(struct hv_device *Device)
139 struct netvsc_device *netDevice;
141 netDevice = Device->Extension;
142 if (netDevice == NULL)
143 return NULL;
145 /* Busy wait until the ref drop to 2, then set it to 1 */
146 while (atomic_cmpxchg(&netDevice->RefCount, 2, 1) != 2)
147 udelay(100);
149 return netDevice;
152 static struct netvsc_device *ReleaseInboundNetDevice(struct hv_device *Device)
154 struct netvsc_device *netDevice;
156 netDevice = Device->Extension;
157 if (netDevice == NULL)
158 return NULL;
160 /* Busy wait until the ref drop to 1, then set it to 0 */
161 while (atomic_cmpxchg(&netDevice->RefCount, 1, 0) != 1)
162 udelay(100);
164 Device->Extension = NULL;
165 return netDevice;
169 * NetVscInitialize - Main entry point
171 int NetVscInitialize(struct hv_driver *drv)
173 struct netvsc_driver *driver = (struct netvsc_driver *)drv;
175 DPRINT_ENTER(NETVSC);
177 DPRINT_DBG(NETVSC, "sizeof(struct hv_netvsc_packet)=%zd, "
178 "sizeof(struct nvsp_message)=%zd, "
179 "sizeof(struct vmtransfer_page_packet_header)=%zd",
180 sizeof(struct hv_netvsc_packet),
181 sizeof(struct nvsp_message),
182 sizeof(struct vmtransfer_page_packet_header));
184 /* Make sure we are at least 2 pages since 1 page is used for control */
185 ASSERT(driver->RingBufferSize >= (PAGE_SIZE << 1));
187 drv->name = gDriverName;
188 memcpy(&drv->deviceType, &gNetVscDeviceType, sizeof(struct hv_guid));
190 /* Make sure it is set by the caller */
191 ASSERT(driver->OnReceiveCallback);
192 ASSERT(driver->OnLinkStatusChanged);
194 /* Setup the dispatch table */
195 driver->Base.OnDeviceAdd = NetVscOnDeviceAdd;
196 driver->Base.OnDeviceRemove = NetVscOnDeviceRemove;
197 driver->Base.OnCleanup = NetVscOnCleanup;
199 driver->OnSend = NetVscOnSend;
201 RndisFilterInit(driver);
203 DPRINT_EXIT(NETVSC);
205 return 0;
208 static int NetVscInitializeReceiveBufferWithNetVsp(struct hv_device *Device)
210 int ret = 0;
211 struct netvsc_device *netDevice;
212 struct nvsp_message *initPacket;
214 DPRINT_ENTER(NETVSC);
216 netDevice = GetOutboundNetDevice(Device);
217 if (!netDevice) {
218 DPRINT_ERR(NETVSC, "unable to get net device..."
219 "device being destroyed?");
220 DPRINT_EXIT(NETVSC);
221 return -1;
223 ASSERT(netDevice->ReceiveBufferSize > 0);
224 /* page-size grandularity */
225 ASSERT((netDevice->ReceiveBufferSize & (PAGE_SIZE - 1)) == 0);
227 netDevice->ReceiveBuffer =
228 osd_PageAlloc(netDevice->ReceiveBufferSize >> PAGE_SHIFT);
229 if (!netDevice->ReceiveBuffer) {
230 DPRINT_ERR(NETVSC,
231 "unable to allocate receive buffer of size %d",
232 netDevice->ReceiveBufferSize);
233 ret = -1;
234 goto Cleanup;
236 /* page-aligned buffer */
237 ASSERT(((unsigned long)netDevice->ReceiveBuffer & (PAGE_SIZE - 1)) ==
240 DPRINT_INFO(NETVSC, "Establishing receive buffer's GPADL...");
243 * Establish the gpadl handle for this buffer on this
244 * channel. Note: This call uses the vmbus connection rather
245 * than the channel to establish the gpadl handle.
247 ret = Device->Driver->VmbusChannelInterface.EstablishGpadl(Device,
248 netDevice->ReceiveBuffer,
249 netDevice->ReceiveBufferSize,
250 &netDevice->ReceiveBufferGpadlHandle);
251 if (ret != 0) {
252 DPRINT_ERR(NETVSC,
253 "unable to establish receive buffer's gpadl");
254 goto Cleanup;
257 /* osd_WaitEventWait(ext->ChannelInitEvent); */
259 /* Notify the NetVsp of the gpadl handle */
260 DPRINT_INFO(NETVSC, "Sending NvspMessage1TypeSendReceiveBuffer...");
262 initPacket = &netDevice->ChannelInitPacket;
264 memset(initPacket, 0, sizeof(struct nvsp_message));
266 initPacket->Header.MessageType = NvspMessage1TypeSendReceiveBuffer;
267 initPacket->Messages.Version1Messages.SendReceiveBuffer.GpadlHandle = netDevice->ReceiveBufferGpadlHandle;
268 initPacket->Messages.Version1Messages.SendReceiveBuffer.Id = NETVSC_RECEIVE_BUFFER_ID;
270 /* Send the gpadl notification request */
271 ret = Device->Driver->VmbusChannelInterface.SendPacket(Device,
272 initPacket,
273 sizeof(struct nvsp_message),
274 (unsigned long)initPacket,
275 VmbusPacketTypeDataInBand,
276 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
277 if (ret != 0) {
278 DPRINT_ERR(NETVSC,
279 "unable to send receive buffer's gpadl to netvsp");
280 goto Cleanup;
283 osd_WaitEventWait(netDevice->ChannelInitEvent);
285 /* Check the response */
286 if (initPacket->Messages.Version1Messages.SendReceiveBufferComplete.Status != NvspStatusSuccess) {
287 DPRINT_ERR(NETVSC, "Unable to complete receive buffer "
288 "initialzation with NetVsp - status %d",
289 initPacket->Messages.Version1Messages.SendReceiveBufferComplete.Status);
290 ret = -1;
291 goto Cleanup;
294 /* Parse the response */
295 ASSERT(netDevice->ReceiveSectionCount == 0);
296 ASSERT(netDevice->ReceiveSections == NULL);
298 netDevice->ReceiveSectionCount = initPacket->Messages.Version1Messages.SendReceiveBufferComplete.NumSections;
300 netDevice->ReceiveSections = kmalloc(netDevice->ReceiveSectionCount * sizeof(struct nvsp_1_receive_buffer_section), GFP_KERNEL);
301 if (netDevice->ReceiveSections == NULL) {
302 ret = -1;
303 goto Cleanup;
306 memcpy(netDevice->ReceiveSections,
307 initPacket->Messages.Version1Messages.SendReceiveBufferComplete.Sections,
308 netDevice->ReceiveSectionCount * sizeof(struct nvsp_1_receive_buffer_section));
310 DPRINT_INFO(NETVSC, "Receive sections info (count %d, offset %d, "
311 "endoffset %d, suballoc size %d, num suballocs %d)",
312 netDevice->ReceiveSectionCount,
313 netDevice->ReceiveSections[0].Offset,
314 netDevice->ReceiveSections[0].EndOffset,
315 netDevice->ReceiveSections[0].SubAllocationSize,
316 netDevice->ReceiveSections[0].NumSubAllocations);
319 * For 1st release, there should only be 1 section that represents the
320 * entire receive buffer
322 if (netDevice->ReceiveSectionCount != 1 ||
323 netDevice->ReceiveSections->Offset != 0) {
324 ret = -1;
325 goto Cleanup;
328 goto Exit;
330 Cleanup:
331 NetVscDestroyReceiveBuffer(netDevice);
333 Exit:
334 PutNetDevice(Device);
335 DPRINT_EXIT(NETVSC);
336 return ret;
339 static int NetVscInitializeSendBufferWithNetVsp(struct hv_device *Device)
341 int ret = 0;
342 struct netvsc_device *netDevice;
343 struct nvsp_message *initPacket;
345 DPRINT_ENTER(NETVSC);
347 netDevice = GetOutboundNetDevice(Device);
348 if (!netDevice) {
349 DPRINT_ERR(NETVSC, "unable to get net device..."
350 "device being destroyed?");
351 DPRINT_EXIT(NETVSC);
352 return -1;
354 ASSERT(netDevice->SendBufferSize > 0);
355 /* page-size grandularity */
356 ASSERT((netDevice->SendBufferSize & (PAGE_SIZE - 1)) == 0);
358 netDevice->SendBuffer =
359 osd_PageAlloc(netDevice->SendBufferSize >> PAGE_SHIFT);
360 if (!netDevice->SendBuffer) {
361 DPRINT_ERR(NETVSC, "unable to allocate send buffer of size %d",
362 netDevice->SendBufferSize);
363 ret = -1;
364 goto Cleanup;
366 /* page-aligned buffer */
367 ASSERT(((unsigned long)netDevice->SendBuffer & (PAGE_SIZE - 1)) == 0);
369 DPRINT_INFO(NETVSC, "Establishing send buffer's GPADL...");
372 * Establish the gpadl handle for this buffer on this
373 * channel. Note: This call uses the vmbus connection rather
374 * than the channel to establish the gpadl handle.
376 ret = Device->Driver->VmbusChannelInterface.EstablishGpadl(Device,
377 netDevice->SendBuffer,
378 netDevice->SendBufferSize,
379 &netDevice->SendBufferGpadlHandle);
380 if (ret != 0) {
381 DPRINT_ERR(NETVSC, "unable to establish send buffer's gpadl");
382 goto Cleanup;
385 /* osd_WaitEventWait(ext->ChannelInitEvent); */
387 /* Notify the NetVsp of the gpadl handle */
388 DPRINT_INFO(NETVSC, "Sending NvspMessage1TypeSendSendBuffer...");
390 initPacket = &netDevice->ChannelInitPacket;
392 memset(initPacket, 0, sizeof(struct nvsp_message));
394 initPacket->Header.MessageType = NvspMessage1TypeSendSendBuffer;
395 initPacket->Messages.Version1Messages.SendReceiveBuffer.GpadlHandle = netDevice->SendBufferGpadlHandle;
396 initPacket->Messages.Version1Messages.SendReceiveBuffer.Id = NETVSC_SEND_BUFFER_ID;
398 /* Send the gpadl notification request */
399 ret = Device->Driver->VmbusChannelInterface.SendPacket(Device,
400 initPacket, sizeof(struct nvsp_message),
401 (unsigned long)initPacket,
402 VmbusPacketTypeDataInBand,
403 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
404 if (ret != 0) {
405 DPRINT_ERR(NETVSC,
406 "unable to send receive buffer's gpadl to netvsp");
407 goto Cleanup;
410 osd_WaitEventWait(netDevice->ChannelInitEvent);
412 /* Check the response */
413 if (initPacket->Messages.Version1Messages.SendSendBufferComplete.Status != NvspStatusSuccess) {
414 DPRINT_ERR(NETVSC, "Unable to complete send buffer "
415 "initialzation with NetVsp - status %d",
416 initPacket->Messages.Version1Messages.SendSendBufferComplete.Status);
417 ret = -1;
418 goto Cleanup;
421 netDevice->SendSectionSize = initPacket->Messages.Version1Messages.SendSendBufferComplete.SectionSize;
423 goto Exit;
425 Cleanup:
426 NetVscDestroySendBuffer(netDevice);
428 Exit:
429 PutNetDevice(Device);
430 DPRINT_EXIT(NETVSC);
431 return ret;
434 static int NetVscDestroyReceiveBuffer(struct netvsc_device *NetDevice)
436 struct nvsp_message *revokePacket;
437 int ret = 0;
439 DPRINT_ENTER(NETVSC);
442 * If we got a section count, it means we received a
443 * SendReceiveBufferComplete msg (ie sent
444 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
445 * to send a revoke msg here
447 if (NetDevice->ReceiveSectionCount) {
448 DPRINT_INFO(NETVSC,
449 "Sending NvspMessage1TypeRevokeReceiveBuffer...");
451 /* Send the revoke receive buffer */
452 revokePacket = &NetDevice->RevokePacket;
453 memset(revokePacket, 0, sizeof(struct nvsp_message));
455 revokePacket->Header.MessageType = NvspMessage1TypeRevokeReceiveBuffer;
456 revokePacket->Messages.Version1Messages.RevokeReceiveBuffer.Id = NETVSC_RECEIVE_BUFFER_ID;
458 ret = NetDevice->Device->Driver->VmbusChannelInterface.SendPacket(
459 NetDevice->Device,
460 revokePacket,
461 sizeof(struct nvsp_message),
462 (unsigned long)revokePacket,
463 VmbusPacketTypeDataInBand, 0);
465 * If we failed here, we might as well return and
466 * have a leak rather than continue and a bugchk
468 if (ret != 0) {
469 DPRINT_ERR(NETVSC, "unable to send revoke receive "
470 "buffer to netvsp");
471 DPRINT_EXIT(NETVSC);
472 return -1;
476 /* Teardown the gpadl on the vsp end */
477 if (NetDevice->ReceiveBufferGpadlHandle) {
478 DPRINT_INFO(NETVSC, "Tearing down receive buffer's GPADL...");
480 ret = NetDevice->Device->Driver->VmbusChannelInterface.TeardownGpadl(
481 NetDevice->Device,
482 NetDevice->ReceiveBufferGpadlHandle);
484 /* If we failed here, we might as well return and have a leak rather than continue and a bugchk */
485 if (ret != 0) {
486 DPRINT_ERR(NETVSC,
487 "unable to teardown receive buffer's gpadl");
488 DPRINT_EXIT(NETVSC);
489 return -1;
491 NetDevice->ReceiveBufferGpadlHandle = 0;
494 if (NetDevice->ReceiveBuffer) {
495 DPRINT_INFO(NETVSC, "Freeing up receive buffer...");
497 /* Free up the receive buffer */
498 osd_PageFree(NetDevice->ReceiveBuffer,
499 NetDevice->ReceiveBufferSize >> PAGE_SHIFT);
500 NetDevice->ReceiveBuffer = NULL;
503 if (NetDevice->ReceiveSections) {
504 NetDevice->ReceiveSectionCount = 0;
505 kfree(NetDevice->ReceiveSections);
506 NetDevice->ReceiveSections = NULL;
509 DPRINT_EXIT(NETVSC);
511 return ret;
514 static int NetVscDestroySendBuffer(struct netvsc_device *NetDevice)
516 struct nvsp_message *revokePacket;
517 int ret = 0;
519 DPRINT_ENTER(NETVSC);
522 * If we got a section count, it means we received a
523 * SendReceiveBufferComplete msg (ie sent
524 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
525 * to send a revoke msg here
527 if (NetDevice->SendSectionSize) {
528 DPRINT_INFO(NETVSC,
529 "Sending NvspMessage1TypeRevokeSendBuffer...");
531 /* Send the revoke send buffer */
532 revokePacket = &NetDevice->RevokePacket;
533 memset(revokePacket, 0, sizeof(struct nvsp_message));
535 revokePacket->Header.MessageType = NvspMessage1TypeRevokeSendBuffer;
536 revokePacket->Messages.Version1Messages.RevokeSendBuffer.Id = NETVSC_SEND_BUFFER_ID;
538 ret = NetDevice->Device->Driver->VmbusChannelInterface.SendPacket(NetDevice->Device,
539 revokePacket,
540 sizeof(struct nvsp_message),
541 (unsigned long)revokePacket,
542 VmbusPacketTypeDataInBand, 0);
544 * If we failed here, we might as well return and have a leak
545 * rather than continue and a bugchk
547 if (ret != 0) {
548 DPRINT_ERR(NETVSC, "unable to send revoke send buffer "
549 "to netvsp");
550 DPRINT_EXIT(NETVSC);
551 return -1;
555 /* Teardown the gpadl on the vsp end */
556 if (NetDevice->SendBufferGpadlHandle) {
557 DPRINT_INFO(NETVSC, "Tearing down send buffer's GPADL...");
559 ret = NetDevice->Device->Driver->VmbusChannelInterface.TeardownGpadl(NetDevice->Device, NetDevice->SendBufferGpadlHandle);
562 * If we failed here, we might as well return and have a leak
563 * rather than continue and a bugchk
565 if (ret != 0) {
566 DPRINT_ERR(NETVSC, "unable to teardown send buffer's "
567 "gpadl");
568 DPRINT_EXIT(NETVSC);
569 return -1;
571 NetDevice->SendBufferGpadlHandle = 0;
574 if (NetDevice->SendBuffer) {
575 DPRINT_INFO(NETVSC, "Freeing up send buffer...");
577 /* Free up the receive buffer */
578 osd_PageFree(NetDevice->SendBuffer,
579 NetDevice->SendBufferSize >> PAGE_SHIFT);
580 NetDevice->SendBuffer = NULL;
583 DPRINT_EXIT(NETVSC);
585 return ret;
589 static int NetVscConnectToVsp(struct hv_device *Device)
591 int ret;
592 struct netvsc_device *netDevice;
593 struct nvsp_message *initPacket;
594 int ndisVersion;
596 DPRINT_ENTER(NETVSC);
598 netDevice = GetOutboundNetDevice(Device);
599 if (!netDevice) {
600 DPRINT_ERR(NETVSC, "unable to get net device..."
601 "device being destroyed?");
602 DPRINT_EXIT(NETVSC);
603 return -1;
606 initPacket = &netDevice->ChannelInitPacket;
608 memset(initPacket, 0, sizeof(struct nvsp_message));
609 initPacket->Header.MessageType = NvspMessageTypeInit;
610 initPacket->Messages.InitMessages.Init.MinProtocolVersion = NVSP_MIN_PROTOCOL_VERSION;
611 initPacket->Messages.InitMessages.Init.MaxProtocolVersion = NVSP_MAX_PROTOCOL_VERSION;
613 DPRINT_INFO(NETVSC, "Sending NvspMessageTypeInit...");
615 /* Send the init request */
616 ret = Device->Driver->VmbusChannelInterface.SendPacket(Device,
617 initPacket,
618 sizeof(struct nvsp_message),
619 (unsigned long)initPacket,
620 VmbusPacketTypeDataInBand,
621 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
623 if (ret != 0) {
624 DPRINT_ERR(NETVSC, "unable to send NvspMessageTypeInit");
625 goto Cleanup;
628 osd_WaitEventWait(netDevice->ChannelInitEvent);
630 /* Now, check the response */
631 /* ASSERT(initPacket->Messages.InitMessages.InitComplete.MaximumMdlChainLength <= MAX_MULTIPAGE_BUFFER_COUNT); */
632 DPRINT_INFO(NETVSC, "NvspMessageTypeInit status(%d) max mdl chain (%d)",
633 initPacket->Messages.InitMessages.InitComplete.Status,
634 initPacket->Messages.InitMessages.InitComplete.MaximumMdlChainLength);
636 if (initPacket->Messages.InitMessages.InitComplete.Status !=
637 NvspStatusSuccess) {
638 DPRINT_ERR(NETVSC,
639 "unable to initialize with netvsp (status 0x%x)",
640 initPacket->Messages.InitMessages.InitComplete.Status);
641 ret = -1;
642 goto Cleanup;
645 if (initPacket->Messages.InitMessages.InitComplete.NegotiatedProtocolVersion != NVSP_PROTOCOL_VERSION_1) {
646 DPRINT_ERR(NETVSC, "unable to initialize with netvsp "
647 "(version expected 1 got %d)",
648 initPacket->Messages.InitMessages.InitComplete.NegotiatedProtocolVersion);
649 ret = -1;
650 goto Cleanup;
652 DPRINT_INFO(NETVSC, "Sending NvspMessage1TypeSendNdisVersion...");
654 /* Send the ndis version */
655 memset(initPacket, 0, sizeof(struct nvsp_message));
657 ndisVersion = 0x00050000;
659 initPacket->Header.MessageType = NvspMessage1TypeSendNdisVersion;
660 initPacket->Messages.Version1Messages.SendNdisVersion.NdisMajorVersion =
661 (ndisVersion & 0xFFFF0000) >> 16;
662 initPacket->Messages.Version1Messages.SendNdisVersion.NdisMinorVersion =
663 ndisVersion & 0xFFFF;
665 /* Send the init request */
666 ret = Device->Driver->VmbusChannelInterface.SendPacket(Device,
667 initPacket,
668 sizeof(struct nvsp_message),
669 (unsigned long)initPacket,
670 VmbusPacketTypeDataInBand, 0);
671 if (ret != 0) {
672 DPRINT_ERR(NETVSC,
673 "unable to send NvspMessage1TypeSendNdisVersion");
674 ret = -1;
675 goto Cleanup;
678 * BUGBUG - We have to wait for the above msg since the
679 * netvsp uses KMCL which acknowledges packet (completion
680 * packet) since our Vmbus always set the
681 * VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED flag
683 /* osd_WaitEventWait(NetVscChannel->ChannelInitEvent); */
685 /* Post the big receive buffer to NetVSP */
686 ret = NetVscInitializeReceiveBufferWithNetVsp(Device);
687 if (ret == 0)
688 ret = NetVscInitializeSendBufferWithNetVsp(Device);
690 Cleanup:
691 PutNetDevice(Device);
692 DPRINT_EXIT(NETVSC);
693 return ret;
696 static void NetVscDisconnectFromVsp(struct netvsc_device *NetDevice)
698 DPRINT_ENTER(NETVSC);
700 NetVscDestroyReceiveBuffer(NetDevice);
701 NetVscDestroySendBuffer(NetDevice);
703 DPRINT_EXIT(NETVSC);
707 * NetVscOnDeviceAdd - Callback when the device belonging to this driver is added
709 static int NetVscOnDeviceAdd(struct hv_device *Device, void *AdditionalInfo)
711 int ret = 0;
712 int i;
713 struct netvsc_device *netDevice;
714 struct hv_netvsc_packet *packet, *pos;
715 struct netvsc_driver *netDriver =
716 (struct netvsc_driver *)Device->Driver;
718 DPRINT_ENTER(NETVSC);
720 netDevice = AllocNetDevice(Device);
721 if (!netDevice) {
722 ret = -1;
723 goto Cleanup;
726 DPRINT_DBG(NETVSC, "netvsc channel object allocated - %p", netDevice);
728 /* Initialize the NetVSC channel extension */
729 netDevice->ReceiveBufferSize = NETVSC_RECEIVE_BUFFER_SIZE;
730 spin_lock_init(&netDevice->receive_packet_list_lock);
732 netDevice->SendBufferSize = NETVSC_SEND_BUFFER_SIZE;
734 INIT_LIST_HEAD(&netDevice->ReceivePacketList);
736 for (i = 0; i < NETVSC_RECEIVE_PACKETLIST_COUNT; i++) {
737 packet = kzalloc(sizeof(struct hv_netvsc_packet) +
738 (NETVSC_RECEIVE_SG_COUNT *
739 sizeof(struct hv_page_buffer)), GFP_KERNEL);
740 if (!packet) {
741 DPRINT_DBG(NETVSC, "unable to allocate netvsc pkts "
742 "for receive pool (wanted %d got %d)",
743 NETVSC_RECEIVE_PACKETLIST_COUNT, i);
744 break;
746 list_add_tail(&packet->ListEntry,
747 &netDevice->ReceivePacketList);
749 netDevice->ChannelInitEvent = osd_WaitEventCreate();
751 /* Open the channel */
752 ret = Device->Driver->VmbusChannelInterface.Open(Device,
753 netDriver->RingBufferSize,
754 netDriver->RingBufferSize,
755 NULL, 0,
756 NetVscOnChannelCallback,
757 Device);
759 if (ret != 0) {
760 DPRINT_ERR(NETVSC, "unable to open channel: %d", ret);
761 ret = -1;
762 goto Cleanup;
765 /* Channel is opened */
766 DPRINT_INFO(NETVSC, "*** NetVSC channel opened successfully! ***");
768 /* Connect with the NetVsp */
769 ret = NetVscConnectToVsp(Device);
770 if (ret != 0) {
771 DPRINT_ERR(NETVSC, "unable to connect to NetVSP - %d", ret);
772 ret = -1;
773 goto Close;
776 DPRINT_INFO(NETVSC, "*** NetVSC channel handshake result - %d ***",
777 ret);
779 DPRINT_EXIT(NETVSC);
780 return ret;
782 Close:
783 /* Now, we can close the channel safely */
784 Device->Driver->VmbusChannelInterface.Close(Device);
786 Cleanup:
788 if (netDevice) {
789 kfree(netDevice->ChannelInitEvent);
791 list_for_each_entry_safe(packet, pos,
792 &netDevice->ReceivePacketList,
793 ListEntry) {
794 list_del(&packet->ListEntry);
795 kfree(packet);
798 ReleaseOutboundNetDevice(Device);
799 ReleaseInboundNetDevice(Device);
801 FreeNetDevice(netDevice);
804 DPRINT_EXIT(NETVSC);
805 return ret;
809 * NetVscOnDeviceRemove - Callback when the root bus device is removed
811 static int NetVscOnDeviceRemove(struct hv_device *Device)
813 struct netvsc_device *netDevice;
814 struct hv_netvsc_packet *netvscPacket, *pos;
816 DPRINT_ENTER(NETVSC);
818 DPRINT_INFO(NETVSC, "Disabling outbound traffic on net device (%p)...",
819 Device->Extension);
821 /* Stop outbound traffic ie sends and receives completions */
822 netDevice = ReleaseOutboundNetDevice(Device);
823 if (!netDevice) {
824 DPRINT_ERR(NETVSC, "No net device present!!");
825 return -1;
828 /* Wait for all send completions */
829 while (atomic_read(&netDevice->NumOutstandingSends)) {
830 DPRINT_INFO(NETVSC, "waiting for %d requests to complete...",
831 atomic_read(&netDevice->NumOutstandingSends));
832 udelay(100);
835 DPRINT_INFO(NETVSC, "Disconnecting from netvsp...");
837 NetVscDisconnectFromVsp(netDevice);
839 DPRINT_INFO(NETVSC, "Disabling inbound traffic on net device (%p)...",
840 Device->Extension);
842 /* Stop inbound traffic ie receives and sends completions */
843 netDevice = ReleaseInboundNetDevice(Device);
845 /* At this point, no one should be accessing netDevice except in here */
846 DPRINT_INFO(NETVSC, "net device (%p) safe to remove", netDevice);
848 /* Now, we can close the channel safely */
849 Device->Driver->VmbusChannelInterface.Close(Device);
851 /* Release all resources */
852 list_for_each_entry_safe(netvscPacket, pos,
853 &netDevice->ReceivePacketList, ListEntry) {
854 list_del(&netvscPacket->ListEntry);
855 kfree(netvscPacket);
858 kfree(netDevice->ChannelInitEvent);
859 FreeNetDevice(netDevice);
861 DPRINT_EXIT(NETVSC);
862 return 0;
866 * NetVscOnCleanup - Perform any cleanup when the driver is removed
868 static void NetVscOnCleanup(struct hv_driver *drv)
870 DPRINT_ENTER(NETVSC);
871 DPRINT_EXIT(NETVSC);
874 static void NetVscOnSendCompletion(struct hv_device *Device,
875 struct vmpacket_descriptor *Packet)
877 struct netvsc_device *netDevice;
878 struct nvsp_message *nvspPacket;
879 struct hv_netvsc_packet *nvscPacket;
881 DPRINT_ENTER(NETVSC);
883 netDevice = GetInboundNetDevice(Device);
884 if (!netDevice) {
885 DPRINT_ERR(NETVSC, "unable to get net device..."
886 "device being destroyed?");
887 DPRINT_EXIT(NETVSC);
888 return;
891 nvspPacket = (struct nvsp_message *)((unsigned long)Packet + (Packet->DataOffset8 << 3));
893 DPRINT_DBG(NETVSC, "send completion packet - type %d",
894 nvspPacket->Header.MessageType);
896 if ((nvspPacket->Header.MessageType == NvspMessageTypeInitComplete) ||
897 (nvspPacket->Header.MessageType ==
898 NvspMessage1TypeSendReceiveBufferComplete) ||
899 (nvspPacket->Header.MessageType ==
900 NvspMessage1TypeSendSendBufferComplete)) {
901 /* Copy the response back */
902 memcpy(&netDevice->ChannelInitPacket, nvspPacket,
903 sizeof(struct nvsp_message));
904 osd_WaitEventSet(netDevice->ChannelInitEvent);
905 } else if (nvspPacket->Header.MessageType ==
906 NvspMessage1TypeSendRNDISPacketComplete) {
907 /* Get the send context */
908 nvscPacket = (struct hv_netvsc_packet *)(unsigned long)Packet->TransactionId;
909 ASSERT(nvscPacket);
911 /* Notify the layer above us */
912 nvscPacket->Completion.Send.OnSendCompletion(nvscPacket->Completion.Send.SendCompletionContext);
914 atomic_dec(&netDevice->NumOutstandingSends);
915 } else {
916 DPRINT_ERR(NETVSC, "Unknown send completion packet type - "
917 "%d received!!", nvspPacket->Header.MessageType);
920 PutNetDevice(Device);
921 DPRINT_EXIT(NETVSC);
924 static int NetVscOnSend(struct hv_device *Device,
925 struct hv_netvsc_packet *Packet)
927 struct netvsc_device *netDevice;
928 int ret = 0;
930 struct nvsp_message sendMessage;
932 DPRINT_ENTER(NETVSC);
934 netDevice = GetOutboundNetDevice(Device);
935 if (!netDevice) {
936 DPRINT_ERR(NETVSC, "net device (%p) shutting down..."
937 "ignoring outbound packets", netDevice);
938 DPRINT_EXIT(NETVSC);
939 return -2;
942 sendMessage.Header.MessageType = NvspMessage1TypeSendRNDISPacket;
943 if (Packet->IsDataPacket) {
944 /* 0 is RMC_DATA; */
945 sendMessage.Messages.Version1Messages.SendRNDISPacket.ChannelType = 0;
946 } else {
947 /* 1 is RMC_CONTROL; */
948 sendMessage.Messages.Version1Messages.SendRNDISPacket.ChannelType = 1;
951 /* Not using send buffer section */
952 sendMessage.Messages.Version1Messages.SendRNDISPacket.SendBufferSectionIndex = 0xFFFFFFFF;
953 sendMessage.Messages.Version1Messages.SendRNDISPacket.SendBufferSectionSize = 0;
955 if (Packet->PageBufferCount) {
956 ret = Device->Driver->VmbusChannelInterface.SendPacketPageBuffer(
957 Device, Packet->PageBuffers,
958 Packet->PageBufferCount,
959 &sendMessage,
960 sizeof(struct nvsp_message),
961 (unsigned long)Packet);
962 } else {
963 ret = Device->Driver->VmbusChannelInterface.SendPacket(Device,
964 &sendMessage,
965 sizeof(struct nvsp_message),
966 (unsigned long)Packet,
967 VmbusPacketTypeDataInBand,
968 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
972 if (ret != 0)
973 DPRINT_ERR(NETVSC, "Unable to send packet %p ret %d",
974 Packet, ret);
976 atomic_inc(&netDevice->NumOutstandingSends);
977 PutNetDevice(Device);
979 DPRINT_EXIT(NETVSC);
980 return ret;
983 static void NetVscOnReceive(struct hv_device *Device,
984 struct vmpacket_descriptor *Packet)
986 struct netvsc_device *netDevice;
987 struct vmtransfer_page_packet_header *vmxferpagePacket;
988 struct nvsp_message *nvspPacket;
989 struct hv_netvsc_packet *netvscPacket = NULL;
990 unsigned long start;
991 unsigned long end, endVirtual;
992 /* struct netvsc_driver *netvscDriver; */
993 struct xferpage_packet *xferpagePacket = NULL;
994 int i, j;
995 int count = 0, bytesRemain = 0;
996 unsigned long flags;
997 LIST_HEAD(listHead);
999 DPRINT_ENTER(NETVSC);
1001 netDevice = GetInboundNetDevice(Device);
1002 if (!netDevice) {
1003 DPRINT_ERR(NETVSC, "unable to get net device..."
1004 "device being destroyed?");
1005 DPRINT_EXIT(NETVSC);
1006 return;
1010 * All inbound packets other than send completion should be xfer page
1011 * packet
1013 if (Packet->Type != VmbusPacketTypeDataUsingTransferPages) {
1014 DPRINT_ERR(NETVSC, "Unknown packet type received - %d",
1015 Packet->Type);
1016 PutNetDevice(Device);
1017 return;
1020 nvspPacket = (struct nvsp_message *)((unsigned long)Packet +
1021 (Packet->DataOffset8 << 3));
1023 /* Make sure this is a valid nvsp packet */
1024 if (nvspPacket->Header.MessageType != NvspMessage1TypeSendRNDISPacket) {
1025 DPRINT_ERR(NETVSC, "Unknown nvsp packet type received - %d",
1026 nvspPacket->Header.MessageType);
1027 PutNetDevice(Device);
1028 return;
1031 DPRINT_DBG(NETVSC, "NVSP packet received - type %d",
1032 nvspPacket->Header.MessageType);
1034 vmxferpagePacket = (struct vmtransfer_page_packet_header *)Packet;
1036 if (vmxferpagePacket->TransferPageSetId != NETVSC_RECEIVE_BUFFER_ID) {
1037 DPRINT_ERR(NETVSC, "Invalid xfer page set id - "
1038 "expecting %x got %x", NETVSC_RECEIVE_BUFFER_ID,
1039 vmxferpagePacket->TransferPageSetId);
1040 PutNetDevice(Device);
1041 return;
1044 DPRINT_DBG(NETVSC, "xfer page - range count %d",
1045 vmxferpagePacket->RangeCount);
1048 * Grab free packets (range count + 1) to represent this xfer
1049 * page packet. +1 to represent the xfer page packet itself.
1050 * We grab it here so that we know exactly how many we can
1051 * fulfil
1053 spin_lock_irqsave(&netDevice->receive_packet_list_lock, flags);
1054 while (!list_empty(&netDevice->ReceivePacketList)) {
1055 list_move_tail(&netDevice->ReceivePacketList, &listHead);
1056 if (++count == vmxferpagePacket->RangeCount + 1)
1057 break;
1059 spin_unlock_irqrestore(&netDevice->receive_packet_list_lock, flags);
1062 * We need at least 2 netvsc pkts (1 to represent the xfer
1063 * page and at least 1 for the range) i.e. we can handled
1064 * some of the xfer page packet ranges...
1066 if (count < 2) {
1067 DPRINT_ERR(NETVSC, "Got only %d netvsc pkt...needed %d pkts. "
1068 "Dropping this xfer page packet completely!",
1069 count, vmxferpagePacket->RangeCount + 1);
1071 /* Return it to the freelist */
1072 spin_lock_irqsave(&netDevice->receive_packet_list_lock, flags);
1073 for (i = count; i != 0; i--) {
1074 list_move_tail(&listHead,
1075 &netDevice->ReceivePacketList);
1077 spin_unlock_irqrestore(&netDevice->receive_packet_list_lock,
1078 flags);
1080 NetVscSendReceiveCompletion(Device,
1081 vmxferpagePacket->d.TransactionId);
1083 PutNetDevice(Device);
1084 return;
1087 /* Remove the 1st packet to represent the xfer page packet itself */
1088 xferpagePacket = list_entry(&listHead, struct xferpage_packet,
1089 ListEntry);
1090 list_del(&xferpagePacket->ListEntry);
1092 /* This is how much we can satisfy */
1093 xferpagePacket->Count = count - 1;
1094 ASSERT(xferpagePacket->Count > 0 && xferpagePacket->Count <=
1095 vmxferpagePacket->RangeCount);
1097 if (xferpagePacket->Count != vmxferpagePacket->RangeCount) {
1098 DPRINT_INFO(NETVSC, "Needed %d netvsc pkts to satisy this xfer "
1099 "page...got %d", vmxferpagePacket->RangeCount,
1100 xferpagePacket->Count);
1103 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
1104 for (i = 0; i < (count - 1); i++) {
1105 netvscPacket = list_entry(&listHead, struct hv_netvsc_packet,
1106 ListEntry);
1107 list_del(&netvscPacket->ListEntry);
1109 /* Initialize the netvsc packet */
1110 netvscPacket->XferPagePacket = xferpagePacket;
1111 netvscPacket->Completion.Recv.OnReceiveCompletion =
1112 NetVscOnReceiveCompletion;
1113 netvscPacket->Completion.Recv.ReceiveCompletionContext =
1114 netvscPacket;
1115 netvscPacket->Device = Device;
1116 /* Save this so that we can send it back */
1117 netvscPacket->Completion.Recv.ReceiveCompletionTid =
1118 vmxferpagePacket->d.TransactionId;
1120 netvscPacket->TotalDataBufferLength =
1121 vmxferpagePacket->Ranges[i].ByteCount;
1122 netvscPacket->PageBufferCount = 1;
1124 ASSERT(vmxferpagePacket->Ranges[i].ByteOffset +
1125 vmxferpagePacket->Ranges[i].ByteCount <
1126 netDevice->ReceiveBufferSize);
1128 netvscPacket->PageBuffers[0].Length =
1129 vmxferpagePacket->Ranges[i].ByteCount;
1131 start = virt_to_phys((void *)((unsigned long)netDevice->ReceiveBuffer + vmxferpagePacket->Ranges[i].ByteOffset));
1133 netvscPacket->PageBuffers[0].Pfn = start >> PAGE_SHIFT;
1134 endVirtual = (unsigned long)netDevice->ReceiveBuffer
1135 + vmxferpagePacket->Ranges[i].ByteOffset
1136 + vmxferpagePacket->Ranges[i].ByteCount - 1;
1137 end = virt_to_phys((void *)endVirtual);
1139 /* Calculate the page relative offset */
1140 netvscPacket->PageBuffers[0].Offset =
1141 vmxferpagePacket->Ranges[i].ByteOffset & (PAGE_SIZE - 1);
1142 if ((end >> PAGE_SHIFT) != (start >> PAGE_SHIFT)) {
1143 /* Handle frame across multiple pages: */
1144 netvscPacket->PageBuffers[0].Length =
1145 (netvscPacket->PageBuffers[0].Pfn << PAGE_SHIFT)
1146 + PAGE_SIZE - start;
1147 bytesRemain = netvscPacket->TotalDataBufferLength -
1148 netvscPacket->PageBuffers[0].Length;
1149 for (j = 1; j < NETVSC_PACKET_MAXPAGE; j++) {
1150 netvscPacket->PageBuffers[j].Offset = 0;
1151 if (bytesRemain <= PAGE_SIZE) {
1152 netvscPacket->PageBuffers[j].Length = bytesRemain;
1153 bytesRemain = 0;
1154 } else {
1155 netvscPacket->PageBuffers[j].Length = PAGE_SIZE;
1156 bytesRemain -= PAGE_SIZE;
1158 netvscPacket->PageBuffers[j].Pfn =
1159 virt_to_phys((void *)(endVirtual - bytesRemain)) >> PAGE_SHIFT;
1160 netvscPacket->PageBufferCount++;
1161 if (bytesRemain == 0)
1162 break;
1164 ASSERT(bytesRemain == 0);
1166 DPRINT_DBG(NETVSC, "[%d] - (abs offset %u len %u) => "
1167 "(pfn %llx, offset %u, len %u)", i,
1168 vmxferpagePacket->Ranges[i].ByteOffset,
1169 vmxferpagePacket->Ranges[i].ByteCount,
1170 netvscPacket->PageBuffers[0].Pfn,
1171 netvscPacket->PageBuffers[0].Offset,
1172 netvscPacket->PageBuffers[0].Length);
1174 /* Pass it to the upper layer */
1175 ((struct netvsc_driver *)Device->Driver)->OnReceiveCallback(Device, netvscPacket);
1177 NetVscOnReceiveCompletion(netvscPacket->Completion.Recv.ReceiveCompletionContext);
1180 ASSERT(list_empty(&listHead));
1182 PutNetDevice(Device);
1183 DPRINT_EXIT(NETVSC);
1186 static void NetVscSendReceiveCompletion(struct hv_device *Device,
1187 u64 TransactionId)
1189 struct nvsp_message recvcompMessage;
1190 int retries = 0;
1191 int ret;
1193 DPRINT_DBG(NETVSC, "Sending receive completion pkt - %llx",
1194 TransactionId);
1196 recvcompMessage.Header.MessageType =
1197 NvspMessage1TypeSendRNDISPacketComplete;
1199 /* FIXME: Pass in the status */
1200 recvcompMessage.Messages.Version1Messages.SendRNDISPacketComplete.Status = NvspStatusSuccess;
1202 retry_send_cmplt:
1203 /* Send the completion */
1204 ret = Device->Driver->VmbusChannelInterface.SendPacket(Device,
1205 &recvcompMessage,
1206 sizeof(struct nvsp_message),
1207 TransactionId,
1208 VmbusPacketTypeCompletion, 0);
1209 if (ret == 0) {
1210 /* success */
1211 /* no-op */
1212 } else if (ret == -1) {
1213 /* no more room...wait a bit and attempt to retry 3 times */
1214 retries++;
1215 DPRINT_ERR(NETVSC, "unable to send receive completion pkt "
1216 "(tid %llx)...retrying %d", TransactionId, retries);
1218 if (retries < 4) {
1219 udelay(100);
1220 goto retry_send_cmplt;
1221 } else {
1222 DPRINT_ERR(NETVSC, "unable to send receive completion "
1223 "pkt (tid %llx)...give up retrying",
1224 TransactionId);
1226 } else {
1227 DPRINT_ERR(NETVSC, "unable to send receive completion pkt - "
1228 "%llx", TransactionId);
1232 /* Send a receive completion packet to RNDIS device (ie NetVsp) */
1233 static void NetVscOnReceiveCompletion(void *Context)
1235 struct hv_netvsc_packet *packet = Context;
1236 struct hv_device *device = (struct hv_device *)packet->Device;
1237 struct netvsc_device *netDevice;
1238 u64 transactionId = 0;
1239 bool fSendReceiveComp = false;
1240 unsigned long flags;
1242 DPRINT_ENTER(NETVSC);
1244 ASSERT(packet->XferPagePacket);
1247 * Even though it seems logical to do a GetOutboundNetDevice() here to
1248 * send out receive completion, we are using GetInboundNetDevice()
1249 * since we may have disable outbound traffic already.
1251 netDevice = GetInboundNetDevice(device);
1252 if (!netDevice) {
1253 DPRINT_ERR(NETVSC, "unable to get net device..."
1254 "device being destroyed?");
1255 DPRINT_EXIT(NETVSC);
1256 return;
1259 /* Overloading use of the lock. */
1260 spin_lock_irqsave(&netDevice->receive_packet_list_lock, flags);
1262 ASSERT(packet->XferPagePacket->Count > 0);
1263 packet->XferPagePacket->Count--;
1266 * Last one in the line that represent 1 xfer page packet.
1267 * Return the xfer page packet itself to the freelist
1269 if (packet->XferPagePacket->Count == 0) {
1270 fSendReceiveComp = true;
1271 transactionId = packet->Completion.Recv.ReceiveCompletionTid;
1272 list_add_tail(&packet->XferPagePacket->ListEntry,
1273 &netDevice->ReceivePacketList);
1277 /* Put the packet back */
1278 list_add_tail(&packet->ListEntry, &netDevice->ReceivePacketList);
1279 spin_unlock_irqrestore(&netDevice->receive_packet_list_lock, flags);
1281 /* Send a receive completion for the xfer page packet */
1282 if (fSendReceiveComp)
1283 NetVscSendReceiveCompletion(device, transactionId);
1285 PutNetDevice(device);
1286 DPRINT_EXIT(NETVSC);
1289 void NetVscOnChannelCallback(void *Context)
1291 const int netPacketSize = 2048;
1292 int ret;
1293 struct hv_device *device = Context;
1294 struct netvsc_device *netDevice;
1295 u32 bytesRecvd;
1296 u64 requestId;
1297 unsigned char packet[netPacketSize];
1298 struct vmpacket_descriptor *desc;
1299 unsigned char *buffer = packet;
1300 int bufferlen = netPacketSize;
1303 DPRINT_ENTER(NETVSC);
1305 ASSERT(device);
1307 netDevice = GetInboundNetDevice(device);
1308 if (!netDevice) {
1309 DPRINT_ERR(NETVSC, "net device (%p) shutting down..."
1310 "ignoring inbound packets", netDevice);
1311 DPRINT_EXIT(NETVSC);
1312 return;
1315 do {
1316 ret = device->Driver->VmbusChannelInterface.RecvPacketRaw(
1317 device, buffer, bufferlen,
1318 &bytesRecvd, &requestId);
1319 if (ret == 0) {
1320 if (bytesRecvd > 0) {
1321 DPRINT_DBG(NETVSC, "receive %d bytes, tid %llx",
1322 bytesRecvd, requestId);
1324 desc = (struct vmpacket_descriptor *)buffer;
1325 switch (desc->Type) {
1326 case VmbusPacketTypeCompletion:
1327 NetVscOnSendCompletion(device, desc);
1328 break;
1330 case VmbusPacketTypeDataUsingTransferPages:
1331 NetVscOnReceive(device, desc);
1332 break;
1334 default:
1335 DPRINT_ERR(NETVSC,
1336 "unhandled packet type %d, "
1337 "tid %llx len %d\n",
1338 desc->Type, requestId,
1339 bytesRecvd);
1340 break;
1343 /* reset */
1344 if (bufferlen > netPacketSize) {
1345 kfree(buffer);
1346 buffer = packet;
1347 bufferlen = netPacketSize;
1349 } else {
1350 /* reset */
1351 if (bufferlen > netPacketSize) {
1352 kfree(buffer);
1353 buffer = packet;
1354 bufferlen = netPacketSize;
1357 break;
1359 } else if (ret == -2) {
1360 /* Handle large packet */
1361 buffer = kmalloc(bytesRecvd, GFP_ATOMIC);
1362 if (buffer == NULL) {
1363 /* Try again next time around */
1364 DPRINT_ERR(NETVSC,
1365 "unable to allocate buffer of size "
1366 "(%d)!!", bytesRecvd);
1367 break;
1370 bufferlen = bytesRecvd;
1371 } else {
1372 ASSERT(0);
1374 } while (1);
1376 PutNetDevice(device);
1377 DPRINT_EXIT(NETVSC);
1378 return;