Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 354985
b: refs/heads/master
c: 1f42248
h: refs/heads/master
i:
  354983: bf98116
v: v3
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Jan 17, 2013
1 parent b019c5c commit bb3bb8d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 37f7278b81a9ab9b76cf4d716ba420444ca4a616
refs/heads/master: 1f42248d724a413baaafd5f83a8f4746bc6f51a5
2 changes: 1 addition & 1 deletion trunk/drivers/hv/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
7 changes: 3 additions & 4 deletions trunk/drivers/hv/hv.c
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,12 @@ int hv_post_message(union hv_connection_id connection_id,
*
* This involves a hypercall.
*/
u16 hv_signal_event(void)
u16 hv_signal_event(void *con_id)
{
u16 status;

status = do_hypercall(HVCALL_SIGNAL_EVENT,
hv_context.signal_event_param,
NULL) & 0xFFFF;
status = (do_hypercall(HVCALL_SIGNAL_EVENT, con_id, NULL) & 0xFFFF);

return status;
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/hv/hyperv_vmbus.h
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ extern int hv_post_message(union hv_connection_id connection_id,
enum hv_message_type message_type,
void *payload, size_t payload_size);

extern u16 hv_signal_event(void);
extern u16 hv_signal_event(void *con_id);

extern void hv_synic_init(void *irqarg);

Expand Down

0 comments on commit bb3bb8d

Please sign in to comment.