blob: 2b56a3f47b30e8f0558b5309b114aa5899e4a2da [file] [log] [blame]
Hank Janssen3e7ee492009-07-13 16:02:34 -07001/*
2 *
3 * Copyright (c) 2009, Microsoft Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 *
18 * Authors:
19 * Haiyang Zhang <haiyangz@microsoft.com>
20 * Hank Janssen <hjanssen@microsoft.com>
21 *
22 */
Hank Janssen0a466182011-03-29 13:58:47 -070023#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
Greg Kroah-Hartmana0086dc2009-08-17 17:22:08 -070025#include <linux/kernel.h>
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -080026#include <linux/sched.h>
27#include <linux/wait.h>
K. Y. Srinivasan5289d3d2011-08-25 09:49:01 -070028#include <linux/delay.h>
Greg Kroah-Hartmana0086dc2009-08-17 17:22:08 -070029#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Greg Kroah-Hartmana0086dc2009-08-17 17:22:08 -070031#include <linux/vmalloc.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070032#include <linux/hyperv.h>
Greg Kroah-Hartman407dd162011-10-11 08:36:44 -060033#include <asm/hyperv.h>
K. Y. Srinivasan0f2a6612011-05-12 19:34:28 -070034#include "hyperv_vmbus.h"
Hank Janssen3e7ee492009-07-13 16:02:34 -070035
Hank Janssen3e7ee492009-07-13 16:02:34 -070036
Haiyang Zhangda9fcb72011-01-26 12:12:14 -080037struct vmbus_connection vmbus_connection = {
38 .conn_state = DISCONNECTED,
39 .next_gpadl_handle = ATOMIC_INIT(0xE1E10),
Hank Janssen3e7ee492009-07-13 16:02:34 -070040};
41
Hank Janssen3e189512010-03-04 22:11:00 +000042/*
K. Y. Srinivasan610071c2012-12-01 06:46:38 -080043 * VMBUS version is 32 bit entity broken up into
44 * two 16 bit quantities: major_number. minor_number.
45 *
46 * 0 . 13 (Windows Server 2008)
47 * 1 . 1 (Windows 7)
48 * 2 . 4 (Windows 8)
49 */
50
51#define VERSION_WS2008 ((0 << 16) | (13))
52#define VERSION_WIN7 ((1 << 16) | (1))
53#define VERSION_WIN8 ((2 << 16) | (4))
54
55#define VERSION_INVAL -1
56
57static __u32 vmbus_get_next_version(__u32 current_version)
58{
59 switch (current_version) {
60 case (VERSION_WIN7):
61 return VERSION_WS2008;
62
63 case (VERSION_WIN8):
64 return VERSION_WIN7;
65
66 case (VERSION_WS2008):
67 default:
68 return VERSION_INVAL;
69 }
70}
71
72static int vmbus_negotiate_version(struct vmbus_channel_msginfo *msginfo,
73 __u32 version)
74{
75 int ret = 0;
76 struct vmbus_channel_initiate_contact *msg;
77 unsigned long flags;
78 int t;
79
80 init_completion(&msginfo->waitevent);
81
82 msg = (struct vmbus_channel_initiate_contact *)msginfo->msg;
83
84 msg->header.msgtype = CHANNELMSG_INITIATE_CONTACT;
85 msg->vmbus_version_requested = version;
86 msg->interrupt_page = virt_to_phys(vmbus_connection.int_page);
87 msg->monitor_page1 = virt_to_phys(vmbus_connection.monitor_pages);
88 msg->monitor_page2 = virt_to_phys(
89 (void *)((unsigned long)vmbus_connection.monitor_pages +
90 PAGE_SIZE));
91
92 /*
93 * Add to list before we send the request since we may
94 * receive the response before returning from this routine
95 */
96 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
97 list_add_tail(&msginfo->msglistentry,
98 &vmbus_connection.chn_msg_list);
99
100 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
101
102 ret = vmbus_post_msg(msg,
103 sizeof(struct vmbus_channel_initiate_contact));
104 if (ret != 0) {
105 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
106 list_del(&msginfo->msglistentry);
107 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock,
108 flags);
109 return ret;
110 }
111
112 /* Wait for the connection response */
113 t = wait_for_completion_timeout(&msginfo->waitevent, 5*HZ);
114 if (t == 0) {
115 spin_lock_irqsave(&vmbus_connection.channelmsg_lock,
116 flags);
117 list_del(&msginfo->msglistentry);
118 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock,
119 flags);
120 return -ETIMEDOUT;
121 }
122
123 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
124 list_del(&msginfo->msglistentry);
125 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
126
127 /* Check if successful */
128 if (msginfo->response.version_response.version_supported) {
129 vmbus_connection.conn_state = CONNECTED;
130 } else {
131 pr_err("Unable to connect, "
132 "Version %d not supported by Hyper-V\n",
133 version);
134 return -ECONNREFUSED;
135 }
136
137 return ret;
138}
139
140/*
Haiyang Zhangc6977672011-01-26 12:12:08 -0800141 * vmbus_connect - Sends a connect request on the partition service connection
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700142 */
Haiyang Zhangc6977672011-01-26 12:12:08 -0800143int vmbus_connect(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700144{
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700145 int ret = 0;
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800146 struct vmbus_channel_msginfo *msginfo = NULL;
K. Y. Srinivasan610071c2012-12-01 06:46:38 -0800147 __u32 version;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700148
Bill Pemberton454f18a2009-07-27 16:47:24 -0400149 /* Initialize the vmbus connection */
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800150 vmbus_connection.conn_state = CONNECTING;
151 vmbus_connection.work_queue = create_workqueue("hv_vmbus_con");
152 if (!vmbus_connection.work_queue) {
K. Y. Srinivasan3a7546d2011-06-06 15:50:10 -0700153 ret = -ENOMEM;
K. Y. Srinivasanb0043862011-05-10 07:55:44 -0700154 goto cleanup;
Bill Pembertonde65a382009-07-29 17:00:09 -0400155 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700156
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800157 INIT_LIST_HEAD(&vmbus_connection.chn_msg_list);
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800158 spin_lock_init(&vmbus_connection.channelmsg_lock);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700159
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800160 INIT_LIST_HEAD(&vmbus_connection.chn_list);
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800161 spin_lock_init(&vmbus_connection.channel_lock);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700162
Bill Pemberton454f18a2009-07-27 16:47:24 -0400163 /*
164 * Setup the vmbus event connection for channel interrupt
165 * abstraction stuff
166 */
K. Y. Srinivasandf3493e2011-02-11 09:59:00 -0800167 vmbus_connection.int_page =
168 (void *)__get_free_pages(GFP_KERNEL|__GFP_ZERO, 0);
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800169 if (vmbus_connection.int_page == NULL) {
K. Y. Srinivasan3a7546d2011-06-06 15:50:10 -0700170 ret = -ENOMEM;
K. Y. Srinivasanb0043862011-05-10 07:55:44 -0700171 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700172 }
173
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800174 vmbus_connection.recv_int_page = vmbus_connection.int_page;
175 vmbus_connection.send_int_page =
176 (void *)((unsigned long)vmbus_connection.int_page +
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700177 (PAGE_SIZE >> 1));
Hank Janssen3e7ee492009-07-13 16:02:34 -0700178
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700179 /*
180 * Setup the monitor notification facility. The 1st page for
181 * parent->child and the 2nd page for child->parent
Bill Pemberton454f18a2009-07-27 16:47:24 -0400182 */
K. Y. Srinivasandf3493e2011-02-11 09:59:00 -0800183 vmbus_connection.monitor_pages =
184 (void *)__get_free_pages((GFP_KERNEL|__GFP_ZERO), 1);
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800185 if (vmbus_connection.monitor_pages == NULL) {
K. Y. Srinivasan3a7546d2011-06-06 15:50:10 -0700186 ret = -ENOMEM;
K. Y. Srinivasanb0043862011-05-10 07:55:44 -0700187 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700188 }
189
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800190 msginfo = kzalloc(sizeof(*msginfo) +
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700191 sizeof(struct vmbus_channel_initiate_contact),
192 GFP_KERNEL);
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800193 if (msginfo == NULL) {
Bill Pemberton8cad0af2010-05-05 15:27:32 -0400194 ret = -ENOMEM;
K. Y. Srinivasanb0043862011-05-10 07:55:44 -0700195 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700196 }
197
Bill Pemberton454f18a2009-07-27 16:47:24 -0400198 /*
K. Y. Srinivasan610071c2012-12-01 06:46:38 -0800199 * Negotiate a compatible VMBUS version number with the
200 * host. We start with the highest number we can support
201 * and work our way down until we negotiate a compatible
202 * version.
Bill Pemberton454f18a2009-07-27 16:47:24 -0400203 */
Bill Pemberton53af5452009-09-11 21:46:44 -0400204
K. Y. Srinivasan610071c2012-12-01 06:46:38 -0800205 version = VERSION_WS2008;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700206
K. Y. Srinivasan610071c2012-12-01 06:46:38 -0800207 do {
208 ret = vmbus_negotiate_version(msginfo, version);
209 if (ret == 0)
210 break;
211
212 version = vmbus_get_next_version(version);
213 } while (version != VERSION_INVAL);
214
215 if (version == VERSION_INVAL)
K. Y. Srinivasanb0043862011-05-10 07:55:44 -0700216 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700217
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800218 kfree(msginfo);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700219 return 0;
220
K. Y. Srinivasanb0043862011-05-10 07:55:44 -0700221cleanup:
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800222 vmbus_connection.conn_state = DISCONNECTED;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700223
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800224 if (vmbus_connection.work_queue)
225 destroy_workqueue(vmbus_connection.work_queue);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700226
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800227 if (vmbus_connection.int_page) {
K. Y. Srinivasandf3493e2011-02-11 09:59:00 -0800228 free_pages((unsigned long)vmbus_connection.int_page, 0);
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800229 vmbus_connection.int_page = NULL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700230 }
231
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800232 if (vmbus_connection.monitor_pages) {
K. Y. Srinivasandf3493e2011-02-11 09:59:00 -0800233 free_pages((unsigned long)vmbus_connection.monitor_pages, 1);
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800234 vmbus_connection.monitor_pages = NULL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700235 }
236
Ilia Mirkindd9b15d2011-03-13 00:29:00 -0500237 kfree(msginfo);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700238
Hank Janssen3e7ee492009-07-13 16:02:34 -0700239 return ret;
240}
241
Hank Janssen3e7ee492009-07-13 16:02:34 -0700242
Hank Janssen3e189512010-03-04 22:11:00 +0000243/*
Haiyang Zhangc6977672011-01-26 12:12:08 -0800244 * relid2channel - Get the channel object given its
245 * child relative id (ie channel id)
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700246 */
Haiyang Zhangc6977672011-01-26 12:12:08 -0800247struct vmbus_channel *relid2channel(u32 relid)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700248{
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700249 struct vmbus_channel *channel;
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800250 struct vmbus_channel *found_channel = NULL;
Greg Kroah-Hartman0f5e44c2009-07-15 14:57:16 -0700251 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700252
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800253 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800254 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800255 if (channel->offermsg.child_relid == relid) {
256 found_channel = channel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700257 break;
258 }
259 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800260 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700261
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800262 return found_channel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700263}
264
Hank Janssen3e189512010-03-04 22:11:00 +0000265/*
Haiyang Zhangc6977672011-01-26 12:12:08 -0800266 * process_chn_event - Process a channel event notification
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700267 */
Olaf Hering35436482011-04-16 18:50:40 +0200268static void process_chn_event(u32 relid)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700269{
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700270 struct vmbus_channel *channel;
K. Y. Srinivasandad76bf2011-08-27 11:31:33 -0700271 unsigned long flags;
K. Y. Srinivasanf878f3d2012-12-01 06:46:35 -0800272 void *arg;
273 bool read_state;
274 u32 bytes_to_read;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700275
Bill Pemberton454f18a2009-07-27 16:47:24 -0400276 /*
277 * Find the channel based on this relid and invokes the
278 * channel callback to process the event
279 */
Haiyang Zhangc6977672011-01-26 12:12:08 -0800280 channel = relid2channel(relid);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700281
K. Y. Srinivasan24326032011-08-31 14:35:57 -0700282 if (!channel) {
283 pr_err("channel not found for relid - %u\n", relid);
284 return;
285 }
286
287 /*
288 * A channel once created is persistent even when there
289 * is no driver handling the device. An unloading driver
290 * sets the onchannel_callback to NULL under the
291 * protection of the channel inbound_lock. Thus, checking
292 * and invoking the driver specific callback takes care of
293 * orderly unloading of the driver.
294 */
295
K. Y. Srinivasandad76bf2011-08-27 11:31:33 -0700296 spin_lock_irqsave(&channel->inbound_lock, flags);
K. Y. Srinivasanf878f3d2012-12-01 06:46:35 -0800297 if (channel->onchannel_callback != NULL) {
298 arg = channel->channel_callback_context;
299 read_state = channel->batched_reading;
300 /*
301 * This callback reads the messages sent by the host.
302 * We can optimize host to guest signaling by ensuring:
303 * 1. While reading the channel, we disable interrupts from
304 * host.
305 * 2. Ensure that we process all posted messages from the host
306 * before returning from this callback.
307 * 3. Once we return, enable signaling from the host. Once this
308 * state is set we check to see if additional packets are
309 * available to read. In this case we repeat the process.
310 */
311
312 do {
313 hv_begin_read(&channel->inbound);
314 channel->onchannel_callback(arg);
315 bytes_to_read = hv_end_read(&channel->inbound);
316 } while (read_state && (bytes_to_read != 0));
317 } else {
K. Y. Srinivasan24326032011-08-31 14:35:57 -0700318 pr_err("no channel callback for relid - %u\n", relid);
K. Y. Srinivasanf878f3d2012-12-01 06:46:35 -0800319 }
K. Y. Srinivasand9add43b2011-08-27 11:31:43 -0700320
K. Y. Srinivasandad76bf2011-08-27 11:31:33 -0700321 spin_unlock_irqrestore(&channel->inbound_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700322}
323
Hank Janssen3e189512010-03-04 22:11:00 +0000324/*
Haiyang Zhangc6977672011-01-26 12:12:08 -0800325 * vmbus_on_event - Handler for events
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700326 */
K. Y. Srinivasan6de3d6a2011-03-10 14:05:16 -0800327void vmbus_on_event(unsigned long data)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700328{
Olaf Hering35436482011-04-16 18:50:40 +0200329 u32 dword;
330 u32 maxdword = MAX_NUM_CHANNELS_SUPPORTED >> 5;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700331 int bit;
Olaf Hering35436482011-04-16 18:50:40 +0200332 u32 relid;
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800333 u32 *recv_int_page = vmbus_connection.recv_int_page;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700334
Bill Pemberton454f18a2009-07-27 16:47:24 -0400335 /* Check events */
Olaf Hering242b45a2011-04-16 18:50:39 +0200336 if (!recv_int_page)
337 return;
338 for (dword = 0; dword < maxdword; dword++) {
339 if (!recv_int_page[dword])
340 continue;
341 for (bit = 0; bit < 32; bit++) {
K. Y. Srinivasand9add43b2011-08-27 11:31:43 -0700342 if (sync_test_and_clear_bit(bit,
343 (unsigned long *)&recv_int_page[dword])) {
Olaf Hering242b45a2011-04-16 18:50:39 +0200344 relid = (dword << 5) + bit;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700345
K. Y. Srinivasand9add43b2011-08-27 11:31:43 -0700346 if (relid == 0)
K. Y. Srinivasan6d81d332011-05-10 07:55:45 -0700347 /*
348 * Special case - vmbus
349 * channel protocol msg
350 */
Olaf Hering242b45a2011-04-16 18:50:39 +0200351 continue;
K. Y. Srinivasand9add43b2011-08-27 11:31:43 -0700352
Olaf Hering35436482011-04-16 18:50:40 +0200353 process_chn_event(relid);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700354 }
Olaf Hering242b45a2011-04-16 18:50:39 +0200355 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700356 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700357}
358
Hank Janssen3e189512010-03-04 22:11:00 +0000359/*
Haiyang Zhangc6977672011-01-26 12:12:08 -0800360 * vmbus_post_msg - Send a msg on the vmbus's message connection
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700361 */
Haiyang Zhangc6977672011-01-26 12:12:08 -0800362int vmbus_post_msg(void *buffer, size_t buflen)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700363{
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800364 union hv_connection_id conn_id;
K. Y. Srinivasan5289d3d2011-08-25 09:49:01 -0700365 int ret = 0;
366 int retries = 0;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700367
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800368 conn_id.asu32 = 0;
369 conn_id.u.id = VMBUS_MESSAGE_CONNECTION_ID;
K. Y. Srinivasan5289d3d2011-08-25 09:49:01 -0700370
371 /*
372 * hv_post_message() can have transient failures because of
373 * insufficient resources. Retry the operation a couple of
374 * times before giving up.
375 */
376 while (retries < 3) {
377 ret = hv_post_message(conn_id, 1, buffer, buflen);
378 if (ret != HV_STATUS_INSUFFICIENT_BUFFERS)
379 return ret;
380 retries++;
381 msleep(100);
382 }
383 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700384}
385
Hank Janssen3e189512010-03-04 22:11:00 +0000386/*
Haiyang Zhangc6977672011-01-26 12:12:08 -0800387 * vmbus_set_event - Send an event notification to the parent
Greg Kroah-Hartmanfd8b85e2009-08-31 11:40:14 -0700388 */
Haiyang Zhangc6977672011-01-26 12:12:08 -0800389int vmbus_set_event(u32 child_relid)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700390{
Bill Pemberton454f18a2009-07-27 16:47:24 -0400391 /* Each u32 represents 32 channels */
Olaf Hering22356582011-03-21 14:41:37 +0100392 sync_set_bit(child_relid & 31,
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800393 (unsigned long *)vmbus_connection.send_int_page +
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800394 (child_relid >> 5));
Bill Pemberton7c369f42009-07-29 17:00:11 -0400395
Haiyang Zhangd44890c2010-11-08 14:04:42 -0800396 return hv_signal_event();
Hank Janssen3e7ee492009-07-13 16:02:34 -0700397}