Skip to content

Commit

Permalink
Staging: hv: vmbus: Increase the timeout value in the vmbus driver
Browse files Browse the repository at this point in the history
On some loaded windows hosts, we have discovered that the host may not
respond to guest requests within the specified time (one second)
as evidenced by the guest timing out. Fix this problem by increasing
the timeout to 5 seconds.

It may be useful to apply this patch to the 3.0 kernel as well.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Hank Janssen <hjanssen@microsoft.com>
Cc: stable <stable@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Jul 5, 2011
1 parent df50567 commit 2dfde96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/hv/channel.c
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ int vmbus_open(struct vmbus_channel *newchannel, u32 send_ringbuffer_size,
if (ret != 0)
goto cleanup;

t = wait_for_completion_timeout(&openInfo->waitevent, HZ);
t = wait_for_completion_timeout(&openInfo->waitevent, 5*HZ);
if (t == 0) {
err = -ETIMEDOUT;
goto errorout;
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/hv/channel_mgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ int vmbus_request_offers(void)
goto cleanup;
}

t = wait_for_completion_timeout(&msginfo->waitevent, HZ);
t = wait_for_completion_timeout(&msginfo->waitevent, 5*HZ);
if (t == 0) {
ret = -ETIMEDOUT;
goto cleanup;
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/hv/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ int vmbus_connect(void)
}

/* Wait for the connection response */
t = wait_for_completion_timeout(&msginfo->waitevent, HZ);
t = wait_for_completion_timeout(&msginfo->waitevent, 5*HZ);
if (t == 0) {
spin_lock_irqsave(&vmbus_connection.channelmsg_lock,
flags);
Expand Down

0 comments on commit 2dfde96

Please sign in to comment.