source: rtems/cpukit/libblock/ChangeLog @ 5eab6c7

Last change on this file since 5eab6c7 was 5eab6c7, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:46:53

2003-09-04 Joel Sherrill <joel@…>

  • include/rtems/ide_part_table.h, src/ide_part_table.c: URL for license changed.
  • Property mode set to 100644
File size: 7.7 KB
Line 
12003-09-04      Joel Sherrill <joel@OARcorp.com>
2
3        * include/rtems/ide_part_table.h, src/ide_part_table.c: URL for license
4        changed.
5
62003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
7
8        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
9
102003-06-04      Joel Sherrill <joel@OARcorp.com>
11
12        * src/ide_part_table.c: Removed warnings.
13
142002-04-10      Victor V. Vengerov <vvv@oktet.ru>
15
16        PR 385/filesystem
17        * src/ramdisk.c: The "from" and "to" locations are calculated as
18        the start of the block within the ram that data is to be transferred
19        from/to for reads and writes respectively.  However, within
20        the loops, the "from" and "to" locations are never updated.  The loop
21        should have been updated as:
22            from += rd->block_size;
23        and
24            to += rd->block_size;
25        within the for loops in the ramdisk_read and ramdisk_write routines,
26        respectively.
27
282003-03-27      Joel Sherrill <joel@OARcorp.com>
29
30        * Makefile.am: ATA code depends upon libchip/ide which is not allowed
31        in the cpukit source code since it must be buildable independent of
32        any BSP. These files were moved to libchip/ide.
33        * include/rtems/ata.h, include/rtems/ata_internal.h, src/ata.c: Removed.
34
352003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
36
37        * configure.ac: Remove AC_CONFIG_AUX_DIR.
38
392003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
40
41        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
42
432003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
44
45        * configure.ac: AC_PREREQ(2.57).
46
472003-01-27      Eugeny S. Mints <Eugeny.Mints@oktet.ru>
48
49        * src/blkdev.c: Per PR331 fix bug which is tripped by writing 512 byte
50        blocks to 512 byte aligned positions.
51
522003-01-03      Eugeny S. Mints <Eugeny.Mints@oktet.ru>
53
54        * src/ata.c, src/bdbuf.c: Correct invocation of rtems_task_mode()
55        so the task's preemption mode setting is properly maintained.
56
572002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
58
59        * Makefile.am: Eliminate C_O_FILES.
60        Eliminate SRCS.
61
622002-12-02      Joel Sherrill <joel@OARcorp.com>
63
64        * src/bdbuf.c: Added cast to remove warning.
65
662002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
67
68        * configure.ac: Fix package name.
69
702002-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
71
72        * src/diskdevs.c: Include <unistd.h> to remove warning.
73
742002-10-28      Eugeny S. Mints <Eugeny.Mints@oktet.ru>
75
76        * Added ATA  support.
77        * include/rtems/blkdev.h: Added last IO status.
78        * include/rtems/ata.h, include/rtems/ata_internal.h,
79        include/rtems/ide_part_table.h, src/ata.c, src/ide_part_table.c: New
80        files.
81
822002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
83
84        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
85
862002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
87
88        * .cvsignore: Reformat.
89        Add autom4te*cache.
90        Remove autom4te.cache.
91
922002-09-07      Joel Sherrill <joel@OARcorp.com>
93
94        * src/bdbuf.c: Previous fix for PR282 regressed mutex changes.
95
962002-09-06      Alexander M. Kukuta <kam@oktet.ru>
97
98        * src/bdbuf.c: Per PR282, correct problem in function
99        rtems_bdbuf_read() where device ioctl() is called with the
100        logical device number used instead of corresponding physical
101        device number.
102
1032002-07-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
104
105        * Makefile.am: Merge src/Makefile.am.
106        * src/Makefile.am: Remove.
107        * configure.ac: Remove src/Makefile.am
108
1092002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
110
111        * src/Makefile.am: Use .$(OBJEXT) instead of .o.
112
1132002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
114
115        * src/Makefile.am: Eliminate LIBNAME. Cosmetical cleanups.
116
1172002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
118
119        * configure.ac: RTEMS_TOP(../..).
120
1212002-07-01    Joel Sherrill <joel@OARcorp.com>
122
123        * Mega patch merge to change the format of the object IDs to
124        loosen the dependency between the SCORE and the various APIs.
125        There was considerable work to simplify the object name management
126        and it appears that the name_table field is no longer needed.
127        This patch also includes the addition of the internal mutex
128        which is currently only used to protect some types of allocation
129        and deallocation.  This significantly can reduce context
130        switch latency under certain circumstances.  In particular,
131        some heap/region operations were O(n) and had dispatching
132        disabled.  This should help enormously.  With this merge,
133        the patch is not as clean as it should be.  In particular,
134        the documentation has not been modified to reflect the new object
135        ID layout, the IDs in the test screens are not updated, and
136        _Objects_Get_information needs to be a real routine not inlined.
137        As part of this patch a lot of MP code for thread/proxy blocking
138        was made conditional and cleaned up.
139        * src/bdbuf.c:  Modified as part of above.
1402002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
141
142        * configure.ac: Remove RTEMS_PROJECT_ROOT.
143
1442002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
145
146        * configure.ac: Use AC_CONFIG_AUX_DIR(../..).
147        Add AC_PROG_RANLIB.
148
1492002-06-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
150
151        * src/Makefile.am: Don't preinstall libblock.a.
152
1532002-06-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
154
155        * Makefile.am: Merge-in include/Makefile.am.
156        * include/Makefile.am: Remove.
157        * configure.ac: Reflect changes above.
158
1592002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
160
161        * include/Makefile.am: Include $(top_srcdir)/../automake/*.am.
162        * Makefile.am: Include $(top_srcdir)/../automake/*.am.
163        Use ../aclocal.
164        * src/Makefile.am: Include $(top_srcdir)/../automake/*.am.
165
1662002-05-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
167
168        Move from c/src/libblock to c/src/exec/libblock
169        * configure.ac: Reflect move.
170        * Makefile.am: Ditto.
171        * include/Makefile.am: Ditto.
172        * src/Makefile.am: Ditto.
173
1742002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
175
176        * src/ramdisk.c: include <string.h>.
177        * src/blkdev.c: include <string.h>.
178
1792002-04-03      Alexander Kukuta <kam@oktet.ru>
180
181        * include/rtems/bdbuf.h: Address PR168 by changing bdbuf_buffer.avl.bal
182        and bdbuf_buffer.avl.cache to signed char instead of char.
183
1842002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
185
186        * configure.ac:
187        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
188        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
189        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
190        * Makefile.am: Remove AUTOMAKE_OPTIONS.
191        * src/Makefile.am: Remove AUTOMAKE_OPTIONS.
192
1932002-03-21      Alexander Kukuta <kam@oktet.ru>
194
195        * src/bdbuf.c (avl_insert, avl_remove): Reimplemented from scratch
196          to avoid using GPLed sources in RTEMS core.
197        * src/bdbuf.c, include/rtems/bdbuf.h: Remove "binary tree"
198          implementation which was used for debugging only.
199
2002002-03-13      Victor V. Vengerov <vvv@oktet.ru>
201
202        * src/bdbuf.c (find_or_assign_buffer, rtems_bdbuf_read,
203          rtems_bdbuf_sync, rtems_bdbuf_syncdev, bdbuf_swapout_task):
204          Fix bug: disable interrupts and set level properly before
205          _CORE_mutex_Seize invocation).
206
2072002-02-28      Joel Sherrill <joel@OARcorp.com>
208
209        * Submitted by Victor V. Vengerov <vvv@oktet.ru> and merged
210        into the RTEMS source.
211        * ChangeLog, Makefile.am, README, configure.ac, include/Makefile.am,
212        include/rtems/bdbuf.h, include/rtems/blkdev.h, include/rtems/diskdevs.h,
213        include/rtems/ramdisk.h, include/rtems/.cvsignore, include/.cvsignore,
214        src/Makefile.am, src/bdbuf.c, src/blkdev.c, src/diskdevs.c,
215        src/ramdisk.c, src/.cvsignore, .cvsignore: New files.
216
2172001-11-29      Victor V. Vengerov <vvv@oktet.ru>
218        * AVL trees implementation added.
219
2202001-11-16      Victor V. Vengerov <vvv@oktet.ru>
221        * include/rtems/bdbuf.h, src/bdbuf.c(rtems_bdbuf_syncdev): New.
222
2232001-11-07      Victor V. Vengerov <vvv@oktet.ru>
224
225        * ChangeLog: New file.
226        * src/, include/, include/rtems/: New directories.
227        * README, configure.ac, Makefile.am, src/Makefile.am,
228          include/Makefile.am: New files.
229        * include/rtems/bdbuf.h include/rtems/blkdev.h 
230          include/rtems/diskdevs.h include/rtems/ramdisk.h
231          src/bdbuf.c src/blkdev.c src/diskdevs.c src/ramdisk.c: New files.
Note: See TracBrowser for help on using the repository browser.