Skip to content

Commit

Permalink
Staging: hv: Move on_io_completion() from struct hv_storvsc_request
Browse files Browse the repository at this point in the history
In preparation of consolidating all I/O request state, move
the on_io_completion() field from struct hv_storvsc_request to
struct storvsc_request_extension.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Abhishek Kane <v-abkane@microsoft.com>
Signed-off-by: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Apr 5, 2011
1 parent efb5a66 commit 0bb7112
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/hv/blkvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@ static int blkvsc_submit_request(struct blkvsc_request *blkvsc_req,

vm_srb->data_in = blkvsc_req->write ? WRITE_TYPE : READ_TYPE;

storvsc_req->on_io_completion = request_completion;
storvsc_req->extension.on_io_completion = request_completion;
storvsc_req->extension.context = blkvsc_req;

vm_srb->port_number = blkdev->port;
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/hv/storvsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ static void stor_vsc_on_io_completion(struct hv_device *device,
/* TODO: */
request->bytes_xfer = vstor_packet->vm_srb.data_transfer_length;

request->on_io_completion(request);
request->extension.on_io_completion(request);

atomic_dec(&stor_device->num_outstanding_req);

Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/hv/storvsc_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ struct storvsc_request_extension {

unsigned char *sense_buffer;
void *context;
void (*on_io_completion)(struct hv_storvsc_request *request);

struct vstor_packet vstor_packet;
};
Expand All @@ -72,7 +73,6 @@ struct hv_storvsc_request {
u32 status;
u32 bytes_xfer;

void (*on_io_completion)(struct hv_storvsc_request *request);

struct storvsc_request_extension extension;

Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/hv/storvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ static int storvsc_queuecommand_lck(struct scsi_cmnd *scmnd,
break;
}

request->on_io_completion = storvsc_commmand_completion;
request->extension.on_io_completion = storvsc_commmand_completion;
request->extension.context = cmd_request;/* scmnd; */

/* request->PortId = scmnd->device->channel; */
Expand Down

0 comments on commit 0bb7112

Please sign in to comment.