|
@@ -73,7 +73,7 @@ static void shutdown_onchannelcallback(void *context)
|
|
|
sizeof(struct vmbuspipe_hdr)];
|
|
|
|
|
|
if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) {
|
|
|
- prep_negotiate_resp(icmsghdrp, negop, shut_txf_buf);
|
|
|
+ vmbus_prep_negotiate_resp(icmsghdrp, negop, shut_txf_buf);
|
|
|
} else {
|
|
|
shutdown_msg =
|
|
|
(struct shutdown_msg_data *)&shut_txf_buf[
|
|
@@ -198,7 +198,7 @@ static void timesync_onchannelcallback(void *context)
|
|
|
sizeof(struct vmbuspipe_hdr)];
|
|
|
|
|
|
if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) {
|
|
|
- prep_negotiate_resp(icmsghdrp, NULL, time_txf_buf);
|
|
|
+ vmbus_prep_negotiate_resp(icmsghdrp, NULL, time_txf_buf);
|
|
|
} else {
|
|
|
timedatap = (struct ictimesync_data *)&time_txf_buf[
|
|
|
sizeof(struct vmbuspipe_hdr) +
|
|
@@ -237,7 +237,7 @@ static void heartbeat_onchannelcallback(void *context)
|
|
|
sizeof(struct vmbuspipe_hdr)];
|
|
|
|
|
|
if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) {
|
|
|
- prep_negotiate_resp(icmsghdrp, NULL, hbeat_txf_buf);
|
|
|
+ vmbus_prep_negotiate_resp(icmsghdrp, NULL, hbeat_txf_buf);
|
|
|
} else {
|
|
|
heartbeat_msg =
|
|
|
(struct heartbeat_msg_data *)&hbeat_txf_buf[
|