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
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.
18 * Haiyang Zhang <haiyangz@microsoft.com>
19 * Hank Janssen <hjanssen@microsoft.com>
21 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23 #include <linux/kernel.h>
24 #include <linux/sched.h>
25 #include <linux/wait.h>
27 #include <linux/delay.h>
29 #include <linux/slab.h>
30 #include <linux/netdevice.h>
32 #include "hyperv_net.h"
35 static struct netvsc_device
*alloc_net_device(struct hv_device
*device
)
37 struct netvsc_device
*net_device
;
38 struct net_device
*ndev
= hv_get_drvdata(device
);
40 net_device
= kzalloc(sizeof(struct netvsc_device
), GFP_KERNEL
);
45 net_device
->destroy
= false;
46 net_device
->dev
= device
;
47 net_device
->ndev
= ndev
;
49 hv_set_drvdata(device
, net_device
);
53 static struct netvsc_device
*get_outbound_net_device(struct hv_device
*device
)
55 struct netvsc_device
*net_device
;
57 net_device
= hv_get_drvdata(device
);
58 if (net_device
&& net_device
->destroy
)
64 static struct netvsc_device
*get_inbound_net_device(struct hv_device
*device
)
66 struct netvsc_device
*net_device
;
68 net_device
= hv_get_drvdata(device
);
73 if (net_device
->destroy
&&
74 atomic_read(&net_device
->num_outstanding_sends
) == 0)
82 static int netvsc_destroy_recv_buf(struct netvsc_device
*net_device
)
84 struct nvsp_message
*revoke_packet
;
86 struct net_device
*ndev
= net_device
->ndev
;
89 * If we got a section count, it means we received a
90 * SendReceiveBufferComplete msg (ie sent
91 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
92 * to send a revoke msg here
94 if (net_device
->recv_section_cnt
) {
95 /* Send the revoke receive buffer */
96 revoke_packet
= &net_device
->revoke_packet
;
97 memset(revoke_packet
, 0, sizeof(struct nvsp_message
));
99 revoke_packet
->hdr
.msg_type
=
100 NVSP_MSG1_TYPE_REVOKE_RECV_BUF
;
101 revoke_packet
->msg
.v1_msg
.
102 revoke_recv_buf
.id
= NETVSC_RECEIVE_BUFFER_ID
;
104 ret
= vmbus_sendpacket(net_device
->dev
->channel
,
106 sizeof(struct nvsp_message
),
107 (unsigned long)revoke_packet
,
108 VM_PKT_DATA_INBAND
, 0);
110 * If we failed here, we might as well return and
111 * have a leak rather than continue and a bugchk
114 netdev_err(ndev
, "unable to send "
115 "revoke receive buffer to netvsp\n");
120 /* Teardown the gpadl on the vsp end */
121 if (net_device
->recv_buf_gpadl_handle
) {
122 ret
= vmbus_teardown_gpadl(net_device
->dev
->channel
,
123 net_device
->recv_buf_gpadl_handle
);
125 /* If we failed here, we might as well return and have a leak
126 * rather than continue and a bugchk
130 "unable to teardown receive buffer's gpadl\n");
133 net_device
->recv_buf_gpadl_handle
= 0;
136 if (net_device
->recv_buf
) {
137 /* Free up the receive buffer */
138 free_pages((unsigned long)net_device
->recv_buf
,
139 get_order(net_device
->recv_buf_size
));
140 net_device
->recv_buf
= NULL
;
143 if (net_device
->recv_section
) {
144 net_device
->recv_section_cnt
= 0;
145 kfree(net_device
->recv_section
);
146 net_device
->recv_section
= NULL
;
152 static int netvsc_init_recv_buf(struct hv_device
*device
)
156 struct netvsc_device
*net_device
;
157 struct nvsp_message
*init_packet
;
158 struct net_device
*ndev
;
160 net_device
= get_outbound_net_device(device
);
163 ndev
= net_device
->ndev
;
165 net_device
->recv_buf
=
166 (void *)__get_free_pages(GFP_KERNEL
|__GFP_ZERO
,
167 get_order(net_device
->recv_buf_size
));
168 if (!net_device
->recv_buf
) {
169 netdev_err(ndev
, "unable to allocate receive "
170 "buffer of size %d\n", net_device
->recv_buf_size
);
176 * Establish the gpadl handle for this buffer on this
177 * channel. Note: This call uses the vmbus connection rather
178 * than the channel to establish the gpadl handle.
180 ret
= vmbus_establish_gpadl(device
->channel
, net_device
->recv_buf
,
181 net_device
->recv_buf_size
,
182 &net_device
->recv_buf_gpadl_handle
);
185 "unable to establish receive buffer's gpadl\n");
190 /* Notify the NetVsp of the gpadl handle */
191 init_packet
= &net_device
->channel_init_pkt
;
193 memset(init_packet
, 0, sizeof(struct nvsp_message
));
195 init_packet
->hdr
.msg_type
= NVSP_MSG1_TYPE_SEND_RECV_BUF
;
196 init_packet
->msg
.v1_msg
.send_recv_buf
.
197 gpadl_handle
= net_device
->recv_buf_gpadl_handle
;
198 init_packet
->msg
.v1_msg
.
199 send_recv_buf
.id
= NETVSC_RECEIVE_BUFFER_ID
;
201 /* Send the gpadl notification request */
202 ret
= vmbus_sendpacket(device
->channel
, init_packet
,
203 sizeof(struct nvsp_message
),
204 (unsigned long)init_packet
,
206 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED
);
209 "unable to send receive buffer's gpadl to netvsp\n");
213 t
= wait_for_completion_timeout(&net_device
->channel_init_wait
, 5*HZ
);
217 /* Check the response */
218 if (init_packet
->msg
.v1_msg
.
219 send_recv_buf_complete
.status
!= NVSP_STAT_SUCCESS
) {
220 netdev_err(ndev
, "Unable to complete receive buffer "
221 "initialization with NetVsp - status %d\n",
222 init_packet
->msg
.v1_msg
.
223 send_recv_buf_complete
.status
);
228 /* Parse the response */
230 net_device
->recv_section_cnt
= init_packet
->msg
.
231 v1_msg
.send_recv_buf_complete
.num_sections
;
233 net_device
->recv_section
= kmalloc(net_device
->recv_section_cnt
234 * sizeof(struct nvsp_1_receive_buffer_section
), GFP_KERNEL
);
235 if (net_device
->recv_section
== NULL
) {
240 memcpy(net_device
->recv_section
,
241 init_packet
->msg
.v1_msg
.
242 send_recv_buf_complete
.sections
,
243 net_device
->recv_section_cnt
*
244 sizeof(struct nvsp_1_receive_buffer_section
));
247 * For 1st release, there should only be 1 section that represents the
248 * entire receive buffer
250 if (net_device
->recv_section_cnt
!= 1 ||
251 net_device
->recv_section
->offset
!= 0) {
259 netvsc_destroy_recv_buf(net_device
);
266 static int netvsc_connect_vsp(struct hv_device
*device
)
269 struct netvsc_device
*net_device
;
270 struct nvsp_message
*init_packet
;
272 struct net_device
*ndev
;
274 net_device
= get_outbound_net_device(device
);
277 ndev
= net_device
->ndev
;
279 init_packet
= &net_device
->channel_init_pkt
;
281 memset(init_packet
, 0, sizeof(struct nvsp_message
));
282 init_packet
->hdr
.msg_type
= NVSP_MSG_TYPE_INIT
;
283 init_packet
->msg
.init_msg
.init
.min_protocol_ver
=
284 NVSP_MIN_PROTOCOL_VERSION
;
285 init_packet
->msg
.init_msg
.init
.max_protocol_ver
=
286 NVSP_MAX_PROTOCOL_VERSION
;
288 /* Send the init request */
289 ret
= vmbus_sendpacket(device
->channel
, init_packet
,
290 sizeof(struct nvsp_message
),
291 (unsigned long)init_packet
,
293 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED
);
298 t
= wait_for_completion_timeout(&net_device
->channel_init_wait
, 5*HZ
);
305 if (init_packet
->msg
.init_msg
.init_complete
.status
!=
311 if (init_packet
->msg
.init_msg
.init_complete
.
312 negotiated_protocol_ver
!= NVSP_PROTOCOL_VERSION_1
) {
316 /* Send the ndis version */
317 memset(init_packet
, 0, sizeof(struct nvsp_message
));
319 ndis_version
= 0x00050000;
321 init_packet
->hdr
.msg_type
= NVSP_MSG1_TYPE_SEND_NDIS_VER
;
322 init_packet
->msg
.v1_msg
.
323 send_ndis_ver
.ndis_major_ver
=
324 (ndis_version
& 0xFFFF0000) >> 16;
325 init_packet
->msg
.v1_msg
.
326 send_ndis_ver
.ndis_minor_ver
=
327 ndis_version
& 0xFFFF;
329 /* Send the init request */
330 ret
= vmbus_sendpacket(device
->channel
, init_packet
,
331 sizeof(struct nvsp_message
),
332 (unsigned long)init_packet
,
333 VM_PKT_DATA_INBAND
, 0);
337 /* Post the big receive buffer to NetVSP */
338 ret
= netvsc_init_recv_buf(device
);
344 static void netvsc_disconnect_vsp(struct netvsc_device
*net_device
)
346 netvsc_destroy_recv_buf(net_device
);
350 * netvsc_device_remove - Callback when the root bus device is removed
352 int netvsc_device_remove(struct hv_device
*device
)
354 struct netvsc_device
*net_device
;
355 struct hv_netvsc_packet
*netvsc_packet
, *pos
;
358 net_device
= hv_get_drvdata(device
);
359 spin_lock_irqsave(&device
->channel
->inbound_lock
, flags
);
360 net_device
->destroy
= true;
361 spin_unlock_irqrestore(&device
->channel
->inbound_lock
, flags
);
363 /* Wait for all send completions */
364 while (atomic_read(&net_device
->num_outstanding_sends
)) {
365 dev_info(&device
->device
,
366 "waiting for %d requests to complete...\n",
367 atomic_read(&net_device
->num_outstanding_sends
));
371 netvsc_disconnect_vsp(net_device
);
374 * Since we have already drained, we don't need to busy wait
375 * as was done in final_release_stor_device()
376 * Note that we cannot set the ext pointer to NULL until
377 * we have drained - to drain the outgoing packets, we need to
378 * allow incoming packets.
381 spin_lock_irqsave(&device
->channel
->inbound_lock
, flags
);
382 hv_set_drvdata(device
, NULL
);
383 spin_unlock_irqrestore(&device
->channel
->inbound_lock
, flags
);
386 * At this point, no one should be accessing net_device
389 dev_notice(&device
->device
, "net device safe to remove\n");
391 /* Now, we can close the channel safely */
392 vmbus_close(device
->channel
);
394 /* Release all resources */
395 list_for_each_entry_safe(netvsc_packet
, pos
,
396 &net_device
->recv_pkt_list
, list_ent
) {
397 list_del(&netvsc_packet
->list_ent
);
398 kfree(netvsc_packet
);
405 static void netvsc_send_completion(struct hv_device
*device
,
406 struct vmpacket_descriptor
*packet
)
408 struct netvsc_device
*net_device
;
409 struct nvsp_message
*nvsp_packet
;
410 struct hv_netvsc_packet
*nvsc_packet
;
411 struct net_device
*ndev
;
413 net_device
= get_inbound_net_device(device
);
416 ndev
= net_device
->ndev
;
418 nvsp_packet
= (struct nvsp_message
*)((unsigned long)packet
+
419 (packet
->offset8
<< 3));
421 if ((nvsp_packet
->hdr
.msg_type
== NVSP_MSG_TYPE_INIT_COMPLETE
) ||
422 (nvsp_packet
->hdr
.msg_type
==
423 NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE
) ||
424 (nvsp_packet
->hdr
.msg_type
==
425 NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE
)) {
426 /* Copy the response back */
427 memcpy(&net_device
->channel_init_pkt
, nvsp_packet
,
428 sizeof(struct nvsp_message
));
429 complete(&net_device
->channel_init_wait
);
430 } else if (nvsp_packet
->hdr
.msg_type
==
431 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE
) {
432 /* Get the send context */
433 nvsc_packet
= (struct hv_netvsc_packet
*)(unsigned long)
436 /* Notify the layer above us */
437 nvsc_packet
->completion
.send
.send_completion(
438 nvsc_packet
->completion
.send
.send_completion_ctx
);
440 atomic_dec(&net_device
->num_outstanding_sends
);
442 netdev_err(ndev
, "Unknown send completion packet type- "
443 "%d received!!\n", nvsp_packet
->hdr
.msg_type
);
448 int netvsc_send(struct hv_device
*device
,
449 struct hv_netvsc_packet
*packet
)
451 struct netvsc_device
*net_device
;
453 struct nvsp_message sendMessage
;
454 struct net_device
*ndev
;
456 net_device
= get_outbound_net_device(device
);
459 ndev
= net_device
->ndev
;
461 sendMessage
.hdr
.msg_type
= NVSP_MSG1_TYPE_SEND_RNDIS_PKT
;
462 if (packet
->is_data_pkt
) {
464 sendMessage
.msg
.v1_msg
.send_rndis_pkt
.channel_type
= 0;
466 /* 1 is RMC_CONTROL; */
467 sendMessage
.msg
.v1_msg
.send_rndis_pkt
.channel_type
= 1;
470 /* Not using send buffer section */
471 sendMessage
.msg
.v1_msg
.send_rndis_pkt
.send_buf_section_index
=
473 sendMessage
.msg
.v1_msg
.send_rndis_pkt
.send_buf_section_size
= 0;
475 if (packet
->page_buf_cnt
) {
476 ret
= vmbus_sendpacket_pagebuffer(device
->channel
,
478 packet
->page_buf_cnt
,
480 sizeof(struct nvsp_message
),
481 (unsigned long)packet
);
483 ret
= vmbus_sendpacket(device
->channel
, &sendMessage
,
484 sizeof(struct nvsp_message
),
485 (unsigned long)packet
,
487 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED
);
492 netdev_err(ndev
, "Unable to send packet %p ret %d\n",
495 atomic_inc(&net_device
->num_outstanding_sends
);
500 static void netvsc_send_recv_completion(struct hv_device
*device
,
503 struct nvsp_message recvcompMessage
;
506 struct net_device
*ndev
;
507 struct netvsc_device
*net_device
= hv_get_drvdata(device
);
509 ndev
= net_device
->ndev
;
511 recvcompMessage
.hdr
.msg_type
=
512 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE
;
514 /* FIXME: Pass in the status */
515 recvcompMessage
.msg
.v1_msg
.send_rndis_pkt_complete
.status
=
519 /* Send the completion */
520 ret
= vmbus_sendpacket(device
->channel
, &recvcompMessage
,
521 sizeof(struct nvsp_message
), transaction_id
,
526 } else if (ret
== -EAGAIN
) {
527 /* no more room...wait a bit and attempt to retry 3 times */
529 netdev_err(ndev
, "unable to send receive completion pkt"
530 " (tid %llx)...retrying %d\n", transaction_id
, retries
);
534 goto retry_send_cmplt
;
536 netdev_err(ndev
, "unable to send receive "
537 "completion pkt (tid %llx)...give up retrying\n",
541 netdev_err(ndev
, "unable to send receive "
542 "completion pkt - %llx\n", transaction_id
);
546 /* Send a receive completion packet to RNDIS device (ie NetVsp) */
547 static void netvsc_receive_completion(void *context
)
549 struct hv_netvsc_packet
*packet
= context
;
550 struct hv_device
*device
= (struct hv_device
*)packet
->device
;
551 struct netvsc_device
*net_device
;
552 u64 transaction_id
= 0;
553 bool fsend_receive_comp
= false;
555 struct net_device
*ndev
;
558 * Even though it seems logical to do a GetOutboundNetDevice() here to
559 * send out receive completion, we are using GetInboundNetDevice()
560 * since we may have disable outbound traffic already.
562 net_device
= get_inbound_net_device(device
);
565 ndev
= net_device
->ndev
;
567 /* Overloading use of the lock. */
568 spin_lock_irqsave(&net_device
->recv_pkt_list_lock
, flags
);
570 packet
->xfer_page_pkt
->count
--;
573 * Last one in the line that represent 1 xfer page packet.
574 * Return the xfer page packet itself to the freelist
576 if (packet
->xfer_page_pkt
->count
== 0) {
577 fsend_receive_comp
= true;
578 transaction_id
= packet
->completion
.recv
.recv_completion_tid
;
579 list_add_tail(&packet
->xfer_page_pkt
->list_ent
,
580 &net_device
->recv_pkt_list
);
584 /* Put the packet back */
585 list_add_tail(&packet
->list_ent
, &net_device
->recv_pkt_list
);
586 spin_unlock_irqrestore(&net_device
->recv_pkt_list_lock
, flags
);
588 /* Send a receive completion for the xfer page packet */
589 if (fsend_receive_comp
)
590 netvsc_send_recv_completion(device
, transaction_id
);
594 static void netvsc_receive(struct hv_device
*device
,
595 struct vmpacket_descriptor
*packet
)
597 struct netvsc_device
*net_device
;
598 struct vmtransfer_page_packet_header
*vmxferpage_packet
;
599 struct nvsp_message
*nvsp_packet
;
600 struct hv_netvsc_packet
*netvsc_packet
= NULL
;
602 unsigned long end
, end_virtual
;
603 /* struct netvsc_driver *netvscDriver; */
604 struct xferpage_packet
*xferpage_packet
= NULL
;
606 int count
= 0, bytes_remain
= 0;
608 struct net_device
*ndev
;
612 net_device
= get_inbound_net_device(device
);
615 ndev
= net_device
->ndev
;
618 * All inbound packets other than send completion should be xfer page
621 if (packet
->type
!= VM_PKT_DATA_USING_XFER_PAGES
) {
622 netdev_err(ndev
, "Unknown packet type received - %d\n",
627 nvsp_packet
= (struct nvsp_message
*)((unsigned long)packet
+
628 (packet
->offset8
<< 3));
630 /* Make sure this is a valid nvsp packet */
631 if (nvsp_packet
->hdr
.msg_type
!=
632 NVSP_MSG1_TYPE_SEND_RNDIS_PKT
) {
633 netdev_err(ndev
, "Unknown nvsp packet type received-"
634 " %d\n", nvsp_packet
->hdr
.msg_type
);
638 vmxferpage_packet
= (struct vmtransfer_page_packet_header
*)packet
;
640 if (vmxferpage_packet
->xfer_pageset_id
!= NETVSC_RECEIVE_BUFFER_ID
) {
641 netdev_err(ndev
, "Invalid xfer page set id - "
642 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID
,
643 vmxferpage_packet
->xfer_pageset_id
);
648 * Grab free packets (range count + 1) to represent this xfer
649 * page packet. +1 to represent the xfer page packet itself.
650 * We grab it here so that we know exactly how many we can
653 spin_lock_irqsave(&net_device
->recv_pkt_list_lock
, flags
);
654 while (!list_empty(&net_device
->recv_pkt_list
)) {
655 list_move_tail(net_device
->recv_pkt_list
.next
, &listHead
);
656 if (++count
== vmxferpage_packet
->range_cnt
+ 1)
659 spin_unlock_irqrestore(&net_device
->recv_pkt_list_lock
, flags
);
662 * We need at least 2 netvsc pkts (1 to represent the xfer
663 * page and at least 1 for the range) i.e. we can handled
664 * some of the xfer page packet ranges...
667 netdev_err(ndev
, "Got only %d netvsc pkt...needed "
668 "%d pkts. Dropping this xfer page packet completely!\n",
669 count
, vmxferpage_packet
->range_cnt
+ 1);
671 /* Return it to the freelist */
672 spin_lock_irqsave(&net_device
->recv_pkt_list_lock
, flags
);
673 for (i
= count
; i
!= 0; i
--) {
674 list_move_tail(listHead
.next
,
675 &net_device
->recv_pkt_list
);
677 spin_unlock_irqrestore(&net_device
->recv_pkt_list_lock
,
680 netvsc_send_recv_completion(device
,
681 vmxferpage_packet
->d
.trans_id
);
686 /* Remove the 1st packet to represent the xfer page packet itself */
687 xferpage_packet
= (struct xferpage_packet
*)listHead
.next
;
688 list_del(&xferpage_packet
->list_ent
);
690 /* This is how much we can satisfy */
691 xferpage_packet
->count
= count
- 1;
693 if (xferpage_packet
->count
!= vmxferpage_packet
->range_cnt
) {
694 netdev_err(ndev
, "Needed %d netvsc pkts to satisfy "
695 "this xfer page...got %d\n",
696 vmxferpage_packet
->range_cnt
, xferpage_packet
->count
);
699 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
700 for (i
= 0; i
< (count
- 1); i
++) {
701 netvsc_packet
= (struct hv_netvsc_packet
*)listHead
.next
;
702 list_del(&netvsc_packet
->list_ent
);
704 /* Initialize the netvsc packet */
705 netvsc_packet
->xfer_page_pkt
= xferpage_packet
;
706 netvsc_packet
->completion
.recv
.recv_completion
=
707 netvsc_receive_completion
;
708 netvsc_packet
->completion
.recv
.recv_completion_ctx
=
710 netvsc_packet
->device
= device
;
711 /* Save this so that we can send it back */
712 netvsc_packet
->completion
.recv
.recv_completion_tid
=
713 vmxferpage_packet
->d
.trans_id
;
715 netvsc_packet
->total_data_buflen
=
716 vmxferpage_packet
->ranges
[i
].byte_count
;
717 netvsc_packet
->page_buf_cnt
= 1;
719 netvsc_packet
->page_buf
[0].len
=
720 vmxferpage_packet
->ranges
[i
].byte_count
;
722 start
= virt_to_phys((void *)((unsigned long)net_device
->
723 recv_buf
+ vmxferpage_packet
->ranges
[i
].byte_offset
));
725 netvsc_packet
->page_buf
[0].pfn
= start
>> PAGE_SHIFT
;
726 end_virtual
= (unsigned long)net_device
->recv_buf
727 + vmxferpage_packet
->ranges
[i
].byte_offset
728 + vmxferpage_packet
->ranges
[i
].byte_count
- 1;
729 end
= virt_to_phys((void *)end_virtual
);
731 /* Calculate the page relative offset */
732 netvsc_packet
->page_buf
[0].offset
=
733 vmxferpage_packet
->ranges
[i
].byte_offset
&
735 if ((end
>> PAGE_SHIFT
) != (start
>> PAGE_SHIFT
)) {
736 /* Handle frame across multiple pages: */
737 netvsc_packet
->page_buf
[0].len
=
738 (netvsc_packet
->page_buf
[0].pfn
<<
741 bytes_remain
= netvsc_packet
->total_data_buflen
-
742 netvsc_packet
->page_buf
[0].len
;
743 for (j
= 1; j
< NETVSC_PACKET_MAXPAGE
; j
++) {
744 netvsc_packet
->page_buf
[j
].offset
= 0;
745 if (bytes_remain
<= PAGE_SIZE
) {
746 netvsc_packet
->page_buf
[j
].len
=
750 netvsc_packet
->page_buf
[j
].len
=
752 bytes_remain
-= PAGE_SIZE
;
754 netvsc_packet
->page_buf
[j
].pfn
=
755 virt_to_phys((void *)(end_virtual
-
756 bytes_remain
)) >> PAGE_SHIFT
;
757 netvsc_packet
->page_buf_cnt
++;
758 if (bytes_remain
== 0)
763 /* Pass it to the upper layer */
764 rndis_filter_receive(device
, netvsc_packet
);
766 netvsc_receive_completion(netvsc_packet
->
767 completion
.recv
.recv_completion_ctx
);
772 static void netvsc_channel_cb(void *context
)
775 struct hv_device
*device
= context
;
776 struct netvsc_device
*net_device
;
779 unsigned char *packet
;
780 struct vmpacket_descriptor
*desc
;
781 unsigned char *buffer
;
782 int bufferlen
= NETVSC_PACKET_SIZE
;
783 struct net_device
*ndev
;
785 packet
= kzalloc(NETVSC_PACKET_SIZE
* sizeof(unsigned char),
791 net_device
= get_inbound_net_device(device
);
794 ndev
= net_device
->ndev
;
797 ret
= vmbus_recvpacket_raw(device
->channel
, buffer
, bufferlen
,
798 &bytes_recvd
, &request_id
);
800 if (bytes_recvd
> 0) {
801 desc
= (struct vmpacket_descriptor
*)buffer
;
802 switch (desc
->type
) {
804 netvsc_send_completion(device
, desc
);
807 case VM_PKT_DATA_USING_XFER_PAGES
:
808 netvsc_receive(device
, desc
);
813 "unhandled packet type %d, "
815 desc
->type
, request_id
,
821 if (bufferlen
> NETVSC_PACKET_SIZE
) {
824 bufferlen
= NETVSC_PACKET_SIZE
;
828 if (bufferlen
> NETVSC_PACKET_SIZE
) {
831 bufferlen
= NETVSC_PACKET_SIZE
;
836 } else if (ret
== -ENOBUFS
) {
837 /* Handle large packet */
838 buffer
= kmalloc(bytes_recvd
, GFP_ATOMIC
);
839 if (buffer
== NULL
) {
840 /* Try again next time around */
842 "unable to allocate buffer of size "
843 "(%d)!!\n", bytes_recvd
);
847 bufferlen
= bytes_recvd
;
857 * netvsc_device_add - Callback when the device belonging to this
860 int netvsc_device_add(struct hv_device
*device
, void *additional_info
)
865 ((struct netvsc_device_info
*)additional_info
)->ring_size
;
866 struct netvsc_device
*net_device
;
867 struct hv_netvsc_packet
*packet
, *pos
;
868 struct net_device
*ndev
;
870 net_device
= alloc_net_device(device
);
877 * Coming into this function, struct net_device * is
878 * registered as the driver private data.
879 * In alloc_net_device(), we register struct netvsc_device *
880 * as the driver private data and stash away struct net_device *
881 * in struct netvsc_device *.
883 ndev
= net_device
->ndev
;
885 /* Initialize the NetVSC channel extension */
886 net_device
->recv_buf_size
= NETVSC_RECEIVE_BUFFER_SIZE
;
887 spin_lock_init(&net_device
->recv_pkt_list_lock
);
889 INIT_LIST_HEAD(&net_device
->recv_pkt_list
);
891 for (i
= 0; i
< NETVSC_RECEIVE_PACKETLIST_COUNT
; i
++) {
892 packet
= kzalloc(sizeof(struct hv_netvsc_packet
) +
893 (NETVSC_RECEIVE_SG_COUNT
*
894 sizeof(struct hv_page_buffer
)), GFP_KERNEL
);
898 list_add_tail(&packet
->list_ent
,
899 &net_device
->recv_pkt_list
);
901 init_completion(&net_device
->channel_init_wait
);
903 /* Open the channel */
904 ret
= vmbus_open(device
->channel
, ring_size
* PAGE_SIZE
,
905 ring_size
* PAGE_SIZE
, NULL
, 0,
906 netvsc_channel_cb
, device
);
909 netdev_err(ndev
, "unable to open channel: %d\n", ret
);
913 /* Channel is opened */
914 pr_info("hv_netvsc channel opened successfully\n");
916 /* Connect with the NetVsp */
917 ret
= netvsc_connect_vsp(device
);
920 "unable to connect to NetVSP - %d\n", ret
);
927 /* Now, we can close the channel safely */
928 vmbus_close(device
->channel
);
933 list_for_each_entry_safe(packet
, pos
,
934 &net_device
->recv_pkt_list
,
936 list_del(&packet
->list_ent
);