block: add request->raw_data_len
authorTejun Heo <htejun@gmail.com>
Tue, 19 Feb 2008 10:36:35 +0000 (11:36 +0100)
committerJens Axboe <jens.axboe@oracle.com>
Tue, 19 Feb 2008 10:36:35 +0000 (11:36 +0100)
commit6b00769fe1502b4ad97bb327ef7ac971b208bfb5
tree2ffc51176437ebf4f8a4ab13de59a32431043f15
parent40b01b9bbdf51ae543a04744283bf2d56c4a6afa
block: add request->raw_data_len

With padding and draining moved into it, block layer now may extend
requests as directed by queue parameters, so now a request has two
sizes - the original request size and the extended size which matches
the size of area pointed to by bios and later by sgs.  The latter size
is what lower layers are primarily interested in when allocating,
filling up DMA tables and setting up the controller.

Both padding and draining extend the data area to accomodate
controller characteristics.  As any controller which speaks SCSI can
handle underflows, feeding larger data area is safe.

So, this patch makes the primary data length field, request->data_len,
indicate the size of full data area and add a separate length field,
request->raw_data_len, for the unmodified request size.  The latter is
used to report to higher layer (userland) and where the original
request size should be fed to the controller or device.

Signed-off-by: Tejun Heo <htejun@gmail.com>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
block/blk-core.c
block/blk-map.c
block/blk-merge.c
block/bsg.c
block/scsi_ioctl.c
drivers/scsi/scsi_lib.c
include/linux/blkdev.h