diff --git a/[refs] b/[refs] index 7b356e955b0a..256f9e6b3b8d 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: b3bf60c7b4665d40b8eae2217b54c4745f49f470 +refs/heads/master: 3be77774017fc3c7dd0b434265dfa417aac23545 diff --git a/trunk/drivers/hv/connection.c b/trunk/drivers/hv/connection.c index 56b14e57bdd8..114050dc8e28 100644 --- a/trunk/drivers/hv/connection.c +++ b/trunk/drivers/hv/connection.c @@ -383,10 +383,13 @@ int vmbus_post_msg(void *buffer, size_t buflen) int vmbus_set_event(struct vmbus_channel *channel) { u32 child_relid = channel->offermsg.child_relid; - /* Each u32 represents 32 channels */ - sync_set_bit(child_relid & 31, - (unsigned long *)vmbus_connection.send_int_page + - (child_relid >> 5)); - return hv_signal_event(hv_context.signal_event_param); + if (!channel->is_dedicated_interrupt) { + /* Each u32 represents 32 channels */ + sync_set_bit(child_relid & 31, + (unsigned long *)vmbus_connection.send_int_page + + (child_relid >> 5)); + } + + return hv_signal_event(channel->sig_event); }