diff options
author | Boaz Harrosh <bharrosh@panasas.com> | 2011-01-23 10:53:24 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2011-01-24 13:06:31 -0500 |
commit | 4977c82504f58d7579acabd21688183eaa8768fb (patch) | |
tree | fc455d2fe5f925b6cb1c143231c56b76befae373 /drivers/scsi/osd | |
parent | 1e34c8387380269b9d7707d625aeb9e9e92233f0 (diff) |
[SCSI] libosd: osd_req_read_sg, optimize the single entry case
Since sg-read is a bidi operation, it is a gain to convert
a single sg entry into a regular read. Better do this in the
generic layer then force each caller to do so.
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/osd')
-rw-r--r-- | drivers/scsi/osd/osd_initiator.c | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/drivers/scsi/osd/osd_initiator.c b/drivers/scsi/osd/osd_initiator.c index b37c8a3c1bb0..86afb13f1e79 100644 --- a/drivers/scsi/osd/osd_initiator.c +++ b/drivers/scsi/osd/osd_initiator.c | |||
@@ -1005,11 +1005,23 @@ int osd_req_read_sg(struct osd_request *or, | |||
1005 | const struct osd_sg_entry *sglist, unsigned numentries) | 1005 | const struct osd_sg_entry *sglist, unsigned numentries) |
1006 | { | 1006 | { |
1007 | u64 len; | 1007 | u64 len; |
1008 | int ret = _add_sg_continuation_descriptor(or, sglist, numentries, &len); | 1008 | u64 off; |
1009 | int ret; | ||
1009 | 1010 | ||
1010 | if (ret) | 1011 | if (numentries > 1) { |
1011 | return ret; | 1012 | off = 0; |
1012 | osd_req_read(or, obj, 0, bio, len); | 1013 | ret = _add_sg_continuation_descriptor(or, sglist, numentries, |
1014 | &len); | ||
1015 | if (ret) | ||
1016 | return ret; | ||
1017 | } else { | ||
1018 | /* Optimize the case of single segment, read_sg is a | ||
1019 | * bidi operation. | ||
1020 | */ | ||
1021 | len = sglist->len; | ||
1022 | off = sglist->offset; | ||
1023 | } | ||
1024 | osd_req_read(or, obj, off, bio, len); | ||
1013 | 1025 | ||
1014 | return 0; | 1026 | return 0; |
1015 | } | 1027 | } |