summaryrefslogtreecommitdiffstats
path: root/cpukit/libblock/ChangeLog
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2003-04-16 19:35:02 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2003-04-16 19:35:02 +0000
commit25d4218362c50ce117e8f57e28a445eb5f98c22b (patch)
tree8a325ef56ad19a733592fccfdde35db1dfb1b52f /cpukit/libblock/ChangeLog
parent2003-04-16 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-25d4218362c50ce117e8f57e28a445eb5f98c22b.tar.bz2
2002-04-10 Victor V. Vengerov <vvv@oktet.ru>
PR 385/filesystem * src/ramdisk.c: The "from" and "to" locations are calculated as the start of the block within the ram that data is to be transferred from/to for reads and writes respectively. However, within the loops, the "from" and "to" locations are never updated. The loop should have been updated as: from += rd->block_size; and to += rd->block_size; within the for loops in the ramdisk_read and ramdisk_write routines, respectively.
Diffstat (limited to '')
-rw-r--r--cpukit/libblock/ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/cpukit/libblock/ChangeLog b/cpukit/libblock/ChangeLog
index 49022b034a..073a505854 100644
--- a/cpukit/libblock/ChangeLog
+++ b/cpukit/libblock/ChangeLog
@@ -1,3 +1,17 @@
+2002-04-10 Victor V. Vengerov <vvv@oktet.ru>
+
+ PR 385/filesystem
+ * src/ramdisk.c: The "from" and "to" locations are calculated as
+ the start of the block within the ram that data is to be transferred
+ from/to for reads and writes respectively. However, within
+ the loops, the "from" and "to" locations are never updated. The loop
+ should have been updated as:
+ from += rd->block_size;
+ and
+ to += rd->block_size;
+ within the for loops in the ramdisk_read and ramdisk_write routines,
+ respectively.
+
2003-03-27 Joel Sherrill <joel@OARcorp.com>
* Makefile.am: ATA code depends upon libchip/ide which is not allowed