Commit 93958465 authored by K. Y. Srinivasan's avatar K. Y. Srinivasan Committed by Greg Kroah-Hartman

Staging: hv: Use struct completion in struct storvsc_request_extension

Get rid of the wait_queue mechanism for synchronization in
struct storvsc_request_extension and instead use completion
mechanism.
Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarAbhishek Kane <v-abkane@microsoft.com>
Signed-off-by: default avatarHank Janssen <hjanssen@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent ced01b0d
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
*/ */
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/sched.h> #include <linux/sched.h>
#include <linux/wait.h> #include <linux/completion.h>
#include <linux/string.h> #include <linux/string.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/mm.h> #include <linux/mm.h>
...@@ -107,7 +107,7 @@ static int stor_vsc_channel_init(struct hv_device *device) ...@@ -107,7 +107,7 @@ static int stor_vsc_channel_init(struct hv_device *device)
struct storvsc_device *stor_device; struct storvsc_device *stor_device;
struct storvsc_request_extension *request; struct storvsc_request_extension *request;
struct vstor_packet *vstor_packet; struct vstor_packet *vstor_packet;
int ret; int ret, t;
stor_device = get_stor_device(device); stor_device = get_stor_device(device);
if (!stor_device) { if (!stor_device) {
...@@ -124,13 +124,12 @@ static int stor_vsc_channel_init(struct hv_device *device) ...@@ -124,13 +124,12 @@ static int stor_vsc_channel_init(struct hv_device *device)
* channel * channel
*/ */
memset(request, 0, sizeof(struct storvsc_request_extension)); memset(request, 0, sizeof(struct storvsc_request_extension));
init_waitqueue_head(&request->wait_event); init_completion(&request->wait_event);
vstor_packet->operation = VSTOR_OPERATION_BEGIN_INITIALIZATION; vstor_packet->operation = VSTOR_OPERATION_BEGIN_INITIALIZATION;
vstor_packet->flags = REQUEST_COMPLETION_FLAG; vstor_packet->flags = REQUEST_COMPLETION_FLAG;
DPRINT_INFO(STORVSC, "BEGIN_INITIALIZATION_OPERATION..."); DPRINT_INFO(STORVSC, "BEGIN_INITIALIZATION_OPERATION...");
request->wait_condition = 0;
ret = vmbus_sendpacket(device->channel, vstor_packet, ret = vmbus_sendpacket(device->channel, vstor_packet,
sizeof(struct vstor_packet), sizeof(struct vstor_packet),
(unsigned long)request, (unsigned long)request,
...@@ -142,14 +141,12 @@ static int stor_vsc_channel_init(struct hv_device *device) ...@@ -142,14 +141,12 @@ static int stor_vsc_channel_init(struct hv_device *device)
goto cleanup; goto cleanup;
} }
wait_event_timeout(request->wait_event, request->wait_condition, t = wait_for_completion_timeout(&request->wait_event, HZ);
msecs_to_jiffies(1000)); if (t == 0) {
if (request->wait_condition == 0) {
ret = -ETIMEDOUT; ret = -ETIMEDOUT;
goto cleanup; goto cleanup;
} }
if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO || if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
vstor_packet->status != 0) { vstor_packet->status != 0) {
DPRINT_ERR(STORVSC, "BEGIN_INITIALIZATION_OPERATION failed " DPRINT_ERR(STORVSC, "BEGIN_INITIALIZATION_OPERATION failed "
...@@ -168,7 +165,6 @@ static int stor_vsc_channel_init(struct hv_device *device) ...@@ -168,7 +165,6 @@ static int stor_vsc_channel_init(struct hv_device *device)
vstor_packet->version.major_minor = VMSTOR_PROTOCOL_VERSION_CURRENT; vstor_packet->version.major_minor = VMSTOR_PROTOCOL_VERSION_CURRENT;
FILL_VMSTOR_REVISION(vstor_packet->version.revision); FILL_VMSTOR_REVISION(vstor_packet->version.revision);
request->wait_condition = 0;
ret = vmbus_sendpacket(device->channel, vstor_packet, ret = vmbus_sendpacket(device->channel, vstor_packet,
sizeof(struct vstor_packet), sizeof(struct vstor_packet),
(unsigned long)request, (unsigned long)request,
...@@ -180,9 +176,8 @@ static int stor_vsc_channel_init(struct hv_device *device) ...@@ -180,9 +176,8 @@ static int stor_vsc_channel_init(struct hv_device *device)
goto cleanup; goto cleanup;
} }
wait_event_timeout(request->wait_event, request->wait_condition, t = wait_for_completion_timeout(&request->wait_event, HZ);
msecs_to_jiffies(1000)); if (t == 0) {
if (request->wait_condition == 0) {
ret = -ETIMEDOUT; ret = -ETIMEDOUT;
goto cleanup; goto cleanup;
} }
...@@ -205,7 +200,6 @@ static int stor_vsc_channel_init(struct hv_device *device) ...@@ -205,7 +200,6 @@ static int stor_vsc_channel_init(struct hv_device *device)
vstor_packet->storage_channel_properties.port_number = vstor_packet->storage_channel_properties.port_number =
stor_device->port_number; stor_device->port_number;
request->wait_condition = 0;
ret = vmbus_sendpacket(device->channel, vstor_packet, ret = vmbus_sendpacket(device->channel, vstor_packet,
sizeof(struct vstor_packet), sizeof(struct vstor_packet),
(unsigned long)request, (unsigned long)request,
...@@ -218,9 +212,8 @@ static int stor_vsc_channel_init(struct hv_device *device) ...@@ -218,9 +212,8 @@ static int stor_vsc_channel_init(struct hv_device *device)
goto cleanup; goto cleanup;
} }
wait_event_timeout(request->wait_event, request->wait_condition, t = wait_for_completion_timeout(&request->wait_event, HZ);
msecs_to_jiffies(1000)); if (t == 0) {
if (request->wait_condition == 0) {
ret = -ETIMEDOUT; ret = -ETIMEDOUT;
goto cleanup; goto cleanup;
} }
...@@ -248,7 +241,6 @@ static int stor_vsc_channel_init(struct hv_device *device) ...@@ -248,7 +241,6 @@ static int stor_vsc_channel_init(struct hv_device *device)
vstor_packet->operation = VSTOR_OPERATION_END_INITIALIZATION; vstor_packet->operation = VSTOR_OPERATION_END_INITIALIZATION;
vstor_packet->flags = REQUEST_COMPLETION_FLAG; vstor_packet->flags = REQUEST_COMPLETION_FLAG;
request->wait_condition = 0;
ret = vmbus_sendpacket(device->channel, vstor_packet, ret = vmbus_sendpacket(device->channel, vstor_packet,
sizeof(struct vstor_packet), sizeof(struct vstor_packet),
(unsigned long)request, (unsigned long)request,
...@@ -261,9 +253,8 @@ static int stor_vsc_channel_init(struct hv_device *device) ...@@ -261,9 +253,8 @@ static int stor_vsc_channel_init(struct hv_device *device)
goto cleanup; goto cleanup;
} }
wait_event_timeout(request->wait_event, request->wait_condition, t = wait_for_completion_timeout(&request->wait_event, HZ);
msecs_to_jiffies(1000)); if (t == 0) {
if (request->wait_condition == 0) {
ret = -ETIMEDOUT; ret = -ETIMEDOUT;
goto cleanup; goto cleanup;
} }
...@@ -397,8 +388,7 @@ static void stor_vsc_on_channel_callback(void *context) ...@@ -397,8 +388,7 @@ static void stor_vsc_on_channel_callback(void *context)
memcpy(&request->vstor_packet, packet, memcpy(&request->vstor_packet, packet,
sizeof(struct vstor_packet)); sizeof(struct vstor_packet));
request->wait_condition = 1; complete(&request->wait_event);
wake_up(&request->wait_event);
} else { } else {
stor_vsc_on_receive(device, stor_vsc_on_receive(device,
(struct vstor_packet *)packet, (struct vstor_packet *)packet,
......
...@@ -60,8 +60,7 @@ struct storvsc_request_extension { ...@@ -60,8 +60,7 @@ struct storvsc_request_extension {
struct hv_device *device; struct hv_device *device;
/* Synchronize the request/response if needed */ /* Synchronize the request/response if needed */
int wait_condition; struct completion wait_event;
wait_queue_head_t wait_event;
struct vstor_packet vstor_packet; struct vstor_packet vstor_packet;
}; };
......
...@@ -231,7 +231,7 @@ static int stor_vsc_on_host_reset(struct hv_device *device) ...@@ -231,7 +231,7 @@ static int stor_vsc_on_host_reset(struct hv_device *device)
struct storvsc_device *stor_device; struct storvsc_device *stor_device;
struct storvsc_request_extension *request; struct storvsc_request_extension *request;
struct vstor_packet *vstor_packet; struct vstor_packet *vstor_packet;
int ret; int ret, t;
DPRINT_INFO(STORVSC, "resetting host adapter..."); DPRINT_INFO(STORVSC, "resetting host adapter...");
...@@ -245,13 +245,12 @@ static int stor_vsc_on_host_reset(struct hv_device *device) ...@@ -245,13 +245,12 @@ static int stor_vsc_on_host_reset(struct hv_device *device)
request = &stor_device->reset_request; request = &stor_device->reset_request;
vstor_packet = &request->vstor_packet; vstor_packet = &request->vstor_packet;
init_waitqueue_head(&request->wait_event); init_completion(&request->wait_event);
vstor_packet->operation = VSTOR_OPERATION_RESET_BUS; vstor_packet->operation = VSTOR_OPERATION_RESET_BUS;
vstor_packet->flags = REQUEST_COMPLETION_FLAG; vstor_packet->flags = REQUEST_COMPLETION_FLAG;
vstor_packet->vm_srb.path_id = stor_device->path_id; vstor_packet->vm_srb.path_id = stor_device->path_id;
request->wait_condition = 0;
ret = vmbus_sendpacket(device->channel, vstor_packet, ret = vmbus_sendpacket(device->channel, vstor_packet,
sizeof(struct vstor_packet), sizeof(struct vstor_packet),
(unsigned long)&stor_device->reset_request, (unsigned long)&stor_device->reset_request,
...@@ -263,9 +262,8 @@ static int stor_vsc_on_host_reset(struct hv_device *device) ...@@ -263,9 +262,8 @@ static int stor_vsc_on_host_reset(struct hv_device *device)
goto cleanup; goto cleanup;
} }
wait_event_timeout(request->wait_event, request->wait_condition, t = wait_for_completion_timeout(&request->wait_event, HZ);
msecs_to_jiffies(1000)); if (t == 0) {
if (request->wait_condition == 0) {
ret = -ETIMEDOUT; ret = -ETIMEDOUT;
goto cleanup; goto cleanup;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment