diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2006-12-19 08:27:31 +0100 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2006-12-19 08:27:31 +0100 |
commit | 2985259b0e3928d4cd0723ac5aad0d1190ab7717 (patch) | |
tree | 70d1d7801699102d3bb52bc84b8ec8f4fc371c06 /drivers | |
parent | a52de245ef0b6217a56fb2472ff65c3a196cafd5 (diff) | |
download | kernel_samsung_espresso10-2985259b0e3928d4cd0723ac5aad0d1190ab7717.zip kernel_samsung_espresso10-2985259b0e3928d4cd0723ac5aad0d1190ab7717.tar.gz kernel_samsung_espresso10-2985259b0e3928d4cd0723ac5aad0d1190ab7717.tar.bz2 |
[PATCH] ->nr_sectors and ->hard_nr_sectors are not used for BLOCK_PC requests
It's a file system thing, for block requests the only size used in the
io paths is ->data_len as it is in bytes, not sectors.
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/scsi_lib.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c index 1748e27..41a2ea3 100644 --- a/drivers/scsi/scsi_lib.c +++ b/drivers/scsi/scsi_lib.c @@ -270,8 +270,6 @@ static int scsi_merge_bio(struct request *rq, struct bio *bio) else { rq->biotail->bi_next = bio; rq->biotail = bio; - rq->hard_nr_sectors += bio_sectors(bio); - rq->nr_sectors = rq->hard_nr_sectors; } return 0; |