Whamcloud - gitweb
58a1333616826dda40f3fc2a1afebdb43b552dcd
[tools/e2fsprogs.git] / lib / ext2fs / ChangeLog
1 2000-05-18  Theodore Ts'o  <tytso@valinux.com>
2
3         * ext2fs.h: Add appropriate ifdef's to support C++ compilation.
4
5 2000-04-03  Theodore Ts'o  <tytso@valinux.com>
6
7         * block.c: Readibility tweak in conditionals involving
8                 ctx->fs->flags.
9
10         * ext2fs.h: Use AUTOCONF SIZEOF_* macros if available to determine
11                 how to define __s64 and __u64.  Turn off "compression is
12                 experimental" warning if the cpp macro
13                 I_KNOW_THAT_COMPRESSION_IS_EXPERIMENTAL is defined.
14
15 2000-02-11    <tytso@snap.thunk.org>
16
17         * ext2fs.h: Define EXT2FS_COMPRESSED_BLKADDR and HOLE_BLKADDR.
18                 Conditionally include Compression as a supported type if
19                 ENABLE_COMPRESSION (via --enable-compression) is turned on.
20
21         * swapfs.c (ext2fs_swap_super): Swap the compression usage bitmap.
22
23 2000-02-08    <tytso@snap.thunk.org>
24
25         * bitops.h (ext2fs_mark_generic_bitmap, ext2fs_unmark_generic_bitmap,
26                 ext2fs_mark_block_bitmap, ext2fs_unmark_block_bitmap,
27                 ext2fs_mark_inode_bitmap, ext2fs_unmark_inode_bitmap):
28                 Change to return the previous state of the bit that is
29                 being marked or unmarked.  For speed optimization.
30         
31 2000-02-02  Theodore Ts'o  <tytso@valinux.com>
32
33         * getsize.c, ismounted.c: Remove unneeded include of linux/fs.h
34
35         * swapfs.c: Remove #ifdef HAVE_EXT2_INODE_VERSION since it's not
36                 needed any more; we know it will always be i_generation.
37                 Add support for swapping the high bits of the uid and gid.
38
39 1999-11-19    <tytso@valinux.com>
40
41         * mkdir.c (ext2fs_mkdir): Only update the parent's inode link
42                 counts if the link was successful.  Patch suggested by
43                 jeremy@goop.org.
44
45         * Makefile.in (distclean): Remove TAGS and Makefile.in.old from
46                 the source directory.
47
48 1999-11-10    <tytso@valinux.com>
49
50         * Release of E2fsprogs 1.18
51
52 1999-11-08    <tytso@valinux.com>
53
54         * Makefile.in (tst_badblocks): Add freefs.o to the object list,
55                 since ext2fs_badblocks_list_free was moved to freefs.c.
56
57         * tst_badblocks.c: Use the newer badblocks API names.  Add
58                 duplicate blocks to the test inputs to test dealing with
59                 adding blocks which are already in the badblocks list.
60
61         * badblocks.c (ext2fs_badblocks_list_add): If appending to the end
62                 of the list, use a shortcut O(1) operations instead of an
63                 O(n) operation.  (Idea suggested by David Beattie.)
64
65         * freefs.c (ext2fs_free): Use ext2fs_badblocks_list_free() instead
66                 of badblocks_list_free(), to save a procedure call.
67
68 1999-10-26    <tytso@valinux.com>
69
70         * Release of E2fsprogs 1.17
71
72 1999-10-26    <tytso@valinux.com>
73
74         * ext2fs.h: Add kludge to deal with the fact that egcs cpp doesn't
75                 seem to handle ~0UL the same way as they used to.
76
77 1999-10-25    <tytso@valinux.com>
78
79         * nt_io.c (_OpenNtName): Open the device using
80                 FILE_SYNCHRONOUS_IO_NONALERT instead of
81                 FILE_SYNCHRONOUS_IO_ALERT
82                 (nt_open): At the end of the device open routine, unlock 
83                 the drive but do not dismount it.
84
85         * initialize.c (CREATOR_OS): Use __GNU__ instead of __gnu__ to
86                 detect the Hurd OS.
87
88 1999-10-22    <tytso@valinux.com>
89
90         * Release of E2fsprogs 1.16
91
92 1999-10-22    <tytso@valinux.com>
93
94         * mkdir.c (ext2fs_mkdir): Pass EXT2_FT_DIR flag to ext2fs_link().
95
96         * link.c (ext2fs_link): This call now uses the low three bits of
97                 the flags parameter to pass the directory filetype
98                 information; it will set the directory entry FILETYPE
99                 information if the filesystem supports it.
100
101         * newdir.c (ext2fs_new_dir_block): If the FILETYPE superblock
102                 option is set, then create the '.' and '..' entries with
103                 the filetype set to EXT2_FT_DIR.
104
105 1999-09-24    <tytso@valinux.com>
106
107         * nt_io.c: New file which supports I/O under Windows NT.
108
109 1999-09-07    <tytso@valinux.com>
110
111         * ext2fs.h: Add new fields for journalling and define new
112                 feature bits used by newer filesystems: IMAGIC_INODES,
113                 HAS_JOURNAL, RECOVER.
114
115         * expanddir.c (ext2fs_expand_dir, expand_dir_proc): Change where
116                 we update the inode block count and size files so that the
117                 block count field is updated correctly when we create an
118                 indirect block.
119
120 1999-07-18  Theodore Ts'o  <tytso@valinux.com>
121
122         * Release of E2fsprogs 1.15
123
124 1999-06-23    <tytso@valinux.com>
125
126         * swapfs.c (ext2fs_swap_inode): Add compatibility for Linux 2.3
127                 kernels that use i_generation instead of i_version.  Patch
128                 supplied by Jon Bright <sircus@sircus.demon.co.uk>.
129
130 1999-06-21    <tytso@valinux.com>
131
132         * dir_iterate.c (ext2fs_process_dir_block): Check for corrupted
133                 directory entry before calling the callback function.
134                 This should prevent some core dumps of insufficiently
135                 paranoid callback functions.
136
137 1999-05-29    <tytso@rsts-11.mit.edu>
138
139         * ext2fs.h: Add feature definition for AFS IMAGIC inodes.
140
141         * fileio.c (ext2fs_file_open): Remove obsolete comment stating
142                 that we don't handle writing yet (we do).  Fixed bug where
143                 we weren't allocating a big enough buffer for ext2_bmap.
144
145 1999-05-03    <tytso@rsts-11.mit.edu>
146
147         * openfs.c (ext2fs_open): Check to make sure that the number of
148                 blocks per group is not zero --- if so, it must be a bad
149                 superblock!
150
151 1999-01-09  Theodore Ts'o  <tytso@rsts-11.mit.edu>
152
153         * Release of E2fsprogs 1.14
154
155 1999-01-07  Theodore Ts'o  <tytso@rsts-11.mit.edu>
156
157         * inode.c (ext2fs_read_inode, ext2fs_write_inode): Check to see if
158                 the inode number is zero; if it's zero, return
159                 EXT2_ET_BAD_INODE_NUM.
160
161 1998-12-30  Theodore Ts'o  <tytso@rsts-11.mit.edu>
162
163         * initialize.c (ext2fs_initialize): Use EXT2_FIRST_INODE instead
164                 of EXT2_FIRST_INO to ensure compatibility with Linux 1.2
165                 header files.
166
167 Mon Jan  4 02:32:09 1999  Theodore Y. Ts'o  <tytso@mit.edu>
168
169         * llseek.c (ext2fs_llseek): Change ext2fs_llseek() in the
170                 non-Linux case to use EINVAL by default, unless it isn't
171                 defined, in which case we use EXT2_ET_INVALID_ARGUMENT
172                 instead.
173
174 1998-12-15  Theodore Ts'o  <tytso@rsts-11.mit.edu>
175
176         * Release of E2fsprogs 1.13
177
178 1998-12-03  Theodore Ts'o  <tytso@rsts-11.mit.edu>
179
180         * Makefile.in: Updated dependencies.
181
182 1998-09-22  Theodore Ts'o  <tytso@rsts-11.mit.edu>
183
184         * initialize.c (ext2fs_initialize): Make sure that we allocate
185                 enough inodes so that we can make a valid filesystem.
186
187 1998-09-02  Theodore Ts'o  <tytso@rsts-11.mit.edu>
188
189         * rw_bitmaps.c: Fixed signed/unsigned warnings.
190
191         * fileio.c (ext2fs_file_set_size): Remove unneeded extern from the
192                 function declaration.
193
194         * dblist.c (make_dblist): Add safety check in case the dblist
195                 pointer passed in is null (in which case, assign it to
196                 fs->dblist).  Fixed some signed/unsigned warnings.
197
198         * bmap.c: Make addr_per_block be of type blk_t to avoid
199                 signed/unsigned warnings.
200
201         * namei.c (ext2fs_follow_link): Remove uneeded extern from the
202                 function declaration.
203
204         * get_pathname.c (get_pathname_proc): Use return value from
205                 ext2fs_get_mem, instead of checking if &gp->name is
206                 NULL.
207
208         * dir_iterate.c (ext2fs_process_dir_block): 
209         * dblist_dir.c (ext2fs_dblist_dir_iterate): Remove uneeded extern
210                 from the function declaration.
211
212         * block.c (ext2fs_block_iterate2): If the read_inode call fails,
213                 return the error directly instead of jumping to the
214                 cleanup routine, since we don't need to do any cleanup.
215
216         * alloc_table.c (ext2fs_allocate_group_table): Make this
217                 function take a dgrp_t for its group argument.
218
219         * ext2fs.h: Make dgrp_t an __u32 type, and make
220                 fs->desc_group_count be of type dgrp_t.
221
222 1998-07-27  Theodore Ts'o  <tytso@rsts-11.mit.edu>
223
224         * badblocks.c (ext2fs_badblocks_list_add): Use a bigger increment
225                 than 10 blocks when we need to expand the size of the
226                 badblocks list.
227
228 1998-07-09  Theodore Ts'o  <tytso@rsts-11.mit.edu>
229
230         * Release of E2fsprogs 1.12
231
232 1998-06-30  Theodore Ts'o  <tytso@rsts-11.mit.edu>
233
234         * closefs.c (ext2fs_flush): Update the s_block_group_nr field as
235                 appropriate for all of the block group copies, so that
236                 it's clear where the beginning of the filesystem is on the
237                 disk.  (For when the partition table gets scrod.)
238
239         * ext2fs.h: Change the name of the feature from
240                 EXT2_FEATURE_INCOMPAT_DIRNAME_SIZE to
241                 EXT2_FEATURE_INCOMPAT_FILESIZE (to match with the kernel).
242
243 1998-06-18  Theodore Ts'o  <tytso@rsts-11.mit.edu>
244
245         * inode.c (get_next_blockgroup): Fix bug where if
246                 get_next_blockgroup() is called early because of a missing
247                 inode table in a block group, the current_inode counter
248                 wasn't incremented correctly.
249
250 1998-06-16  Theodore Ts'o  <tytso@rsts-11.mit.edu>
251
252         * read_bb.c (ext2fs_read_bb_inode): Make function more robust
253                 against a completely trashed bad block inode.
254
255 1998-06-10  Theodore Ts'o  <tytso@rsts-11.mit.edu>
256
257         * alloc_tables.c (ext2fs_allocate_group_table): Fix bug so that if
258                 the stride length hits a bad value, we retry the block
259                 allocation starting at the beginning of the block group.
260
261         * ext2fs.h, bb_inode.c, block.c, bmove.c, dir_iterate.c,
262                 expanddir.c, ext2fsP.h, read_bb.c: Change blkcnt_t to be
263                 e2_blkcnt_t to avoid collision with LFS API.
264
265 1998-05-01  Theodore Ts'o  <tytso@rsts-11.mit.edu>
266
267         * initialize.c (ext2fs_initialize): Initialize s_inodes_count in a
268                 way that avoids overflows on disk sizes greater than 4GB.
269
270 1998-04-28  Theodore Ts'o  <tytso@rsts-11.mit.edu>
271
272         * ext2fs.h: Define EXT2_QSORT_TYPE appropriately for the
273                 return type for comparison functions for qsort.
274
275         * dblist.c (dir_block_cmp): Use EXT2_QSORT_TYPE in function
276                 declaration.
277
278 1998-04-26  Theodore Ts'o  <tytso@rsts-11.mit.edu>
279
280         * ext2fs.h, bitops.h: Add support for the Watcom C compiler to do
281                 inline functions.
282
283         * ext2fs.h, dosio.c: Use asm/types.h instead of linux/types.h to
284                 evade a potential problem with glibc's header files trying
285                 to spike out linux/types.h.
286
287         * ext2fs.h (ext2fs_resize_mem): Change the function prototype to
288                 include the old size of the memory, which is needed for
289                 some braindamaged memory allocation systems that don't
290                 support realloc().
291
292         * badblocks.c (ext2fs_badblocks_list_add):
293           bb_inode.c (clear_bad_block_proc):
294           dblist.c (ext2fs_add_dir_block):
295           icount.c (insert_icount_el):
296           irel_ma.c (ima_put):
297           rs_bitmap.c (ext2fs_resize_generic_bitmap): Update functions to
298                   pass the old size of the memory to be resized to
299                   ext2fs_resize_mem(). 
300
301 1998-03-30  Theodore Ts'o  <tytso@rsts-11.mit.edu>
302
303         * Makefile.in: Change to use new installation directory variables
304                 convention.  Fix uninstall rules to take $(DESTDIR) into
305                 account.
306
307 1998-03-29  Theodore Ts'o  <tytso@rsts-11.mit.edu>
308
309         * ext2fs.h: If __STRICT_ANSI__ is defined and we're on a platform
310                 with 32 bit longs, then we need to manually define __s64
311                 and __u64, since the current kernel header files don't
312                 define these if __STRICT_ANSI__ is defined.  This is a
313                 problem if we are compiling with full GCC warnings, since
314                 we do need 64 bit support.
315         
316         * Makefile.in (OBJS): Remove bmove.o from files to be built,
317                 since we're not using ext2fs_move_blocks() and there
318                 is some question as to its usefulness in its current
319                 form.
320
321         * bmap.c (block_bmap): Remove unused function.
322
323         * bmove.c (process_block): Fix -Wall warning.
324
325 1998-03-23  Theodore Ts'o  <tytso@rsts-11.mit.edu>
326
327         * block.c (ext2fs_block_iterate3): Make the ref_offset field
328                 contain the offset into the inode.i_blocks array when
329                 ref_block is zero.  Since we haven't done a formal
330                 release of e2fsprogs since block_iterate2 was first
331                 introduced, I removed block_iterate2, and renamed
332                 block_iterate3 to be block_iterate2.
333
334         * bb_inode.c, bmove.c, dblist_dir.c, dir_iterate.c,
335                 expanddir.c, ext2fs.h, ext2fsP.h, read_bb.c: Change
336                 use of block_iterate and block_iterate2 to
337                 block_iterate2 with the new prototype for the
338                 interator function.  (using blkcnt_t forr blockcount)
339
340 1998-03-21  Theodore Ts'o  <tytso@rsts-11.mit.edu>
341
342         * ext2fs.h: Add new superblock fields (s_algorithm_usage_bitmap, 
343                 s_prealloc_blocks, s_prealloc_dir_blocks).  Added
344                 conditional defines of new features COMPAT_DIR_PREALLOC,
345                 RO_COMPAT_LARGE_FILE RO_COMPAT_BTREE_DIR,
346                 INCOMPAT_COMPRESSION, INCOMPAT_DIRNAME_SIZE.  Changed
347                 the library to declare that we support COMPAT_DIR_PREALLOC, 
348                 INCOMPAT_DIRNAME_SIZE, RO_COMPAT_LARGE_FILE.
349
350         * fileio.c: Rename function ext2fs_file_llseek to be
351                 ext2fs_file_lseek, which is more accurate.
352
353         * block.c: Add new function ext2fs_block_iterate3 which calls
354                 the iterator function with the blockcount argument of
355                 type blkcnt_t.  This version of the function is
356                 allowed to handle large files; the other fucntions are
357                 not.
358
359         * ext2fs.h: Add new type blkcnt_t
360
361         * ext2_err.et.in: Add error code EXT2_ET_FILE_TOO_BIG
362
363         * block.c (ext2fs_block_iterate2): Fix bug where the block count
364                 field wasn't getting correctly incremented for sparse
365                 files when the indirect or doubly-indirect block
366                 specified in the inode was zero.
367
368 Sun Mar  8 22:42:47 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
369
370         * unlink.c (unlink_proc): 
371         * lookup.c (lookup_proc): 
372         * link.c (link_proc): 
373         * get_pathname.c (get_pathname_proc): 
374         * dir_iterate.c (ext2fs_process_dir_block): Mask off high 8 bits
375                 from dirent->name_len, so it can be used for other
376                 purposes.
377
378         * ext2fs.h: Add definition of EXT2_FEATURE_INCOMPAT_DIRNAME_SIZE,
379                 and indicate that we have support for this incompatible
380                 option.
381
382 Mon Feb 23 08:46:33 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
383
384         * ext2_err.et.in: Added new error code, EXT2_ET_CANCEL_REQUESTED.
385
386 Fri Feb 20 23:58:01 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
387
388         * dblist.c (ext2fs_get_num_dirs): Improve the estimation of the
389                 number of directories when the block group information is
390                 unreliable.
391
392 1998-02-20  Theodore Y. Ts'o  <tytso@edt.mit.edu>
393
394         * inode.c (ext2fs_get_next_inode): Always do the check to see if the
395                 inode table is missing so that we catch the case where the
396                 first block group is missing.
397
398         * getsize.c, ismounted.c, unix_io.c: #include errno.h since it's
399                 needed.
400
401 Mon Feb 16 16:16:00 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
402
403         * ext2_io.h, ext2fs.h: Protect against being included multiple times.
404
405         * bmove.c: #include ext2fsP.h instead of "ext2fs/ext2fs.h"
406
407         * test_io.c (test_flush): Add a debugging printf when the flush
408                 method is called.
409
410         * rw_bitmaps.c (ext2fs_read_bitmaps): If the bitmaps are already
411                 read in, return right away.
412
413 Sun Feb  1 08:20:24 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
414
415         * bitops.h: Don't try to do i386 inline asm functions if the
416                 compiler isn't GCC.
417
418         * ext2fs.h: If EXT2_FLAT_INCLUDES is defined, #include e2_types.h,
419                 instead of linux/types.h, and e2_bitops.h instead of
420                 ext2fs/bitops.h.
421
422         * icount.c, version.c: Don't #include <et/com_err.h>, as it isn't
423                 necessary. 
424
425 Sat Jan 17 13:13:31 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
426
427         * inode.c (ext2fs_open_inode_scan): Initialize the group variables
428                 so that we don't need to call get_next_blockgroup() the
429                 first time around.  Saves a bit of time, and prevents us
430                 from needing to assign -1 to current_group (which is an
431                 unsigned value).
432
433         * icount.c (insert_icount_el): Cast the estimated number of inodes
434                 from a float to an ino_t.
435
436         * alloc.c, alloc_tables.c, badlbocks.c, bb_compat.c, bb_inode.c,
437                 bitmaps.c, bitops.c, block.c, bmap.c, bmove.c, brel_ma.c,
438                 check_desc.c, closefs.c, cmp_bitmaps.c, dblist.c,
439                 dblist_dir.c, dir_iterate.c, dirblock.c, dupfs.c,
440                 expanddir.c, ext2fs.h, fileio.c, freefs.c,
441                 get_pathname.c, getsize.c, icount.c, initialize.c,
442                 inline.c, inode.c, irel_ma.c, ismounted.c, link.c,
443                 lookup.c, mkdir.c, namei.c, native.c, newdir.c,
444                 openfs.c, read_bb.c, read_bb_file.c, rs_bitmap.c,
445                 rw_bitmaps.c, swapfs.c, test_io.c, tst_badblocks.c,
446                 tst_getsize.c, tst_iscan.c, unix_io.c, unlink.c,
447                 valid_blk.c, version.c: If EXT2_FLAT_INCLUDES is
448                 defined, then assume all of the
449                 ext2-specific header files are in a flat directory.
450
451         * block.c, bmove.c, dirblock.c, fileio.c: Explicitly cast
452                 all assignments from void * to be compatible with C++.
453
454 Tue Jan  6 11:28:15 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
455
456         * closefs.c (ext2fs_flush): Add a call to io_channel_flush() to
457                 make sure the contents of the disk are flushed to disk.
458
459 Mon Dec 29 14:39:13 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
460
461         * dblist.c (ext2fs_add_dir_block): Change new to be new_entry to
462                 avoid C++ namespace clash.
463
464         * bitmaps.c (ext2fs_copy_bitmap): Change new to be new_map to
465                 avoid C++ namespace clash.
466
467         * ext2fs.h, bb_inode.c, block.c, bmove.c, brel.h, brel_ma.c,
468                 irel.h, irel_ma.c, dblist.c, dblist_dir.c, dir_iterate.c,
469                 ext2fsP.h, expanddir.c, get_pathname.c, inode.c, link.c,
470                 unlink.c: Change private to be priv_data (to avoid C++
471                 namespace clash)
472
473 Fri Nov 28 09:26:31 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
474
475         * dblist.c (ext2fs_get_num_dirs): Make ext2fs_get_num_dirs more
476                 paranoid about validating the directory counts from the
477                 block group information.
478
479         * all files: Don't include stdlib.h anymore; include it in
480                 ext2_fs.h, since that file requires stdlib.h
481
482 Thu Nov 20 16:07:38 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
483
484         * expanddir.c (ext2fs_expand_dir): Check to make sure the block
485                 bitmap is loaded, and return an error if it is not.
486                 (expand_dir_proc): Only use ext2fs_write_dir_block when
487                 writing a directory block, not when writing out a fresh
488                 indirect block.
489
490 Tue Nov 11 22:46:45 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
491
492         * Makefile.in, tst_getsize.c: Added new file which is used to test
493                 the ext2fs_get_device_size function.
494
495         * ext2_err.et.in (EXT2_ET_UNIMPLEMENTED): Added new error code.
496
497 Sun Nov  2 20:36:13 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
498
499         * ext2fs.h: Make ext2fs_get_mem take an unsigned argument.
500
501         * fileio.c (ext2fs_file_get_size, ext2fs_file_set_size,
502                 ext2fs_file_get_fs): New functions added.
503
504
505 Fri Oct 31 12:16:52 1997    <tytso@EDT.MIT.EDU>
506
507         * bitops.c (ext2fs_warn_bitmap, ext2fs_warn_bitmap2): Don't call
508                 com_err if OMIT_COM_ERR is defined.
509
510 Thu Oct 30 11:33:57 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
511
512         * Rename new error codes to _ET_ in them for consistency.
513
514 Sat Oct 25 00:06:58 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
515
516         * [all files, basically]: Added definition of ext2fs_get_mem, 
517                 ext2fs_free_mem, and ext2fs_resize_mem in ext2fs.h, and
518                 changed all library routines to use these wrapper functions.
519
520         * dblist.c, mkdir.c: use EXT2_DIR_EXISTS and EXT2_DB_NOT_FOUND
521                 instead of the system error messages.
522         
523         * ext2_err.et.in: Added new error messages EXT2_DIR_EXISTS and
524                 EXT2_DB_NOT_FOUND
525
526         * ext2fs.h: Added function declarations and constants for bmap.c
527                 and fileio.c.
528
529         * ext2_err.et.in: Added new error messages EXT2_FILE_RO and
530                 EXT2_ET_MAGIC_EXT2_FILE
531
532         * Makefile.in: Added files bmap.c and fileio.c, and temporarily
533                 commented out brel_ma.c and irel_ma.c
534
535         * bmap.c: New file which maps a file's logical block number to its
536                 physical block number.
537
538         * fileio.c: New file which implements simple file reading and
539                 writing primitives.
540
541         * alloc.c (ext2fs_alloc_block): New function which allocates a
542                 block, zeros it, and updates the filesystem accounting
543                 records appropriately.
544
545 Wed Oct 22 16:47:27 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
546
547         * ext2_err.et.in: Added new error codes: EXT2_NO_MEMORY,
548                 EXT2_INVALID_ARGUMENT, EXT2_BLOCK_ALLOC_FAIL,
549                 EXT2_INODE_ALLOC_FAIL, EXT2_NOT_DIRECTORY
550
551         * Change various library files to use these functions instead of
552                 EINVAL, ENOENT, etc.
553
554 Mon Oct 20 19:32:40 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
555
556         * llseek.c: Check HAVE_LLSEEK_PROTOTYPE to see whether or not we
557                 need to declare llseek().
558
559 Sun Oct 19 18:56:22 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
560
561         * Rename io.h to be ext2_io.h (avoid namespace collisions)
562
563         * Add #ifdef's for HAVE_SYS_STAT_H and HAVE_SYS_TYPES_H
564
565 Fri Oct  3 13:35:59 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
566
567         * llseek.c (ext2fs_llseek): Fix type error for ext2fs_llseek()
568
569         * icount.c (ext2fs_icount_validate): 
570         * bmove.c (process_block): Fix lint error in type for fprintf().
571
572 Mon Sep 15 11:45:09 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
573
574         * inode.c (ext2fs_check_directory): Add support for the callback
575                 to return the error code EXT2_ET_CALLBACK_NOTHANDLED.
576
577 Thu Sep  4 12:28:22 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
578
579         * bitmaps.c (ext2fs_set_bitmap_padding): New function which sets the
580                 padding of the bitmap to be all one's.
581
582 Wed Sep  3 14:27:30 1997  Theodore Y. Ts'o  <tytso@edt.mit.edu>
583
584         * llseek.c: Added missing semicolon to glibc fixup declaration of
585         llseek().
586
587         * bmove.c: Add #include of errno.h
588
589 Sat Aug 23 22:47:46 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
590
591         * Makefile.in (ELF_SO_VERSION): Bump version to be 2.4 since we've
592                 added a new field to the io_channel (app_data).
593
594         * io.h: Add a new element to the io_channel structure, app_data.
595
596         * initialize.c, openfs.c: Set io->app_data to point at the
597                 filesystem handle.
598
599 Thu Aug 14 08:14:17 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
600
601         * io.h: Change the prototype of ext2fs_llseek() to use int's
602                 instead of unsigned int's.
603
604         * llseek.c: Change to allow PIC and !HAVE_LLSEEK.  Add a prototype
605                 to make life easer for GNU Libc 2.
606
607         * rw_bitmaps.c: On the PowerPC, the big-endian variant of the ext2
608                 filesystem has its bitmaps stored as 32-bit words with bit
609                 0 as the LSB of each word.  Thus a bitmap with only bit 0
610                 set would be, as a string of bytes, 00 00 00 01 00 ...  To
611                 cope with this, we byte-reverse each word of a bitmap if
612                 we have a big-endian filesystem, that is, if we are *not*
613                 byte-swapping other word-sized numbers.
614
615 Mon Aug 11 03:30:48 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
616
617         * dosio.c: New file to do DOS/BIOS disk accesses.
618
619         * namei.c (open_namei): Make pathlen be of type size_t.
620
621         * llseek.c: Always #include stdlib.h since it's need to define
622                 size_t.  
623
624         * io.h: Use errcode_t for magic numbers.
625
626         * icount.c (get_icount_el): Use size_t where appropriate
627         
628         * dupfs.c (ext2fs_dup_handle): 
629         * dblist.c (dir_block_cmp): Use size_t where appropriate.
630
631         * read_bb.c (ext2fs_read_bb_inode): 
632         * cmp_bitmaps.c (ext2fs_compare_inode_bitmap): Use blk_t, ino_t
633                 and size_t where appropriate.
634
635         * closefs.c (ext2fs_flush): Use dgrp_t instead of int where
636                 appropriate.
637
638         * openfs.c (ext2fs_open): 
639         * check_desc.c (ext2fs_check_desc): Use blk_t instead of int where
640                 appropriate.
641
642         * rw_bitmaps.c (read_bitmaps): 
643         * irel_ma.c: 
644         * inode.c (ext2fs_write_inode): 
645         * initialize.c (ext2fs_initialize):
646         * brel_ma.c: Fix to make be 16-bit safe.
647
648         * link.c (ext2fs_link): 
649         * unlink.c (ext2fs_unlink):
650         * lookup.c (lookup_proc): 
651         * ismounted.c (ext2fs_check_if_mounted): 
652         * block.c (xlate_func): Add #pragma argsused for Turbo C.
653
654 Sun Aug 10 10:05:22 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
655
656         * block.c (ext2fs_block_iterate2): Use retval which is a errcode_t
657                 type.
658
659         * bitmaps.c (make_bitmap): Use size_t instead of int where
660                 appropriate.
661
662         * bb_inode.c (set_bad_block_proc): Add #pragma argsused for Turbo C.
663
664         * alloc.c (ext2fs_new_inode): Use ino_t instead of int for the
665                 group number.
666
667         * get_pathname.c: Use ino_t instead of int where appropriate.
668
669         * ext2fs.h: Make the magic structure element be errcode_t instead
670                 of int.
671
672         * alloc.c alloc_tables.c badblocks.c bb_compat.c bb_inode.c
673                 bitmaps.c block.c bmove.c brel_ma.c check_desc.c closefs.c
674                 cmp_bitmaps.c dblist.c dblist_dir.c dir_iterate.c
675                 dirblock.c dupfs.c expanddir.c freefs.c get_pathname.c
676                 icount.c initialize.c inline.c inode.c irel_ma.c link.c
677                 llseek.c lookup.c mkdir.c namei.c newdir.c read_bb.c
678                 read_bb_file.c rs_bitmap.c rw_bitmaps.c swapfs.c 
679                 test_io.c tst_badblocks.c tst_iscan.c unix_io.c unlink.c
680                 valid_blk.c version.c: Add an #ifdef for HAVE_UNISTD_H
681
682 Tue Jun 17 01:33:20 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
683
684         * unix_io.c (unix_read_blk): If ext2fs_llseek() fails, but errno
685                 is zero, then return EXT2_IO_LLSEEK_FAILED.
686
687         * ext2_err.et.in: Add a new error code, EXT2_IO_LLSEEK_FAILED.
688
689         * Release of E2fsprogs 1.11
690
691 Mon Jun 16 23:53:06 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
692
693         * dblist.c (ext2fs_dblist_count): Added new function which returns
694                 the number of directory blocks in dblist.
695
696 Sat Jun 14 01:39:13 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
697
698         * unix_io.c (unix_flush): Make the io_channel flush function do a
699                 fsync to flush the kernel buffers to disk.
700
701 Wed Jun 11 18:25:31 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
702
703         * inode.c (ext2fs_inode_scan_goto_blockgroup): Fix bug; the
704                 current inode number wasn't being set by the
705                 goto_blockgroup function.
706
707 Mon Jun  9 10:45:48 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
708
709         * bmove.c (ext2fs_move_blocks): New function which takes a bitmap
710                 of blocks which need to be moved, and moves those blocks
711                 to another location in the filesystem.
712
713         * rs_bitmap.c (ext2fs_resize_generic_bitmap): When expanding a
714                 bitmap, make sure all of the new parts of the bitmap are
715                 zero. 
716
717 Sun Jun  8 16:24:39 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
718
719         * bitmaps.c (ext2fs_copy_bitmap): Fix bug; the destination bitmap
720                 wasn't being returned to the caller.
721
722         * alloc_tables.c (ext2fs_allocate_group_table): Add new function
723                 ext2fs_allocate_group_table() which sets the group tables
724                 for a particular block group.  The relevant code was
725                 factored out of ext2fs_allocate_tables().
726
727         * dblist.c (make_dblist): Adjust the initial size of the directory
728                 block list to be a bit more realistic (ten plus twice the
729                 number of directories in the filesystem).
730
731 Thu May  8 22:19:09 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
732
733         * badblocks.c (ext2fs_badblocks_list_test): Fix bug where
734                 ext2fs_badblocks_list_test would test the list (and exceed
735                 array boundaries) if there were no bad blocks on the bad
736                 blocks list.  (Showed up when user tried: mke2fs -c -b 4096).
737
738 Thu Apr 24 12:16:42 1997  Theodre Ts'o  <tytso@localhost.mit.edu>
739
740         * Release of E2fsprogs version 1.10
741
742 Thu Apr 24 10:13:42 1997  Theodre Ts'o  <tytso@localhost.mit.edu>
743
744         * alloc_tables.c (ext2fs_allocate_tables): Correctly place the
745                 inode and block bitmaps based on the RAID 0 stride
746                 parameter (which is passed by mke2fs).
747
748         * ext2fs.h: Add "stride" parameter to ext2_filsys, to be used by
749                 mke2fs to communicate the stride length to
750                 ext2fs_allocate_tables()
751
752 Wed Apr 23 21:50:42 1997  Theodre Ts'o  <tytso@localhost.mit.edu>
753
754         * initialize.c (ext2fs_initialize): Fix to compile under Linux 1.2
755                 systems.  (We can't assume that the new filesystem types
756                 are supported.)
757
758 Wed Apr 23 18:40:53 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
759
760         * alloc_tables.c (ext2fs_allocate_tables): Make sure that we
761                 allocate the inode and block bitmaps inside block group at
762                 all times.
763
764 Mon Apr 21 00:06:28 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
765
766         * alloc.c (ext2fs_new_block): Fix bug where if goal==0 and the
767                 filesystem has no free blocks, ext2fs_new_block would loop
768                 forever.
769
770         * dupfs.c (ext2fs_dup_handle): Duplicate an ext2 filesystem handle
771
772         * freefs.c (ext2fs_free_inode_cache): Decrement refcount and only
773                 free if refcount goes to zero.
774
775         * inode.c (create_icache): Initialize refcount to 1.
776
777         * ext2fsP.h: Added refcount to ext2_inode_cache
778
779         * dblist.c (ext2fs_copy_dblist): New function to copy a directory
780                 block list.
781
782         * badblocks.c (ext2fs_badblocks_copy): New function to copy a
783                 badblocks structure.
784
785 Sun Apr 20 23:19:51 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
786
787         * bitmaps.c (ext2fs_copy_bitmap): New function to copy a bitmap.
788
789         * unix_io.c, test_io.c (unix_open, test_open): Initialize the
790                 refcount to 1.
791                 (unix_close, test_close): Decrement the refcount and only
792                 close the io_channel if the refcount goes to 0.
793
794         * io.h: Add refcount to the io_channel structure.  Add new macro
795                 interface io_channel_bumpcount() to bump the refcount.
796
797 Thu Apr 17 20:25:03 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
798
799         * inode.c (ext2fs_read_inode, ext2fs_write_inode): Use the inode
800                 cache in the filesystem handle, instead of the inode cache
801                 in a static variable.
802
803         * freefs.c: Added static function to free the inode cache (called by
804                 ext2fs_free). 
805
806         * ext2fsP.h: Added definition of the ext2_inode_cache structures.
807
808         * ext2fs.h: Added pointer to the inode_cache structure.
809
810         * block.c (block_iterate_ind, block_iterate_dind, 
811                 block_iterate_tind): If there are holes in the indirect,
812                 doubly indirect, or triply indirect blocks, increment the
813                 block count field automatically.
814
815 Thu Apr 17 12:23:38 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
816
817         * Release of E2fsprogs version 1.09
818
819 Mon Apr 14 20:38:56 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
820
821         * version.c (ext2fs_parse_version_string): Check the passed in
822                 version string (instead of the hard-coded one).
823
824         * alloc_tables.c (ext2fs_allocate_tables): If the last block is
825                 greater filesystem size, clamp it to prevent allocating a
826                 block or inode bitmap beyond the filesystem.
827
828         * initialize.c (ext2fs_initialize): Fix bug where the metatdata
829                 overhead calculation was accidentally removed.
830
831 Fri Apr 11 18:56:26 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
832
833         * Release of E2fsprogs version 1.08
834
835 Thu Apr 10 13:15:15 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
836
837         * dblist.c (ext2fs_set_dir_block): New function which sets the
838                 block of a dblist entry, given the directory inode and
839                 blockcnt.
840
841 Sat Apr  5 12:42:42 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
842
843         * alloc_tables.c (ext2fs_allocate_tables): Allocate the bitmap and
844                 inode bitmaps at staggered locations across the block
845                 groups, to avoid concentrating the bitmaps on a small
846                 number of disks when using striped RAID arrays.
847
848         * initialize.c (ext2fs_initialize): By default, choose the maximum
849                 possible number of blocks per group (based on the size of
850                 the bitmaps in the blocksize).
851
852 Fri Apr  4 11:28:16 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
853
854         * initialize.c (ext2fs_initialize): Add support for
855                 EXT2_COMPAT_SPARSE_SUPER feature.
856
857         * closefs.c (ext2fs_bg_has_super): New function to determine
858                 whether or a particular block group should have a
859                 superblock and block group descriptor.  Used for the
860                 EXT2_COMPAT_SPARSE_SUPER feature is turned on.
861                 (ext2fs_flush):  Check ext2fs_bg_has_super to see whether
862                 or not the superblock should be written out for the block
863                 group. 
864
865         * ext2fs.h (EXT2_COMPAT_SPARSE_SUPER): Define compatibility flag
866                 for sparse duplicate superblocks.
867
868         * version.c (ext2fs_get_library_version): New function which
869                 returns the library version.
870
871         * version.c (ext2fs_parse_version_string): New function which
872                 parses a version string and returns a version number,
873                 so application programs can compare version numbers as
874                 integers.
875
876 Wed Mar 26 00:43:52 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
877
878         * icount.c (ext2fs_create_icount): Change function so that it also
879                 takes a new argument which contains a "hint" icount
880                 structure.  This "hint" icount allows the create function
881                 to set up the sorted list in advance.  This reduces
882                 significantly the amount of data moving needed to insert
883                 these inodes into the list later.
884         
885         * icount.c (ext2fs_icount_validate): New function which validates
886                 that the icount structure's rep invariant.
887
888         * icount.c (get_icount_el): Completely revamped implementation
889                 to subsume put_icount_el().  Put_icount_el() used to
890                 use an O(N) implementation to insert in the middle
891                 of the icount list.  It now uses a O(ln N) to search
892                 for where the icount should be inserted, and then uses
893                 a memcpy to move the list down (instead of a for loop).
894         
895         * icount.c (ext2fs_icount_fetch, ext2fs_icount_store,
896                 ext2fs_icount_increment, ext2fs_icount_decrement): Check
897                 to see if the inode is within bounds; if it isn't, return
898                 EINVAL.
899
900         * bitops.h (ext2fs_test_generic_bitmap): Fix error message given
901                 when a bad inode number is passed to test_generic_bitmap
902                 to be EXT2FS_TEST_ERROR instead of the wrong
903                 EXT2FS_UNMARK_ERROR.
904
905 Wed Mar 12 13:32:05 1997  Theodore Y. Ts'o  <tytso@mit.edu>
906
907         * Release of E2fsprogs version 1.07
908
909 Sun Mar  2 16:46:18 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
910
911         * Makefile.in (ELF_VERSION): Change version to be 2.2
912
913 Tue Feb 11 14:54:02 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
914
915         * alloc.c (ext2fs_get_free_blocks): Change routine to use
916                 ext2fs_fast_test_block_bitmap_range().
917
918         * bitops.h (ext2fs_fast_test_block_bitmap_range,
919                 ext2fs_test_block_bitmap_range: New inline functions which
920                 test to see whether a contiguous range of blocks is
921                 available.
922
923 Thu Feb  6 10:00:13 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
924
925         * badblocks.c (ext2fs_badblocks_list_create): Rename sybmols to use
926                 use ext2fs_badblocks_* instead of badblocks_*
927
928         * bb_compat.c: New file which translates between old badblocks_*()
929                 names to ext2fs_badblocks_*()
930
931         * unlink.c (ext2fs_unlink): New file, moved ext2fs_unlink() from
932                 link.c (since e2fsck doesn't use ext2fs_unlink()).
933
934         * rs_bitmap.c (ext2fs_resize_generic_bitmap): New file, contains
935                 bitmap resizing routine moved from bitmaps.c, since e2fsck
936                 doesn't need to use this function.
937
938         * lookup.c (ext2fs_lookup): Moved ext2fs_lookup to its own file,
939                 since e2fsck only needs ext2fs_lookup.
940
941 Mon Feb  3 10:11:40 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
942
943         * inode.c (ext2fs_open_inode_scan): Set fs->badblocks if it is not
944                 already set; this is needed so that programs like dump
945                 which use the inode scan functions will deal with
946                 filesystems that have bad blocks in the inode table.
947
948 Sun Feb  2 00:17:36 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
949
950         * ext2fs.h (struct_badblocks_list, struct_badblocks_iterate): 
951                 Moved to ext2fsP.h, since it doesn't need to be part of
952                 the public interface.
953
954         * dir_iterate.c: Move ext2_dir_iterate out of namei.c.
955
956 Sat Feb  1 10:14:55 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
957
958         * dblist.c (ext2fs_get_num_dirs): New file, which implements a
959                 directory block list abstraction.  (Code moved from
960                 e2fsck).
961
962         * ext2fs.h, inode.c: Moved definition of ext2_struct_inode_scan to
963                 to inode.c (since no one else should be peeking inside it!)
964
965         * valid_blk.c (ext2_inode_has_valid_blocks): New function.
966
967         * openfs.c (ext2fs_open): Check the feature set in the ext2
968                 superblock, and refuse to open filesystems if they contain
969                 incompatible features.  (Can be overriden with the
970                 EXT2_FLAG_FORCE 
971
972 Sun Jan 12 11:31:46 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
973
974         * block.c (ext2fs_block_iterate2): Added new function
975                 ext2fs_block_iterate2 which changes the function
976                 signature of the callback function to include the
977                 referencing block and offset.
978
979         * inode.c (ext2fs_inode_scan_goto_blockgroup): Added new function
980                 ext2fs_inode_scan_goto_blockgroup which allows an
981                 application to jump to a particular block group while
982                 doing an inode scan.
983
984 Wed Jan  1 23:50:12 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
985
986         * dirblock.c: Include string.h, since we use memcpy().
987
988 Tue Dec  3 12:27:29 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
989
990         * getsize.c (ext2fs_get_device_size): The ioctl BLKGETSIZE returns
991                 a long not an int; this doesn't matter on i386 machines,
992                 but it does on Alpha's.
993         
994 Fri Nov 29 20:57:37 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
995
996         * inode.c (ext2fs_write_inode, ext2fs_read_inode): If the inode
997                 table pointer is NULL, then return an error indicating
998                 that the inode table is missing.
999                 (get_next_blockgroup, get_next_blocks,
1000                 ext2fs_get_next_inode): Don't treat a missing inode table
1001                 as permanent error.  Return MISSING_INODE_TABLE, but as an
1002                 advisory error code, much like BAD_BLOCK_IN_INODE_TABLE.
1003
1004         * rw_bitmaps.c (ext2fs_write_block_bitmap,
1005                 ext2fs_write_inode_bitmap): If the inode or block bitmap
1006                 block is zero, then don't write out the inode or block
1007                 bitmap.  The idea here is to avoid stomping on the
1008                 superblock.
1009                 (read_bitmaps): If the inode or block bitmap block is
1010                 zero, then fill in that portion of the inode or block
1011                 bitmap with all zeros.
1012
1013         * inode.c (ext2fs_get_next_inode): Fix bug in handling of bad
1014                 blocks in inode table when the inode table size is
1015                 non-standard (and can therefore span blocks).
1016
1017 Tue Oct 29 20:13:14 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1018
1019         * alloc.c (ext2fs_new_block): Fix fencepost error in
1020                 ext2fs_new_block; make sure we don't try to allocate the
1021                 first block beyond the end of the filesystem.
1022
1023 Mon Oct 14 11:00:48 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1024
1025         * inode.c (check_for_inode_bad_blocks): New function called by
1026                 get_next_blocks() to avoid reading in bad blocks marked in
1027                 fs->badblocks.  Inodes located in bad blocks are returned
1028                 by ext2fs_get_next_inode() returns the error code 
1029                 EXT2_ET_BAD_BLOCK_IN_INODE_TABLE.
1030         
1031         * alloc_tables.c (ext2fs_allocate_tables): New function which
1032                 performs the part of mke2fs's job of allocating the 
1033                 filesystem tables.
1034
1035         * test_io.c (test_close): IO manager which is used for testing
1036                 purposes.
1037
1038 Sun Oct 13 04:31:57 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1039
1040         * inode.c (ext2fs_get_next_inode): Separate out the function of
1041                 setting up for a new block group to get_next_blockgroup().
1042                 Separate out the function of reading in blocks of the
1043                 inode table to get_next_blocks().
1044
1045         * ext2fs.h: Add the badblocks list to the ext2_filsys entry
1046
1047         * badblocks.c (badblocks_list_add, badblocks_list_test): Add
1048                 blocks to the badblock list in sorted order.  This allows
1049                 badblocks_list_test to be coded using a binary search for
1050                 speed.
1051
1052 Tue Oct  8 02:02:03 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1053
1054         * Release of E2fsprogs version 1.06
1055
1056 Mon Oct  7 00:44:17 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1057
1058         * ext2fs.h, block.c, closefs.c, dirblock.c, inode.c, native.c,
1059                 open.c: Change EXT2_SWAP to EXT2_FLAG_SWAP for
1060                 consistency's sake.
1061         
1062         * closefs.c (ext2fs_flush): If the flag EXT2_MASTER_SB_ONLY is
1063                 set, then only write out the master superblock.
1064
1065 Sun Oct  6 21:45:26 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1066
1067         * block.c (ext2fs_block_iterate): Fixed bug which caused
1068                 block_iterate to fail to handle HURD created filesystems;
1069                 it tested the inode translator field before the inode was
1070                 loaded.
1071
1072 Tue Sep 17 14:08:24 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1073
1074         * initialize.c (ext2fs_initialize): Make sure the description for
1075                 the inode bitmap is set correctly.
1076
1077         * bitmaps.c (ext2fs_allocate_generic_bitmap): Fix minor type typo.
1078
1079 Thu Sep 12 15:23:07 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1080
1081         * Release of E2fsprogs version 1.05
1082
1083 Sat Sep  7 07:36:03 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1084
1085         * initialize.c: Override the kernel's idea of default
1086                 checkinterval from 0 (never) to 180 days.
1087
1088 Wed Aug 28 03:20:03 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1089
1090         * namei.c (ext2fs_namei_follow): New function which follows
1091                 symbolic link (if any) at the target.
1092
1093 Tue Aug 27 01:48:43 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1094
1095         * inode.c (ext2fs_read_inode, ext2fs_write_inode): Add support
1096                 for shortcut function fs->read_inode() and fs->write_inode().
1097                 Added inode_cache to reduce CPU time spent in doing
1098                 byte swapping.
1099
1100         * swapfs.c (ext2fs_swap_super): Swap the new fields in a V2
1101                 superblock.
1102
1103         * namei.c (ext2fs_follow_link): New function.
1104                 (ext2fs_namei): Extended to have support for chasing
1105                 symbolic links.  ext2fs_namei() still returns an inode
1106                 which is a symbolic link.  Symbolic links are only chased
1107                 while resolving the containing directory.  To chase
1108                 symbolic links of the final result, use
1109                 ext2fs_follow_link().
1110
1111 Mon Aug 26 23:46:07 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1112
1113         * ext2_err.et.in: Added new error code EXT2_ET_SYMLINK_LOOP.
1114
1115         * bitops.h (ext2fs_set_bit, ext2fs_celar_bit): Use asm inlines
1116                 provided by Pete A. Zaitcev (zaitcev@lab.sun.mcst.ru).
1117
1118 Thu Aug 22 00:40:18 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1119
1120         * initialize.c (ext2fs_initialize): On systems where the byte
1121                 order is not i386 compatible, set the swap_byte flag.
1122
1123         * inode.c (inocpy_with_swap): Check to see if inode contains a
1124                 fast symlink before swapping the inode block fields.  This
1125                 required adding a new argument to inocpy_with_swap to
1126                 determine whether the mode field is in host order or not.
1127
1128 Wed Aug 21 00:45:42 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1129
1130         * bitops.h (ext2fs_set_bit, ext2fs_clear_bit, ext2fs_test_bit): On
1131                 the sparc, if EXT2_STD_BITOPS set, use the standard
1132                 i386-compatible bitmask operations, instead on the
1133                 non-standard native bitmask operators.
1134
1135 Fri Aug  9 11:11:35 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1136
1137         * block.c (ext2fs_block_iterate): Cause block iterator to return
1138                 the HURD translator block (along with everything else).
1139                 If the flag BLOCK_FLAG_DATA_ONLY is passed to the block
1140                 iterator, then don't return any meta data blocks
1141                 (including the HURD translator).
1142
1143 Wed Jul 17 17:13:34 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1144
1145         * gen_uuid.c: New file, which generates DCE-compatible UUIDs.
1146
1147         * uuid.c: New file, containing UUID utility functions.
1148
1149 Tue Jul 16 10:19:16 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1150
1151         * ext2fs.h: Add a definition of the "real" ext2 superblock.
1152
1153 Fri May 24 14:54:55 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1154
1155         * ext2fs.h: Fix erroneous ino_t type used in block_bitmap type.
1156
1157 Sun May 19 15:39:03 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1158
1159         * openfs.c (ext2fs_open): If the blocksize in the superblock is
1160                 zero, return the error EXT2_ET_CORRUPT_SUPERBLOCK, since
1161                 that's a basic value that must be correct for the rest of
1162                 the library to work.
1163
1164         * ext2_err.et.in (EXT2_ET_CORRUPT_SUPERBLOCK): Added new error
1165                 code.
1166
1167 Thu May 16 11:12:30 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
1168
1169         * Release of E2fsprogs version 1.04
1170
1171 Wed Mar 27 00:33:40 1996    <tytso@rsts-11.mit.edu>
1172
1173         * Release of E2fsprogs version 1.03
1174
1175 Tue Mar 26 12:06:32 1996    <tytso@rsts-11.mit.edu>
1176
1177         * bitops.h (ext2fs_set_bit, ext2fs_clear_bit, ext2fs_test_bit):
1178                 Change the m68k bit numbering for bitmasks to match with
1179                 the bit numbering used by all other ext2 implementations.
1180
1181 Thu Mar  7 03:37:00 1996    <tytso@rsts-11.mit.edu>
1182
1183         * inode.c (ext2fs_get_next_inode, ext2fs_close_inode_scan, 
1184         ext2fs_open_inode_scan): Support dynamically-sized inodes.
1185
1186 Wed Mar  6 12:26:29 1996    <tytso@rsts-11.mit.edu>
1187
1188         * inode.c (ext2fs_read_inode, ext2fs_write_inode): Support
1189                 dynamically-sized inodes.
1190
1191         * openfs.c (ext2fs_open): Allow dynamic revision filesystem to be
1192                 loaded.
1193
1194 Tue Mar  5 03:49:37 1996    <tytso@rsts-11.mit.edu>
1195
1196         * initialize.c (ext2fs_initialize): Catch an error condition where
1197                 the passed in size is *really* too small.
1198
1199         * alloc.c (ext2fs_new_inode): 
1200         * ext2fs.h (EXT2_FIRST_INODE): Add support for dynamic revision to
1201                 get first inode.
1202
1203 Wed Feb 21 15:56:17 1996    <tytso@rsts-11.mit.edu>
1204
1205         * getsize.c (ext2fs_get_device_size): Open the device read-only
1206                 when trying to determine its size.
1207
1208 Wed Jan 31 11:06:08 1996    <tytso@rsts-11.mit.edu>
1209
1210         * Release of E2fsprogs version 1.02
1211
1212 Sat Dec  9 09:57:50 1995    <tytso@rsts-11.mit.edu>
1213
1214         * rw_bitops.c (ext2fs_write_block_bitmap):
1215         * bitops.c (ext2fs_test_bit, ext2fs_clear_bit, ext2fs_set_bit):
1216         * bitops.h (ext2fs_test_bit, ext2fs_clear_bit, ext2fs_set_bit):
1217                 Rename {test,set,clear}_bit to ext2fs_{test,set,clear}_bit, 
1218                 to avoid conflicts with with kernel include files.  Also
1219                 rename ADDR and CONST_ADDR to EXT2FS_ADDR and
1220                 EXT2FS_CONST_ADDR. 
1221
1222 Thu Oct 26 12:09:16 1995    <tytso@rsts-11.mit.edu>
1223
1224         * ext2_err.et: Updated message in EXT2_ET_BASE to say version 0.5c
1225
1226         * swapfs.c (ext2fs_swap_super): Put an #ifdef check around
1227                 s_def_resuid and s_def_resgid for backwards compatibility.
1228
1229 Fri Oct 20 23:33:31 1995    <tytso@rsts-11.mit.edu>
1230
1231         * bitops.h: Added #ifdef's for Sparc.
1232
1233 Wed Sep  6 22:14:46 1995    <tytso@rsts-11.mit.edu>
1234
1235         * getsize.c: #include <sys/ioctl.h> under Linux to pick up ioctl()
1236                 declaration
1237
1238         * closefs.c: #include <string.h> to pick up memset() declaration
1239
1240 Mon Sep  4 21:45:29 1995  Remy Card  <card@bbj>
1241
1242         * Makefile.in: Added support for BSD shared libraries.
1243
1244         * initialize.c (ext2fs_initialize): Correctly set the s_creator_os
1245                 flag.
1246
1247 Mon Sep  4 09:55:30 1995    <tytso@rsts-11.mit.edu>
1248
1249         * unix_io.c (unix_open): Add a double check; if the passed in name
1250                 is NULL, return EXT2_ET_BAD_DEVICE_NAME.
1251
1252         * ext2_err.et (EXT2_ET_BAD_DEVICE_NAME): Added new error code
1253
1254 Wed Aug 16 15:44:10 1995    <tytso@rsts-11.mit.edu>
1255
1256         * inode.c (ext2fs_check_directory): Use LINUX_S_ISDIR instead of
1257                 S_ISDIR.
1258
1259 Tue Aug 15 13:08:36 1995    <tytso@rsts-11.mit.edu>
1260
1261         * getsize.c (ext2fs_get_device_size): Add support for reading the
1262                 partition size from a BSD disk label.
1263
1264 Thu Aug 10 09:33:26 1995  Theodore Y. Ts'o  <tytso@lurch.mit.edu>
1265
1266         * getsize.c (ext2fs_get_device_size): New function that determins
1267                 the size of a device.  Used by mke2fs and e2fsck.
1268
1269 Sat Aug 12 03:09:54 1995  Remy Card  <card@bbj>
1270
1271         * Makefile.in (install): Install static libraries in $(ulibdir)
1272                 (/usr/lib on Linux) instead of $(libdir) (/lib on Linux).
1273
1274 Wed Aug  9 17:04:23 1995  Theodore Y. Ts'o  <tytso@dcl>
1275
1276         * bitmaps.c (ext2fs_free_inode_bitmap, ext2fs_free_block_bitmap):
1277                 Move these functions to freefs.c.
1278
1279         * closefs.c (ext2fs_flush): If swapping blocks, clear the group
1280                 descriptors shadow memory to keep purify quiet.  (This
1281                 also has the nice benefit that the unused portion of the
1282                 shadow descriptors are zeroed out.)
1283
1284         * dirblock.c (ext2fs_write_dir_block): We need to use
1285                 dirent->rec_len *before* it's byteswapped to find the
1286                 location of the next directory structure!
1287
1288         * alloc.c (ext2fs_new_inode): Fix bug which could potentially
1289                 cause ext2fs_new_inode to loop infinitely if we're trying
1290                 to allocate an inode in group #0 and there are no free
1291                 inodes at all in the system.
1292
1293         * closefs.c: #include <errno.h> if it exists.
1294
1295 Sun Aug  6 13:27:50 1995  Theodore Y. Ts'o  <tytso@lurch.mit.edu>
1296
1297         * ext2fs.h (BLOCK_FLAG_HOLE): Added new definition for
1298                 BLOCK_FLAG_APPEND.  Added documentation for the block
1299                 interator flags.
1300
1301 Sat Aug  5 11:44:05 1995  Theodore Y. Ts'o  <tytso@lurch.mit.edu>
1302
1303         * Makefile.in (DLL_INSTALL_DIR, ELF_INSTALL_DIR): Set the
1304                 installation directories correctly.
1305
1306 Tue Jul 18 09:27:38 1995    <tytso@rsx-11.mit.edu>
1307
1308         * namei.c (process_dir_block): 
1309         * mkdir.c (ext2fs_mkdir): 
1310         * expanddir.c (expand_dir_proc): Use ext2fs_{read,write}_dir_block
1311                 to read/write the directory block.
1312
1313         * dirblock.c (ext2fs_read_dir_block), ext2fs_write_dir_block): New
1314                 file containing functions for reading and writing
1315                 directory blocks (byte swapping if necesssary)
1316
1317         * block.c (block_iterate_ind, block_iterate_dind, 
1318                 block_iterate_tind): Byte swap the block addresses if
1319                 EXT2_SWAP_BYTES is set (and swap them back before writing
1320                 them out.)
1321
1322         * inode.c (inocpy_with_swap): New function.
1323         (ext2fs_get_next_inode, ext2fs_read_inode, ext2fs_write_inode):
1324                 Call inocpy_with_swap if EXT2_SWAP_BYTES if set.
1325
1326         * closefs.c (ext2fs_flush): If EXT2_SWAP_BYTES is set, then swap
1327                 the superblock and group descriptors before writing it out.
1328
1329         * openfs.c (ext2fs_open): If the magic number is byte-swapped,
1330                 then set the EXT2_SWAP_BYTES and byte-swap the superblock
1331                 and group descriptors.
1332
1333         * swapfs.c (ext2fs_swap_super, ext2fs_swap_group_desc): New functions
1334                 to desp ext2 filesystem structures.
1335
1336         * bitops.c (set_bit, clear_bit, test_bit): Use modifications
1337                 supplied by Pete A. Zaitcev so that the C language
1338                 versions of these functions are more portable.  They will
1339                 now work on both little and big endian systems, and the
1340                 assumption that 32-bit integers are used is gone.
1341
1342         * bitops.h (ext2_swab16, ext2_swab32): Added new functions for
1343                 doing byte swapping.
1344
1345         * ext2fs.h (EXT2_SWAP_BYTES): Add new flag which indicates that
1346                 byte swapping should take place.
1347
1348 Sun Jul 16 06:21:43 1995    <tytso@rsx-11.mit.edu>
1349
1350         * Makefile.in, cmp_bitmaps.c (ext2fs_compare_block_bitmap_end,
1351                 ext2fs_compare_inode_bitmap_end): Added new file
1352                 containing routines to compare bitmaps.
1353
1354         * ext2_err.et (EXT2_ET_NEQ_BLOCK_BITMAP, EXT2_ET_NEQ_INODE_BITMAP): 
1355                 Added new error codes.
1356
1357 Sat Jul 15 04:23:37 1995    <tytso@rsx-11.mit.edu>
1358
1359         * inode.c (ext2fs_get_next_inode): Don't check scan->inode_buffer;
1360                 if the magic number is correct, it will be allocated.
1361
1362 Fri Jul 14 19:02:59 1995    <tytso@rsx-11.mit.edu>
1363
1364         * block.c (block_iterate_ind, block_iterate_dind, 
1365                 block_iterate_tind): Don't recompute block_nr each loop;
1366                 just increment it!  Factor check of BLOCK_FLAG_APPEND out
1367                 of the loop.  Factor mask of BLOCK_CHANGED into changed
1368                 variable out of the loop.  (block_iterate_ind, in
1369                 particular, gets called a lot, so every little
1370                 optimization helps.)
1371
1372 Thu Jul 13 08:02:45 1995    <tytso@rsx-11.mit.edu>
1373
1374         * block.c (block_iterate_ind, block_iterate_dind, 
1375                 block_iterate_tind): Precompute limit of loop to speed up
1376                 block_iterate_ind and company.
1377
1378         * bitops.h (ext2fs_fast_mark_block_bitmap, 
1379                 ext2fs_fast_unmark_block_bitmap, ext2fs_fast_test_block_bitmap,
1380                 ext2fs_fast_mark_inode_bitmap, ext2fs_fast_unmark_inode_bitmap,
1381                 ext2fs_fast_test_inode_bitmap): Add fast version of these
1382                 functions, which don't do range checking.
1383
1384         * bitops.h (ext2fs_get_block_bitmap_start, 
1385                 ext2fs_get_inode_bitmap_start, ext2fs_get_block_bitmap_end,
1386                 ext2fs_get_inode_bitmap_end): Add new accessor functions
1387                 which return the start and end points of the bitmaps.
1388
1389 Tue Jul 11 18:59:41 1995    <tytso@rsx-11.mit.edu>
1390
1391         * llseek.c (ext2_llseek): If the offset is small enough, use lseek
1392                 instead of llseek.  The errno if the offset is too large
1393                 and lseek is not supported should be EINVAL, not -EINVAL.
1394
1395 Thu Jun 15 23:43:02 1995  Remy Card  <card@bbj>
1396
1397         * Makefile.in: Added support for ELF shared libraries.
1398                 Fixed typos in the compilation rules.
1399                 (distclean): Added Makefile.
1400
1401         * llseek.c (llseek): New function, if llseek() does not exist in the
1402         C library.
1403         (ext2_llseek): Changed to call llseek().
1404
1405 Mon Jun 12 08:29:07 1995  Theodore Y. Ts'o  <tytso@lurch.mit.edu>
1406
1407         * ext2fs.h: Use __u32 to define blk_t, instead of unsigned long.
1408
1409 Sun Jun 11 15:02:54 1995  Theodore Y. Ts'o  <tytso@lurch.mit.edu>
1410
1411         * mkdir.c (ext2fs_mkdir): Use LINUX_S_IFDIR instead of S_IFDIR.
1412
1413         * ext2fs.h (LINUX_S_IFDIR): Define a linux specific versions of
1414                 the S_*, which are normally defined in <sys/stat.h>.  This
1415                 allows us to compile e2fsprogs on a non-Linux system,
1416                 which may have a different value for S_IFDIR.
1417
1418 Sat Jun 10 23:47:05 1995  Theodore Y. Ts'o  <tytso@lurch.mit.edu>
1419
1420         * bitops.c (clear_bit, set_bit): Remove calls to cli() and sti();
1421                 this is a user-mode application!
1422
1423 Thu Jun  8 13:13:22 1995  Miles Bader  <miles@churchy.gnu.ai.mit.edu>
1424
1425         * llseek.c: Put the include of <linux/unistd.h> inside the #ifdef
1426         __linux__ so that non-linux systems won't see it.
1427
1428         * alloc.c: Include <errno.h> if possible.
1429         * badblocks.c: Ditto.
1430         * bb_inode.c: Ditto.
1431         * bitmaps.c: Ditto.
1432         * block.c: Ditto.
1433         * expanddir.c: Ditto.
1434         * get_pathname.c: Ditto.
1435         * initialize.c: Ditto.
1436         * inode.c: Ditto.
1437         * llseek.c: Ditto.
1438         * mkdir.c: Ditto.
1439         * namei.c: Ditto.
1440         * newdir.c: Ditto.
1441         * openfs.c: Ditto.
1442         * rw_bitmaps.c: Ditto.
1443         * unix_io.c: Ditto.
1444
1445         * Makefile.in: Rewritten to conform to GNU coding standards and
1446         support separate compilation directories.
1447
1448 Thu May 11 04:13:12 1995    <tytso@rsx-11.mit.edu>
1449
1450         * initialize.c (ext2fs_initialize): Don't allow more than one
1451                 bitmaps's worth of inodes in a group.
1452
1453 Sat Mar 11 14:07:11 1995  Theodore Y. Ts'o  <tytso@localhost>
1454
1455         * llseek.c (ext2_llseek): Added error checking to the llseek()
1456                 compat code to protect against overflow.  This only
1457                 applies to 1.0 and early 1.1 kernels, which don't support
1458                 the llseek() system call.
1459
1460 Thu Nov 24 16:29:00 1994  Theodore Y. Ts'o  (tytso@rt-11)
1461
1462         * unix_io.c (unix_open): Initialize the read_error and write_error
1463                 io_channel pointers to be null.
1464
1465         * bb_inode.c (clear_bad_block_proc): If an illegal block number is
1466                 found, clear it but don't try to update the filesystem
1467                 accounting information, since that's hopeless anyway.
1468
1469         * block.c (bloblock_iterate_ind, bloblock_iterate_dind,
1470         bloblock_iterate_tind): Check to see if the indirect blocks are
1471                 valid before trying to read them.
1472
1473         * ext2_err.et (EXT2_ET_BAD_IND_BLOCK, EX2_ET_BAD_DIND_BLOCK,
1474         EXT2_ET_BAD_TIND_BLOCK): Add new error codes.
1475
1476         * bitops.h (ext2fs_mark_block_bitmap, ext2fs_unmark_block_bitmap,
1477         ext2fs_test_block_bitmap, ext2fs_mark_inode_bitmap,
1478         ext2fs_unmark_inode_bitmap, ext2fs_test_inode_bitmap):  If an
1479                 illegal block or inode number is passed in, return instead
1480                 of trying to test, set, or clear the bit.
1481
1482 Mon Nov  7 21:32:33 1994  Remy Card  <card@bbj>
1483
1484         * Makefile: Added a dummy install target in case shared libraries
1485                 are not built.
1486
1487 Mon Oct 24 14:11:44 1994    (tytso@rsx-11)
1488
1489         * bitmaps.c (ext2fs_allocate_block_bitmap): Fix calculation of how
1490                 the real last block of the bitmap should be calculated.
1491
1492 Wed Sep  7 10:05:36 1994    (tytso@rsx-11)
1493
1494         * bitmaps.c (ext2fs_fudge_inode_bitmap_end, 
1495                 ext2fs_fudge_block_bitmap_end, ext2fs_clear_inode_bitmap,
1496                 ext2fs_clear_block_bitmap, ext2fs_free_inode_bitmap,
1497                 ext2fs_free_block_bitmap): Add magic number checking for
1498                 the inode and block bitmaps.
1499
1500         * bitmaps.c (ext2fs_allocate_block_bitmap): Fix to set the correct
1501                 magic number for a block bitmap instead of an inode bitmap.
1502
1503         * inode.c (ext2fs_close_inode_scan, ext2fs_get_next_inode):  Add
1504                 magic number checking for the inode_scan structure.
1505
1506         * badblocks.c (badblocks_list_free, badblocks_list_add, 
1507                 badblocks_list_test, badblocks_list_iterate_begin,
1508                 badblocks_list_iterate, badblocks_list_iterate_end): Add
1509                 magic number checking for the badblocks_list and
1510                 badblocks_iterate structures.
1511
1512         * ext2_err.et (EXT2_ET_MAGIC_UNIX_IO_CHANNEL): 
1513         * unix_io.c (unix_open, unix_close, unix_set_blksize, unix_read_blk,
1514                 unix_write_blk, unix_flush): Add magic number checking
1515                 both for io_channel structure and unix_private_data
1516                 structure.
1517
1518         * openfs.c (ext2fs_open): Add check for io_manager structure's
1519                 magic number.
1520
1521         * rw_bitmaps.c (ext2fs_write_inode_bitmap, ext2fs_write_block_bitmap,
1522                 ext2fs_read_inode_bitmap, ext2fs_read_block_bitmap,
1523                 ext2fs_read_bitmaps, ext2fs_write_bitmaps): 
1524         * read_bb.c (ext2fs_read_bb_inode): 
1525         * read_bb_file.c (ext2fs_read_bb_FILE): 
1526         * newdir.c (ext2fs_new_dir_block): 
1527         * namei.c (ext2fs_dir_iterate, ext2fs_lookup, ext2fs_namei): 
1528         * link.c (ext2fs_link, ext2fs_unlink): 
1529         * inode.c (ext2fs_open_inode_scan, ext2fs_read_inode,
1530                 ext2fs_write_inode, ext2fs_get_blocks, 
1531                 ext2fs_check_directory): 
1532         * get_pathname.c (ext2fs_get_pathname): 
1533         * expanddir.c (ext2fs_expand_dir): 
1534         * block.c (ext2fs_block_iterate): 
1535         * bitmaps.c (ext2fs_allocate_inode_bitmap, 
1536                 ext2fs_allocate_block_bitmap): 
1537         * bb_inode.c (ext2fs_update_bb_inode): 
1538         * alloc.c (ext2fs_new_inode,ext2fs_new_block,ext2fs_get_free_blocks): 
1539         * check_desc.c (ext2fs_check_desc): 
1540         * closefs.c (ext2fs_close, ext2fs_flush): 
1541         * freefs.c (ext2fs_free): Add check for ext2_filsys magic number.
1542
1543         * Makefile:
1544         * ext2fs.h:
1545         * openfs.c:
1546         * check_desc.c (ext2fs_check_desc): Move ext2fs_check_desc from
1547         openfs.c into its own file.
1548
1549         * ext2fs.h (EXT2_CHECK_MAGIC): Added macro for checking for
1550         structure magic numbers.
1551
1552         * closefs.c (ext2fs_flush): Folded in Remy Card's changes to clear
1553         the EXT2_VALID_FS flag in the backup superblock blocks, so that if
1554         someone uses the -b option to specify the use of the backup
1555         superblock --- this usually means that the main superblock is
1556         toast.  :-)
1557
1558         * ext2fs.h: 
1559         * ext2_err.et (EXT2_ET_REV_TOO_HIGH): 
1560         * openfs.c (ext2fs_open): Folded in Remy Card's changes to add a
1561         revision level to the superblock.
1562
1563 Sun Aug 21 00:50:08 1994  Theodore Y. Ts'o  (tytso@rt-11)
1564
1565         * ext2fs.h:
1566         * bitmaps.c:
1567         * bitops.c
1568         * bitops.h:
1569         * openfs.c:
1570         * initialize.c: Completely revamped the inode and block bitmap
1571         structures, so that they can be better chance of being extensible
1572         in a shared library.  They are now their own type, instead of
1573         being a char *.  Also, the function signatures of
1574         ext2fs_test_block_bitmap, ext2fs_mark_block_bitmap,
1575         ext2fs_unmark_block_bitmap, ext2fs_test_inode_bitmap,
1576         ext2fs_mark_inode_bitmap, and ext2fs_unmark_inode_bitmap were
1577         changed to eliminate the ext2_filsys argument, since it is no
1578         longer necessary.
1579
1580 Wed Aug 17 21:46:44 1994  Remy Card  (card@bbj)
1581
1582         * unix_io.c (unix_read_blk and unix_write_blk): use the llseek
1583         system call if available.
1584
1585         * llseek.c: new file.  This is the stub calling the llseek system
1586         call which allows supports for 2GB+ file systems.
1587
1588         * initialize.c (ext2fs_initialize): Ext2fs_initialize now stores
1589         the creator operating system.
1590
1591 Wed Aug 17 10:03:24 1994  Theodore Y. Ts'o  (tytso@rt-11)
1592
1593         * initialize.c (ext2fs_initialize): Ext2fs_initialize now sets up
1594         the group descriptor statistics in addition to everything else.
1595         This relieves mke2fs of the responsibility of doing it.
1596
1597         * bitops.c, bitops.h: Add assembly inline functions for the 68000.
1598         Added a new #define, _EXT2_HAVE_ASM_BITOPS_ to control whether or
1599         not the generic C function equivalents should be included or not.
1600
1601         * openfs.c (ext2fs_open): If a superblock is specified, then use
1602         the backup group descriptors that go along with this superblock,
1603         instead of using the primary group descriptors.  This allows
1604         e2fsck to recover filesystems where the primary group descriptors
1605         have been trashed.
1606
1607