|
@@ -135,7 +135,7 @@ static int storvsc_channel_init(struct hv_device *device)
|
|
|
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;
|
|
@@ -163,7 +163,7 @@ static int storvsc_channel_init(struct hv_device *device)
|
|
|
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;
|
|
@@ -192,7 +192,7 @@ static int storvsc_channel_init(struct hv_device *device)
|
|
|
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;
|
|
@@ -222,7 +222,7 @@ static int storvsc_channel_init(struct hv_device *device)
|
|
|
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;
|