From fd4b28efd311e58811fcb652af003197d019ae29 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Mon, 21 Mar 2005 22:37:03 -0500 Subject: [PATCH] Update for the e2fsprogs 1.37 release. --- ChangeLog | 4 +++ README | 2 +- RELEASE-NOTES | 56 +++++++++++++++++++++++++++++++++++++++ contrib/ChangeLog | 4 +++ debian/changelog | 14 ++++++++-- debugfs/ChangeLog | 4 +++ doc/ChangeLog | 4 +++ doc/libext2fs.texinfo | 11 ++++---- e2fsck/ChangeLog | 4 +++ e2fsprogs.lsm | 10 +++---- ext2ed/ChangeLog | 4 +++ ext2ed/doc/ChangeLog | 4 +++ include/nonunix/ChangeLog | 4 +++ install-utils/ChangeLog | 4 +++ intl/ChangeLog | 4 +++ lib/ChangeLog | 4 +++ lib/blkid/ChangeLog | 4 +++ lib/e2p/ChangeLog | 4 +++ lib/et/ChangeLog | 4 +++ lib/ext2fs/ChangeLog | 4 +++ lib/ss/ChangeLog | 4 +++ lib/uuid/ChangeLog | 4 +++ misc/ChangeLog | 4 +++ po/ChangeLog | 4 +++ resize/ChangeLog | 4 +++ tests/ChangeLog | 4 +++ tests/progs/ChangeLog | 4 +++ util/ChangeLog | 4 +++ version.h | 4 +-- 29 files changed, 174 insertions(+), 15 deletions(-) diff --git a/ChangeLog b/ChangeLog index fc4b6be8f..89dd394ce 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/README b/README index 49e44ac51..ebd798376 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ - This is the new version (1.36) of the second extended file + This is the new version (1.37) of the second extended file system management programs. From time to time, I release new versions of e2fsprogs, to fix diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 1f959e1a6..00ef4bb06 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,3 +1,59 @@ +E2fsprogs 1.37 (March 21, 2005) +=============================== + +Add support for checking the validity of Extended Attributes stored in +inodes to e2fsck. + +Add support for dumping the contents of large inodes to debugfs, +including the extended attributes stored in inodes. + +Fix mke2fs, e2fsck, debugfs, and the ext2fs_mkdir function so that +when we create a new inode we make sure that the extra information in +the inode (any extra fields in a large inode and any ea-in-inode +information) is initialized correctly. This can take place when +mke2fs creates the root and lost+found directory, when e2fsck creates +a new root inode or a new lost+found directory, and when the user uses +the debugfs write, mknod, or mkdir commands. Otherwise, the newly +create inode could inherit garbage (or old EA information) from a +previously deleted inode. + +Fixed a bug in e2fsck so it would notice if a file with an extended +attribute block was exactly 2**32 blocks, such that i_blocks wrapped +to zero. + +Added support to filefrag to detect files which are using the new +experimental file extents format, and use the non-ext2 algorithm in +that case. Fixed a bug to avoid reporting a false discontinuity if +there is one or more unallocated blocks at the beginning of a file. + +Duplicated a check for noticing whether or not the number of blocks +(given a certain blocksize) is greater than 2**32 when the +BLKGETSIZE64 ioctl is not available to ext2fs_get_device_size(). This +allows mke2fs to automatically use a larger blocksize when creating a +filesystem on a very large device when run on systems that do not +support BLKGETSIZE64. + +Fix the I18N build which was broken in e2fsprogs 1.36 because the +build system had been switched to treat the .gmo files as shipped +files (for backwards compatibility with systems that have older GNU +I18N tools installed), but the gen_tarball.in script was still +removing the .gmo files from the official source distribution. + +Fixed various Debian packaging issues --- see debian/changelog for +details. (Addresses Debian Bugs ##296769, #299341) + +Programmer's notes: +------------------- + +Added new functions to the e2p library which convert between a string +and os_type: e2p_os2string() and e2p_string2os(), and used them to +make the generated binaries more compact. + +Fixed a compile-time error on Darwin systems. + +Cleaned up the lib/ext2fs Makefile slightly. + + E2fsprogs 1.36 (February 4, 2005) ================================= diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 029d23f70..a6e52d696 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/debian/changelog b/debian/changelog index b58a31667..96445e373 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,12 +1,22 @@ -e2fsprogs (1.36release-2) unstable; urgency=low +e2fsprogs (1.37-1) unstable; urgency=low + * New upstream release. + * Fixed a bug in e2fsck so it would notice if a file with an extended + attribute block was exactly 2**32 blocks, such that i_blocks wrapped + to zero. + * Fixed a bug in filefrag which caused it to falsely report a + discontinuity when there are one or more unallocated blocks at the + beginning of a file. + * Fix the missing translations (caused by a bug in the gen-tarball + script). (Closes: #296769) + * Add support in e2fsck and debugfs for extended attributes in inodes. * Fix the missing translations (caused by a bug in the gen-tarball script). (Closes: #296769) * Force compile_et and mk_cmds to use /usr/bin/awk so that we will work on any Debian system regardless of which version of awk is installed. (Closes: #299341) - -- Theodore Y. Ts'o Thu, 17 Mar 2005 00:19:49 -0500 + -- Theodore Y. Ts'o Thu, 21 Mar 2005 22:31:08 -0500 e2fsprogs (1.36release-1) unstable; urgency=low diff --git a/debugfs/ChangeLog b/debugfs/ChangeLog index aae7aca8d..fa2a335e2 100644 --- a/debugfs/ChangeLog +++ b/debugfs/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2005-03-21 Theodore Ts'o * debugfs.c (internal_dump_inode_extra): Print the size of diff --git a/doc/ChangeLog b/doc/ChangeLog index 3f7dc0103..dd26b43b8 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/doc/libext2fs.texinfo b/doc/libext2fs.texinfo index 0c5be94c2..9eb3b8a34 100644 --- a/doc/libext2fs.texinfo +++ b/doc/libext2fs.texinfo @@ -1,7 +1,7 @@ \input texinfo @c -*-texinfo-*- @c %**start of header @setfilename libext2fs.info -@settitle The EXT2FS Library (version 1.36) +@settitle The EXT2FS Library (version 1.37) @synindex tp fn @comment %**end of header @@ -31,7 +31,7 @@ END-INFO-DIR-ENTRY This file documents the ext2fs library, a library for manipulating the ext2 filesystem. -Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Theodore Ts'o +Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Theodore Ts'o Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice @@ -61,7 +61,7 @@ by the author. @title The EXT2FS Library @subtitle The EXT2FS Library -@subtitle Version 1.36 +@subtitle Version 1.37 @subtitle January 2005 @author by Theodore Ts'o @@ -77,7 +77,8 @@ by the author. @page @vskip 0pt plus 1filll -Copyright @copyright{} 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Theodore Ts'o +Copyright @copyright{} 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +2005 Theodore Ts'o @sp 2 @@ -102,7 +103,7 @@ by the Foundation. @top The EXT2FS Library -This manual documents the EXT2FS Library, version 1.36. +This manual documents the EXT2FS Library, version 1.37. @end ifinfo diff --git a/e2fsck/ChangeLog b/e2fsck/ChangeLog index b42f6fc04..b4a92fc53 100644 --- a/e2fsck/ChangeLog +++ b/e2fsck/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2005-03-21 Theodore Ts'o * message.c, pass1.c, problem.c, problem.h, util.c: Integrate code diff --git a/e2fsprogs.lsm b/e2fsprogs.lsm index 77f8d253e..b44b3aa33 100644 --- a/e2fsprogs.lsm +++ b/e2fsprogs.lsm @@ -1,16 +1,16 @@ Begin3 Title: EXT2 Filesystem utilities -Version: 1.36 -Entered-date: 05February2005 +Version: 1.37 +Entered-date: 21March2005 Description: The filesystem utilities for the EXT2 filesystem, including e2fsck, mke2fs, dumpe2fs, fsck, and others. Keywords: utilities, fsck, filesystem, Ext2fs Author: tytso@mit.edu (Theodore Tso) Maintained-by: tytso@mit.edu (Theodore Tso) Primary-site: download.sourceforge.net /pub/sourceforge/e2fsprogs - 3192kB e2fsprogs-1.36.tar.gz - 452kB e2fsprogs-libs-1.36.tar.gz - 1kB e2fsprogs-1.36.lsm + 3192kB e2fsprogs-1.37.tar.gz + 452kB e2fsprogs-libs-1.37.tar.gz + 1kB e2fsprogs-1.37.lsm Alternate-site: Platforms: linux 1.2.x/1.3.x/2.0.x/2.1.x/2.2.x/2.3.x/2.4.x/2.5.x/2.6.x Copying-policy: GPL/LGPL diff --git a/ext2ed/ChangeLog b/ext2ed/ChangeLog index 2526b930d..1d6cc50a1 100644 --- a/ext2ed/ChangeLog +++ b/ext2ed/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/ext2ed/doc/ChangeLog b/ext2ed/doc/ChangeLog index 070bd050a..c40afbae4 100644 --- a/ext2ed/doc/ChangeLog +++ b/ext2ed/doc/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/include/nonunix/ChangeLog b/include/nonunix/ChangeLog index 221b0f3c9..1500266b0 100644 --- a/include/nonunix/ChangeLog +++ b/include/nonunix/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/install-utils/ChangeLog b/install-utils/ChangeLog index c63da60e2..47ae0ca8d 100644 --- a/install-utils/ChangeLog +++ b/install-utils/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/intl/ChangeLog b/intl/ChangeLog index e538cce9a..6de1ca3de 100644 --- a/intl/ChangeLog +++ b/intl/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/lib/ChangeLog b/lib/ChangeLog index 4b70fa95b..e6bdf2e05 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/lib/blkid/ChangeLog b/lib/blkid/ChangeLog index 782cf0fec..bfa6070b6 100644 --- a/lib/blkid/ChangeLog +++ b/lib/blkid/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2005-03-21 Theodore Ts'o * cache.c (blkid_get_cache): Ignore the BLKID_FILE environment diff --git a/lib/e2p/ChangeLog b/lib/e2p/ChangeLog index a64cd1040..1e40bb404 100644 --- a/lib/e2p/ChangeLog +++ b/lib/e2p/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2005-03-19 Theodore Ts'o * ls.c (list_super2): Use the new e2p_os2string() function diff --git a/lib/et/ChangeLog b/lib/et/ChangeLog index a336d5f3f..4bfb0d338 100644 --- a/lib/et/ChangeLog +++ b/lib/et/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/lib/ext2fs/ChangeLog b/lib/ext2fs/ChangeLog index 0fc250130..b2a829ab6 100644 --- a/lib/ext2fs/ChangeLog +++ b/lib/ext2fs/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2005-03-21 Theodore Ts'o * ext2_ext_attr.h (EXT2_XATTR_LEN, EXT2_XATTR_SIZE): Add new diff --git a/lib/ss/ChangeLog b/lib/ss/ChangeLog index e9f8cc52a..2dcc071f2 100644 --- a/lib/ss/ChangeLog +++ b/lib/ss/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/lib/uuid/ChangeLog b/lib/uuid/ChangeLog index a0e634cf3..79e10d8f1 100644 --- a/lib/uuid/ChangeLog +++ b/lib/uuid/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/misc/ChangeLog b/misc/ChangeLog index 2c2bc1e55..ede92ed27 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2005-03-21 Theodore Ts'o * mke2fs.c (create_root_dir): Call ext2fs_write_new_inode() instead of diff --git a/po/ChangeLog b/po/ChangeLog index 2a7a32219..60a32b743 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/resize/ChangeLog b/resize/ChangeLog index 1f753a8b3..f51550a4d 100644 --- a/resize/ChangeLog +++ b/resize/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/tests/ChangeLog b/tests/ChangeLog index a42966171..6a6d0508d 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2005-03-21 Theodore Ts'o * f_valid_ea_in_inode: New test case diff --git a/tests/progs/ChangeLog b/tests/progs/ChangeLog index 74bc1fd16..b1c08c703 100644 --- a/tests/progs/ChangeLog +++ b/tests/progs/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2006-02-05 Theodore Ts'o * Release of E2fsprogs 1.36 diff --git a/util/ChangeLog b/util/ChangeLog index 1ba7547c9..e4ad5a6ed 100644 --- a/util/ChangeLog +++ b/util/ChangeLog @@ -1,3 +1,7 @@ +2005-03-21 Theodore Ts'o + + * Release of E2fsprogs 1.37 + 2005-03-02 Theodore Ts'o * gen_tarball.in: Don't remove the .gmo files from the generated diff --git a/version.h b/version.h index debec4e6b..15d7c4fe2 100644 --- a/version.h +++ b/version.h @@ -6,5 +6,5 @@ * Ts'o. This file may be redistributed under the GNU Public License. */ -#define E2FSPROGS_VERSION "1.36" -#define E2FSPROGS_DATE "05-Feb-2005" +#define E2FSPROGS_VERSION "1.37" +#define E2FSPROGS_DATE "21-Mar-2005" -- 2.47.3