Skip to content

Commit

Permalink
Staging: hv: storvsc: Optimize bounce buffer handling for the "write"…
Browse files Browse the repository at this point in the history
… case

Optimize bounce buffer handling for the "write" case.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Aug 29, 2011
1 parent b38cc43 commit 3612ef9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions 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 3612ef9

Please sign in to comment.