Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 259706
b: refs/heads/master
c: 2dfde96
h: refs/heads/master
v: v3
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Jul 5, 2011
1 parent 2c8e6c4 commit fefd7ef
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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: df50567797be6d883364162176fd5e8a76ee751b
refs/heads/master: 2dfde9644fe8c4a77f9c73f95b25d6300ca23b5d
2 changes: 1 addition & 1 deletion trunk/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 trunk/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 trunk/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 fefd7ef

Please sign in to comment.