Skip to content

Commit

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

Please sign in to comment.