Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 248939
b: refs/heads/master
c: b4dba0a
h: refs/heads/master
i:
  248937: dd7d57c
  248935: 898ffed
v: v3
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Apr 5, 2011
1 parent c49903f commit 9c94d42
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 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: 735625fe4d95e2a73fe41a7e4d23f05fd97b9e80
refs/heads/master: b4dba0a3b4008c48316f712283c682f422b2c973
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 @@ -945,7 +945,7 @@ static int blkvsc_submit_request(struct blkvsc_request *blkvsc_req,

vm_srb->port_number = blkdev->port;
vm_srb->path_id = blkdev->path;
storvsc_req->target_id = blkdev->target;
vm_srb->target_id = blkdev->target;
storvsc_req->lun_id = 0; /* this is not really used at all */

storvsc_req->cdb_len = blkvsc_req->cmd_len;
Expand Down
5 changes: 2 additions & 3 deletions trunk/drivers/staging/hv/storvsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -531,9 +531,9 @@ int stor_vsc_on_io_request(struct hv_device *device,
"Extension %p", device, stor_device, request,
request_extension);

DPRINT_DBG(STORVSC, "req %p len %d target %d, lun %d cdblen %d",
DPRINT_DBG(STORVSC, "req %p len %d lun %d cdblen %d",
request, request->data_buffer.len,
request->target_id, request->lun_id, request->cdb_len);
request->lun_id, request->cdb_len);

if (!stor_device) {
DPRINT_ERR(STORVSC, "unable to get stor device..."
Expand All @@ -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.target_id = request->target_id;
vstor_packet->vm_srb.lun = request->lun_id;

vstor_packet->vm_srb.sense_info_length = SENSE_BUFFER_SIZE;
Expand Down
1 change: 0 additions & 1 deletion trunk/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 target_id;
u32 lun_id;
u8 *cdb;
u32 cdb_len;
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 @@ -776,7 +776,7 @@ static int storvsc_queuecommand_lck(struct scsi_cmnd *scmnd,
/* request->PortId = scmnd->device->channel; */
vm_srb->port_number = host_device_ctx->port;
vm_srb->path_id = scmnd->device->channel;
request->target_id = scmnd->device->id;
vm_srb->target_id = scmnd->device->id;
request->lun_id = scmnd->device->lun;

/* ASSERT(scmnd->cmd_len <= 16); */
Expand Down

0 comments on commit 9c94d42

Please sign in to comment.