void *Extension;
};
-int vmbus_on_isr(struct hv_driver *drv);
-void vmbus_on_msg_dpc(struct hv_driver *drv);
-void vmbus_on_event_dpc(struct hv_driver *drv);
-
#endif /* _VMBUS_API_H_ */
/*
* vmbus_on_msg_dpc - DPC routine to handle messages from the hypervisior
*/
-void vmbus_on_msg_dpc(struct hv_driver *drv)
+static void vmbus_on_msg_dpc(struct hv_driver *drv)
{
int cpu = smp_processor_id();
void *page_addr = hv_context.synic_message_page[cpu];
/*
* vmbus_on_event_dpc - DPC routine to handle events from the hypervisior
*/
-void vmbus_on_event_dpc(struct hv_driver *drv)
+static void vmbus_on_event_dpc(struct hv_driver *drv)
{
/* TODO: Process any events */
VmbusOnEvents();
/*
* vmbus_on_isr - ISR routine
*/
-int vmbus_on_isr(struct hv_driver *drv)
+static int vmbus_on_isr(struct hv_driver *drv)
{
int ret = 0;
int cpu = smp_processor_id();