Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 268051
b: refs/heads/master
c: 3612ef9
h: refs/heads/master
i:
  268049: 9c7e35f
  268047: 6938a19
v: v3
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Aug 29, 2011
1 parent f9597d1 commit 8da28ce
Show file tree
Hide file tree
Showing 2 changed files with 7 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: b38cc43432d7b7b0a4dc0a13d261a85944fc7c65
refs/heads/master: 3612ef99b05f107d5cd85f6bc45b94ed880d78f3
12 changes: 6 additions & 6 deletions trunk/drivers/staging/hv/storvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -425,17 +425,17 @@ static void storvsc_commmand_completion(struct hv_storvsc_request *request)
struct scsi_sense_hdr sense_hdr;
struct vmscsi_request *vm_srb;

vm_srb = &request->vstor_packet.vm_srb;
if (cmd_request->bounce_sgl_count) {

/* FIXME: We can optimize on writes by just skipping this */
copy_from_bounce_buffer(scsi_sglist(scmnd),
if (vm_srb->data_in == READ_TYPE) {
copy_from_bounce_buffer(scsi_sglist(scmnd),
cmd_request->bounce_sgl,
scsi_sg_count(scmnd));
destroy_bounce_buffer(cmd_request->bounce_sgl,
cmd_request->bounce_sgl_count);
destroy_bounce_buffer(cmd_request->bounce_sgl,
cmd_request->bounce_sgl_count);
}
}

vm_srb = &request->vstor_packet.vm_srb;
scmnd->result = vm_srb->scsi_status;

if (scmnd->result) {
Expand Down

0 comments on commit 8da28ce

Please sign in to comment.