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/slab.h>
28 #include <linux/list.h>
29 #include <linux/module.h>
30 #include <linux/completion.h>
31 #include <linux/hyperv.h>
33 #include "hyperv_vmbus.h"
35 struct vmbus_channel_message_table_entry
{
36 enum vmbus_channel_message_type message_type
;
37 void (*message_handler
)(struct vmbus_channel_message_header
*msg
);
42 * vmbus_prep_negotiate_resp() - Create default response for Hyper-V Negotiate message
43 * @icmsghdrp: Pointer to msg header structure
44 * @icmsg_negotiate: Pointer to negotiate message structure
45 * @buf: Raw buffer channel data
47 * @icmsghdrp is of type &struct icmsg_hdr.
48 * @negop is of type &struct icmsg_negotiate.
49 * Set up and fill in default negotiate response message.
51 * The fw_version specifies the framework version that
52 * we can support and srv_version specifies the service
53 * version we can support.
55 * Mainly used by Hyper-V drivers.
57 bool vmbus_prep_negotiate_resp(struct icmsg_hdr
*icmsghdrp
,
58 struct icmsg_negotiate
*negop
, u8
*buf
,
59 int fw_version
, int srv_version
)
61 int icframe_major
, icframe_minor
;
62 int icmsg_major
, icmsg_minor
;
63 int fw_major
, fw_minor
;
64 int srv_major
, srv_minor
;
66 bool found_match
= false;
68 icmsghdrp
->icmsgsize
= 0x10;
69 fw_major
= (fw_version
>> 16);
70 fw_minor
= (fw_version
& 0xFFFF);
72 srv_major
= (srv_version
>> 16);
73 srv_minor
= (srv_version
& 0xFFFF);
75 negop
= (struct icmsg_negotiate
*)&buf
[
76 sizeof(struct vmbuspipe_hdr
) +
77 sizeof(struct icmsg_hdr
)];
79 icframe_major
= negop
->icframe_vercnt
;
82 icmsg_major
= negop
->icmsg_vercnt
;
86 * Select the framework version number we will
90 for (i
= 0; i
< negop
->icframe_vercnt
; i
++) {
91 if ((negop
->icversion_data
[i
].major
== fw_major
) &&
92 (negop
->icversion_data
[i
].minor
== fw_minor
)) {
93 icframe_major
= negop
->icversion_data
[i
].major
;
94 icframe_minor
= negop
->icversion_data
[i
].minor
;
104 for (i
= negop
->icframe_vercnt
;
105 (i
< negop
->icframe_vercnt
+ negop
->icmsg_vercnt
); i
++) {
106 if ((negop
->icversion_data
[i
].major
== srv_major
) &&
107 (negop
->icversion_data
[i
].minor
== srv_minor
)) {
108 icmsg_major
= negop
->icversion_data
[i
].major
;
109 icmsg_minor
= negop
->icversion_data
[i
].minor
;
115 * Respond with the framework and service
116 * version numbers we can support.
121 negop
->icframe_vercnt
= 0;
122 negop
->icmsg_vercnt
= 0;
124 negop
->icframe_vercnt
= 1;
125 negop
->icmsg_vercnt
= 1;
128 negop
->icversion_data
[0].major
= icframe_major
;
129 negop
->icversion_data
[0].minor
= icframe_minor
;
130 negop
->icversion_data
[1].major
= icmsg_major
;
131 negop
->icversion_data
[1].minor
= icmsg_minor
;
135 EXPORT_SYMBOL_GPL(vmbus_prep_negotiate_resp
);
138 * alloc_channel - Allocate and initialize a vmbus channel object
140 static struct vmbus_channel
*alloc_channel(void)
142 struct vmbus_channel
*channel
;
144 channel
= kzalloc(sizeof(*channel
), GFP_ATOMIC
);
148 spin_lock_init(&channel
->inbound_lock
);
149 spin_lock_init(&channel
->sc_lock
);
151 INIT_LIST_HEAD(&channel
->sc_list
);
153 channel
->controlwq
= create_workqueue("hv_vmbus_ctl");
154 if (!channel
->controlwq
) {
163 * release_hannel - Release the vmbus channel object itself
165 static void release_channel(struct work_struct
*work
)
167 struct vmbus_channel
*channel
= container_of(work
,
168 struct vmbus_channel
,
171 destroy_workqueue(channel
->controlwq
);
177 * free_channel - Release the resources used by the vmbus channel object
179 static void free_channel(struct vmbus_channel
*channel
)
183 * We have to release the channel's workqueue/thread in the vmbus's
184 * workqueue/thread context
185 * ie we can't destroy ourselves.
187 INIT_WORK(&channel
->work
, release_channel
);
188 queue_work(vmbus_connection
.work_queue
, &channel
->work
);
194 * vmbus_process_rescind_offer -
195 * Rescind the offer by initiating a device removal
197 static void vmbus_process_rescind_offer(struct work_struct
*work
)
199 struct vmbus_channel
*channel
= container_of(work
,
200 struct vmbus_channel
,
203 struct vmbus_channel
*primary_channel
;
204 struct vmbus_channel_relid_released msg
;
206 if (channel
->device_obj
)
207 vmbus_device_unregister(channel
->device_obj
);
208 memset(&msg
, 0, sizeof(struct vmbus_channel_relid_released
));
209 msg
.child_relid
= channel
->offermsg
.child_relid
;
210 msg
.header
.msgtype
= CHANNELMSG_RELID_RELEASED
;
211 vmbus_post_msg(&msg
, sizeof(struct vmbus_channel_relid_released
));
213 if (channel
->primary_channel
== NULL
) {
214 spin_lock_irqsave(&vmbus_connection
.channel_lock
, flags
);
215 list_del(&channel
->listentry
);
216 spin_unlock_irqrestore(&vmbus_connection
.channel_lock
, flags
);
218 primary_channel
= channel
->primary_channel
;
219 spin_lock_irqsave(&primary_channel
->sc_lock
, flags
);
220 list_del(&channel
->sc_list
);
221 spin_unlock_irqrestore(&primary_channel
->sc_lock
, flags
);
223 free_channel(channel
);
226 void vmbus_free_channels(void)
228 struct vmbus_channel
*channel
;
230 list_for_each_entry(channel
, &vmbus_connection
.chn_list
, listentry
) {
231 vmbus_device_unregister(channel
->device_obj
);
232 kfree(channel
->device_obj
);
233 free_channel(channel
);
238 * vmbus_process_offer - Process the offer by creating a channel/device
239 * associated with this offer
241 static void vmbus_process_offer(struct work_struct
*work
)
243 struct vmbus_channel
*newchannel
= container_of(work
,
244 struct vmbus_channel
,
246 struct vmbus_channel
*channel
;
251 /* The next possible work is rescind handling */
252 INIT_WORK(&newchannel
->work
, vmbus_process_rescind_offer
);
254 /* Make sure this is a new offer */
255 spin_lock_irqsave(&vmbus_connection
.channel_lock
, flags
);
257 list_for_each_entry(channel
, &vmbus_connection
.chn_list
, listentry
) {
258 if (!uuid_le_cmp(channel
->offermsg
.offer
.if_type
,
259 newchannel
->offermsg
.offer
.if_type
) &&
260 !uuid_le_cmp(channel
->offermsg
.offer
.if_instance
,
261 newchannel
->offermsg
.offer
.if_instance
)) {
268 list_add_tail(&newchannel
->listentry
,
269 &vmbus_connection
.chn_list
);
271 spin_unlock_irqrestore(&vmbus_connection
.channel_lock
, flags
);
275 * Check to see if this is a sub-channel.
277 if (newchannel
->offermsg
.offer
.sub_channel_index
!= 0) {
279 * Process the sub-channel.
281 newchannel
->primary_channel
= channel
;
282 spin_lock_irqsave(&channel
->sc_lock
, flags
);
283 list_add_tail(&newchannel
->sc_list
, &channel
->sc_list
);
284 spin_unlock_irqrestore(&channel
->sc_lock
, flags
);
285 newchannel
->state
= CHANNEL_OPEN_STATE
;
286 if (channel
->sc_creation_callback
!= NULL
)
287 channel
->sc_creation_callback(newchannel
);
292 free_channel(newchannel
);
297 * This state is used to indicate a successful open
298 * so that when we do close the channel normally, we
299 * can cleanup properly
301 newchannel
->state
= CHANNEL_OPEN_STATE
;
304 * Start the process of binding this offer to the driver
305 * We need to set the DeviceObject field before calling
306 * vmbus_child_dev_add()
308 newchannel
->device_obj
= vmbus_device_create(
309 &newchannel
->offermsg
.offer
.if_type
,
310 &newchannel
->offermsg
.offer
.if_instance
,
314 * Add the new device to the bus. This will kick off device-driver
315 * binding which eventually invokes the device driver's AddDevice()
318 ret
= vmbus_device_register(newchannel
->device_obj
);
320 pr_err("unable to add child device object (relid %d)\n",
321 newchannel
->offermsg
.child_relid
);
323 spin_lock_irqsave(&vmbus_connection
.channel_lock
, flags
);
324 list_del(&newchannel
->listentry
);
325 spin_unlock_irqrestore(&vmbus_connection
.channel_lock
, flags
);
326 kfree(newchannel
->device_obj
);
328 free_channel(newchannel
);
340 * This is an array of device_ids (device types) that are performance critical.
341 * We attempt to distribute the interrupt load for these devices across
342 * all available CPUs.
344 static const struct hv_vmbus_device_id hp_devs
[] = {
355 * We use this state to statically distribute the channel interrupt load.
360 * Starting with Win8, we can statically distribute the incoming
361 * channel interrupt load by binding a channel to VCPU. We
362 * implement here a simple round robin scheme for distributing
363 * the interrupt load.
364 * We will bind channels that are not performance critical to cpu 0 and
365 * performance critical channels (IDE, SCSI and Network) will be uniformly
366 * distributed across all available CPUs.
368 static u32
get_vp_index(uuid_le
*type_guid
)
372 bool perf_chn
= false;
373 u32 max_cpus
= num_online_cpus();
375 for (i
= IDE
; i
< MAX_PERF_CHN
; i
++) {
376 if (!memcmp(type_guid
->b
, hp_devs
[i
].guid
,
382 if ((vmbus_proto_version
== VERSION_WS2008
) ||
383 (vmbus_proto_version
== VERSION_WIN7
) || (!perf_chn
)) {
385 * Prior to win8, all channel interrupts are
386 * delivered on cpu 0.
387 * Also if the channel is not a performance critical
388 * channel, bind it to cpu 0.
392 cur_cpu
= (++next_vp
% max_cpus
);
393 return hv_context
.vp_index
[cur_cpu
];
397 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
400 static void vmbus_onoffer(struct vmbus_channel_message_header
*hdr
)
402 struct vmbus_channel_offer_channel
*offer
;
403 struct vmbus_channel
*newchannel
;
405 offer
= (struct vmbus_channel_offer_channel
*)hdr
;
407 /* Allocate the channel object and save this offer. */
408 newchannel
= alloc_channel();
410 pr_err("Unable to allocate channel object\n");
415 * By default we setup state to enable batched
416 * reading. A specific service can choose to
417 * disable this prior to opening the channel.
419 newchannel
->batched_reading
= true;
422 * Setup state for signalling the host.
424 newchannel
->sig_event
= (struct hv_input_signal_event
*)
425 (ALIGN((unsigned long)
426 &newchannel
->sig_buf
,
427 HV_HYPERCALL_PARAM_ALIGN
));
429 newchannel
->sig_event
->connectionid
.asu32
= 0;
430 newchannel
->sig_event
->connectionid
.u
.id
= VMBUS_EVENT_CONNECTION_ID
;
431 newchannel
->sig_event
->flag_number
= 0;
432 newchannel
->sig_event
->rsvdz
= 0;
434 if (vmbus_proto_version
!= VERSION_WS2008
) {
435 newchannel
->is_dedicated_interrupt
=
436 (offer
->is_dedicated_interrupt
!= 0);
437 newchannel
->sig_event
->connectionid
.u
.id
=
438 offer
->connection_id
;
441 newchannel
->target_vp
= get_vp_index(&offer
->offer
.if_type
);
443 memcpy(&newchannel
->offermsg
, offer
,
444 sizeof(struct vmbus_channel_offer_channel
));
445 newchannel
->monitor_grp
= (u8
)offer
->monitorid
/ 32;
446 newchannel
->monitor_bit
= (u8
)offer
->monitorid
% 32;
448 INIT_WORK(&newchannel
->work
, vmbus_process_offer
);
449 queue_work(newchannel
->controlwq
, &newchannel
->work
);
453 * vmbus_onoffer_rescind - Rescind offer handler.
455 * We queue a work item to process this offer synchronously
457 static void vmbus_onoffer_rescind(struct vmbus_channel_message_header
*hdr
)
459 struct vmbus_channel_rescind_offer
*rescind
;
460 struct vmbus_channel
*channel
;
462 rescind
= (struct vmbus_channel_rescind_offer
*)hdr
;
463 channel
= relid2channel(rescind
->child_relid
);
466 /* Just return here, no channel found */
469 /* work is initialized for vmbus_process_rescind_offer() from
470 * vmbus_process_offer() where the channel got created */
471 queue_work(channel
->controlwq
, &channel
->work
);
475 * vmbus_onoffers_delivered -
476 * This is invoked when all offers have been delivered.
478 * Nothing to do here.
480 static void vmbus_onoffers_delivered(
481 struct vmbus_channel_message_header
*hdr
)
486 * vmbus_onopen_result - Open result handler.
488 * This is invoked when we received a response to our channel open request.
489 * Find the matching request, copy the response and signal the requesting
492 static void vmbus_onopen_result(struct vmbus_channel_message_header
*hdr
)
494 struct vmbus_channel_open_result
*result
;
495 struct vmbus_channel_msginfo
*msginfo
;
496 struct vmbus_channel_message_header
*requestheader
;
497 struct vmbus_channel_open_channel
*openmsg
;
500 result
= (struct vmbus_channel_open_result
*)hdr
;
503 * Find the open msg, copy the result and signal/unblock the wait event
505 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
507 list_for_each_entry(msginfo
, &vmbus_connection
.chn_msg_list
,
510 (struct vmbus_channel_message_header
*)msginfo
->msg
;
512 if (requestheader
->msgtype
== CHANNELMSG_OPENCHANNEL
) {
514 (struct vmbus_channel_open_channel
*)msginfo
->msg
;
515 if (openmsg
->child_relid
== result
->child_relid
&&
516 openmsg
->openid
== result
->openid
) {
517 memcpy(&msginfo
->response
.open_result
,
520 struct vmbus_channel_open_result
));
521 complete(&msginfo
->waitevent
);
526 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
530 * vmbus_ongpadl_created - GPADL created handler.
532 * This is invoked when we received a response to our gpadl create request.
533 * Find the matching request, copy the response and signal the requesting
536 static void vmbus_ongpadl_created(struct vmbus_channel_message_header
*hdr
)
538 struct vmbus_channel_gpadl_created
*gpadlcreated
;
539 struct vmbus_channel_msginfo
*msginfo
;
540 struct vmbus_channel_message_header
*requestheader
;
541 struct vmbus_channel_gpadl_header
*gpadlheader
;
544 gpadlcreated
= (struct vmbus_channel_gpadl_created
*)hdr
;
547 * Find the establish msg, copy the result and signal/unblock the wait
550 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
552 list_for_each_entry(msginfo
, &vmbus_connection
.chn_msg_list
,
555 (struct vmbus_channel_message_header
*)msginfo
->msg
;
557 if (requestheader
->msgtype
== CHANNELMSG_GPADL_HEADER
) {
559 (struct vmbus_channel_gpadl_header
*)requestheader
;
561 if ((gpadlcreated
->child_relid
==
562 gpadlheader
->child_relid
) &&
563 (gpadlcreated
->gpadl
== gpadlheader
->gpadl
)) {
564 memcpy(&msginfo
->response
.gpadl_created
,
567 struct vmbus_channel_gpadl_created
));
568 complete(&msginfo
->waitevent
);
573 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
577 * vmbus_ongpadl_torndown - GPADL torndown handler.
579 * This is invoked when we received a response to our gpadl teardown request.
580 * Find the matching request, copy the response and signal the requesting
583 static void vmbus_ongpadl_torndown(
584 struct vmbus_channel_message_header
*hdr
)
586 struct vmbus_channel_gpadl_torndown
*gpadl_torndown
;
587 struct vmbus_channel_msginfo
*msginfo
;
588 struct vmbus_channel_message_header
*requestheader
;
589 struct vmbus_channel_gpadl_teardown
*gpadl_teardown
;
592 gpadl_torndown
= (struct vmbus_channel_gpadl_torndown
*)hdr
;
595 * Find the open msg, copy the result and signal/unblock the wait event
597 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
599 list_for_each_entry(msginfo
, &vmbus_connection
.chn_msg_list
,
602 (struct vmbus_channel_message_header
*)msginfo
->msg
;
604 if (requestheader
->msgtype
== CHANNELMSG_GPADL_TEARDOWN
) {
606 (struct vmbus_channel_gpadl_teardown
*)requestheader
;
608 if (gpadl_torndown
->gpadl
== gpadl_teardown
->gpadl
) {
609 memcpy(&msginfo
->response
.gpadl_torndown
,
612 struct vmbus_channel_gpadl_torndown
));
613 complete(&msginfo
->waitevent
);
618 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
622 * vmbus_onversion_response - Version response handler
624 * This is invoked when we received a response to our initiate contact request.
625 * Find the matching request, copy the response and signal the requesting
628 static void vmbus_onversion_response(
629 struct vmbus_channel_message_header
*hdr
)
631 struct vmbus_channel_msginfo
*msginfo
;
632 struct vmbus_channel_message_header
*requestheader
;
633 struct vmbus_channel_version_response
*version_response
;
636 version_response
= (struct vmbus_channel_version_response
*)hdr
;
637 spin_lock_irqsave(&vmbus_connection
.channelmsg_lock
, flags
);
639 list_for_each_entry(msginfo
, &vmbus_connection
.chn_msg_list
,
642 (struct vmbus_channel_message_header
*)msginfo
->msg
;
644 if (requestheader
->msgtype
==
645 CHANNELMSG_INITIATE_CONTACT
) {
646 memcpy(&msginfo
->response
.version_response
,
648 sizeof(struct vmbus_channel_version_response
));
649 complete(&msginfo
->waitevent
);
652 spin_unlock_irqrestore(&vmbus_connection
.channelmsg_lock
, flags
);
655 /* Channel message dispatch table */
656 static struct vmbus_channel_message_table_entry
657 channel_message_table
[CHANNELMSG_COUNT
] = {
658 {CHANNELMSG_INVALID
, NULL
},
659 {CHANNELMSG_OFFERCHANNEL
, vmbus_onoffer
},
660 {CHANNELMSG_RESCIND_CHANNELOFFER
, vmbus_onoffer_rescind
},
661 {CHANNELMSG_REQUESTOFFERS
, NULL
},
662 {CHANNELMSG_ALLOFFERS_DELIVERED
, vmbus_onoffers_delivered
},
663 {CHANNELMSG_OPENCHANNEL
, NULL
},
664 {CHANNELMSG_OPENCHANNEL_RESULT
, vmbus_onopen_result
},
665 {CHANNELMSG_CLOSECHANNEL
, NULL
},
666 {CHANNELMSG_GPADL_HEADER
, NULL
},
667 {CHANNELMSG_GPADL_BODY
, NULL
},
668 {CHANNELMSG_GPADL_CREATED
, vmbus_ongpadl_created
},
669 {CHANNELMSG_GPADL_TEARDOWN
, NULL
},
670 {CHANNELMSG_GPADL_TORNDOWN
, vmbus_ongpadl_torndown
},
671 {CHANNELMSG_RELID_RELEASED
, NULL
},
672 {CHANNELMSG_INITIATE_CONTACT
, NULL
},
673 {CHANNELMSG_VERSION_RESPONSE
, vmbus_onversion_response
},
674 {CHANNELMSG_UNLOAD
, NULL
},
678 * vmbus_onmessage - Handler for channel protocol messages.
680 * This is invoked in the vmbus worker thread context.
682 void vmbus_onmessage(void *context
)
684 struct hv_message
*msg
= context
;
685 struct vmbus_channel_message_header
*hdr
;
688 hdr
= (struct vmbus_channel_message_header
*)msg
->u
.payload
;
689 size
= msg
->header
.payload_size
;
691 if (hdr
->msgtype
>= CHANNELMSG_COUNT
) {
692 pr_err("Received invalid channel message type %d size %d\n",
694 print_hex_dump_bytes("", DUMP_PREFIX_NONE
,
695 (unsigned char *)msg
->u
.payload
, size
);
699 if (channel_message_table
[hdr
->msgtype
].message_handler
)
700 channel_message_table
[hdr
->msgtype
].message_handler(hdr
);
702 pr_err("Unhandled channel message type %d\n", hdr
->msgtype
);
706 * vmbus_request_offers - Send a request to get all our pending offers.
708 int vmbus_request_offers(void)
710 struct vmbus_channel_message_header
*msg
;
711 struct vmbus_channel_msginfo
*msginfo
;
714 msginfo
= kmalloc(sizeof(*msginfo
) +
715 sizeof(struct vmbus_channel_message_header
),
720 init_completion(&msginfo
->waitevent
);
722 msg
= (struct vmbus_channel_message_header
*)msginfo
->msg
;
724 msg
->msgtype
= CHANNELMSG_REQUESTOFFERS
;
727 ret
= vmbus_post_msg(msg
,
728 sizeof(struct vmbus_channel_message_header
));
730 pr_err("Unable to request offers - %d\n", ret
);
735 t
= wait_for_completion_timeout(&msginfo
->waitevent
, 5*HZ
);
750 * Retrieve the (sub) channel on which to send an outgoing request.
751 * When a primary channel has multiple sub-channels, we choose a
752 * channel whose VCPU binding is closest to the VCPU on which
753 * this call is being made.
755 struct vmbus_channel
*vmbus_get_outgoing_channel(struct vmbus_channel
*primary
)
757 struct list_head
*cur
, *tmp
;
758 int cur_cpu
= hv_context
.vp_index
[smp_processor_id()];
759 struct vmbus_channel
*cur_channel
;
760 struct vmbus_channel
*outgoing_channel
= primary
;
761 int cpu_distance
, new_cpu_distance
;
763 if (list_empty(&primary
->sc_list
))
764 return outgoing_channel
;
766 list_for_each_safe(cur
, tmp
, &primary
->sc_list
) {
767 cur_channel
= list_entry(cur
, struct vmbus_channel
, sc_list
);
768 if (cur_channel
->state
!= CHANNEL_OPENED_STATE
)
771 if (cur_channel
->target_vp
== cur_cpu
)
774 cpu_distance
= ((outgoing_channel
->target_vp
> cur_cpu
) ?
775 (outgoing_channel
->target_vp
- cur_cpu
) :
776 (cur_cpu
- outgoing_channel
->target_vp
));
778 new_cpu_distance
= ((cur_channel
->target_vp
> cur_cpu
) ?
779 (cur_channel
->target_vp
- cur_cpu
) :
780 (cur_cpu
- cur_channel
->target_vp
));
782 if (cpu_distance
< new_cpu_distance
)
785 outgoing_channel
= cur_channel
;
788 return outgoing_channel
;
790 EXPORT_SYMBOL_GPL(vmbus_get_outgoing_channel
);
792 static void invoke_sc_cb(struct vmbus_channel
*primary_channel
)
794 struct list_head
*cur
, *tmp
;
795 struct vmbus_channel
*cur_channel
;
797 if (primary_channel
->sc_creation_callback
== NULL
)
800 list_for_each_safe(cur
, tmp
, &primary_channel
->sc_list
) {
801 cur_channel
= list_entry(cur
, struct vmbus_channel
, sc_list
);
803 primary_channel
->sc_creation_callback(cur_channel
);
807 void vmbus_set_sc_create_callback(struct vmbus_channel
*primary_channel
,
808 void (*sc_cr_cb
)(struct vmbus_channel
*new_sc
))
810 primary_channel
->sc_creation_callback
= sc_cr_cb
;
812 EXPORT_SYMBOL_GPL(vmbus_set_sc_create_callback
);
814 bool vmbus_are_subchannels_present(struct vmbus_channel
*primary
)
818 ret
= !list_empty(&primary
->sc_list
);
822 * Invoke the callback on sub-channel creation.
823 * This will present a uniform interface to the
826 invoke_sc_cb(primary
);
831 EXPORT_SYMBOL_GPL(vmbus_are_subchannels_present
);