summaryrefslogtreecommitdiffstats
path: root/cpukit/libblock/src/blkdev.c
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2008-08-02 06:23:45 +0000
committerChris Johns <chrisj@rtems.org>2008-08-02 06:23:45 +0000
commit2eb89adc33e627ee6cd548af950763a4865d82d4 (patch)
treef019eca8fa84b6fa052d4d4e12780b5783fc8520 /cpukit/libblock/src/blkdev.c
parent2008-08-02 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-2eb89adc33e627ee6cd548af950763a4865d82d4.tar.bz2
2008-08-02 Chris Johns (chrisj@rtems.org>
* libblock/include/rtems/blkdev.h: Remove count and start from rtems_blkdev_request. Add RTEMS_BLKDEV_START_BLOCK macro. * libblock/src/bdbuf.c: Add read ahead blocks always consecutive comment. Change count to bufnum and remove start references. Sort the transfer list so blocks are consecutive where possible. * libblock/src/blkdev.c, libblock/src/nvdisk.c, libblock/src/ramdisk.c: Change count to bufnum and remove start references.
Diffstat (limited to 'cpukit/libblock/src/blkdev.c')
-rw-r--r--cpukit/libblock/src/blkdev.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/cpukit/libblock/src/blkdev.c b/cpukit/libblock/src/blkdev.c
index a93875c9a2..0f1997565d 100644
--- a/cpukit/libblock/src/blkdev.c
+++ b/cpukit/libblock/src/blkdev.c
@@ -232,7 +232,6 @@ rtems_blkdev_generic_ioctl(
case RTEMS_BLKIO_REQUEST:
{
rtems_blkdev_request *req = args->buffer;
- req->start += dd->start;
args->ioctl_return = dd->ioctl(dd->phys_dev->dev, args->command,
req);
break;