summaryrefslogtreecommitdiff
path: root/drivers/hv/connection.c
diff options
context:
space:
mode:
authorK. Y. Srinivasan <kys@microsoft.com>2012-12-01 06:46:42 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-17 11:34:36 -0800
commit1f42248d724a413baaafd5f83a8f4746bc6f51a5 (patch)
tree949c840a480c3d5e0514743777ceba5daa375c06 /drivers/hv/connection.c
parent37f7278b81a9ab9b76cf4d716ba420444ca4a616 (diff)
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>
Diffstat (limited to 'drivers/hv/connection.c')
-rw-r--r--drivers/hv/connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hv/connection.c b/drivers/hv/connection.c
index 70ea5d1fc16c..3f8ce7be4c18 100644
--- a/drivers/hv/connection.c
+++ b/drivers/hv/connection.c
@@ -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);
}