source: rtems/cpukit/libblock/ChangeLog @ 07347cb

4.104.114.84.95
Last change on this file since 07347cb was 07347cb, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/07/04 at 17:48:16

2004-01-07 Ralf Corsepius <corsepiu@…>

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