Skip to content

Commit

Permalink
Staging: hv: Get rid of the host field from struct hv_storvsc_request
Browse files Browse the repository at this point in the history
In preparation for consolidating all I/O request state, get rid of the
host field from struct hv_storvsc_request and instead use the
equivalent  state in struct vmscsi_request - port_number field.

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 12fbd41 commit 124661d
Show file tree
Hide file tree
Showing 4 changed files with 2 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 @@ -943,7 +943,7 @@ static int blkvsc_submit_request(struct blkvsc_request *blkvsc_req,
storvsc_req->on_io_completion = request_completion;
storvsc_req->context = blkvsc_req;

storvsc_req->host = blkdev->port;
vm_srb->port_number = blkdev->port;
storvsc_req->bus = blkdev->path;
storvsc_req->target_id = blkdev->target;
storvsc_req->lun_id = 0; /* this is not really used at all */
Expand Down
1 change: 0 additions & 1 deletion drivers/staging/hv/storvsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,6 @@ int stor_vsc_on_io_request(struct hv_device *device,

vstor_packet->vm_srb.length = sizeof(struct vmscsi_request);

vstor_packet->vm_srb.port_number = request->host;
vstor_packet->vm_srb.path_id = request->bus;
vstor_packet->vm_srb.target_id = request->target_id;
vstor_packet->vm_srb.lun = request->lun_id;
Expand Down
1 change: 0 additions & 1 deletion drivers/staging/hv/storvsc_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ struct storvsc_request_extension {
};

struct hv_storvsc_request {
u32 host;
u32 bus;
u32 target_id;
u32 lun_id;
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 @@ -774,7 +774,7 @@ static int storvsc_queuecommand_lck(struct scsi_cmnd *scmnd,
request->context = cmd_request;/* scmnd; */

/* request->PortId = scmnd->device->channel; */
request->host = host_device_ctx->port;
vm_srb->port_number = host_device_ctx->port;
request->bus = scmnd->device->channel;
request->target_id = scmnd->device->id;
request->lun_id = scmnd->device->lun;
Expand Down

0 comments on commit 124661d

Please sign in to comment.