OSDN Git Service

Interim commit for Debian release -- 1.41.4-3
authorTheodore Ts'o <tytso@mit.edu>
Thu, 23 Apr 2009 05:57:51 +0000 (01:57 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 23 Apr 2009 05:57:51 +0000 (01:57 -0400)
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
RELEASE-NOTES
debian/changelog
version.h

index 5606edc..e9ef0f6 100644 (file)
@@ -1,4 +1,4 @@
-E2fsprogs 1.41.5  -- WORK IN PROGRESS (April 19, 2009)
+E2fsprogs 1.41.5  -- WORK IN PROGRESS (April 22, 2009)
 ======================================================
 
 Fix a number of filesystem corruption bugs in resize2fs when growing
@@ -9,6 +9,10 @@ Debugfs can now set i_file_acl_high via the set_inodes_field command,
 and print a 64-bit file acl.  This is useful for debugging filesystem
 corruptions where the high 32 bits of i_file_acl_high are set.
 
+Speed up e2fsck when checking clean filesystems by avoiding
+unnecessary block reads, and coalescing the block group descriptor
+blocks so they are read using a single read operation.
+
 The libuuid library will now close all file descriptors before running
 uuidd.  This avoids problems when the calling program has open sockets
 which then never get closed because uuidd is a long-running helper
@@ -22,8 +26,15 @@ Mke2fs will avoid trying to create the journal when run in
 superblock-only mode (mke2fs -S), since the left-over journal in the
 inode table will cause mke2fs to fail.
 
+Fix a bug in libext2fs functions that check to see if a particular
+device or filesystem image is mounted, which would cause these
+functions to report that a file identical to the (relative) pathname
+used by a pseudo-filesystem was mounted when in fact it was not.
+
 Update Czech translation from the Translation Project.
 
+Add Chinese (simplified) translation from the Translation Project.
+
 Fix support for external journals (which was broken in e2fsprogs
 1.41.4).
 
@@ -35,6 +46,11 @@ Starting in the 2.6.29 linux kernel, the ext4 filesystem driver can be
 used to support filesystems without a journal.  Update the blkid
 library so it understands this.
 
+The blkid library will remove an entry from the blkid cache
+representing the entire disk if partitions are found, since presuambly
+the device previously had no partition table, but has now transitioned
+to using a partition table.
+
 Add a check to mke2fs and tune2fs that the argument to the -m option
 (which specifies the reserved ratio) must be greater than zero.
 (Addresses Debian Bug: #517015)
@@ -48,7 +64,7 @@ on Solid Sstate Drives.
 Fix compatibility issue in the libext2fs info file and makeinfo
 version 4.12.  (Addresses Red Hat Bugzilla: #481620)
 
-Clarify tune2fs man page  (Addresses Debian Bug: #515693)
+Update/clarify man pages.  (Addresses Debian Bug: #515693, #365619)
 
 Fixed various Debian packaging issues --- see debian/changelog for
 details. (Addresses Debian Bug: #506279)
@@ -60,10 +76,14 @@ Fix Hurd compilation problem in e2fsck and tune2fs (Addresses Debian
 Bug: #521602)
 
 Fix various gcc compilation warnings and other programming cleanups.
-(Addresses Red HatBugzilla: #486997)
+(Addresses Red Hat Bugzilla: #486997)
 
 Add support for building the blkid command statically.
 
+Add support for disabling the built-in blkid library in favor of a
+system-installed blkid implementation via the configure option
+--disable-libblkid.
+
 
 E2fsprogs 1.41.4 (January 27, 2009)
 ===================================
index 1c8f1d9..fce2566 100644 (file)
@@ -1,5 +1,20 @@
+e2fsprogs (1.41.4-3) unstable; urgency=low
+
+  * Update/clarify man pages (Closes: #365619)
+  * Fix a problem where the 'device names' for pseudo-filesystems in
+    /proc/mounts could confuse the e2fsprogs into thinking that a
+    filesystem image stored in a regular file was mounted when it was not
+  * Remove whole-disk entries from the blkid cache when partitions are found
+  * Reduce the number of disk reads needed when the filesystem is clean
+  * Add Chinese (simplified) translation from the Translation Project
+
+ -- Theodore Y. Ts'o <tytso@mit.edu>  Thu, 23 Apr 2009 01:35:22 -0400
+
 e2fsprogs (1.41.4-2) unstable; urgency=low
 
+  * Update the debian copyright files to point at the version-specific
+    GPL and LGPL files.
+  * Update the debhelper compat level to 7
   * Fix a number of filesystem corruption bugs in resize2fs when growing
     or shrinking ext4 filesystems off-line (i.e., when the ext4
     filesystem is not mounted).
index cb7124f..d864e11 100644 (file)
--- a/version.h
+++ b/version.h
@@ -8,4 +8,4 @@
  */
 
 #define E2FSPROGS_VERSION "1.41.4"
-#define E2FSPROGS_DATE "19-Apr-2009"
+#define E2FSPROGS_DATE "22-Apr-2009"