blob: bad8128b283a8752a11e1c3a13d02c83bb1df07b [file] [log] [blame]
Hank Janssen3e7ee492009-07-13 16:02:34 -07001/*
Hank Janssen3e7ee492009-07-13 16:02:34 -07002 * Copyright (c) 2009, Microsoft Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
16 *
17 * Authors:
18 * Haiyang Zhang <haiyangz@microsoft.com>
19 * Hank Janssen <hjanssen@microsoft.com>
Hank Janssen3e7ee492009-07-13 16:02:34 -070020 */
Hank Janssen0a466182011-03-29 13:58:47 -070021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
Greg Kroah-Hartmana0086dc2009-08-17 17:22:08 -070023#include <linux/kernel.h>
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -080024#include <linux/sched.h>
25#include <linux/wait.h>
Greg Kroah-Hartmana0086dc2009-08-17 17:22:08 -070026#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Bill Pemberton53af5452009-09-11 21:46:44 -040028#include <linux/list.h>
Hank Janssenc88c4e42010-05-04 15:55:05 -070029#include <linux/module.h>
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +000030#include <linux/completion.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070031#include <linux/hyperv.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070032
K. Y. Srinivasan0f2a6612011-05-12 19:34:28 -070033#include "hyperv_vmbus.h"
Hank Janssen3e7ee492009-07-13 16:02:34 -070034
Greg Kroah-Hartman1d7e9072009-08-28 16:26:11 -070035struct vmbus_channel_message_table_entry {
K. Y. Srinivasancf9dcba2011-05-10 07:55:37 -070036 enum vmbus_channel_message_type message_type;
K. Y. Srinivasanfa90f1d2011-05-10 07:55:36 -070037 void (*message_handler)(struct vmbus_channel_message_header *msg);
Greg Kroah-Hartman1d7e9072009-08-28 16:26:11 -070038};
Hank Janssen3e7ee492009-07-13 16:02:34 -070039
Hank Janssenc88c4e42010-05-04 15:55:05 -070040
41/**
Greg Kroah-Hartmanda0e9632011-10-11 08:42:28 -060042 * vmbus_prep_negotiate_resp() - Create default response for Hyper-V Negotiate message
Hank Janssenc88c4e42010-05-04 15:55:05 -070043 * @icmsghdrp: Pointer to msg header structure
44 * @icmsg_negotiate: Pointer to negotiate message structure
45 * @buf: Raw buffer channel data
46 *
47 * @icmsghdrp is of type &struct icmsg_hdr.
48 * @negop is of type &struct icmsg_negotiate.
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070049 * Set up and fill in default negotiate response message.
50 *
51 * The max_fw_version specifies the maximum framework version that
52 * we can support and max _srv_version specifies the maximum service
53 * version we can support. A special value MAX_SRV_VER can be
54 * specified to indicate that we can handle the maximum version
55 * exposed by the host.
Hank Janssenc88c4e42010-05-04 15:55:05 -070056 *
57 * Mainly used by Hyper-V drivers.
58 */
Greg Kroah-Hartmanda0e9632011-10-11 08:42:28 -060059void vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp,
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070060 struct icmsg_negotiate *negop, u8 *buf,
61 int max_fw_version, int max_srv_version)
Hank Janssenc88c4e42010-05-04 15:55:05 -070062{
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070063 int icframe_vercnt;
64 int icmsg_vercnt;
65 int i;
66
K. Y. Srinivasana3605302012-05-12 13:44:57 -070067 icmsghdrp->icmsgsize = 0x10;
Hank Janssenc88c4e42010-05-04 15:55:05 -070068
K. Y. Srinivasana3605302012-05-12 13:44:57 -070069 negop = (struct icmsg_negotiate *)&buf[
70 sizeof(struct vmbuspipe_hdr) +
71 sizeof(struct icmsg_hdr)];
Hank Janssenc88c4e42010-05-04 15:55:05 -070072
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070073 icframe_vercnt = negop->icframe_vercnt;
74 icmsg_vercnt = negop->icmsg_vercnt;
75
76 /*
77 * Select the framework version number we will
78 * support.
79 */
80
81 for (i = 0; i < negop->icframe_vercnt; i++) {
82 if (negop->icversion_data[i].major <= max_fw_version)
83 icframe_vercnt = negop->icversion_data[i].major;
Hank Janssenc88c4e42010-05-04 15:55:05 -070084 }
K. Y. Srinivasana3605302012-05-12 13:44:57 -070085
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070086 for (i = negop->icframe_vercnt;
87 (i < negop->icframe_vercnt + negop->icmsg_vercnt); i++) {
88 if (negop->icversion_data[i].major <= max_srv_version)
89 icmsg_vercnt = negop->icversion_data[i].major;
90 }
91
92 /*
93 * Respond with the maximum framework and service
94 * version numbers we can support.
95 */
K. Y. Srinivasana3605302012-05-12 13:44:57 -070096 negop->icframe_vercnt = 1;
97 negop->icmsg_vercnt = 1;
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -070098 negop->icversion_data[0].major = icframe_vercnt;
99 negop->icversion_data[0].minor = 0;
100 negop->icversion_data[1].major = icmsg_vercnt;
101 negop->icversion_data[1].minor = 0;
Hank Janssenc88c4e42010-05-04 15:55:05 -0700102}
K. Y. Srinivasana3605302012-05-12 13:44:57 -0700103
Greg Kroah-Hartmanda0e9632011-10-11 08:42:28 -0600104EXPORT_SYMBOL_GPL(vmbus_prep_negotiate_resp);
Hank Janssenc88c4e42010-05-04 15:55:05 -0700105
Hank Janssen3e189512010-03-04 22:11:00 +0000106/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700107 * alloc_channel - Allocate and initialize a vmbus channel object
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700108 */
Greg Kroah-Hartman50fe56d2010-10-20 15:51:57 -0700109static struct vmbus_channel *alloc_channel(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700110{
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700111 struct vmbus_channel *channel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700112
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700113 channel = kzalloc(sizeof(*channel), GFP_ATOMIC);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700114 if (!channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700115 return NULL;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700116
Greg Kroah-Hartman54411c42009-07-15 14:48:32 -0700117 spin_lock_init(&channel->inbound_lock);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700118
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800119 channel->controlwq = create_workqueue("hv_vmbus_ctl");
120 if (!channel->controlwq) {
Greg Kroah-Hartman8c69f522009-07-15 12:48:29 -0700121 kfree(channel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700122 return NULL;
123 }
124
125 return channel;
126}
127
Hank Janssen3e189512010-03-04 22:11:00 +0000128/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700129 * release_hannel - Release the vmbus channel object itself
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700130 */
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200131static void release_channel(struct work_struct *work)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700132{
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200133 struct vmbus_channel *channel = container_of(work,
134 struct vmbus_channel,
135 work);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700136
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800137 destroy_workqueue(channel->controlwq);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700138
Greg Kroah-Hartman8c69f522009-07-15 12:48:29 -0700139 kfree(channel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700140}
141
Hank Janssen3e189512010-03-04 22:11:00 +0000142/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700143 * free_channel - Release the resources used by the vmbus channel object
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700144 */
Greg Kroah-Hartman9f3e28e2011-10-11 09:40:01 -0600145static void free_channel(struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700146{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700147
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700148 /*
149 * We have to release the channel's workqueue/thread in the vmbus's
150 * workqueue/thread context
151 * ie we can't destroy ourselves.
152 */
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200153 INIT_WORK(&channel->work, release_channel);
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800154 queue_work(vmbus_connection.work_queue, &channel->work);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700155}
156
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000157
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000158
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200159/*
160 * vmbus_process_rescind_offer -
161 * Rescind the offer by initiating a device removal
162 */
163static void vmbus_process_rescind_offer(struct work_struct *work)
164{
165 struct vmbus_channel *channel = container_of(work,
166 struct vmbus_channel,
167 work);
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700168 unsigned long flags;
169 struct vmbus_channel_relid_released msg;
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200170
K. Y. Srinivasan696453b2011-09-08 07:24:14 -0700171 vmbus_device_unregister(channel->device_obj);
K. Y. Srinivasanc8705972013-03-15 12:25:44 -0700172 memset(&msg, 0, sizeof(struct vmbus_channel_relid_released));
173 msg.child_relid = channel->offermsg.child_relid;
174 msg.header.msgtype = CHANNELMSG_RELID_RELEASED;
175 vmbus_post_msg(&msg, sizeof(struct vmbus_channel_relid_released));
176
177 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
178 list_del(&channel->listentry);
179 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
180 free_channel(channel);
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200181}
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +0000182
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -0800183void vmbus_free_channels(void)
184{
185 struct vmbus_channel *channel;
186
187 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
188 vmbus_device_unregister(channel->device_obj);
189 kfree(channel->device_obj);
190 free_channel(channel);
191 }
192}
193
Hank Janssen3e189512010-03-04 22:11:00 +0000194/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700195 * vmbus_process_offer - Process the offer by creating a channel/device
Hank Janssenc88c4e42010-05-04 15:55:05 -0700196 * associated with this offer
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700197 */
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200198static void vmbus_process_offer(struct work_struct *work)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700199{
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200200 struct vmbus_channel *newchannel = container_of(work,
201 struct vmbus_channel,
202 work);
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700203 struct vmbus_channel *channel;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700204 bool fnew = true;
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700205 int ret;
Greg Kroah-Hartman0f5e44c2009-07-15 14:57:16 -0700206 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700207
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200208 /* The next possible work is rescind handling */
209 INIT_WORK(&newchannel->work, vmbus_process_rescind_offer);
210
Bill Pemberton454f18a2009-07-27 16:47:24 -0400211 /* Make sure this is a new offer */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800212 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700213
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800214 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
K. Y. Srinivasan358d2ee2011-08-25 09:48:28 -0700215 if (!uuid_le_cmp(channel->offermsg.offer.if_type,
216 newchannel->offermsg.offer.if_type) &&
217 !uuid_le_cmp(channel->offermsg.offer.if_instance,
218 newchannel->offermsg.offer.if_instance)) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700219 fnew = false;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700220 break;
221 }
222 }
223
Haiyang Zhang188963e2010-10-15 10:14:06 -0700224 if (fnew)
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800225 list_add_tail(&newchannel->listentry,
Haiyang Zhangda9fcb72011-01-26 12:12:14 -0800226 &vmbus_connection.chn_list);
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700227
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800228 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700229
Haiyang Zhang188963e2010-10-15 10:14:06 -0700230 if (!fnew) {
Haiyang Zhange98cb272010-10-15 10:14:07 -0700231 free_channel(newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700232 return;
233 }
234
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700235 /*
236 * Start the process of binding this offer to the driver
237 * We need to set the DeviceObject field before calling
Haiyang Zhang646f1ea2011-01-26 12:12:10 -0800238 * vmbus_child_dev_add()
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700239 */
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -0700240 newchannel->device_obj = vmbus_device_create(
Haiyang Zhang767dff62011-01-26 12:12:12 -0800241 &newchannel->offermsg.offer.if_type,
242 &newchannel->offermsg.offer.if_instance,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700243 newchannel);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700244
Bill Pemberton454f18a2009-07-27 16:47:24 -0400245 /*
246 * Add the new device to the bus. This will kick off device-driver
247 * binding which eventually invokes the device driver's AddDevice()
248 * method.
249 */
K. Y. Srinivasan227942812011-09-08 07:24:13 -0700250 ret = vmbus_device_register(newchannel->device_obj);
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700251 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700252 pr_err("unable to add child device object (relid %d)\n",
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800253 newchannel->offermsg.child_relid);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700254
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800255 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800256 list_del(&newchannel->listentry);
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800257 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
K. Y. Srinivasan8b8ee672011-12-12 09:29:16 -0800258 kfree(newchannel->device_obj);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700259
Haiyang Zhange98cb272010-10-15 10:14:07 -0700260 free_channel(newchannel);
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700261 } else {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400262 /*
263 * This state is used to indicate a successful open
264 * so that when we do close the channel normally, we
265 * can cleanup properly
266 */
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800267 newchannel->state = CHANNEL_OPEN_STATE;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700268 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700269}
270
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800271enum {
272 IDE = 0,
273 SCSI,
274 NIC,
275 MAX_PERF_CHN,
276};
277
278/*
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800279 * This is an array of device_ids (device types) that are performance critical.
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800280 * We attempt to distribute the interrupt load for these devices across
281 * all available CPUs.
282 */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800283static const struct hv_vmbus_device_id hp_devs[] = {
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800284 /* IDE */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800285 { HV_IDE_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800286 /* Storage - SCSI */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800287 { HV_SCSI_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800288 /* Network */
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800289 { HV_NIC_GUID, },
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800290};
291
292
293/*
294 * We use this state to statically distribute the channel interrupt load.
295 */
296static u32 next_vp;
297
298/*
299 * Starting with Win8, we can statically distribute the incoming
300 * channel interrupt load by binding a channel to VCPU. We
301 * implement here a simple round robin scheme for distributing
302 * the interrupt load.
303 * We will bind channels that are not performance critical to cpu 0 and
304 * performance critical channels (IDE, SCSI and Network) will be uniformly
305 * distributed across all available CPUs.
306 */
307static u32 get_vp_index(uuid_le *type_guid)
308{
309 u32 cur_cpu;
310 int i;
311 bool perf_chn = false;
312 u32 max_cpus = num_online_cpus();
313
314 for (i = IDE; i < MAX_PERF_CHN; i++) {
K. Y. Srinivasan7fb96562013-01-23 17:42:40 -0800315 if (!memcmp(type_guid->b, hp_devs[i].guid,
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800316 sizeof(uuid_le))) {
317 perf_chn = true;
318 break;
319 }
320 }
321 if ((vmbus_proto_version == VERSION_WS2008) ||
322 (vmbus_proto_version == VERSION_WIN7) || (!perf_chn)) {
323 /*
324 * Prior to win8, all channel interrupts are
325 * delivered on cpu 0.
326 * Also if the channel is not a performance critical
327 * channel, bind it to cpu 0.
328 */
329 return 0;
330 }
331 cur_cpu = (++next_vp % max_cpus);
K. Y. Srinivasan302a3c02013-02-17 11:30:44 -0800332 return cur_cpu;
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800333}
334
Hank Janssen3e189512010-03-04 22:11:00 +0000335/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700336 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700337 *
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700338 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700339static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700340{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700341 struct vmbus_channel_offer_channel *offer;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700342 struct vmbus_channel *newchannel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700343
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700344 offer = (struct vmbus_channel_offer_channel *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700345
Bill Pemberton454f18a2009-07-27 16:47:24 -0400346 /* Allocate the channel object and save this offer. */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700347 newchannel = alloc_channel();
Haiyang Zhang188963e2010-10-15 10:14:06 -0700348 if (!newchannel) {
Hank Janssen0a466182011-03-29 13:58:47 -0700349 pr_err("Unable to allocate channel object\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -0700350 return;
351 }
352
K. Y. Srinivasan132368b2012-12-01 06:46:33 -0800353 /*
354 * By default we setup state to enable batched
355 * reading. A specific service can choose to
356 * disable this prior to opening the channel.
357 */
358 newchannel->batched_reading = true;
359
K. Y. Srinivasanb3bf60c2012-12-01 06:46:45 -0800360 /*
361 * Setup state for signalling the host.
362 */
363 newchannel->sig_event = (struct hv_input_signal_event *)
364 (ALIGN((unsigned long)
365 &newchannel->sig_buf,
366 HV_HYPERCALL_PARAM_ALIGN));
367
368 newchannel->sig_event->connectionid.asu32 = 0;
369 newchannel->sig_event->connectionid.u.id = VMBUS_EVENT_CONNECTION_ID;
370 newchannel->sig_event->flag_number = 0;
371 newchannel->sig_event->rsvdz = 0;
372
373 if (vmbus_proto_version != VERSION_WS2008) {
374 newchannel->is_dedicated_interrupt =
375 (offer->is_dedicated_interrupt != 0);
376 newchannel->sig_event->connectionid.u.id =
377 offer->connection_id;
378 }
379
K. Y. Srinivasana1198452012-12-01 06:46:50 -0800380 newchannel->target_vp = get_vp_index(&offer->offer.if_type);
K. Y. Srinivasanabbf3b22012-12-01 06:46:48 -0800381
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800382 memcpy(&newchannel->offermsg, offer,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700383 sizeof(struct vmbus_channel_offer_channel));
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800384 newchannel->monitor_grp = (u8)offer->monitorid / 32;
385 newchannel->monitor_bit = (u8)offer->monitorid % 32;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700386
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200387 INIT_WORK(&newchannel->work, vmbus_process_offer);
388 queue_work(newchannel->controlwq, &newchannel->work);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700389}
390
Hank Janssen3e189512010-03-04 22:11:00 +0000391/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700392 * vmbus_onoffer_rescind - Rescind offer handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700393 *
394 * We queue a work item to process this offer synchronously
395 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700396static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700397{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700398 struct vmbus_channel_rescind_offer *rescind;
Greg Kroah-Hartmanaded71652009-08-18 15:21:19 -0700399 struct vmbus_channel *channel;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700400
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700401 rescind = (struct vmbus_channel_rescind_offer *)hdr;
Haiyang Zhangc6977672011-01-26 12:12:08 -0800402 channel = relid2channel(rescind->child_relid);
Hank Janssen98e08702011-03-29 13:58:44 -0700403
404 if (channel == NULL)
405 /* Just return here, no channel found */
Hank Janssen3e7ee492009-07-13 16:02:34 -0700406 return;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700407
Timo Teräs4b2f9ab2010-12-15 20:48:09 +0200408 /* work is initialized for vmbus_process_rescind_offer() from
409 * vmbus_process_offer() where the channel got created */
410 queue_work(channel->controlwq, &channel->work);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700411}
412
Hank Janssen3e189512010-03-04 22:11:00 +0000413/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700414 * vmbus_onoffers_delivered -
415 * This is invoked when all offers have been delivered.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700416 *
417 * Nothing to do here.
418 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700419static void vmbus_onoffers_delivered(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700420 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700421{
Hank Janssen3e7ee492009-07-13 16:02:34 -0700422}
423
Hank Janssen3e189512010-03-04 22:11:00 +0000424/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700425 * vmbus_onopen_result - Open result handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700426 *
427 * This is invoked when we received a response to our channel open request.
428 * Find the matching request, copy the response and signal the requesting
429 * thread.
430 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700431static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700432{
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700433 struct vmbus_channel_open_result *result;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700434 struct vmbus_channel_msginfo *msginfo;
435 struct vmbus_channel_message_header *requestheader;
436 struct vmbus_channel_open_channel *openmsg;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700437 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700438
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700439 result = (struct vmbus_channel_open_result *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700440
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700441 /*
442 * Find the open msg, copy the result and signal/unblock the wait event
443 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800444 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700445
Hank Janssenebb61e52011-02-18 12:39:57 -0800446 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
447 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700448 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800449 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700450
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800451 if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700452 openmsg =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800453 (struct vmbus_channel_open_channel *)msginfo->msg;
454 if (openmsg->child_relid == result->child_relid &&
455 openmsg->openid == result->openid) {
456 memcpy(&msginfo->response.open_result,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700457 result,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700458 sizeof(
459 struct vmbus_channel_open_result));
460 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700461 break;
462 }
463 }
464 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800465 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700466}
467
Hank Janssen3e189512010-03-04 22:11:00 +0000468/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700469 * vmbus_ongpadl_created - GPADL created handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700470 *
471 * This is invoked when we received a response to our gpadl create request.
472 * Find the matching request, copy the response and signal the requesting
473 * thread.
474 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700475static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700476{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700477 struct vmbus_channel_gpadl_created *gpadlcreated;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700478 struct vmbus_channel_msginfo *msginfo;
479 struct vmbus_channel_message_header *requestheader;
480 struct vmbus_channel_gpadl_header *gpadlheader;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700481 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700482
Haiyang Zhang188963e2010-10-15 10:14:06 -0700483 gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700484
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700485 /*
486 * Find the establish msg, copy the result and signal/unblock the wait
487 * event
488 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800489 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700490
Hank Janssenebb61e52011-02-18 12:39:57 -0800491 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
492 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700493 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800494 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700495
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800496 if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700497 gpadlheader =
498 (struct vmbus_channel_gpadl_header *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700499
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800500 if ((gpadlcreated->child_relid ==
501 gpadlheader->child_relid) &&
502 (gpadlcreated->gpadl == gpadlheader->gpadl)) {
503 memcpy(&msginfo->response.gpadl_created,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700504 gpadlcreated,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700505 sizeof(
506 struct vmbus_channel_gpadl_created));
507 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700508 break;
509 }
510 }
511 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800512 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700513}
514
Hank Janssen3e189512010-03-04 22:11:00 +0000515/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700516 * vmbus_ongpadl_torndown - GPADL torndown handler.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700517 *
518 * This is invoked when we received a response to our gpadl teardown request.
519 * Find the matching request, copy the response and signal the requesting
520 * thread.
521 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700522static void vmbus_ongpadl_torndown(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700523 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700524{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700525 struct vmbus_channel_gpadl_torndown *gpadl_torndown;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700526 struct vmbus_channel_msginfo *msginfo;
527 struct vmbus_channel_message_header *requestheader;
528 struct vmbus_channel_gpadl_teardown *gpadl_teardown;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700529 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700530
Haiyang Zhang188963e2010-10-15 10:14:06 -0700531 gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr;
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700532
533 /*
534 * Find the open msg, copy the result and signal/unblock the wait event
535 */
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800536 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700537
Hank Janssenebb61e52011-02-18 12:39:57 -0800538 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
539 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700540 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800541 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700542
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800543 if (requestheader->msgtype == CHANNELMSG_GPADL_TEARDOWN) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700544 gpadl_teardown =
545 (struct vmbus_channel_gpadl_teardown *)requestheader;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700546
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800547 if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) {
548 memcpy(&msginfo->response.gpadl_torndown,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700549 gpadl_torndown,
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700550 sizeof(
551 struct vmbus_channel_gpadl_torndown));
552 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700553 break;
554 }
555 }
556 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800557 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700558}
559
Hank Janssen3e189512010-03-04 22:11:00 +0000560/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700561 * vmbus_onversion_response - Version response handler
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700562 *
563 * This is invoked when we received a response to our initiate contact request.
564 * Find the matching request, copy the response and signal the requesting
565 * thread.
566 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700567static void vmbus_onversion_response(
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700568 struct vmbus_channel_message_header *hdr)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700569{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700570 struct vmbus_channel_msginfo *msginfo;
571 struct vmbus_channel_message_header *requestheader;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700572 struct vmbus_channel_version_response *version_response;
Greg Kroah-Hartmandd0813b2009-07-15 14:56:45 -0700573 unsigned long flags;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700574
Haiyang Zhang188963e2010-10-15 10:14:06 -0700575 version_response = (struct vmbus_channel_version_response *)hdr;
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800576 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700577
Hank Janssenebb61e52011-02-18 12:39:57 -0800578 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
579 msglistentry) {
Haiyang Zhang188963e2010-10-15 10:14:06 -0700580 requestheader =
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800581 (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700582
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800583 if (requestheader->msgtype ==
584 CHANNELMSG_INITIATE_CONTACT) {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800585 memcpy(&msginfo->response.version_response,
Haiyang Zhang188963e2010-10-15 10:14:06 -0700586 version_response,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700587 sizeof(struct vmbus_channel_version_response));
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700588 complete(&msginfo->waitevent);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700589 }
590 }
Haiyang Zhang15b2f642011-01-26 12:12:07 -0800591 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700592}
593
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700594/* Channel message dispatch table */
595static struct vmbus_channel_message_table_entry
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700596 channel_message_table[CHANNELMSG_COUNT] = {
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800597 {CHANNELMSG_INVALID, NULL},
598 {CHANNELMSG_OFFERCHANNEL, vmbus_onoffer},
599 {CHANNELMSG_RESCIND_CHANNELOFFER, vmbus_onoffer_rescind},
600 {CHANNELMSG_REQUESTOFFERS, NULL},
601 {CHANNELMSG_ALLOFFERS_DELIVERED, vmbus_onoffers_delivered},
602 {CHANNELMSG_OPENCHANNEL, NULL},
603 {CHANNELMSG_OPENCHANNEL_RESULT, vmbus_onopen_result},
604 {CHANNELMSG_CLOSECHANNEL, NULL},
605 {CHANNELMSG_GPADL_HEADER, NULL},
606 {CHANNELMSG_GPADL_BODY, NULL},
607 {CHANNELMSG_GPADL_CREATED, vmbus_ongpadl_created},
608 {CHANNELMSG_GPADL_TEARDOWN, NULL},
609 {CHANNELMSG_GPADL_TORNDOWN, vmbus_ongpadl_torndown},
610 {CHANNELMSG_RELID_RELEASED, NULL},
611 {CHANNELMSG_INITIATE_CONTACT, NULL},
612 {CHANNELMSG_VERSION_RESPONSE, vmbus_onversion_response},
613 {CHANNELMSG_UNLOAD, NULL},
Greg Kroah-Hartmanc8212f02009-08-31 21:51:50 -0700614};
615
Hank Janssen3e189512010-03-04 22:11:00 +0000616/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700617 * vmbus_onmessage - Handler for channel protocol messages.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700618 *
619 * This is invoked in the vmbus worker thread context.
620 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700621void vmbus_onmessage(void *context)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700622{
Haiyang Zhang188963e2010-10-15 10:14:06 -0700623 struct hv_message *msg = context;
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700624 struct vmbus_channel_message_header *hdr;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700625 int size;
626
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800627 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
628 size = msg->header.payload_size;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700629
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800630 if (hdr->msgtype >= CHANNELMSG_COUNT) {
Hank Janssen0a466182011-03-29 13:58:47 -0700631 pr_err("Received invalid channel message type %d size %d\n",
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800632 hdr->msgtype, size);
Greg Kroah-Hartman04f50c42009-07-16 12:35:37 -0700633 print_hex_dump_bytes("", DUMP_PREFIX_NONE,
Haiyang Zhangf6feebe2010-11-08 14:04:39 -0800634 (unsigned char *)msg->u.payload, size);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700635 return;
636 }
637
K. Y. Srinivasanb7c6b022011-05-10 07:55:38 -0700638 if (channel_message_table[hdr->msgtype].message_handler)
639 channel_message_table[hdr->msgtype].message_handler(hdr);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700640 else
Hank Janssen0a466182011-03-29 13:58:47 -0700641 pr_err("Unhandled channel message type %d\n", hdr->msgtype);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700642}
643
Hank Janssen3e189512010-03-04 22:11:00 +0000644/*
Haiyang Zhange98cb272010-10-15 10:14:07 -0700645 * vmbus_request_offers - Send a request to get all our pending offers.
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700646 */
Haiyang Zhange98cb272010-10-15 10:14:07 -0700647int vmbus_request_offers(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -0700648{
Greg Kroah-Hartman82250212009-08-26 15:16:04 -0700649 struct vmbus_channel_message_header *msg;
Haiyang Zhang188963e2010-10-15 10:14:06 -0700650 struct vmbus_channel_msginfo *msginfo;
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700651 int ret, t;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700652
Haiyang Zhang188963e2010-10-15 10:14:06 -0700653 msginfo = kmalloc(sizeof(*msginfo) +
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700654 sizeof(struct vmbus_channel_message_header),
655 GFP_KERNEL);
Haiyang Zhang188963e2010-10-15 10:14:06 -0700656 if (!msginfo)
Bill Pemberton75910f22010-05-05 15:27:31 -0400657 return -ENOMEM;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700658
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700659 init_completion(&msginfo->waitevent);
Bill Pemberton75910f22010-05-05 15:27:31 -0400660
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800661 msg = (struct vmbus_channel_message_header *)msginfo->msg;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700662
Haiyang Zhangc50f7fb2010-11-08 14:04:38 -0800663 msg->msgtype = CHANNELMSG_REQUESTOFFERS;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700664
Hank Janssen3e7ee492009-07-13 16:02:34 -0700665
Haiyang Zhangc6977672011-01-26 12:12:08 -0800666 ret = vmbus_post_msg(msg,
Greg Kroah-Hartmanbd60c332009-08-31 21:47:21 -0700667 sizeof(struct vmbus_channel_message_header));
668 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -0700669 pr_err("Unable to request offers - %d\n", ret);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700670
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800671 goto cleanup;
Hank Janssen3e7ee492009-07-13 16:02:34 -0700672 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700673
K. Y. Srinivasan2dfde962011-06-16 13:16:34 -0700674 t = wait_for_completion_timeout(&msginfo->waitevent, 5*HZ);
K. Y. Srinivasan9568a192011-05-10 07:55:39 -0700675 if (t == 0) {
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800676 ret = -ETIMEDOUT;
677 goto cleanup;
678 }
Hank Janssen3e7ee492009-07-13 16:02:34 -0700679
680
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800681
682cleanup:
Ilia Mirkindd9b15d2011-03-13 00:29:00 -0500683 kfree(msginfo);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700684
Hank Janssen3e7ee492009-07-13 16:02:34 -0700685 return ret;
686}
687
Bill Pemberton454f18a2009-07-27 16:47:24 -0400688/* eof */