• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/hv/

Lines Matching refs:msgInfo

540 	struct vmbus_channel_msginfo *msgInfo;
554 msgInfo = (struct vmbus_channel_msginfo *)curr;
555 requestHeader = (struct vmbus_channel_message_header *)msgInfo->Msg;
558 openMsg = (struct vmbus_channel_open_channel *)msgInfo->Msg;
561 memcpy(&msgInfo->Response.OpenResult,
564 osd_WaitEventSet(msgInfo->WaitEvent);
583 struct vmbus_channel_msginfo *msgInfo;
599 msgInfo = (struct vmbus_channel_msginfo *)curr;
600 requestHeader = (struct vmbus_channel_message_header *)msgInfo->Msg;
608 memcpy(&msgInfo->Response.GpadlCreated,
611 osd_WaitEventSet(msgInfo->WaitEvent);
631 struct vmbus_channel_msginfo *msgInfo;
644 msgInfo = (struct vmbus_channel_msginfo *)curr;
645 requestHeader = (struct vmbus_channel_message_header *)msgInfo->Msg;
651 memcpy(&msgInfo->Response.GpadlTorndown,
654 osd_WaitEventSet(msgInfo->WaitEvent);
673 struct vmbus_channel_msginfo *msgInfo;
683 msgInfo = (struct vmbus_channel_msginfo *)curr;
684 requestHeader = (struct vmbus_channel_message_header *)msgInfo->Msg;
689 memcpy(&msgInfo->Response.VersionResponse,
692 osd_WaitEventSet(msgInfo->WaitEvent);
762 struct vmbus_channel_msginfo *msgInfo;
765 msgInfo = kmalloc(sizeof(*msgInfo) +
768 if (!msgInfo)
771 msgInfo->WaitEvent = osd_WaitEventCreate();
772 if (!msgInfo->WaitEvent) {
773 kfree(msgInfo);
777 msg = (struct vmbus_channel_message_header *)msgInfo->Msg;
783 &msgInfo->msgListEntry);
792 REMOVE_ENTRY_LIST(&msgInfo->msgListEntry);
797 /* osd_WaitEventWait(msgInfo->waitEvent); */
800 REMOVE_ENTRY_LIST(&msgInfo->msgListEntry);
805 if (msgInfo) {
806 kfree(msgInfo->WaitEvent);
807 kfree(msgInfo);