source: rtems/cpukit/libblock/ChangeLog @ c587919

4.104.114.84.95
Last change on this file since c587919 was c587919, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/04/03 at 14:19:05

2003-12-04 Ralf Corsepius <corsepiu@…>

  • src/ata.c: Remove.
  • Property mode set to 100644
File size: 8.8 KB
Line 
12003-12-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2
3        * src/ata.c: Remove.
4
52003-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
6
7        * Makefile.am: Add $(dirstamp) to compilation rules.
8
92003-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
10
11        * Makefile.am: Add $(dirstamp) to preinstallation rules.
12
132003-11-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
14
15        * Makefile.am: Reworked.
16
172003-11-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
18
19        * Makefile.am: AM_CPPFLAGS += -I$(top_builddir).
20        Use AM_CPPFLAGS instead of AM_CFLAGS.
21        * src/ata.c: Include config.h.
22        * src/bdbuf.c: Ditto.
23        * src/blkdev.c: Ditto.
24        * src/diskdevs.c: Ditto.
25        * src/ide_part_table.c: Ditto.
26        * src/ramdisk.c: Ditto.
27
282003-09-04      Joel Sherrill <joel@OARcorp.com>
29
30        * include/rtems/ide_part_table.h, src/ata.c, src/ide_part_table.c: URL
31        for license changed.
32
332003-07-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
34
35        * configure.ac: Remove (Merged into ../configure.ac).
36        * Makefile.am: Reflect having merged configure.ac into
37        ../configure.ac.
38
392003-06-04      Joel Sherrill <joel@OARcorp.com>
40
41        * src/ide_part_table.c: Removed warnings.
42
432002-04-10      Victor V. Vengerov <vvv@oktet.ru>
44
45        PR 385/filesystem
46        * src/ramdisk.c: The "from" and "to" locations are calculated as
47        the start of the block within the ram that data is to be transferred
48        from/to for reads and writes respectively.  However, within
49        the loops, the "from" and "to" locations are never updated.  The loop
50        should have been updated as:
51            from += rd->block_size;
52        and
53            to += rd->block_size;
54        within the for loops in the ramdisk_read and ramdisk_write routines,
55        respectively.
56
572003-03-27      Joel Sherrill <joel@OARcorp.com>
58
59        * Makefile.am: ATA code depends upon libchip/ide which is not allowed
60        in the cpukit source code since it must be buildable independent of
61        any BSP. These files were moved to libchip/ide.
62        * include/rtems/ata.h, include/rtems/ata_internal.h, src/ata.c: Removed.
63
642003-03-25      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
65
66        PR 367/filesystem
67        * Makefile.am, include/rtems/ide_part_table.h, src/ata.c,
68        src/ide_part_table.c: Some bugs were still present in the DOSFS
69        implementation:
70            - FAT12 did not work properly on Big-Endian machines
71            - Some synchronization and error handling problems were present
72            - Some legal codings for EOC were not recognized
73
742003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
75
76        * configure.ac: Remove AC_CONFIG_AUX_DIR.
77
782003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
79
80        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
81
822003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
83
84        * configure.ac: AC_PREREQ(2.57).
85
862003-01-27      Eugeny S. Mints <Eugeny.Mints@oktet.ru>
87
88        * src/blkdev.c: Per PR331 fix bug which is tripped by writing 512 byte
89        blocks to 512 byte aligned positions.
90
912003-01-03      Eugeny S. Mints <Eugeny.Mints@oktet.ru>
92
93        * src/ata.c, src/bdbuf.c: Correct invocation of rtems_task_mode()
94        so the task's preemption mode setting is properly maintained.
95
962002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
97
98        * Makefile.am: Eliminate C_O_FILES.
99        Eliminate SRCS.
100
1012002-12-02      Joel Sherrill <joel@OARcorp.com>
102
103        * src/bdbuf.c: Added cast to remove warning.
104
1052002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
106
107        * configure.ac: Fix package name.
108
1092002-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
110
111        * src/diskdevs.c: Include <unistd.h> to remove warning.
112
1132002-10-28      Eugeny S. Mints <Eugeny.Mints@oktet.ru>
114
115        * Added ATA  support.
116        * include/rtems/blkdev.h: Added last IO status.
117        * include/rtems/ata.h, include/rtems/ata_internal.h,
118        include/rtems/ide_part_table.h, src/ata.c, src/ide_part_table.c: New
119        files.
120
1212002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
122
123        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
124
1252002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
126
127        * .cvsignore: Reformat.
128        Add autom4te*cache.
129        Remove autom4te.cache.
130
1312002-09-07      Joel Sherrill <joel@OARcorp.com>
132
133        * src/bdbuf.c: Previous fix for PR282 regressed mutex changes.
134
1352002-09-06      Alexander M. Kukuta <kam@oktet.ru>
136
137        * src/bdbuf.c: Per PR282, correct problem in function
138        rtems_bdbuf_read() where device ioctl() is called with the
139        logical device number used instead of corresponding physical
140        device number.
141
1422002-07-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
143
144        * Makefile.am: Merge src/Makefile.am.
145        * src/Makefile.am: Remove.
146        * configure.ac: Remove src/Makefile.am
147
1482002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
149
150        * src/Makefile.am: Use .$(OBJEXT) instead of .o.
151
1522002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
153
154        * src/Makefile.am: Eliminate LIBNAME. Cosmetical cleanups.
155
1562002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
157
158        * configure.ac: RTEMS_TOP(../..).
159
1602002-07-01    Joel Sherrill <joel@OARcorp.com>
161
162        * Mega patch merge to change the format of the object IDs to
163        loosen the dependency between the SCORE and the various APIs.
164        There was considerable work to simplify the object name management
165        and it appears that the name_table field is no longer needed.
166        This patch also includes the addition of the internal mutex
167        which is currently only used to protect some types of allocation
168        and deallocation.  This significantly can reduce context
169        switch latency under certain circumstances.  In particular,
170        some heap/region operations were O(n) and had dispatching
171        disabled.  This should help enormously.  With this merge,
172        the patch is not as clean as it should be.  In particular,
173        the documentation has not been modified to reflect the new object
174        ID layout, the IDs in the test screens are not updated, and
175        _Objects_Get_information needs to be a real routine not inlined.
176        As part of this patch a lot of MP code for thread/proxy blocking
177        was made conditional and cleaned up.
178        * src/bdbuf.c:  Modified as part of above.
1792002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
180
181        * configure.ac: Remove RTEMS_PROJECT_ROOT.
182
1832002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
184
185        * configure.ac: Use AC_CONFIG_AUX_DIR(../..).
186        Add AC_PROG_RANLIB.
187
1882002-06-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
189
190        * src/Makefile.am: Don't preinstall libblock.a.
191
1922002-06-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
193
194        * Makefile.am: Merge-in include/Makefile.am.
195        * include/Makefile.am: Remove.
196        * configure.ac: Reflect changes above.
197
1982002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
199
200        * include/Makefile.am: Include $(top_srcdir)/../automake/*.am.
201        * Makefile.am: Include $(top_srcdir)/../automake/*.am.
202        Use ../aclocal.
203        * src/Makefile.am: Include $(top_srcdir)/../automake/*.am.
204
2052002-05-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
206
207        Move from c/src/libblock to c/src/exec/libblock
208        * configure.ac: Reflect move.
209        * Makefile.am: Ditto.
210        * include/Makefile.am: Ditto.
211        * src/Makefile.am: Ditto.
212
2132002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
214
215        * src/ramdisk.c: include <string.h>.
216        * src/blkdev.c: include <string.h>.
217
2182002-04-03      Alexander Kukuta <kam@oktet.ru>
219
220        * include/rtems/bdbuf.h: Address PR168 by changing bdbuf_buffer.avl.bal
221        and bdbuf_buffer.avl.cache to signed char instead of char.
222
2232002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
224
225        * configure.ac:
226        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
227        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
228        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
229        * Makefile.am: Remove AUTOMAKE_OPTIONS.
230        * src/Makefile.am: Remove AUTOMAKE_OPTIONS.
231
2322002-03-21      Alexander Kukuta <kam@oktet.ru>
233
234        * src/bdbuf.c (avl_insert, avl_remove): Reimplemented from scratch
235          to avoid using GPLed sources in RTEMS core.
236        * src/bdbuf.c, include/rtems/bdbuf.h: Remove "binary tree"
237          implementation which was used for debugging only.
238
2392002-03-13      Victor V. Vengerov <vvv@oktet.ru>
240
241        * src/bdbuf.c (find_or_assign_buffer, rtems_bdbuf_read,
242          rtems_bdbuf_sync, rtems_bdbuf_syncdev, bdbuf_swapout_task):
243          Fix bug: disable interrupts and set level properly before
244          _CORE_mutex_Seize invocation).
245
2462002-02-28      Joel Sherrill <joel@OARcorp.com>
247
248        * Submitted by Victor V. Vengerov <vvv@oktet.ru> and merged
249        into the RTEMS source.
250        * ChangeLog, Makefile.am, README, configure.ac, include/Makefile.am,
251        include/rtems/bdbuf.h, include/rtems/blkdev.h, include/rtems/diskdevs.h,
252        include/rtems/ramdisk.h, include/rtems/.cvsignore, include/.cvsignore,
253        src/Makefile.am, src/bdbuf.c, src/blkdev.c, src/diskdevs.c,
254        src/ramdisk.c, src/.cvsignore, .cvsignore: New files.
255
2562001-11-29      Victor V. Vengerov <vvv@oktet.ru>
257        * AVL trees implementation added.
258
2592001-11-16      Victor V. Vengerov <vvv@oktet.ru>
260        * include/rtems/bdbuf.h, src/bdbuf.c(rtems_bdbuf_syncdev): New.
261
2622001-11-07      Victor V. Vengerov <vvv@oktet.ru>
263
264        * ChangeLog: New file.
265        * src/, include/, include/rtems/: New directories.
266        * README, configure.ac, Makefile.am, src/Makefile.am,
267          include/Makefile.am: New files.
268        * include/rtems/bdbuf.h include/rtems/blkdev.h 
269          include/rtems/diskdevs.h include/rtems/ramdisk.h
270          src/bdbuf.c src/blkdev.c src/diskdevs.c src/ramdisk.c: New files.
Note: See TracBrowser for help on using the repository browser.