]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
Bump xfsprogs version for Glens mkfs fix, fix a typo in one of the warning messages
authorNathan Scott <nathans@sgi.com>
Mon, 18 Aug 2003 23:48:27 +0000 (23:48 +0000)
committerNathan Scott <nathans@sgi.com>
Mon, 18 Aug 2003 23:48:27 +0000 (23:48 +0000)
VERSION
debian/changelog
doc/CHANGES
mkfs/xfs_mkfs.c

diff --git a/VERSION b/VERSION
index 754845fac3111629fe6bbddcc194ee1ff0d530dc..98097857a50734fa665c50699e00da5a386c7665 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -3,5 +3,5 @@
 #
 PKG_MAJOR=2
 PKG_MINOR=5
-PKG_REVISION=5
+PKG_REVISION=6
 PKG_BUILD=0
index 133fd1266e66b688429dcc3dfbff1a97c6e59dae..aaffdead5c26f645f7927a3be5cb5cf6272769cb 100644 (file)
@@ -1,6 +1,12 @@
+xfsprogs (2.5.6-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Nathan Scott <nathans@debian.org>  Tue, 19 Aug 2003 09:44:48 +1000
+
 xfsprogs (2.5.5-1) unstable; urgency=low
 
-  * New upstream release, this is the official XFS 1.3 xfsprogs.
+  * New upstream release.
 
  -- Nathan Scott <nathans@debian.org>  Thu, 07 Aug 2003 12:58:36 +1000
 
index d9618c66da7e84a213d89b031825ace785140f58..d75011b905ee6f1df1a23656c5a8c6356e9bf358 100644 (file)
@@ -1,5 +1,9 @@
+xfsprogs-2.5.6 (19 August 2003)
+       - Fix a mkfs problem where it could exit inappropriately when
+         a large data volume stripe unit was either specified on the
+         command line or via querying the underlying volume manager.
+
 xfsprogs-2.5.5 (07 August 2003)
-       - XFS 1.3 release version of xfsprogs.
        - Update xfs_io command to allow reading from non-XFS files.
        - Sync up user/kernel source in libxfs, libxlog and headers.
        - Update xfs_db and xfs_logprint commands to print new inode
index 574287370639485bee4163af2a536eed040837e7..7762db3e303eadccec1edb544e519b08ce37dfe7 100644 (file)
@@ -1770,11 +1770,10 @@ an AG size that is one stripe unit smaller, for example %llu.\n"),
 
        if (logversion == 2 && (lsunit * blocksize) > 256 * 1024) {
                fprintf(stderr,
-_("log stripe unit (%d bytes) is too large for kernel to handle (max 256k)\n"),
+       _("log stripe unit (%d bytes) is too large (maximum is 256KiB)\n"),
                        (lsunit * blocksize));
                lsunit = 32 * 1024;
-               fprintf(stderr,
-                       _("log stripe unit adjusted to 256kb\n"));
+               fprintf(stderr, _("log stripe unit adjusted to 32KiB\n"));
        }
 
        protostring = setup_proto(protofile);