source: rtems/cpukit/libblock/ChangeLog @ 3d4d5ee

4.104.114.84.95
Last change on this file since 3d4d5ee was 006fa1ef, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/20/03 at 12:14:50

2003-11-20 Ralf Corsepius <corsepiu@…>

  • Makefile.am: AM_CPPFLAGS += -I$(top_builddir). Use AM_CPPFLAGS instead of AM_CFLAGS.
  • src/ata.c: Include config.h.
  • src/bdbuf.c: Ditto.
  • src/blkdev.c: Ditto.
  • src/diskdevs.c: Ditto.
  • src/ide_part_table.c: Ditto.
  • src/ramdisk.c: Ditto.
  • Property mode set to 100644
File size: 8.4 KB
Line 
12003-11-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2
3        * Makefile.am: AM_CPPFLAGS += -I$(top_builddir).
4        Use AM_CPPFLAGS instead of AM_CFLAGS.
5        * src/ata.c: Include config.h.
6        * src/bdbuf.c: Ditto.
7        * src/blkdev.c: Ditto.
8        * src/diskdevs.c: Ditto.
9        * src/ide_part_table.c: Ditto.
10        * src/ramdisk.c: Ditto.
11
122003-09-04      Joel Sherrill <joel@OARcorp.com>
13
14        * include/rtems/ide_part_table.h, src/ata.c, src/ide_part_table.c: URL
15        for license changed.
16
172003-07-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
18
19        * configure.ac: Remove (Merged into ../configure.ac).
20        * Makefile.am: Reflect having merged configure.ac into
21        ../configure.ac.
22
232003-06-04      Joel Sherrill <joel@OARcorp.com>
24
25        * src/ide_part_table.c: Removed warnings.
26
272002-04-10      Victor V. Vengerov <vvv@oktet.ru>
28
29        PR 385/filesystem
30        * src/ramdisk.c: The "from" and "to" locations are calculated as
31        the start of the block within the ram that data is to be transferred
32        from/to for reads and writes respectively.  However, within
33        the loops, the "from" and "to" locations are never updated.  The loop
34        should have been updated as:
35            from += rd->block_size;
36        and
37            to += rd->block_size;
38        within the for loops in the ramdisk_read and ramdisk_write routines,
39        respectively.
40
412003-03-27      Joel Sherrill <joel@OARcorp.com>
42
43        * Makefile.am: ATA code depends upon libchip/ide which is not allowed
44        in the cpukit source code since it must be buildable independent of
45        any BSP. These files were moved to libchip/ide.
46        * include/rtems/ata.h, include/rtems/ata_internal.h, src/ata.c: Removed.
47
482003-03-25      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
49
50        PR 367/filesystem
51        * Makefile.am, include/rtems/ide_part_table.h, src/ata.c,
52        src/ide_part_table.c: Some bugs were still present in the DOSFS
53        implementation:
54            - FAT12 did not work properly on Big-Endian machines
55            - Some synchronization and error handling problems were present
56            - Some legal codings for EOC were not recognized
57
582003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
59
60        * configure.ac: Remove AC_CONFIG_AUX_DIR.
61
622003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
63
64        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
65
662003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
67
68        * configure.ac: AC_PREREQ(2.57).
69
702003-01-27      Eugeny S. Mints <Eugeny.Mints@oktet.ru>
71
72        * src/blkdev.c: Per PR331 fix bug which is tripped by writing 512 byte
73        blocks to 512 byte aligned positions.
74
752003-01-03      Eugeny S. Mints <Eugeny.Mints@oktet.ru>
76
77        * src/ata.c, src/bdbuf.c: Correct invocation of rtems_task_mode()
78        so the task's preemption mode setting is properly maintained.
79
802002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
81
82        * Makefile.am: Eliminate C_O_FILES.
83        Eliminate SRCS.
84
852002-12-02      Joel Sherrill <joel@OARcorp.com>
86
87        * src/bdbuf.c: Added cast to remove warning.
88
892002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
90
91        * configure.ac: Fix package name.
92
932002-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
94
95        * src/diskdevs.c: Include <unistd.h> to remove warning.
96
972002-10-28      Eugeny S. Mints <Eugeny.Mints@oktet.ru>
98
99        * Added ATA  support.
100        * include/rtems/blkdev.h: Added last IO status.
101        * include/rtems/ata.h, include/rtems/ata_internal.h,
102        include/rtems/ide_part_table.h, src/ata.c, src/ide_part_table.c: New
103        files.
104
1052002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
106
107        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
108
1092002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
110
111        * .cvsignore: Reformat.
112        Add autom4te*cache.
113        Remove autom4te.cache.
114
1152002-09-07      Joel Sherrill <joel@OARcorp.com>
116
117        * src/bdbuf.c: Previous fix for PR282 regressed mutex changes.
118
1192002-09-06      Alexander M. Kukuta <kam@oktet.ru>
120
121        * src/bdbuf.c: Per PR282, correct problem in function
122        rtems_bdbuf_read() where device ioctl() is called with the
123        logical device number used instead of corresponding physical
124        device number.
125
1262002-07-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
127
128        * Makefile.am: Merge src/Makefile.am.
129        * src/Makefile.am: Remove.
130        * configure.ac: Remove src/Makefile.am
131
1322002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
133
134        * src/Makefile.am: Use .$(OBJEXT) instead of .o.
135
1362002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
137
138        * src/Makefile.am: Eliminate LIBNAME. Cosmetical cleanups.
139
1402002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
141
142        * configure.ac: RTEMS_TOP(../..).
143
1442002-07-01    Joel Sherrill <joel@OARcorp.com>
145
146        * Mega patch merge to change the format of the object IDs to
147        loosen the dependency between the SCORE and the various APIs.
148        There was considerable work to simplify the object name management
149        and it appears that the name_table field is no longer needed.
150        This patch also includes the addition of the internal mutex
151        which is currently only used to protect some types of allocation
152        and deallocation.  This significantly can reduce context
153        switch latency under certain circumstances.  In particular,
154        some heap/region operations were O(n) and had dispatching
155        disabled.  This should help enormously.  With this merge,
156        the patch is not as clean as it should be.  In particular,
157        the documentation has not been modified to reflect the new object
158        ID layout, the IDs in the test screens are not updated, and
159        _Objects_Get_information needs to be a real routine not inlined.
160        As part of this patch a lot of MP code for thread/proxy blocking
161        was made conditional and cleaned up.
162        * src/bdbuf.c:  Modified as part of above.
1632002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
164
165        * configure.ac: Remove RTEMS_PROJECT_ROOT.
166
1672002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
168
169        * configure.ac: Use AC_CONFIG_AUX_DIR(../..).
170        Add AC_PROG_RANLIB.
171
1722002-06-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
173
174        * src/Makefile.am: Don't preinstall libblock.a.
175
1762002-06-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
177
178        * Makefile.am: Merge-in include/Makefile.am.
179        * include/Makefile.am: Remove.
180        * configure.ac: Reflect changes above.
181
1822002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
183
184        * include/Makefile.am: Include $(top_srcdir)/../automake/*.am.
185        * Makefile.am: Include $(top_srcdir)/../automake/*.am.
186        Use ../aclocal.
187        * src/Makefile.am: Include $(top_srcdir)/../automake/*.am.
188
1892002-05-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
190
191        Move from c/src/libblock to c/src/exec/libblock
192        * configure.ac: Reflect move.
193        * Makefile.am: Ditto.
194        * include/Makefile.am: Ditto.
195        * src/Makefile.am: Ditto.
196
1972002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
198
199        * src/ramdisk.c: include <string.h>.
200        * src/blkdev.c: include <string.h>.
201
2022002-04-03      Alexander Kukuta <kam@oktet.ru>
203
204        * include/rtems/bdbuf.h: Address PR168 by changing bdbuf_buffer.avl.bal
205        and bdbuf_buffer.avl.cache to signed char instead of char.
206
2072002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
208
209        * configure.ac:
210        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
211        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
212        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
213        * Makefile.am: Remove AUTOMAKE_OPTIONS.
214        * src/Makefile.am: Remove AUTOMAKE_OPTIONS.
215
2162002-03-21      Alexander Kukuta <kam@oktet.ru>
217
218        * src/bdbuf.c (avl_insert, avl_remove): Reimplemented from scratch
219          to avoid using GPLed sources in RTEMS core.
220        * src/bdbuf.c, include/rtems/bdbuf.h: Remove "binary tree"
221          implementation which was used for debugging only.
222
2232002-03-13      Victor V. Vengerov <vvv@oktet.ru>
224
225        * src/bdbuf.c (find_or_assign_buffer, rtems_bdbuf_read,
226          rtems_bdbuf_sync, rtems_bdbuf_syncdev, bdbuf_swapout_task):
227          Fix bug: disable interrupts and set level properly before
228          _CORE_mutex_Seize invocation).
229
2302002-02-28      Joel Sherrill <joel@OARcorp.com>
231
232        * Submitted by Victor V. Vengerov <vvv@oktet.ru> and merged
233        into the RTEMS source.
234        * ChangeLog, Makefile.am, README, configure.ac, include/Makefile.am,
235        include/rtems/bdbuf.h, include/rtems/blkdev.h, include/rtems/diskdevs.h,
236        include/rtems/ramdisk.h, include/rtems/.cvsignore, include/.cvsignore,
237        src/Makefile.am, src/bdbuf.c, src/blkdev.c, src/diskdevs.c,
238        src/ramdisk.c, src/.cvsignore, .cvsignore: New files.
239
2402001-11-29      Victor V. Vengerov <vvv@oktet.ru>
241        * AVL trees implementation added.
242
2432001-11-16      Victor V. Vengerov <vvv@oktet.ru>
244        * include/rtems/bdbuf.h, src/bdbuf.c(rtems_bdbuf_syncdev): New.
245
2462001-11-07      Victor V. Vengerov <vvv@oktet.ru>
247
248        * ChangeLog: New file.
249        * src/, include/, include/rtems/: New directories.
250        * README, configure.ac, Makefile.am, src/Makefile.am,
251          include/Makefile.am: New files.
252        * include/rtems/bdbuf.h include/rtems/blkdev.h 
253          include/rtems/diskdevs.h include/rtems/ramdisk.h
254          src/bdbuf.c src/blkdev.c src/diskdevs.c src/ramdisk.c: New files.
Note: See TracBrowser for help on using the repository browser.