Drivers: hv: Modify the interrupt handling code to support win8 and beyond
[deliverable/linux.git] / drivers / hv / channel_mgmt.c
CommitLineData
3e7ee490 1/*
3e7ee490
HJ
2 * 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>
3e7ee490 20 */
0a46618d
HJ
21#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
a0086dc5 23#include <linux/kernel.h>
0c3b7b2f
S
24#include <linux/sched.h>
25#include <linux/wait.h>
a0086dc5 26#include <linux/mm.h>
5a0e3ad6 27#include <linux/slab.h>
53af545b 28#include <linux/list.h>
c88c4e4c 29#include <linux/module.h>
8b5d6d3b 30#include <linux/completion.h>
46a97191 31#include <linux/hyperv.h>
3f335ea2 32
0f2a6619 33#include "hyperv_vmbus.h"
3e7ee490 34
1d7e907f 35struct vmbus_channel_message_table_entry {
cf9dcba7 36 enum vmbus_channel_message_type message_type;
fa90f1de 37 void (*message_handler)(struct vmbus_channel_message_header *msg);
1d7e907f 38};
3e7ee490 39
c88c4e4c
HJ
40
41/**
da0e9631 42 * vmbus_prep_negotiate_resp() - Create default response for Hyper-V Negotiate message
c88c4e4c
HJ
43 * @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.
c836d0ab
S
49 * 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.
c88c4e4c
HJ
56 *
57 * Mainly used by Hyper-V drivers.
58 */
da0e9631 59void vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp,
c836d0ab
S
60 struct icmsg_negotiate *negop, u8 *buf,
61 int max_fw_version, int max_srv_version)
c88c4e4c 62{
c836d0ab
S
63 int icframe_vercnt;
64 int icmsg_vercnt;
65 int i;
66
a3605300 67 icmsghdrp->icmsgsize = 0x10;
c88c4e4c 68
a3605300
S
69 negop = (struct icmsg_negotiate *)&buf[
70 sizeof(struct vmbuspipe_hdr) +
71 sizeof(struct icmsg_hdr)];
c88c4e4c 72
c836d0ab
S
73 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;
84 }
85
86 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;
c88c4e4c 90 }
a3605300 91
c836d0ab
S
92 /*
93 * Respond with the maximum framework and service
94 * version numbers we can support.
95 */
a3605300
S
96 negop->icframe_vercnt = 1;
97 negop->icmsg_vercnt = 1;
c836d0ab
S
98 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;
c88c4e4c 102}
a3605300 103
da0e9631 104EXPORT_SYMBOL_GPL(vmbus_prep_negotiate_resp);
c88c4e4c 105
3e189519 106/*
e98cb276 107 * alloc_channel - Allocate and initialize a vmbus channel object
bd60c33e 108 */
50fe56d2 109static struct vmbus_channel *alloc_channel(void)
3e7ee490 110{
aded7165 111 struct vmbus_channel *channel;
3e7ee490 112
aded7165 113 channel = kzalloc(sizeof(*channel), GFP_ATOMIC);
3e7ee490 114 if (!channel)
3e7ee490 115 return NULL;
3e7ee490 116
54411c42 117 spin_lock_init(&channel->inbound_lock);
3e7ee490 118
c50f7fb2
HZ
119 channel->controlwq = create_workqueue("hv_vmbus_ctl");
120 if (!channel->controlwq) {
8c69f52a 121 kfree(channel);
3e7ee490
HJ
122 return NULL;
123 }
124
125 return channel;
126}
127
3e189519 128/*
e98cb276 129 * release_hannel - Release the vmbus channel object itself
bd60c33e 130 */
4b2f9abe 131static void release_channel(struct work_struct *work)
3e7ee490 132{
4b2f9abe
TT
133 struct vmbus_channel *channel = container_of(work,
134 struct vmbus_channel,
135 work);
3e7ee490 136
c50f7fb2 137 destroy_workqueue(channel->controlwq);
3e7ee490 138
8c69f52a 139 kfree(channel);
3e7ee490
HJ
140}
141
3e189519 142/*
e98cb276 143 * free_channel - Release the resources used by the vmbus channel object
bd60c33e 144 */
9f3e28e3 145static void free_channel(struct vmbus_channel *channel)
3e7ee490 146{
3e7ee490 147
bd60c33e
GKH
148 /*
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 */
4b2f9abe 153 INIT_WORK(&channel->work, release_channel);
da9fcb72 154 queue_work(vmbus_connection.work_queue, &channel->work);
3e7ee490
HJ
155}
156
8b5d6d3b 157
8b5d6d3b 158
4b2f9abe
TT
159/*
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);
168
696453ba 169 vmbus_device_unregister(channel->device_obj);
4b2f9abe 170}
8b5d6d3b 171
93e5bd06
S
172void vmbus_free_channels(void)
173{
174 struct vmbus_channel *channel;
175
176 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
177 vmbus_device_unregister(channel->device_obj);
178 kfree(channel->device_obj);
179 free_channel(channel);
180 }
181}
182
3e189519 183/*
e98cb276 184 * vmbus_process_offer - Process the offer by creating a channel/device
c88c4e4c 185 * associated with this offer
bd60c33e 186 */
4b2f9abe 187static void vmbus_process_offer(struct work_struct *work)
3e7ee490 188{
4b2f9abe
TT
189 struct vmbus_channel *newchannel = container_of(work,
190 struct vmbus_channel,
191 work);
aded7165 192 struct vmbus_channel *channel;
188963ec 193 bool fnew = true;
bd60c33e 194 int ret;
0f5e44ca 195 unsigned long flags;
3e7ee490 196
4b2f9abe
TT
197 /* The next possible work is rescind handling */
198 INIT_WORK(&newchannel->work, vmbus_process_rescind_offer);
199
454f18a9 200 /* Make sure this is a new offer */
15b2f647 201 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
3e7ee490 202
da9fcb72 203 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
358d2ee2
S
204 if (!uuid_le_cmp(channel->offermsg.offer.if_type,
205 newchannel->offermsg.offer.if_type) &&
206 !uuid_le_cmp(channel->offermsg.offer.if_instance,
207 newchannel->offermsg.offer.if_instance)) {
188963ec 208 fnew = false;
3e7ee490
HJ
209 break;
210 }
211 }
212
188963ec 213 if (fnew)
c50f7fb2 214 list_add_tail(&newchannel->listentry,
da9fcb72 215 &vmbus_connection.chn_list);
bd60c33e 216
15b2f647 217 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
3e7ee490 218
188963ec 219 if (!fnew) {
e98cb276 220 free_channel(newchannel);
3e7ee490
HJ
221 return;
222 }
223
bd60c33e
GKH
224 /*
225 * Start the process of binding this offer to the driver
226 * We need to set the DeviceObject field before calling
646f1ea3 227 * vmbus_child_dev_add()
bd60c33e 228 */
f2c73011 229 newchannel->device_obj = vmbus_device_create(
767dff68
HZ
230 &newchannel->offermsg.offer.if_type,
231 &newchannel->offermsg.offer.if_instance,
188963ec 232 newchannel);
3e7ee490 233
454f18a9
BP
234 /*
235 * Add the new device to the bus. This will kick off device-driver
236 * binding which eventually invokes the device driver's AddDevice()
237 * method.
238 */
22794281 239 ret = vmbus_device_register(newchannel->device_obj);
bd60c33e 240 if (ret != 0) {
0a46618d 241 pr_err("unable to add child device object (relid %d)\n",
c50f7fb2 242 newchannel->offermsg.child_relid);
3e7ee490 243
15b2f647 244 spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
c50f7fb2 245 list_del(&newchannel->listentry);
15b2f647 246 spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags);
8b8ee675 247 kfree(newchannel->device_obj);
3e7ee490 248
e98cb276 249 free_channel(newchannel);
bd60c33e 250 } else {
454f18a9
BP
251 /*
252 * This state is used to indicate a successful open
253 * so that when we do close the channel normally, we
254 * can cleanup properly
255 */
c50f7fb2 256 newchannel->state = CHANNEL_OPEN_STATE;
3e7ee490 257 }
3e7ee490
HJ
258}
259
3e189519 260/*
e98cb276 261 * vmbus_onoffer - Handler for channel offers from vmbus in parent partition.
bd60c33e 262 *
bd60c33e 263 */
e98cb276 264static void vmbus_onoffer(struct vmbus_channel_message_header *hdr)
3e7ee490 265{
bd60c33e 266 struct vmbus_channel_offer_channel *offer;
188963ec 267 struct vmbus_channel *newchannel;
3e7ee490 268
bd60c33e 269 offer = (struct vmbus_channel_offer_channel *)hdr;
3e7ee490 270
454f18a9 271 /* Allocate the channel object and save this offer. */
e98cb276 272 newchannel = alloc_channel();
188963ec 273 if (!newchannel) {
0a46618d 274 pr_err("Unable to allocate channel object\n");
3e7ee490
HJ
275 return;
276 }
277
132368bd
S
278 /*
279 * By default we setup state to enable batched
280 * reading. A specific service can choose to
281 * disable this prior to opening the channel.
282 */
283 newchannel->batched_reading = true;
284
b3bf60c7
S
285 /*
286 * Setup state for signalling the host.
287 */
288 newchannel->sig_event = (struct hv_input_signal_event *)
289 (ALIGN((unsigned long)
290 &newchannel->sig_buf,
291 HV_HYPERCALL_PARAM_ALIGN));
292
293 newchannel->sig_event->connectionid.asu32 = 0;
294 newchannel->sig_event->connectionid.u.id = VMBUS_EVENT_CONNECTION_ID;
295 newchannel->sig_event->flag_number = 0;
296 newchannel->sig_event->rsvdz = 0;
297
298 if (vmbus_proto_version != VERSION_WS2008) {
299 newchannel->is_dedicated_interrupt =
300 (offer->is_dedicated_interrupt != 0);
301 newchannel->sig_event->connectionid.u.id =
302 offer->connection_id;
303 }
304
abbf3b2a
S
305 newchannel->target_vp = 0;
306
c50f7fb2 307 memcpy(&newchannel->offermsg, offer,
bd60c33e 308 sizeof(struct vmbus_channel_offer_channel));
c50f7fb2
HZ
309 newchannel->monitor_grp = (u8)offer->monitorid / 32;
310 newchannel->monitor_bit = (u8)offer->monitorid % 32;
3e7ee490 311
4b2f9abe
TT
312 INIT_WORK(&newchannel->work, vmbus_process_offer);
313 queue_work(newchannel->controlwq, &newchannel->work);
3e7ee490
HJ
314}
315
3e189519 316/*
e98cb276 317 * vmbus_onoffer_rescind - Rescind offer handler.
bd60c33e
GKH
318 *
319 * We queue a work item to process this offer synchronously
320 */
e98cb276 321static void vmbus_onoffer_rescind(struct vmbus_channel_message_header *hdr)
3e7ee490 322{
bd60c33e 323 struct vmbus_channel_rescind_offer *rescind;
aded7165 324 struct vmbus_channel *channel;
3e7ee490 325
bd60c33e 326 rescind = (struct vmbus_channel_rescind_offer *)hdr;
c6977677 327 channel = relid2channel(rescind->child_relid);
98e08702
HJ
328
329 if (channel == NULL)
330 /* Just return here, no channel found */
3e7ee490 331 return;
3e7ee490 332
4b2f9abe
TT
333 /* work is initialized for vmbus_process_rescind_offer() from
334 * vmbus_process_offer() where the channel got created */
335 queue_work(channel->controlwq, &channel->work);
3e7ee490
HJ
336}
337
3e189519 338/*
e98cb276
HZ
339 * vmbus_onoffers_delivered -
340 * This is invoked when all offers have been delivered.
bd60c33e
GKH
341 *
342 * Nothing to do here.
343 */
e98cb276 344static void vmbus_onoffers_delivered(
bd60c33e 345 struct vmbus_channel_message_header *hdr)
3e7ee490 346{
3e7ee490
HJ
347}
348
3e189519 349/*
e98cb276 350 * vmbus_onopen_result - Open result handler.
bd60c33e
GKH
351 *
352 * This is invoked when we received a response to our channel open request.
353 * Find the matching request, copy the response and signal the requesting
354 * thread.
355 */
e98cb276 356static void vmbus_onopen_result(struct vmbus_channel_message_header *hdr)
3e7ee490 357{
bd60c33e 358 struct vmbus_channel_open_result *result;
188963ec
HZ
359 struct vmbus_channel_msginfo *msginfo;
360 struct vmbus_channel_message_header *requestheader;
361 struct vmbus_channel_open_channel *openmsg;
dd0813b6 362 unsigned long flags;
3e7ee490 363
bd60c33e 364 result = (struct vmbus_channel_open_result *)hdr;
3e7ee490 365
bd60c33e
GKH
366 /*
367 * Find the open msg, copy the result and signal/unblock the wait event
368 */
15b2f647 369 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
3e7ee490 370
ebb61e5f
HJ
371 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
372 msglistentry) {
188963ec 373 requestheader =
c50f7fb2 374 (struct vmbus_channel_message_header *)msginfo->msg;
188963ec 375
c50f7fb2 376 if (requestheader->msgtype == CHANNELMSG_OPENCHANNEL) {
188963ec 377 openmsg =
c50f7fb2
HZ
378 (struct vmbus_channel_open_channel *)msginfo->msg;
379 if (openmsg->child_relid == result->child_relid &&
380 openmsg->openid == result->openid) {
381 memcpy(&msginfo->response.open_result,
bd60c33e 382 result,
9568a193
S
383 sizeof(
384 struct vmbus_channel_open_result));
385 complete(&msginfo->waitevent);
3e7ee490
HJ
386 break;
387 }
388 }
389 }
15b2f647 390 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
3e7ee490
HJ
391}
392
3e189519 393/*
e98cb276 394 * vmbus_ongpadl_created - GPADL created handler.
bd60c33e
GKH
395 *
396 * This is invoked when we received a response to our gpadl create request.
397 * Find the matching request, copy the response and signal the requesting
398 * thread.
399 */
e98cb276 400static void vmbus_ongpadl_created(struct vmbus_channel_message_header *hdr)
3e7ee490 401{
188963ec 402 struct vmbus_channel_gpadl_created *gpadlcreated;
188963ec
HZ
403 struct vmbus_channel_msginfo *msginfo;
404 struct vmbus_channel_message_header *requestheader;
405 struct vmbus_channel_gpadl_header *gpadlheader;
dd0813b6 406 unsigned long flags;
3e7ee490 407
188963ec 408 gpadlcreated = (struct vmbus_channel_gpadl_created *)hdr;
3e7ee490 409
bd60c33e
GKH
410 /*
411 * Find the establish msg, copy the result and signal/unblock the wait
412 * event
413 */
15b2f647 414 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
3e7ee490 415
ebb61e5f
HJ
416 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
417 msglistentry) {
188963ec 418 requestheader =
c50f7fb2 419 (struct vmbus_channel_message_header *)msginfo->msg;
188963ec 420
c50f7fb2 421 if (requestheader->msgtype == CHANNELMSG_GPADL_HEADER) {
188963ec
HZ
422 gpadlheader =
423 (struct vmbus_channel_gpadl_header *)requestheader;
424
c50f7fb2
HZ
425 if ((gpadlcreated->child_relid ==
426 gpadlheader->child_relid) &&
427 (gpadlcreated->gpadl == gpadlheader->gpadl)) {
428 memcpy(&msginfo->response.gpadl_created,
188963ec 429 gpadlcreated,
9568a193
S
430 sizeof(
431 struct vmbus_channel_gpadl_created));
432 complete(&msginfo->waitevent);
3e7ee490
HJ
433 break;
434 }
435 }
436 }
15b2f647 437 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
3e7ee490
HJ
438}
439
3e189519 440/*
e98cb276 441 * vmbus_ongpadl_torndown - GPADL torndown handler.
bd60c33e
GKH
442 *
443 * This is invoked when we received a response to our gpadl teardown request.
444 * Find the matching request, copy the response and signal the requesting
445 * thread.
446 */
e98cb276 447static void vmbus_ongpadl_torndown(
bd60c33e 448 struct vmbus_channel_message_header *hdr)
3e7ee490 449{
188963ec 450 struct vmbus_channel_gpadl_torndown *gpadl_torndown;
188963ec
HZ
451 struct vmbus_channel_msginfo *msginfo;
452 struct vmbus_channel_message_header *requestheader;
453 struct vmbus_channel_gpadl_teardown *gpadl_teardown;
dd0813b6 454 unsigned long flags;
3e7ee490 455
188963ec 456 gpadl_torndown = (struct vmbus_channel_gpadl_torndown *)hdr;
bd60c33e
GKH
457
458 /*
459 * Find the open msg, copy the result and signal/unblock the wait event
460 */
15b2f647 461 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
3e7ee490 462
ebb61e5f
HJ
463 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
464 msglistentry) {
188963ec 465 requestheader =
c50f7fb2 466 (struct vmbus_channel_message_header *)msginfo->msg;
3e7ee490 467
c50f7fb2 468 if (requestheader->msgtype == CHANNELMSG_GPADL_TEARDOWN) {
188963ec
HZ
469 gpadl_teardown =
470 (struct vmbus_channel_gpadl_teardown *)requestheader;
3e7ee490 471
c50f7fb2
HZ
472 if (gpadl_torndown->gpadl == gpadl_teardown->gpadl) {
473 memcpy(&msginfo->response.gpadl_torndown,
188963ec 474 gpadl_torndown,
9568a193
S
475 sizeof(
476 struct vmbus_channel_gpadl_torndown));
477 complete(&msginfo->waitevent);
3e7ee490
HJ
478 break;
479 }
480 }
481 }
15b2f647 482 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
3e7ee490
HJ
483}
484
3e189519 485/*
e98cb276 486 * vmbus_onversion_response - Version response handler
bd60c33e
GKH
487 *
488 * This is invoked when we received a response to our initiate contact request.
489 * Find the matching request, copy the response and signal the requesting
490 * thread.
491 */
e98cb276 492static void vmbus_onversion_response(
bd60c33e 493 struct vmbus_channel_message_header *hdr)
3e7ee490 494{
188963ec
HZ
495 struct vmbus_channel_msginfo *msginfo;
496 struct vmbus_channel_message_header *requestheader;
188963ec 497 struct vmbus_channel_version_response *version_response;
dd0813b6 498 unsigned long flags;
3e7ee490 499
188963ec 500 version_response = (struct vmbus_channel_version_response *)hdr;
15b2f647 501 spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
3e7ee490 502
ebb61e5f
HJ
503 list_for_each_entry(msginfo, &vmbus_connection.chn_msg_list,
504 msglistentry) {
188963ec 505 requestheader =
c50f7fb2 506 (struct vmbus_channel_message_header *)msginfo->msg;
3e7ee490 507
c50f7fb2
HZ
508 if (requestheader->msgtype ==
509 CHANNELMSG_INITIATE_CONTACT) {
c50f7fb2 510 memcpy(&msginfo->response.version_response,
188963ec 511 version_response,
bd60c33e 512 sizeof(struct vmbus_channel_version_response));
9568a193 513 complete(&msginfo->waitevent);
3e7ee490
HJ
514 }
515 }
15b2f647 516 spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
3e7ee490
HJ
517}
518
c8212f04
GKH
519/* Channel message dispatch table */
520static struct vmbus_channel_message_table_entry
b7c6b02f 521 channel_message_table[CHANNELMSG_COUNT] = {
c50f7fb2
HZ
522 {CHANNELMSG_INVALID, NULL},
523 {CHANNELMSG_OFFERCHANNEL, vmbus_onoffer},
524 {CHANNELMSG_RESCIND_CHANNELOFFER, vmbus_onoffer_rescind},
525 {CHANNELMSG_REQUESTOFFERS, NULL},
526 {CHANNELMSG_ALLOFFERS_DELIVERED, vmbus_onoffers_delivered},
527 {CHANNELMSG_OPENCHANNEL, NULL},
528 {CHANNELMSG_OPENCHANNEL_RESULT, vmbus_onopen_result},
529 {CHANNELMSG_CLOSECHANNEL, NULL},
530 {CHANNELMSG_GPADL_HEADER, NULL},
531 {CHANNELMSG_GPADL_BODY, NULL},
532 {CHANNELMSG_GPADL_CREATED, vmbus_ongpadl_created},
533 {CHANNELMSG_GPADL_TEARDOWN, NULL},
534 {CHANNELMSG_GPADL_TORNDOWN, vmbus_ongpadl_torndown},
535 {CHANNELMSG_RELID_RELEASED, NULL},
536 {CHANNELMSG_INITIATE_CONTACT, NULL},
537 {CHANNELMSG_VERSION_RESPONSE, vmbus_onversion_response},
538 {CHANNELMSG_UNLOAD, NULL},
c8212f04
GKH
539};
540
3e189519 541/*
e98cb276 542 * vmbus_onmessage - Handler for channel protocol messages.
bd60c33e
GKH
543 *
544 * This is invoked in the vmbus worker thread context.
545 */
e98cb276 546void vmbus_onmessage(void *context)
3e7ee490 547{
188963ec 548 struct hv_message *msg = context;
82250213 549 struct vmbus_channel_message_header *hdr;
3e7ee490
HJ
550 int size;
551
f6feebe0
HZ
552 hdr = (struct vmbus_channel_message_header *)msg->u.payload;
553 size = msg->header.payload_size;
3e7ee490 554
c50f7fb2 555 if (hdr->msgtype >= CHANNELMSG_COUNT) {
0a46618d 556 pr_err("Received invalid channel message type %d size %d\n",
c50f7fb2 557 hdr->msgtype, size);
04f50c4d 558 print_hex_dump_bytes("", DUMP_PREFIX_NONE,
f6feebe0 559 (unsigned char *)msg->u.payload, size);
3e7ee490
HJ
560 return;
561 }
562
b7c6b02f
S
563 if (channel_message_table[hdr->msgtype].message_handler)
564 channel_message_table[hdr->msgtype].message_handler(hdr);
3e7ee490 565 else
0a46618d 566 pr_err("Unhandled channel message type %d\n", hdr->msgtype);
3e7ee490
HJ
567}
568
3e189519 569/*
e98cb276 570 * vmbus_request_offers - Send a request to get all our pending offers.
bd60c33e 571 */
e98cb276 572int vmbus_request_offers(void)
3e7ee490 573{
82250213 574 struct vmbus_channel_message_header *msg;
188963ec 575 struct vmbus_channel_msginfo *msginfo;
9568a193 576 int ret, t;
3e7ee490 577
188963ec 578 msginfo = kmalloc(sizeof(*msginfo) +
bd60c33e
GKH
579 sizeof(struct vmbus_channel_message_header),
580 GFP_KERNEL);
188963ec 581 if (!msginfo)
75910f23 582 return -ENOMEM;
3e7ee490 583
9568a193 584 init_completion(&msginfo->waitevent);
75910f23 585
c50f7fb2 586 msg = (struct vmbus_channel_message_header *)msginfo->msg;
3e7ee490 587
c50f7fb2 588 msg->msgtype = CHANNELMSG_REQUESTOFFERS;
3e7ee490 589
3e7ee490 590
c6977677 591 ret = vmbus_post_msg(msg,
bd60c33e
GKH
592 sizeof(struct vmbus_channel_message_header));
593 if (ret != 0) {
0a46618d 594 pr_err("Unable to request offers - %d\n", ret);
3e7ee490 595
0c3b7b2f
S
596 goto cleanup;
597 }
3e7ee490 598
2dfde964 599 t = wait_for_completion_timeout(&msginfo->waitevent, 5*HZ);
9568a193 600 if (t == 0) {
0c3b7b2f
S
601 ret = -ETIMEDOUT;
602 goto cleanup;
3e7ee490 603 }
3e7ee490 604
3e7ee490
HJ
605
606
0c3b7b2f 607cleanup:
dd9b15dc 608 kfree(msginfo);
3e7ee490 609
3e7ee490
HJ
610 return ret;
611}
612
454f18a9 613/* eof */
This page took 0.327439 seconds and 5 git commands to generate.