Drivers: hv: Change the signature for hv_signal_event()

In preparation for implementing a per-connection signaling framework,
change the signature of the function hv_signal_event(). The current
code uses a global handle for signaling the host.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
K. Y. Srinivasan
2012-12-01 06:46:42 -08:00
committed by Greg Kroah-Hartman
parent 37f7278b81
commit 1f42248d72
3 changed files with 5 additions and 6 deletions

View File

@@ -402,5 +402,5 @@ int vmbus_set_event(u32 child_relid)
(unsigned long *)vmbus_connection.send_int_page +
(child_relid >> 5));
return hv_signal_event();
return hv_signal_event(hv_context.signal_event_param);
}