Staging: hv: storvsc: Optimize the bounce buffer handling in the "read" case
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / staging / hv / storvsc_drv.c
index 90b91ade825a932edb0c8587721b206e25f8823d..3e00e70c945dfaec1a2b49e189acc308a6bde3ce 100644 (file)
@@ -560,12 +560,10 @@ static int storvsc_queuecommand_lck(struct scsi_cmnd *scmnd,
                                ALIGN(scsi_bufflen(scmnd), PAGE_SIZE) >>
                                        PAGE_SHIFT;
 
-                       /*
-                        * FIXME: We can optimize on reads by just skipping
-                        * this
-                        */
-                       copy_to_bounce_buffer(sgl, cmd_request->bounce_sgl,
-                                             scsi_sg_count(scmnd));
+                       if (vm_srb->data_in == WRITE_TYPE)
+                               copy_to_bounce_buffer(sgl,
+                                       cmd_request->bounce_sgl,
+                                       scsi_sg_count(scmnd));
 
                        sgl = cmd_request->bounce_sgl;
                        sg_count = cmd_request->bounce_sgl_count;