diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2012-12-01 09:46:43 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-17 14:34:36 -0500 |
commit | 21c3bef5db359596806f19fee6c3ec0c033881d0 (patch) | |
tree | a90fe317098177a9233c2c4dca1f821c42098e0f /drivers/hv/channel.c | |
parent | 1f42248d724a413baaafd5f83a8f4746bc6f51a5 (diff) |
Drivers: hv: Change the signature of vmbus_set_event()
In preparation for supporting a per-connection signaling mechanism,
change the signature of vmbus_set_event(). This change is also
needed to implement other aspects of the signaling optimization.
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/channel.c')
-rw-r--r-- | drivers/hv/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c index 727c5f1d6acf..70a34daa04c1 100644 --- a/drivers/hv/channel.c +++ b/drivers/hv/channel.c | |||
@@ -55,7 +55,7 @@ static void vmbus_setevent(struct vmbus_channel *channel) | |||
55 | [channel->monitor_grp].pending); | 55 | [channel->monitor_grp].pending); |
56 | 56 | ||
57 | } else { | 57 | } else { |
58 | vmbus_set_event(channel->offermsg.child_relid); | 58 | vmbus_set_event(channel); |
59 | } | 59 | } |
60 | } | 60 | } |
61 | 61 | ||