Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 259707
b: refs/heads/master
c: 5c5781b
h: refs/heads/master
i:
  259705: 2c8e6c4
  259703: 36b32f5
v: v3
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Jul 5, 2011
1 parent fefd7ef commit 8d946af
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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: 2dfde9644fe8c4a77f9c73f95b25d6300ca23b5d
refs/heads/master: 5c5781b3f88567211ecaaada13431af15c8c6003
4 changes: 2 additions & 2 deletions trunk/drivers/staging/hv/netvsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ static int netvsc_init_recv_buf(struct hv_device *device)
goto cleanup;
}

t = wait_for_completion_timeout(&net_device->channel_init_wait, HZ);
t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
BUG_ON(t == 0);


Expand Down Expand Up @@ -357,7 +357,7 @@ static int netvsc_connect_vsp(struct hv_device *device)
if (ret != 0)
goto cleanup;

t = wait_for_completion_timeout(&net_device->channel_init_wait, HZ);
t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);

if (t == 0) {
ret = -ETIMEDOUT;
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/staging/hv/rndis_filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ static int rndis_filter_query_device(struct rndis_device *dev, u32 oid,
if (ret != 0)
goto Cleanup;

t = wait_for_completion_timeout(&request->wait_event, HZ);
t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
if (t == 0) {
ret = -ETIMEDOUT;
goto Cleanup;
Expand Down Expand Up @@ -528,7 +528,7 @@ static int rndis_filter_set_packet_filter(struct rndis_device *dev,
if (ret != 0)
goto Cleanup;

t = wait_for_completion_timeout(&request->wait_event, HZ);
t = wait_for_completion_timeout(&request->wait_event, 5*HZ);

if (t == 0) {
ret = -1;
Expand Down Expand Up @@ -585,7 +585,7 @@ static int rndis_filter_init_device(struct rndis_device *dev)
}


t = wait_for_completion_timeout(&request->wait_event, HZ);
t = wait_for_completion_timeout(&request->wait_event, 5*HZ);

if (t == 0) {
ret = -ETIMEDOUT;
Expand Down

0 comments on commit 8d946af

Please sign in to comment.