Whamcloud - gitweb
ChangeLog, ext2fs.h:
[tools/e2fsprogs.git] / lib / ext2fs / ChangeLog
index 62ad4ad..58a1333 100644 (file)
@@ -1,3 +1,584 @@
+2000-05-18  Theodore Ts'o  <tytso@valinux.com>
+
+       * ext2fs.h: Add appropriate ifdef's to support C++ compilation.
+
+2000-04-03  Theodore Ts'o  <tytso@valinux.com>
+
+       * block.c: Readibility tweak in conditionals involving
+               ctx->fs->flags.
+
+       * ext2fs.h: Use AUTOCONF SIZEOF_* macros if available to determine
+               how to define __s64 and __u64.  Turn off "compression is
+               experimental" warning if the cpp macro
+               I_KNOW_THAT_COMPRESSION_IS_EXPERIMENTAL is defined.
+
+2000-02-11    <tytso@snap.thunk.org>
+
+       * ext2fs.h: Define EXT2FS_COMPRESSED_BLKADDR and HOLE_BLKADDR.
+               Conditionally include Compression as a supported type if
+               ENABLE_COMPRESSION (via --enable-compression) is turned on.
+
+       * swapfs.c (ext2fs_swap_super): Swap the compression usage bitmap.
+
+2000-02-08    <tytso@snap.thunk.org>
+
+       * bitops.h (ext2fs_mark_generic_bitmap, ext2fs_unmark_generic_bitmap,
+               ext2fs_mark_block_bitmap, ext2fs_unmark_block_bitmap,
+               ext2fs_mark_inode_bitmap, ext2fs_unmark_inode_bitmap):
+               Change to return the previous state of the bit that is
+               being marked or unmarked.  For speed optimization.
+       
+2000-02-02  Theodore Ts'o  <tytso@valinux.com>
+
+       * getsize.c, ismounted.c: Remove unneeded include of linux/fs.h
+
+       * swapfs.c: Remove #ifdef HAVE_EXT2_INODE_VERSION since it's not
+               needed any more; we know it will always be i_generation.
+               Add support for swapping the high bits of the uid and gid.
+
+1999-11-19    <tytso@valinux.com>
+
+       * mkdir.c (ext2fs_mkdir): Only update the parent's inode link
+               counts if the link was successful.  Patch suggested by
+               jeremy@goop.org.
+
+       * Makefile.in (distclean): Remove TAGS and Makefile.in.old from
+               the source directory.
+
+1999-11-10    <tytso@valinux.com>
+
+       * Release of E2fsprogs 1.18
+
+1999-11-08    <tytso@valinux.com>
+
+       * Makefile.in (tst_badblocks): Add freefs.o to the object list,
+               since ext2fs_badblocks_list_free was moved to freefs.c.
+
+       * tst_badblocks.c: Use the newer badblocks API names.  Add
+               duplicate blocks to the test inputs to test dealing with
+               adding blocks which are already in the badblocks list.
+
+       * badblocks.c (ext2fs_badblocks_list_add): If appending to the end
+               of the list, use a shortcut O(1) operations instead of an
+               O(n) operation.  (Idea suggested by David Beattie.)
+
+       * freefs.c (ext2fs_free): Use ext2fs_badblocks_list_free() instead
+               of badblocks_list_free(), to save a procedure call.
+
+1999-10-26    <tytso@valinux.com>
+
+       * Release of E2fsprogs 1.17
+
+1999-10-26    <tytso@valinux.com>
+
+       * ext2fs.h: Add kludge to deal with the fact that egcs cpp doesn't
+               seem to handle ~0UL the same way as they used to.
+
+1999-10-25    <tytso@valinux.com>
+
+       * nt_io.c (_OpenNtName): Open the device using
+               FILE_SYNCHRONOUS_IO_NONALERT instead of
+               FILE_SYNCHRONOUS_IO_ALERT
+               (nt_open): At the end of the device open routine, unlock 
+               the drive but do not dismount it.
+
+       * initialize.c (CREATOR_OS): Use __GNU__ instead of __gnu__ to
+               detect the Hurd OS.
+
+1999-10-22    <tytso@valinux.com>
+
+       * Release of E2fsprogs 1.16
+
+1999-10-22    <tytso@valinux.com>
+
+       * mkdir.c (ext2fs_mkdir): Pass EXT2_FT_DIR flag to ext2fs_link().
+
+       * link.c (ext2fs_link): This call now uses the low three bits of
+               the flags parameter to pass the directory filetype
+               information; it will set the directory entry FILETYPE
+               information if the filesystem supports it.
+
+       * newdir.c (ext2fs_new_dir_block): If the FILETYPE superblock
+               option is set, then create the '.' and '..' entries with
+               the filetype set to EXT2_FT_DIR.
+
+1999-09-24    <tytso@valinux.com>
+
+       * nt_io.c: New file which supports I/O under Windows NT.
+
+1999-09-07    <tytso@valinux.com>
+
+       * ext2fs.h: Add new fields for journalling and define new
+               feature bits used by newer filesystems: IMAGIC_INODES,
+               HAS_JOURNAL, RECOVER.
+
+       * expanddir.c (ext2fs_expand_dir, expand_dir_proc): Change where
+               we update the inode block count and size files so that the
+               block count field is updated correctly when we create an
+               indirect block.
+
+1999-07-18  Theodore Ts'o  <tytso@valinux.com>
+
+       * Release of E2fsprogs 1.15
+
+1999-06-23    <tytso@valinux.com>
+
+       * swapfs.c (ext2fs_swap_inode): Add compatibility for Linux 2.3
+               kernels that use i_generation instead of i_version.  Patch
+               supplied by Jon Bright <sircus@sircus.demon.co.uk>.
+
+1999-06-21    <tytso@valinux.com>
+
+       * dir_iterate.c (ext2fs_process_dir_block): Check for corrupted
+               directory entry before calling the callback function.
+               This should prevent some core dumps of insufficiently
+               paranoid callback functions.
+
+1999-05-29    <tytso@rsts-11.mit.edu>
+
+       * ext2fs.h: Add feature definition for AFS IMAGIC inodes.
+
+       * fileio.c (ext2fs_file_open): Remove obsolete comment stating
+               that we don't handle writing yet (we do).  Fixed bug where
+               we weren't allocating a big enough buffer for ext2_bmap.
+
+1999-05-03    <tytso@rsts-11.mit.edu>
+
+       * openfs.c (ext2fs_open): Check to make sure that the number of
+               blocks per group is not zero --- if so, it must be a bad
+               superblock!
+
+1999-01-09  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * Release of E2fsprogs 1.14
+
+1999-01-07  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * inode.c (ext2fs_read_inode, ext2fs_write_inode): Check to see if
+               the inode number is zero; if it's zero, return
+               EXT2_ET_BAD_INODE_NUM.
+
+1998-12-30  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * initialize.c (ext2fs_initialize): Use EXT2_FIRST_INODE instead
+               of EXT2_FIRST_INO to ensure compatibility with Linux 1.2
+               header files.
+
+Mon Jan  4 02:32:09 1999  Theodore Y. Ts'o  <tytso@mit.edu>
+
+       * llseek.c (ext2fs_llseek): Change ext2fs_llseek() in the
+               non-Linux case to use EINVAL by default, unless it isn't
+               defined, in which case we use EXT2_ET_INVALID_ARGUMENT
+               instead.
+
+1998-12-15  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * Release of E2fsprogs 1.13
+
+1998-12-03  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * Makefile.in: Updated dependencies.
+
+1998-09-22  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * initialize.c (ext2fs_initialize): Make sure that we allocate
+               enough inodes so that we can make a valid filesystem.
+
+1998-09-02  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * rw_bitmaps.c: Fixed signed/unsigned warnings.
+
+       * fileio.c (ext2fs_file_set_size): Remove unneeded extern from the
+               function declaration.
+
+       * dblist.c (make_dblist): Add safety check in case the dblist
+               pointer passed in is null (in which case, assign it to
+               fs->dblist).  Fixed some signed/unsigned warnings.
+
+       * bmap.c: Make addr_per_block be of type blk_t to avoid
+               signed/unsigned warnings.
+
+       * namei.c (ext2fs_follow_link): Remove uneeded extern from the
+               function declaration.
+
+       * get_pathname.c (get_pathname_proc): Use return value from
+               ext2fs_get_mem, instead of checking if &gp->name is
+               NULL.
+
+       * dir_iterate.c (ext2fs_process_dir_block): 
+       * dblist_dir.c (ext2fs_dblist_dir_iterate): Remove uneeded extern
+               from the function declaration.
+
+       * block.c (ext2fs_block_iterate2): If the read_inode call fails,
+               return the error directly instead of jumping to the
+               cleanup routine, since we don't need to do any cleanup.
+
+       * alloc_table.c (ext2fs_allocate_group_table): Make this
+               function take a dgrp_t for its group argument.
+
+       * ext2fs.h: Make dgrp_t an __u32 type, and make
+               fs->desc_group_count be of type dgrp_t.
+
+1998-07-27  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * badblocks.c (ext2fs_badblocks_list_add): Use a bigger increment
+               than 10 blocks when we need to expand the size of the
+               badblocks list.
+
+1998-07-09  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * Release of E2fsprogs 1.12
+
+1998-06-30  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * closefs.c (ext2fs_flush): Update the s_block_group_nr field as
+               appropriate for all of the block group copies, so that
+               it's clear where the beginning of the filesystem is on the
+               disk.  (For when the partition table gets scrod.)
+
+       * ext2fs.h: Change the name of the feature from
+               EXT2_FEATURE_INCOMPAT_DIRNAME_SIZE to
+               EXT2_FEATURE_INCOMPAT_FILESIZE (to match with the kernel).
+
+1998-06-18  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * inode.c (get_next_blockgroup): Fix bug where if
+               get_next_blockgroup() is called early because of a missing
+               inode table in a block group, the current_inode counter
+               wasn't incremented correctly.
+
+1998-06-16  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * read_bb.c (ext2fs_read_bb_inode): Make function more robust
+               against a completely trashed bad block inode.
+
+1998-06-10  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * alloc_tables.c (ext2fs_allocate_group_table): Fix bug so that if
+               the stride length hits a bad value, we retry the block
+               allocation starting at the beginning of the block group.
+
+       * ext2fs.h, bb_inode.c, block.c, bmove.c, dir_iterate.c,
+               expanddir.c, ext2fsP.h, read_bb.c: Change blkcnt_t to be
+               e2_blkcnt_t to avoid collision with LFS API.
+
+1998-05-01  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * initialize.c (ext2fs_initialize): Initialize s_inodes_count in a
+               way that avoids overflows on disk sizes greater than 4GB.
+
+1998-04-28  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * ext2fs.h: Define EXT2_QSORT_TYPE appropriately for the
+               return type for comparison functions for qsort.
+
+       * dblist.c (dir_block_cmp): Use EXT2_QSORT_TYPE in function
+               declaration.
+
+1998-04-26  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * ext2fs.h, bitops.h: Add support for the Watcom C compiler to do
+               inline functions.
+
+       * ext2fs.h, dosio.c: Use asm/types.h instead of linux/types.h to
+               evade a potential problem with glibc's header files trying
+               to spike out linux/types.h.
+
+       * ext2fs.h (ext2fs_resize_mem): Change the function prototype to
+               include the old size of the memory, which is needed for
+               some braindamaged memory allocation systems that don't
+               support realloc().
+
+       * badblocks.c (ext2fs_badblocks_list_add):
+         bb_inode.c (clear_bad_block_proc):
+         dblist.c (ext2fs_add_dir_block):
+         icount.c (insert_icount_el):
+         irel_ma.c (ima_put):
+         rs_bitmap.c (ext2fs_resize_generic_bitmap): Update functions to
+                 pass the old size of the memory to be resized to
+                 ext2fs_resize_mem(). 
+
+1998-03-30  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * Makefile.in: Change to use new installation directory variables
+               convention.  Fix uninstall rules to take $(DESTDIR) into
+               account.
+
+1998-03-29  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * ext2fs.h: If __STRICT_ANSI__ is defined and we're on a platform
+               with 32 bit longs, then we need to manually define __s64
+               and __u64, since the current kernel header files don't
+               define these if __STRICT_ANSI__ is defined.  This is a
+               problem if we are compiling with full GCC warnings, since
+               we do need 64 bit support.
+       
+       * Makefile.in (OBJS): Remove bmove.o from files to be built,
+               since we're not using ext2fs_move_blocks() and there
+               is some question as to its usefulness in its current
+               form.
+
+       * bmap.c (block_bmap): Remove unused function.
+
+       * bmove.c (process_block): Fix -Wall warning.
+
+1998-03-23  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * block.c (ext2fs_block_iterate3): Make the ref_offset field
+               contain the offset into the inode.i_blocks array when
+               ref_block is zero.  Since we haven't done a formal
+               release of e2fsprogs since block_iterate2 was first
+               introduced, I removed block_iterate2, and renamed
+               block_iterate3 to be block_iterate2.
+
+       * bb_inode.c, bmove.c, dblist_dir.c, dir_iterate.c,
+               expanddir.c, ext2fs.h, ext2fsP.h, read_bb.c: Change
+               use of block_iterate and block_iterate2 to
+               block_iterate2 with the new prototype for the
+               interator function.  (using blkcnt_t forr blockcount)
+
+1998-03-21  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * ext2fs.h: Add new superblock fields (s_algorithm_usage_bitmap, 
+               s_prealloc_blocks, s_prealloc_dir_blocks).  Added
+               conditional defines of new features COMPAT_DIR_PREALLOC,
+               RO_COMPAT_LARGE_FILE RO_COMPAT_BTREE_DIR,
+               INCOMPAT_COMPRESSION, INCOMPAT_DIRNAME_SIZE.  Changed
+               the library to declare that we support COMPAT_DIR_PREALLOC, 
+               INCOMPAT_DIRNAME_SIZE, RO_COMPAT_LARGE_FILE.
+
+       * fileio.c: Rename function ext2fs_file_llseek to be
+               ext2fs_file_lseek, which is more accurate.
+
+       * block.c: Add new function ext2fs_block_iterate3 which calls
+               the iterator function with the blockcount argument of
+               type blkcnt_t.  This version of the function is
+               allowed to handle large files; the other fucntions are
+               not.
+
+       * ext2fs.h: Add new type blkcnt_t
+
+       * ext2_err.et.in: Add error code EXT2_ET_FILE_TOO_BIG
+
+       * block.c (ext2fs_block_iterate2): Fix bug where the block count
+               field wasn't getting correctly incremented for sparse
+               files when the indirect or doubly-indirect block
+               specified in the inode was zero.
+
+Sun Mar  8 22:42:47 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * unlink.c (unlink_proc): 
+       * lookup.c (lookup_proc): 
+       * link.c (link_proc): 
+       * get_pathname.c (get_pathname_proc): 
+       * dir_iterate.c (ext2fs_process_dir_block): Mask off high 8 bits
+               from dirent->name_len, so it can be used for other
+               purposes.
+
+       * ext2fs.h: Add definition of EXT2_FEATURE_INCOMPAT_DIRNAME_SIZE,
+               and indicate that we have support for this incompatible
+               option.
+
+Mon Feb 23 08:46:33 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * ext2_err.et.in: Added new error code, EXT2_ET_CANCEL_REQUESTED.
+
+Fri Feb 20 23:58:01 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * dblist.c (ext2fs_get_num_dirs): Improve the estimation of the
+               number of directories when the block group information is
+               unreliable.
+
+1998-02-20  Theodore Y. Ts'o  <tytso@edt.mit.edu>
+
+       * inode.c (ext2fs_get_next_inode): Always do the check to see if the
+               inode table is missing so that we catch the case where the
+               first block group is missing.
+
+       * getsize.c, ismounted.c, unix_io.c: #include errno.h since it's
+               needed.
+
+Mon Feb 16 16:16:00 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * ext2_io.h, ext2fs.h: Protect against being included multiple times.
+
+       * bmove.c: #include ext2fsP.h instead of "ext2fs/ext2fs.h"
+
+       * test_io.c (test_flush): Add a debugging printf when the flush
+               method is called.
+
+       * rw_bitmaps.c (ext2fs_read_bitmaps): If the bitmaps are already
+               read in, return right away.
+
+Sun Feb  1 08:20:24 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * bitops.h: Don't try to do i386 inline asm functions if the
+               compiler isn't GCC.
+
+       * ext2fs.h: If EXT2_FLAT_INCLUDES is defined, #include e2_types.h,
+               instead of linux/types.h, and e2_bitops.h instead of
+               ext2fs/bitops.h.
+
+       * icount.c, version.c: Don't #include <et/com_err.h>, as it isn't
+               necessary. 
+
+Sat Jan 17 13:13:31 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * inode.c (ext2fs_open_inode_scan): Initialize the group variables
+               so that we don't need to call get_next_blockgroup() the
+               first time around.  Saves a bit of time, and prevents us
+               from needing to assign -1 to current_group (which is an
+               unsigned value).
+
+       * icount.c (insert_icount_el): Cast the estimated number of inodes
+               from a float to an ino_t.
+
+       * alloc.c, alloc_tables.c, badlbocks.c, bb_compat.c, bb_inode.c,
+               bitmaps.c, bitops.c, block.c, bmap.c, bmove.c, brel_ma.c,
+               check_desc.c, closefs.c, cmp_bitmaps.c, dblist.c,
+               dblist_dir.c, dir_iterate.c, dirblock.c, dupfs.c,
+               expanddir.c, ext2fs.h, fileio.c, freefs.c,
+               get_pathname.c, getsize.c, icount.c, initialize.c,
+               inline.c, inode.c, irel_ma.c, ismounted.c, link.c,
+               lookup.c, mkdir.c, namei.c, native.c, newdir.c,
+               openfs.c, read_bb.c, read_bb_file.c, rs_bitmap.c,
+               rw_bitmaps.c, swapfs.c, test_io.c, tst_badblocks.c,
+               tst_getsize.c, tst_iscan.c, unix_io.c, unlink.c,
+               valid_blk.c, version.c: If EXT2_FLAT_INCLUDES is
+               defined, then assume all of the
+               ext2-specific header files are in a flat directory.
+
+       * block.c, bmove.c, dirblock.c, fileio.c: Explicitly cast
+               all assignments from void * to be compatible with C++.
+
+Tue Jan  6 11:28:15 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * closefs.c (ext2fs_flush): Add a call to io_channel_flush() to
+               make sure the contents of the disk are flushed to disk.
+
+Mon Dec 29 14:39:13 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * dblist.c (ext2fs_add_dir_block): Change new to be new_entry to
+               avoid C++ namespace clash.
+
+       * bitmaps.c (ext2fs_copy_bitmap): Change new to be new_map to
+               avoid C++ namespace clash.
+
+       * ext2fs.h, bb_inode.c, block.c, bmove.c, brel.h, brel_ma.c,
+               irel.h, irel_ma.c, dblist.c, dblist_dir.c, dir_iterate.c,
+               ext2fsP.h, expanddir.c, get_pathname.c, inode.c, link.c,
+               unlink.c: Change private to be priv_data (to avoid C++
+               namespace clash)
+
+Fri Nov 28 09:26:31 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * dblist.c (ext2fs_get_num_dirs): Make ext2fs_get_num_dirs more
+               paranoid about validating the directory counts from the
+               block group information.
+
+       * all files: Don't include stdlib.h anymore; include it in
+               ext2_fs.h, since that file requires stdlib.h
+
+Thu Nov 20 16:07:38 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * expanddir.c (ext2fs_expand_dir): Check to make sure the block
+               bitmap is loaded, and return an error if it is not.
+               (expand_dir_proc): Only use ext2fs_write_dir_block when
+               writing a directory block, not when writing out a fresh
+               indirect block.
+
+Tue Nov 11 22:46:45 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * Makefile.in, tst_getsize.c: Added new file which is used to test
+               the ext2fs_get_device_size function.
+
+       * ext2_err.et.in (EXT2_ET_UNIMPLEMENTED): Added new error code.
+
+Sun Nov  2 20:36:13 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * ext2fs.h: Make ext2fs_get_mem take an unsigned argument.
+
+       * fileio.c (ext2fs_file_get_size, ext2fs_file_set_size,
+               ext2fs_file_get_fs): New functions added.
+
+
+Fri Oct 31 12:16:52 1997    <tytso@EDT.MIT.EDU>
+
+       * bitops.c (ext2fs_warn_bitmap, ext2fs_warn_bitmap2): Don't call
+               com_err if OMIT_COM_ERR is defined.
+
+Thu Oct 30 11:33:57 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * Rename new error codes to _ET_ in them for consistency.
+
+Sat Oct 25 00:06:58 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * [all files, basically]: Added definition of ext2fs_get_mem, 
+               ext2fs_free_mem, and ext2fs_resize_mem in ext2fs.h, and
+               changed all library routines to use these wrapper functions.
+
+       * dblist.c, mkdir.c: use EXT2_DIR_EXISTS and EXT2_DB_NOT_FOUND
+               instead of the system error messages.
+       
+       * ext2_err.et.in: Added new error messages EXT2_DIR_EXISTS and
+               EXT2_DB_NOT_FOUND
+
+       * ext2fs.h: Added function declarations and constants for bmap.c
+               and fileio.c.
+
+       * ext2_err.et.in: Added new error messages EXT2_FILE_RO and
+               EXT2_ET_MAGIC_EXT2_FILE
+
+       * Makefile.in: Added files bmap.c and fileio.c, and temporarily
+               commented out brel_ma.c and irel_ma.c
+
+       * bmap.c: New file which maps a file's logical block number to its
+               physical block number.
+
+       * fileio.c: New file which implements simple file reading and
+               writing primitives.
+
+       * alloc.c (ext2fs_alloc_block): New function which allocates a
+               block, zeros it, and updates the filesystem accounting
+               records appropriately.
+
+Wed Oct 22 16:47:27 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * ext2_err.et.in: Added new error codes: EXT2_NO_MEMORY,
+               EXT2_INVALID_ARGUMENT, EXT2_BLOCK_ALLOC_FAIL,
+               EXT2_INODE_ALLOC_FAIL, EXT2_NOT_DIRECTORY
+
+       * Change various library files to use these functions instead of
+               EINVAL, ENOENT, etc.
+
+Mon Oct 20 19:32:40 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * llseek.c: Check HAVE_LLSEEK_PROTOTYPE to see whether or not we
+               need to declare llseek().
+
+Sun Oct 19 18:56:22 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * Rename io.h to be ext2_io.h (avoid namespace collisions)
+
+       * Add #ifdef's for HAVE_SYS_STAT_H and HAVE_SYS_TYPES_H
+
+Fri Oct  3 13:35:59 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * llseek.c (ext2fs_llseek): Fix type error for ext2fs_llseek()
+
+       * icount.c (ext2fs_icount_validate): 
+       * bmove.c (process_block): Fix lint error in type for fprintf().
+
+Mon Sep 15 11:45:09 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * inode.c (ext2fs_check_directory): Add support for the callback
+               to return the error code EXT2_ET_CALLBACK_NOTHANDLED.
+
+Thu Sep  4 12:28:22 1997  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * bitmaps.c (ext2fs_set_bitmap_padding): New function which sets the
+               padding of the bitmap to be all one's.
+
 Wed Sep  3 14:27:30 1997  Theodore Y. Ts'o  <tytso@edt.mit.edu>
 
        * llseek.c: Added missing semicolon to glibc fixup declaration of