Whamcloud - gitweb
ChangeLog, ext2fs.h:
[tools/e2fsprogs.git] / lib / ext2fs / ChangeLog
index 2fe483b..58a1333 100644 (file)
@@ -1,5 +1,87 @@
+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.