Staging: hv: storvsc: Optimize the bounce buffer handling in the "read" case
Optimize the bounce buffer handling in the "read" 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>
This commit is contained in:
Родитель
3612ef99b0
Коммит
fa23b8c78f
|
@ -560,12 +560,10 @@ static int storvsc_queuecommand_lck(struct scsi_cmnd *scmnd,
|
||||||
ALIGN(scsi_bufflen(scmnd), PAGE_SIZE) >>
|
ALIGN(scsi_bufflen(scmnd), PAGE_SIZE) >>
|
||||||
PAGE_SHIFT;
|
PAGE_SHIFT;
|
||||||
|
|
||||||
/*
|
if (vm_srb->data_in == WRITE_TYPE)
|
||||||
* FIXME: We can optimize on reads by just skipping
|
copy_to_bounce_buffer(sgl,
|
||||||
* this
|
cmd_request->bounce_sgl,
|
||||||
*/
|
scsi_sg_count(scmnd));
|
||||||
copy_to_bounce_buffer(sgl, cmd_request->bounce_sgl,
|
|
||||||
scsi_sg_count(scmnd));
|
|
||||||
|
|
||||||
sgl = cmd_request->bounce_sgl;
|
sgl = cmd_request->bounce_sgl;
|
||||||
sg_count = cmd_request->bounce_sgl_count;
|
sg_count = cmd_request->bounce_sgl_count;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче