summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2014-08-25 10:30:53 -0400
committerTheodore Ts'o <tytso@mit.edu>2014-08-25 10:30:53 -0400
commit6b319481d9b8b1f5d415aee60d1a95321ddf023d (patch)
treef424ab1b164a0a051b52d157abace65b0554556f
parenta8193af3b21e4f9b686203a8f7dfe4392d6cd0ea (diff)
downloade2fsprogs-6b319481d9b8b1f5d415aee60d1a95321ddf023d.tar.gz
Interim updates of release notes, etc. in preparation for 1.42.12 release
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r--README2
-rw-r--r--RELEASE-NOTES98
-rw-r--r--debian/changelog50
-rw-r--r--debian/e2fslibs.symbols2
-rw-r--r--doc/libext2fs.texinfo8
-rw-r--r--e2fsprogs.lsm14
-rw-r--r--po/e2fsprogs.pot1090
-rw-r--r--version.h4
8 files changed, 731 insertions, 537 deletions
diff --git a/README b/README
index 0ab9f5da..47c7a106 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
- This is the new version (1.42.11) of the second extended file
+ This is the new version (1.42.12) 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 cdbfe17a..066bbf7c 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,3 +1,101 @@
+E2fsprogs 1.42.12 (August 25, 2014)
+===================================
+
+Fix various e2fsck bugs when trying to repair bigalloc file systems.
+
+E2fsck can now repair a file system with an overly large
+s_first_meta_bg field, which had previously caused all e2fsprogs
+programs to crash when trying to open such a file system.
+
+Fix e2fsck so that it can correctly fix a number of rare file system
+corruptions that were discovered when using a file system fuzzer.
+
+Fix e2fsck so it does not try to write back block group descriptors if
+they have not been modified.
+
+Mke2fs program will now place metadata blocks in the last flex_bg so
+they are contiguous. This reduces free space fragmentation in a
+freshly created file system, as well as allowing mke2fs commands which
+request extremely large flex_bg size to succeed.
+
+Mke2fs now creates hugefiles more efficiently (with fewer extent tree
+blocks).
+
+Fix a 32/64-bit overflow bug that could cause resize2fs to loop
+forever. (Addresses-Launchpad-Bug: #1321958)
+
+The resize2fs program will now use much less memory when resizing very
+large file systems.
+
+Fix a bug which could cause resize2fs to get confused and produce a
+corrupted file system when shrinking a file system that had been
+previously expanded and converted to use the meta_bg file system
+format, but which no longer needs to use the meta_bg file system
+format any longer. This typically happened with large (> 16TB) file
+systems. (Addresses Debian Bug: #756922)
+
+The e4defrag program will now defrag backwards-allocated files.
+
+Fix tune2fs updating UUID's when manipulating file systems with
+external journals (both the file system and journal UUID).
+
+Fix tune2fs so it can remove an external journal for file systems with
+a 1k block size.
+
+Add a new debugfs command, "inode_dump", which prints the inode in hex
+and ASCII format.
+
+The debugfs's "set_inode_field" will now automatically allocate blocks
+for indirect blocks and extent tree blocks.
+
+Fix debugfs's "set_inode_field" so can properly handle
+"block[IND|DIND|TIND]".
+
+The debugfs "rdump" command will now take multiple source arguments.
+
+Fixed a double close(2) bug in "rdump" and "rdump -p".
+
+Fix debugfs's argument parsing for the freefrag command.
+
+Fix filefrag to properly handle using the FIBMAP ioctl (with -B).
+(Addresses Launchpad Bug: #1356496)
+
+Clarified messages that were confusing users in debugfs, e2fsck,
+mke2fs, and resize2fs (Addresses Debian Bugs: #758029, #757543,
+#757544)
+
+Dumpe2fs will now complain if extra arguments are given to it.
+(Addresses Debian Bug: #758074)
+
+Updated/fixed various man pages. (Addresses-Debian-Bug: #726760)
+
+Update Czech, French, Spanish, and Sweedish translations.
+
+Programmer's Notes
+------------------
+
+The Unix I/O layer will now use pread[64]/pwrite[64] to reduce the
+number of system calls issued.
+
+Fixed profiled build.
+
+The libext2fs library will now more efficiently split an extent tree
+index block when appending to an end of a file.
+
+Fixed free block accounting for 64-bit file systems.
+
+Add a new function ext2s_inode_size_set() which takes care of all of
+the required feature flag modifications.
+
+The regression tests no longer require the presence of the md5sum
+program.
+
+Fix build failure on MIPS platforms on Debian (Addresses Debian Bug:
+#754605)
+
+Fix various Coverity warnings (#1225003, #1229243, #1252003)
+
+
E2fsprogs 1.42.11 (July 9, 2014)
================================
diff --git a/debian/changelog b/debian/changelog
index f01607b8..5dd5c1d3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,51 @@
+e2fsprogs (1.42.12-1) unstable; urgency=low
+
+ * New upstream version
+ * Fix various e2fsck bugs when trying to repair bigalloc file systems.
+ * E2fsck can now repair a file system with an overly large
+ s_first_meta_bg field, which had previously caused all e2fsprogs
+ programs to crash when trying to open such a file system.
+ * Fix e2fsck so that it can correctly fix a number of rare file system
+ corruptions that were discovered when using a file system fuzzer.
+ * Fix e2fsck so it does not try to write back block group descriptors
+ if they have not been modified.
+ * The mke2fs program will now place metadata blocks in the last
+ flex_bg so they are contiguous. This reduces free space
+ fragmentation in a freshly created file system, as well as allowing
+ mke2fs commands which request extremely large flex_bg size to succeed.
+ * Mke2fs now creates hugefiles more efficiently (with fewer extent
+ tree blocks).
+ * Fix a 32/64-bit overflow bug that could cause resize2fs to loop
+ forever.
+ * Reduce the memory consumption of resize2fs for very large file
+ systems.
+ * Fix a bug that could cause resize2fs to create a corrupted file
+ system when shrinking a very large file system (typically > 16TB)
+ that had been previously grown using resize2fs. (Closes: #756922)
+ * Fix tune2fs updating UUID's when manipulating file systems with
+ external journals (both the file system and journal UUID).
+ * Fix tune2fs so it can remove an external journal for file systems
+ with a 1k block size.
+ * Add a new debugfs command, "inode_dump", which prints the inode in
+ hex and ASCII format.
+ * The debugfs command "set_inode_field" will now automatically
+ allocate blocks for indirect blocks and extent tree blocks.
+ * Fix debugfs's "set_inode_field" so can properly handle
+ "block[IND|DIND|TIND]".
+ * The debugfs "rdump" command will now take multiple source arguments.
+ * Fix debugfs's argument parsing for the freefrag command.
+ * Fixed a double close(2) bug in "rdump" and "rdump -p".
+ * Fix filefrag to properly handle using the FIBMAP ioctl (with -B).
+ * e4defrag will now defrag backwards-allocated files
+ * Clarified messages that were confusing users in debugfs, e2fsck,
+ mke2fs, and resize2fs (Closes: #758029, #757543, #757544)
+ * Dumpe2fs will now complain if extra arguments are given to it.
+ (Closes: #758074)
+ * Update/clarify various man pages (Closes: #726760)
+ * Update Czech, French, Spanish, and Sweedish translations
+
+ -- Theodore Y. Ts'o <tytso@mit.edu> Mon, 25 Aug 2014 08:23:24 -0400
+
e2fsprogs (1.42.11-2) unstable; urgency=low
* Don't try to build lib/ext2fs/tst_ext2fs unless running "make
@@ -6,7 +54,7 @@ e2fsprogs (1.42.11-2) unstable; urgency=low
but not libss or other libraries (Closes: #754605)
* Update French translation
- -- Theodore Y. Ts'o <tytso@mit.edu> Sun, 13 Jul 2014 16:18:27 -0500
+ -- Theodore Y. Ts'o <tytso@mit.edu> Sun, 13 Jul 2014 16:18:27 -0400
e2fsprogs (1.42.11-1) unstable; urgency=medium
diff --git a/debian/e2fslibs.symbols b/debian/e2fslibs.symbols
index 1c769126..c8a5fb68 100644
--- a/debian/e2fslibs.symbols
+++ b/debian/e2fslibs.symbols
@@ -316,8 +316,10 @@ libext2fs.so.2 e2fslibs #MINVER#
ext2fs_inode_io_intern@Base 1.37
ext2fs_inode_scan_flags@Base 1.37
ext2fs_inode_scan_goto_blockgroup@Base 1.37
+ ext2fs_inode_size_set@Base 1.42.12
ext2fs_inode_table_loc@Base 1.42
ext2fs_inode_table_loc_set@Base 1.42
+ ext2fs_journal_sb_start@Base 1.42.12
ext2fs_link@Base 1.37
ext2fs_llseek@Base 1.37
ext2fs_lookup@Base 1.37
diff --git a/doc/libext2fs.texinfo b/doc/libext2fs.texinfo
index 74999025..66d1d79f 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.42.11)
+@settitle The EXT2FS Library (version 1.42.12)
@synindex tp fn
@comment %**end of header
@@ -60,8 +60,8 @@ by the author.
@title The EXT2FS Library
@subtitle The EXT2FS Library
-@subtitle Version 1.42.11
-@subtitle July 2014
+@subtitle Version 1.42.12
+@subtitle August 2014
@author by Theodore Ts'o
@@ -101,7 +101,7 @@ by the Foundation.
@top The EXT2FS Library
-This manual documents the EXT2FS Library, version 1.42.11.
+This manual documents the EXT2FS Library, version 1.42.12.
@menu
* Introduction to the EXT2FS Library::
diff --git a/e2fsprogs.lsm b/e2fsprogs.lsm
index 45eb34a8..80a373af 100644
--- a/e2fsprogs.lsm
+++ b/e2fsprogs.lsm
@@ -1,17 +1,17 @@
Begin3
Title: EXT2 Filesystem utilities
-Version: 1.42.11
-Entered-date: 09July2014
+Version: 1.42.12
+Entered-date: 2014-08-25
Description: The filesystem utilities for the EXT2, EXT3, and EXT4
filesystems, including e2fsck, mke2fs, dumpe2fs, and others.
Keywords: utilities, filesystem, Ext2fs, ext3, ext4
Author: tytso@mit.edu (Theodore Tso)
Maintained-by: tytso@mit.edu (Theodore Tso)
-Primary-site: download.sourceforge.net /pub/sourceforge/e2fsprogs
- 6184kB e2fsprogs-1.42.11.tar.gz
- 592kB e2fsprogs-libs-1.42.11.tar.gz
- 1kB e2fsprogs-1.42.11.lsm
-Alternate-site:
+Primary-site: ftp.kernel.org /pub/linux/kernel/people/tytso/e2fsprogs
+ 6232kB e2fsprogs-1.42.12.tar.gz
+ 592kB e2fsprogs-libs-1.42.12.tar.gz
+ 1kB e2fsprogs-1.42.12.lsm
+Alternate-site: download.sourceforge.net /pub/sourceforge/e2fsprogs
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/3.x
Copying-policy: GPL-2/LGPL-2
End
diff --git a/po/e2fsprogs.pot b/po/e2fsprogs.pot
index 28102e9b..c997ea8a 100644
--- a/po/e2fsprogs.pot
+++ b/po/e2fsprogs.pot
@@ -1,7 +1,9 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Theodore Tso
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+# E2fsprogs translation template file
+# Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
+# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012,
+# 2013, 2014 by Theodore Ts'o
+# This file is distributed under the same license as the e2fsprogs package.
+# Theodore Ts'o <tytso@mit.edu>, 2014.
#
#. The strings in e2fsck's problem.c can be very hard to translate,
#. since the strings are expanded in two different ways. First of all,
@@ -68,9 +70,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: e2fsprogs 1.42.12\n"
"Report-Msgid-Bugs-To: tytso@alum.mit.edu\n"
-"POT-Creation-Date: 2014-07-09 23:26-0400\n"
+"POT-Creation-Date: 2014-08-25 10:21-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -95,9 +97,9 @@ msgstr ""
#: e2fsck/badblocks.c:72 e2fsck/scantest.c:107 e2fsck/unix.c:1345
#: e2fsck/unix.c:1434 misc/badblocks.c:1227 misc/badblocks.c:1235
-#: misc/badblocks.c:1249 misc/badblocks.c:1261 misc/dumpe2fs.c:602
+#: misc/badblocks.c:1249 misc/badblocks.c:1261 misc/dumpe2fs.c:604
#: misc/e2image.c:1396 misc/e2image.c:1580 misc/e2image.c:1599
-#: misc/mke2fs.c:227 misc/tune2fs.c:1945 resize/main.c:316
+#: misc/mke2fs.c:227 misc/tune2fs.c:1953 misc/tune2fs.c:2042 resize/main.c:316
#, c-format
msgid "while trying to open %s"
msgstr ""
@@ -219,31 +221,31 @@ msgstr ""
msgid "%u inodes scanned.\n"
msgstr ""
-#: e2fsck/journal.c:525
+#: e2fsck/journal.c:524
msgid "reading journal superblock\n"
msgstr ""
-#: e2fsck/journal.c:582
+#: e2fsck/journal.c:581
#, c-format
msgid "%s: no valid journal superblock found\n"
msgstr ""
-#: e2fsck/journal.c:591
+#: e2fsck/journal.c:590
#, c-format
msgid "%s: journal too short\n"
msgstr ""
-#: e2fsck/journal.c:882
+#: e2fsck/journal.c:881
#, c-format
msgid "%s: recovering journal\n"
msgstr ""
-#: e2fsck/journal.c:884
+#: e2fsck/journal.c:883
#, c-format
msgid "%s: won't do journal recovery while read-only\n"
msgstr ""
-#: e2fsck/journal.c:911
+#: e2fsck/journal.c:910
#, c-format
msgid "while trying to re-open %s"
msgstr ""
@@ -436,7 +438,7 @@ msgstr ""
msgid "symbolic link"
msgstr ""
-#: e2fsck/message.c:346 misc/uuidd.c:161
+#: e2fsck/message.c:346 misc/uuidd.c:162
msgid "socket"
msgstr ""
@@ -469,21 +471,21 @@ msgstr ""
msgid "multiply claimed inode map"
msgstr ""
-#: e2fsck/pass1b.c:610 e2fsck/pass1b.c:730
+#: e2fsck/pass1b.c:625 e2fsck/pass1b.c:746
#, c-format
msgid "internal error: can't find dup_blk for %llu\n"
msgstr ""
-#: e2fsck/pass1b.c:821
+#: e2fsck/pass1b.c:852
msgid "returned from clone_file_block"
msgstr ""
-#: e2fsck/pass1b.c:843
+#: e2fsck/pass1b.c:874
#, c-format
msgid "internal error: couldn't lookup EA block record for %llu"
msgstr ""
-#: e2fsck/pass1b.c:855
+#: e2fsck/pass1b.c:886
#, c-format
msgid "internal error: couldn't lookup EA inode record for %u"
msgstr ""
@@ -492,73 +494,73 @@ msgstr ""
msgid "reading directory block"
msgstr ""
-#: e2fsck/pass1.c:598
+#: e2fsck/pass1.c:634
msgid "in-use inode map"
msgstr ""
-#: e2fsck/pass1.c:609
+#: e2fsck/pass1.c:645
msgid "directory inode map"
msgstr ""
-#: e2fsck/pass1.c:619
+#: e2fsck/pass1.c:655
msgid "regular file inode map"
msgstr ""
-#: e2fsck/pass1.c:628 misc/e2image.c:1265
+#: e2fsck/pass1.c:664 misc/e2image.c:1265
msgid "in-use block map"
msgstr ""
-#: e2fsck/pass1.c:693
+#: e2fsck/pass1.c:730
msgid "opening inode scan"
msgstr ""
-#: e2fsck/pass1.c:727
+#: e2fsck/pass1.c:764
msgid "getting next inode from scan"
msgstr ""
-#: e2fsck/pass1.c:1243
+#: e2fsck/pass1.c:1278
msgid "Pass 1"
msgstr ""
-#: e2fsck/pass1.c:1300
+#: e2fsck/pass1.c:1335
#, c-format
msgid "reading indirect blocks of inode %u"
msgstr ""
-#: e2fsck/pass1.c:1350
+#: e2fsck/pass1.c:1385
msgid "bad inode map"
msgstr ""
-#: e2fsck/pass1.c:1373
+#: e2fsck/pass1.c:1408
msgid "inode in bad block map"
msgstr ""
-#: e2fsck/pass1.c:1393
+#: e2fsck/pass1.c:1428
msgid "imagic inode map"
msgstr ""
-#: e2fsck/pass1.c:1420
+#: e2fsck/pass1.c:1455
msgid "multiply claimed block map"
msgstr ""
-#: e2fsck/pass1.c:1531
+#: e2fsck/pass1.c:1566
msgid "ext attr block map"
msgstr ""
-#: e2fsck/pass1.c:2315
+#: e2fsck/pass1.c:2514
#, c-format
msgid "%6lu(%c): expecting %6lu got phys %6lu (blkcnt %lld)\n"
msgstr ""
-#: e2fsck/pass1.c:2678
+#: e2fsck/pass1.c:2896
msgid "block bitmap"
msgstr ""
-#: e2fsck/pass1.c:2684
+#: e2fsck/pass1.c:2902
msgid "inode bitmap"
msgstr ""
-#: e2fsck/pass1.c:2690
+#: e2fsck/pass1.c:2908
msgid "inode table"
msgstr ""
@@ -578,11 +580,11 @@ msgstr ""
msgid "Peak memory"
msgstr ""
-#: e2fsck/pass3.c:137
+#: e2fsck/pass3.c:148
msgid "Pass 3"
msgstr ""
-#: e2fsck/pass3.c:323
+#: e2fsck/pass3.c:340
msgid "inode loop detection bitmap"
msgstr ""
@@ -926,7 +928,7 @@ msgstr ""
msgid "Clear @j"
msgstr ""
-#: e2fsck/problem.c:248 e2fsck/problem.c:702
+#: e2fsck/problem.c:248 e2fsck/problem.c:707
#. @-expanded: filesystem has feature flag(s) set, but is a revision 0 filesystem.
msgid "@f has feature flag(s) set, but is a revision 0 @f. "
msgstr ""
@@ -1162,122 +1164,126 @@ msgstr ""
msgid "@S 64bit filesystems needs extents to access the whole disk. "
msgstr ""
-#: e2fsck/problem.c:447
+#: e2fsck/problem.c:445
+msgid "First_meta_bg is too big. (%N, max value %g). "
+msgstr ""
+
+#: e2fsck/problem.c:452
#. @-expanded: Pass 1: Checking inodes, blocks, and sizes\n
msgid "Pass 1: Checking @is, @bs, and sizes\n"
msgstr ""
-#: e2fsck/problem.c:451
+#: e2fsck/problem.c:456
#. @-expanded: root inode is not a directory.
msgid "@r is not a @d. "
msgstr ""
-#: e2fsck/problem.c:456
+#: e2fsck/problem.c:461
#. @-expanded: root inode has dtime set (probably due to old mke2fs).
msgid "@r has dtime set (probably due to old mke2fs). "
msgstr ""
-#: e2fsck/problem.c:461
+#: e2fsck/problem.c:466
#. @-expanded: Reserved inode %i (%Q) has invalid mode.
msgid "Reserved @i %i (%Q) has @n mode. "
msgstr ""
-#: e2fsck/problem.c:466
+#: e2fsck/problem.c:471
#, c-format
#. @-expanded: deleted inode %i has zero dtime.
msgid "@D @i %i has zero dtime. "
msgstr ""
-#: e2fsck/problem.c:471
+#: e2fsck/problem.c:476
#, c-format
#. @-expanded: inode %i is in use, but has dtime set.
msgid "@i %i is in use, but has dtime set. "
msgstr ""
-#: e2fsck/problem.c:476
+#: e2fsck/problem.c:481
#, c-format
#. @-expanded: inode %i is a zero-length directory.
msgid "@i %i is a @z @d. "
msgstr ""
-#: e2fsck/problem.c:481
+#: e2fsck/problem.c:486
#. @-expanded: group %g's block bitmap at %b conflicts with some other fs block.\n
msgid "@g %g's @b @B at %b @C.\n"
msgstr ""
-#: e2fsck/problem.c:486
+#: e2fsck/problem.c:491
#. @-expanded: group %g's inode bitmap at %b conflicts with some other fs block.\n
msgid "@g %g's @i @B at %b @C.\n"
msgstr ""
-#: e2fsck/problem.c:491
+#: e2fsck/problem.c:496
#. @-expanded: group %g's inode table at %b conflicts with some other fs block.\n
msgid "@g %g's @i table at %b @C.\n"
msgstr ""
-#: e2fsck/problem.c:496
+#: e2fsck/problem.c:501
#. @-expanded: group %g's block bitmap (%b) is bad.
msgid "@g %g's @b @B (%b) is bad. "
msgstr ""
-#: e2fsck/problem.c:501
+#: e2fsck/problem.c:506
#. @-expanded: group %g's inode bitmap (%b) is bad.
msgid "@g %g's @i @B (%b) is bad. "
msgstr ""
-#: e2fsck/problem.c:506
+#: e2fsck/problem.c:511
#. @-expanded: inode %i, i_size is %Is, should be %N.
msgid "@i %i, i_size is %Is, @s %N. "
msgstr ""
-#: e2fsck/problem.c:511
+#: e2fsck/problem.c:516
#. @-expanded: inode %i, i_blocks is %Ib, should be %N.
msgid "@i %i, i_@bs is %Ib, @s %N. "
msgstr ""
-#: e2fsck/problem.c:516
+#: e2fsck/problem.c:521
#. @-expanded: illegal %B (%b) in inode %i.
msgid "@I %B (%b) in @i %i. "
msgstr ""
-#: e2fsck/problem.c:521
+#: e2fsck/problem.c:526
#. @-expanded: %B (%b) overlaps filesystem metadata in inode %i.
msgid "%B (%b) overlaps @f metadata in @i %i. "
msgstr ""
-#: e2fsck/problem.c:526
+#: e2fsck/problem.c:531
#, c-format
#. @-expanded: inode %i has illegal block(s).
msgid "@i %i has illegal @b(s). "
msgstr ""
-#: e2fsck/problem.c:531
+#: e2fsck/problem.c:536
#, c-format
#. @-expanded: Too many illegal blocks in inode %i.\n
msgid "Too many illegal @bs in @i %i.\n"
msgstr ""
-#: e2fsck/problem.c:536
+#: e2fsck/problem.c:541
#. @-expanded: illegal %B (%b) in bad block inode.
msgid "@I %B (%b) in bad @b @i. "
msgstr ""
-#: e2fsck/problem.c:541
+#: e2fsck/problem.c:546
#. @-expanded: Bad block inode has illegal block(s).
msgid "Bad @b @i has illegal @b(s). "
msgstr ""
-#: e2fsck/problem.c:546
+#: e2fsck/problem.c:551
#. @-expanded: Duplicate or bad block in use!\n
msgid "Duplicate or bad @b in use!\n"
msgstr ""
-#: e2fsck/problem.c:551
+#: e2fsck/problem.c:556
#. @-expanded: Bad block %b used as bad block inode indirect block.
msgid "Bad @b %b used as bad @b @i indirect @b. "
msgstr ""
-#: e2fsck/problem.c:556
+#: e2fsck/problem.c:561
#. @-expanded: \n
#. @-expanded: The bad block inode has probably been corrupted. You probably\n
#. @-expanded: should stop now and run e2fsck -c to scan for bad blocks\n
@@ -1289,7 +1295,7 @@ msgid ""
"in the @f.\n"
msgstr ""
-#: e2fsck/problem.c:563
+#: e2fsck/problem.c:568
#. @-expanded: \n
#. @-expanded: If the block is really bad, the filesystem can not be fixed.\n
msgid ""
@@ -1297,7 +1303,7 @@ msgid ""
"If the @b is really bad, the @f can not be fixed.\n"
msgstr ""
-#: e2fsck/problem.c:568
+#: e2fsck/problem.c:573
#. @-expanded: You can remove this block from the bad block list and hope\n
#. @-expanded: that the block is really OK. But there are no guarantees.\n
#. @-expanded: \n
@@ -1307,120 +1313,120 @@ msgid ""
"\n"
msgstr ""
-#: e2fsck/problem.c:574
+#: e2fsck/problem.c:579
#. @-expanded: The primary superblock (%b) is on the bad block list.\n
msgid "The primary @S (%b) is on the bad @b list.\n"
msgstr ""
-#: e2fsck/problem.c:579
+#: e2fsck/problem.c:584
#. @-expanded: Block %b in the primary group descriptors is on the bad block list\n
msgid "Block %b in the primary @g descriptors is on the bad @b list\n"
msgstr ""
-#: e2fsck/problem.c:585
+#: e2fsck/problem.c:590
#. @-expanded: Warning: Group %g's superblock (%b) is bad.\n
msgid "Warning: Group %g's @S (%b) is bad.\n"
msgstr ""
-#: e2fsck/problem.c:590
+#: e2fsck/problem.c:595
#. @-expanded: Warning: Group %g's copy of the group descriptors has a bad block (%b).\n
msgid "Warning: Group %g's copy of the @g descriptors has a bad @b (%b).\n"
msgstr ""
-#: e2fsck/problem.c:596
+#: e2fsck/problem.c:601
#. @-expanded: Programming error? block #%b claimed for no reason in process_bad_block.\n
msgid "Programming error? @b #%b claimed for no reason in process_bad_@b.\n"
msgstr ""
-#: e2fsck/problem.c:602
+#: e2fsck/problem.c:607
#. @-expanded: error allocating %N contiguous block(s) in block group %g for %s: %m\n
msgid "@A %N contiguous @b(s) in @b @g %g for %s: %m\n"
msgstr ""
-#: e2fsck/problem.c:607
+#: e2fsck/problem.c:612
#, c-format
#. @-expanded: error allocating block buffer for relocating %s\n
msgid "@A @b buffer for relocating %s\n"
msgstr ""
-#: e2fsck/problem.c:612
+#: e2fsck/problem.c:617
#. @-expanded: Relocating group %g's %s from %b to %c...\n
msgid "Relocating @g %g's %s from %b to %c...\n"
msgstr ""
-#: e2fsck/problem.c:617
+#: e2fsck/problem.c:622
#, c-format
#. @-expanded: Relocating group %g's %s to %c...\n
msgid "Relocating @g %g's %s to %c...\n"
msgstr ""
-#: e2fsck/problem.c:622
+#: e2fsck/problem.c:627
#. @-expanded: Warning: could not read block %b of %s: %m\n
msgid "Warning: could not read @b %b of %s: %m\n"
msgstr ""
-#: e2fsck/problem.c:627
+#: e2fsck/problem.c:632
#. @-expanded: Warning: could not write block %b for %s: %m\n
msgid "Warning: could not write @b %b for %s: %m\n"
msgstr ""
-#: e2fsck/problem.c:632 e2fsck/problem.c:1481
+#: e2fsck/problem.c:637 e2fsck/problem.c:1501
#. @-expanded: error allocating inode bitmap (%N): %m\n
msgid "@A @i @B (%N): %m\n"
msgstr ""
-#: e2fsck/problem.c:637
+#: e2fsck/problem.c:642
#. @-expanded: error allocating block bitmap (%N): %m\n
msgid "@A @b @B (%N): %m\n"
msgstr ""
-#: e2fsck/problem.c:642
+#: e2fsck/problem.c:647
#, c-format
#. @-expanded: error allocating icount link information: %m\n
msgid "@A icount link information: %m\n"
msgstr ""
-#: e2fsck/problem.c:647
+#: e2fsck/problem.c:652
#, c-format
#. @-expanded: error allocating directory block array: %m\n
msgid "@A @d @b array: %m\n"
msgstr ""
-#: e2fsck/problem.c:652
+#: e2fsck/problem.c:657
#, c-format
#. @-expanded: Error while scanning inodes (%i): %m\n
msgid "Error while scanning @is (%i): %m\n"
msgstr ""
-#: e2fsck/problem.c:657
+#: e2fsck/problem.c:662
#, c-format
#. @-expanded: Error while iterating over blocks in inode %i: %m\n
msgid "Error while iterating over @bs in @i %i: %m\n"
msgstr ""
-#: e2fsck/problem.c:662
+#: e2fsck/problem.c:667
#. @-expanded: Error storing inode count information (inode=%i, count=%N): %m\n
msgid "Error storing @i count information (@i=%i, count=%N): %m\n"
msgstr ""
-#: e2fsck/problem.c:667
+#: e2fsck/problem.c:672
#. @-expanded: Error storing directory block information (inode=%i, block=%b, num=%N): %m\n
msgid "Error storing @d @b information (@i=%i, @b=%b, num=%N): %m\n"
msgstr ""
-#: e2fsck/problem.c:673
+#: e2fsck/problem.c:678
#, c-format
#. @-expanded: Error reading inode %i: %m\n
msgid "Error reading @i %i: %m\n"
msgstr ""
-#: e2fsck/problem.c:681
+#: e2fsck/problem.c:686
#, c-format
#. @-expanded: inode %i has imagic flag set.
msgid "@i %i has imagic flag set. "
msgstr ""
-#: e2fsck/problem.c:686
+#: e2fsck/problem.c:691
#, c-format
#. @-expanded: Special (device/socket/fifo/symlink) file (inode %i) has immutable\n
#. @-expanded: or append-only flag set.
@@ -1429,148 +1435,148 @@ msgid ""
"or append-only flag set. "
msgstr ""
-#: e2fsck/problem.c:692
+#: e2fsck/problem.c:697
#, c-format
#. @-expanded: inode %i has compression flag set on filesystem without compression support.
msgid "@i %i has @cion flag set on @f without @cion support. "
msgstr ""
-#: e2fsck/problem.c:697
+#: e2fsck/problem.c:702
#, c-format
#. @-expanded: Special (device/socket/fifo) inode %i has non-zero size.
msgid "Special (@v/socket/fifo) @i %i has non-zero size. "
msgstr ""
-#: e2fsck/problem.c:707
+#: e2fsck/problem.c:712
#. @-expanded: journal inode is not in use, but contains data.
msgid "@j @i is not in use, but contains data. "
msgstr ""
-#: e2fsck/problem.c:712
+#: e2fsck/problem.c:717
#. @-expanded: journal is not regular file.
msgid "@j is not regular file. "
msgstr ""
-#: e2fsck/problem.c:717
+#: e2fsck/problem.c:722
#, c-format
#. @-expanded: inode %i was part of the orphaned inode list.
msgid "@i %i was part of the @o @i list. "
msgstr ""
-#: e2fsck/problem.c:723
+#: e2fsck/problem.c:728
#. @-expanded: inodes that were part of a corrupted orphan linked list found.
msgid "@is that were part of a corrupted orphan linked list found. "
msgstr ""
-#: e2fsck/problem.c:728
+#: e2fsck/problem.c:733
#. @-expanded: error allocating refcount structure (%N): %m\n
msgid "@A refcount structure (%N): %m\n"
msgstr ""
-#: e2fsck/problem.c:733
+#: e2fsck/problem.c:738
#. @-expanded: Error reading extended attribute block %b for inode %i.
msgid "Error reading @a @b %b for @i %i. "
msgstr ""
-#: e2fsck/problem.c:738
+#: e2fsck/problem.c:743
#. @-expanded: inode %i has a bad extended attribute block %b.
msgid "@i %i has a bad @a @b %b. "
msgstr ""
-#: e2fsck/problem.c:743
+#: e2fsck/problem.c:748
#. @-expanded: Error reading extended attribute block %b (%m).
msgid "Error reading @a @b %b (%m). "
msgstr ""
-#: e2fsck/problem.c:748
+#: e2fsck/problem.c:753
#. @-expanded: extended attribute block %b has reference count %r, should be %N.
msgid "@a @b %b has reference count %r, @s %N. "
msgstr ""
-#: e2fsck/problem.c:753
+#: e2fsck/problem.c:758
#. @-expanded: Error writing extended attribute block %b (%m).
msgid "Error writing @a @b %b (%m). "
msgstr ""
-#: e2fsck/problem.c:758
+#: e2fsck/problem.c:763
#. @-expanded: extended attribute block %b has h_blocks > 1.
msgid "@a @b %b has h_@bs > 1. "
msgstr ""
-#: e2fsck/problem.c:763
+#: e2fsck/problem.c:768
#. @-expanded: error allocating extended attribute block %b.
msgid "@A @a @b %b. "
msgstr ""
-#: e2fsck/problem.c:768
+#: e2fsck/problem.c:773
#. @-expanded: extended attribute block %b is corrupt (allocation collision).
msgid "@a @b %b is corrupt (allocation collision). "
msgstr ""
-#: e2fsck/problem.c:773
+#: e2fsck/problem.c:778
#. @-expanded: extended attribute block %b is corrupt (invalid name).
msgid "@a @b %b is corrupt (@n name). "
msgstr ""
-#: e2fsck/problem.c:778
+#: e2fsck/problem.c:783
#. @-expanded: extended attribute block %b is corrupt (invalid value).
msgid "@a @b %b is corrupt (@n value). "
msgstr ""
-#: e2fsck/problem.c:783
+#: e2fsck/problem.c:788
#, c-format
#. @-expanded: inode %i is too big.
msgid "@i %i is too big. "
msgstr ""
-#: e2fsck/problem.c:787
+#: e2fsck/problem.c:792
#. @-expanded: %B (%b) causes directory to be too big.
msgid "%B (%b) causes @d to be too big. "
msgstr ""
-#: e2fsck/problem.c:792
+#: e2fsck/problem.c:797
msgid "%B (%b) causes file to be too big. "
msgstr ""
-#: e2fsck/problem.c:797
+#: e2fsck/problem.c:802
msgid "%B (%b) causes symlink to be too big. "
msgstr ""
-#: e2fsck/problem.c:802
+#: e2fsck/problem.c:807
#, c-format
#. @-expanded: inode %i has INDEX_FL flag set on filesystem without htree support.\n
msgid "@i %i has INDEX_FL flag set on @f without htree support.\n"
msgstr ""
-#: e2fsck/problem.c:807
+#: e2fsck/problem.c:812
#, c-format
#. @-expanded: inode %i has INDEX_FL flag set but is not a directory.\n
msgid "@i %i has INDEX_FL flag set but is not a @d.\n"
msgstr ""
-#: e2fsck/problem.c:812
+#: e2fsck/problem.c:817
#, c-format
#. @-expanded: HTREE directory inode %i has an invalid root node.\n
msgid "@h %i has an @n root node.\n"
msgstr ""
-#: e2fsck/problem.c:817
+#: e2fsck/problem.c:822
#. @-expanded: HTREE directory inode %i has an unsupported hash version (%N)\n
msgid "@h %i has an unsupported hash version (%N)\n"
msgstr ""
-#: e2fsck/problem.c:822
+#: e2fsck/problem.c:827
#, c-format
#. @-expanded: HTREE directory inode %i uses an incompatible htree root node flag.\n
msgid "@h %i uses an incompatible htree root node flag.\n"
msgstr ""
-#: e2fsck/problem.c:827
+#: e2fsck/problem.c:832
#. @-expanded: HTREE directory inode %i has a tree depth (%N) which is too big\n
msgid "@h %i has a tree depth (%N) which is too big\n"
msgstr ""
-#: e2fsck/problem.c:832
+#: e2fsck/problem.c:837
#. @-expanded: Bad block inode has an indirect block (%b) that conflicts with\n
#. @-expanded: filesystem metadata.
msgid ""
@@ -1578,54 +1584,54 @@ msgid ""
"@f metadata. "
msgstr ""
-#: e2fsck/problem.c:838
+#: e2fsck/problem.c:843
#, c-format
#. @-expanded: Resize inode (re)creation failed: %m.
msgid "Resize @i (re)creation failed: %m."
msgstr ""
-#: e2fsck/problem.c:843
+#: e2fsck/problem.c:848
#. @-expanded: inode %i has a extra size (%IS) which is invalid\n
msgid "@i %i has a extra size (%IS) which is @n\n"
msgstr ""
-#: e2fsck/problem.c:848
+#: e2fsck/problem.c:853
#. @-expanded: extended attribute in inode %i has a namelen (%N) which is invalid\n
msgid "@a in @i %i has a namelen (%N) which is @n\n"
msgstr ""
-#: e2fsck/problem.c:853
+#: e2fsck/problem.c:858
#. @-expanded: extended attribute in inode %i has a value offset (%N) which is invalid\n
msgid "@a in @i %i has a value offset (%N) which is @n\n"
msgstr ""
-#: e2fsck/problem.c:858
+#: e2fsck/problem.c:863
#. @-expanded: extended attribute in inode %i has a value block (%N) which is invalid (must be 0)\n
msgid "@a in @i %i has a value @b (%N) which is @n (must be 0)\n"
msgstr ""
-#: e2fsck/problem.c:863
+#: e2fsck/problem.c:868
#. @-expanded: extended attribute in inode %i has a value size (%N) which is invalid\n
msgid "@a in @i %i has a value size (%N) which is @n\n"
msgstr ""
-#: e2fsck/problem.c:868
+#: e2fsck/problem.c:873
#. @-expanded: extended attribute in inode %i has a hash (%N) which is invalid\n
msgid "@a in @i %i has a hash (%N) which is @n\n"
msgstr ""
-#: e2fsck/problem.c:873
+#: e2fsck/problem.c:878
#. @-expanded: inode %i is a %It but it looks like it is really a directory.\n
msgid "@i %i is a %It but it looks like it is really a directory.\n"
msgstr ""
-#: e2fsck/problem.c:878
+#: e2fsck/problem.c:883
#, c-format
#. @-expanded: Error while reading over extent tree in inode %i: %m\n
msgid "Error while reading over @x tree in @i %i: %m\n"
msgstr ""
-#: e2fsck/problem.c:883
+#: e2fsck/problem.c:888
#. @-expanded: Failed to iterate extents in inode %i\n
#. @-expanded: \t(op %s, blk %b, lblk %c): %m\n
msgid ""
@@ -1633,7 +1639,7 @@ msgid ""
"\t(op %s, blk %b, lblk %c): %m\n"
msgstr ""
-#: e2fsck/problem.c:889
+#: e2fsck/problem.c:894
#. @-expanded: inode %i has an invalid extent\n
#. @-expanded: \t(logical block %c, invalid physical block %b, len %N)\n
msgid ""
@@ -1641,7 +1647,7 @@ msgid ""
"\t(logical @b %c, @n physical @b %b, len %N)\n"
msgstr ""
-#: e2fsck/problem.c:894
+#: e2fsck/problem.c:899
#. @-expanded: inode %i has an invalid extent\n
#. @-expanded: \t(logical block %c, physical block %b, invalid len %N)\n
msgid ""
@@ -1649,30 +1655,30 @@ msgid ""
"\t(logical @b %c, physical @b %b, @n len %N)\n"
msgstr ""
-#: e2fsck/problem.c:899
+#: e2fsck/problem.c:904
#, c-format
#. @-expanded: inode %i has EXTENTS_FL flag set on filesystem without extents support.\n
msgid "@i %i has EXTENTS_FL flag set on @f without extents support.\n"
msgstr ""
-#: e2fsck/problem.c:904
+#: e2fsck/problem.c:909
#, c-format
#. @-expanded: inode %i is in extent format, but superblock is missing EXTENTS feature\n
msgid "@i %i is in extent format, but @S is missing EXTENTS feature\n"
msgstr ""
-#: e2fsck/problem.c:909
+#: e2fsck/problem.c:914
#, c-format
#. @-expanded: inode %i missing EXTENT_FL, but is in extents format\n
msgid "@i %i missing EXTENT_FL, but is in extents format\n"
msgstr ""
-#: e2fsck/problem.c:914
+#: e2fsck/problem.c:919
#, c-format
msgid "Fast symlink %i has EXTENT_FL set. "
msgstr ""
-#: e2fsck/problem.c:919
+#: e2fsck/problem.c:924
#. @-expanded: inode %i has out of order extents\n
#. @-expanded: \t(invalid logical block %c, physical block %b, len %N)\n
msgid ""
@@ -1680,38 +1686,38 @@ msgid ""
"\t(@n logical @b %c, physical @b %b, len %N)\n"
msgstr ""
-#: e2fsck/problem.c:923
+#: e2fsck/problem.c:928
#. @-expanded: inode %i has an invalid extent node (blk %b, lblk %c)\n
msgid "@i %i has an invalid extent node (blk %b, lblk %c)\n"
msgstr ""
-#: e2fsck/problem.c:928
+#: e2fsck/problem.c:933
#, c-format
#. @-expanded: Error converting subcluster block bitmap: %m\n
msgid "Error converting subcluster @b @B: %m\n"
msgstr ""
-#: e2fsck/problem.c:933
+#: e2fsck/problem.c:938
#. @-expanded: quota inode is not regular file.
msgid "@q @i is not regular file. "
msgstr ""
-#: e2fsck/problem.c:938
+#: e2fsck/problem.c:943
#. @-expanded: quota inode is not in use, but contains data.
msgid "@q @i is not in use, but contains data. "
msgstr ""
-#: e2fsck/problem.c:943
+#: e2fsck/problem.c:948
#. @-expanded: quota inode is visible to the user.
msgid "@q @i is visible to the user. "
msgstr ""
-#: e2fsck/problem.c:948
+#: e2fsck/problem.c:953
#. @-expanded: The bad block inode looks invalid.
msgid "The bad @b @i looks @n. "
msgstr ""
-#: e2fsck/problem.c:953
+#: e2fsck/problem.c:958
#. @-expanded: inode %i has zero length extent\n
#. @-expanded: \t(invalid logical block %c, physical block %b)\n
msgid ""
@@ -1719,7 +1725,7 @@ msgid ""
"\t(@n logical @b %c, physical @b %b)\n"
msgstr ""
-#: e2fsck/problem.c:960
+#: e2fsck/problem.c:965
#. @-expanded: Interior extent node level %N of inode %i:\n
#. @-expanded: Logical start %b does not match logical start %c at next level.
msgid ""
@@ -1727,7 +1733,7 @@ msgid ""
"Logical start %b does not match logical start %c at next level. "
msgstr ""
-#: e2fsck/problem.c:966
+#: e2fsck/problem.c:971
#. @-expanded: inode %i, end of extent exceeds allowed value\n
#. @-expanded: \t(logical block %c, physical block %b, len %N)\n
msgid ""
@@ -1735,7 +1741,26 @@ msgid ""
"\t(logical @b %c, physical @b %b, len %N)\n"
msgstr ""
-#: e2fsck/problem.c:974
+#: e2fsck/problem.c:977
+#. @-expanded: directory inode %i block %b should be at block %c.
+msgid "@d @i %i @b %b should be at @b %c. "
+msgstr ""
+
+#: e2fsck/problem.c:982
+#, c-format
+#. @-expanded: directory inode %i has extent marked uninitialized at block %c.
+msgid "@d @i %i has @x marked uninitialized at @b %c. "
+msgstr ""
+
+#: e2fsck/problem.c:987
+#. @-expanded: inode %i logical block %b (physical block %c) violates cluster allocation rules.\n
+#. @-expanded: Will fix in pass 1B.\n
+msgid ""
+"@i %i logical @b %b (physical @b %c) violates cluster allocation rules.\n"
+"Will fix in pass 1B.\n"
+msgstr ""
+
+#: e2fsck/problem.c:994
#. @-expanded: \n
#. @-expanded: Running additional passes to resolve blocks claimed by more than one inode...\n
#. @-expanded: Pass 1B: Rescanning for multiply-claimed blocks\n
@@ -1745,45 +1770,45 @@ msgid ""
"Pass 1B: Rescanning for @m @bs\n"
msgstr ""
-#: e2fsck/problem.c:980
+#: e2fsck/problem.c:1000
#, c-format
#. @-expanded: multiply-claimed block(s) in inode %i:
msgid "@m @b(s) in @i %i:"
msgstr ""
-#: e2fsck/problem.c:995
+#: e2fsck/problem.c:1015
#, c-format
msgid "Error while scanning inodes (%i): %m\n"
msgstr ""
-#: e2fsck/problem.c:1000
+#: e2fsck/problem.c:1020
#, c-format
#. @-expanded: error allocating inode bitmap (inode_dup_map): %m\n
msgid "@A @i @B (@i_dup_map): %m\n"
msgstr ""
-#: e2fsck/problem.c:1005
+#: e2fsck/problem.c:1025
#, c-format
#. @-expanded: Error while iterating over blocks in inode %i (%s): %m\n
msgid "Error while iterating over @bs in @i %i (%s): %m\n"
msgstr ""
-#: e2fsck/problem.c:1010 e2fsck/problem.c:1325
+#: e2fsck/problem.c:1030 e2fsck/problem.c:1345
#. @-expanded: Error adjusting refcount for extended attribute block %b (inode %i): %m\n
msgid "Error adjusting refcount for @a @b %b (@i %i): %m\n"
msgstr ""
-#: e2fsck/problem.c:1015
+#: e2fsck/problem.c:1035
#. @-expanded: Pass 1C: Scanning directories for inodes with multiply-claimed blocks\n
msgid "Pass 1C: Scanning directories for @is with @m @bs\n"
msgstr ""
-#: e2fsck/problem.c:1021
+#: e2fsck/problem.c:1041
#. @-expanded: Pass 1D: Reconciling multiply-claimed blocks\n
msgid "Pass 1D: Reconciling @m @bs\n"
msgstr ""
-#: e2fsck/problem.c:1026
+#: e2fsck/problem.c:1046
#. @-expanded: File %Q (inode #%i, mod time %IM) \n
#. @-expanded: has %r multiply-claimed block(s), shared with %N file(s):\n
msgid ""
@@ -1791,17 +1816,17 @@ msgid ""
" has %r @m @b(s), shared with %N file(s):\n"
msgstr ""
-#: e2fsck/problem.c:1032
+#: e2fsck/problem.c:1052
#. @-expanded: \t%Q (inode #%i, mod time %IM)\n
msgid "\t%Q (@i #%i, mod time %IM)\n"
msgstr ""
-#: e2fsck/problem.c:1037
+#: e2fsck/problem.c:1057
#. @-expanded: \t<filesystem metadata>\n
msgid "\t<@f metadata>\n"
msgstr ""
-#: e2fsck/problem.c:1042
+#: e2fsck/problem.c:1062
#. @-expanded: (There are %N inodes containing multiply-claimed blocks.)\n
#. @-expanded: \n
msgid ""
@@ -1809,7 +1834,7 @@ msgid ""
"\n"
msgstr ""
-#: e2fsck/problem.c:1047
+#: e2fsck/problem.c:1067
#. @-expanded: multiply-claimed blocks already reassigned or cloned.\n
#. @-expanded: \n
msgid ""
@@ -1817,313 +1842,313 @@ msgid ""
"\n"
msgstr ""
-#: e2fsck/problem.c:1060
+#: e2fsck/problem.c:1080
#, c-format
msgid "Couldn't clone file: %m\n"
msgstr ""
-#: e2fsck/problem.c:1066
+#: e2fsck/problem.c:1086
#. @-expanded: Pass 2: Checking directory structure\n
msgid "Pass 2: Checking @d structure\n"
msgstr ""
-#: e2fsck/problem.c:1071
+#: e2fsck/problem.c:1091
#, c-format
#. @-expanded: invalid inode number for '.' in directory inode %i.\n
msgid "@n @i number for '.' in @d @i %i.\n"
msgstr ""
-#: e2fsck/problem.c:1076
+#: e2fsck/problem.c:1096
#. @-expanded: entry '%Dn' in %p (%i) has invalid inode #: %Di.\n
msgid "@E has @n @i #: %Di.\n"
msgstr ""
-#: e2fsck/problem.c:1081
+#: e2fsck/problem.c:1101
#. @-expanded: entry '%Dn' in %p (%i) has deleted/unused inode %Di.
msgid "@E has @D/unused @i %Di. "
msgstr ""
-#: e2fsck/problem.c:1086
+#: e2fsck/problem.c:1106
#. @-expanded: entry '%Dn' in %p (%i) is a link to '.'
msgid "@E @L to '.' "
msgstr ""
-#: e2fsck/problem.c:1091
+#: e2fsck/problem.c:1111
#. @-expanded: entry '%Dn' in %p (%i) points to inode (%Di) located in a bad block.\n
msgid "@E points to @i (%Di) located in a bad @b.\n"
msgstr ""
-#: e2fsck/problem.c:1096
+#: e2fsck/problem.c:1116
#. @-expanded: entry '%Dn' in %p (%i) is a link to directory %P (%Di).\n
msgid "@E @L to @d %P (%Di).\n"
msgstr ""
-#: e2fsck/problem.c:1101
+#: e2fsck/problem.c:1121
#. @-expanded: entry '%Dn' in %p (%i) is a link to the root inode.\n
msgid "@E @L to the @r.\n"
msgstr ""
-#: e2fsck/problem.c:1106
+#: e2fsck/problem.c:1126
#. @-expanded: entry '%Dn' in %p (%i) has illegal characters in its name.\n
msgid "@E has illegal characters in its name.\n"
msgstr ""
-#: e2fsck/problem.c:1111
+#: e2fsck/problem.c:1131
#, c-format
#. @-expanded: Missing '.' in directory inode %i.\n
msgid "Missing '.' in @d @i %i.\n"
msgstr ""
-#: e2fsck/problem.c:1116
+#: e2fsck/problem.c:1136
#, c-format
#. @-expanded: Missing '..' in directory inode %i.\n
msgid "Missing '..' in @d @i %i.\n"
msgstr ""
-#: e2fsck/problem.c:1121
+#: e2fsck/problem.c:1141
#. @-expanded: First entry '%Dn' (inode=%Di) in directory inode %i (%p) should be '.'\n
msgid "First @e '%Dn' (@i=%Di) in @d @i %i (%p) @s '.'\n"
msgstr ""
-#: e2fsck/problem.c:1126
+#: e2fsck/problem.c:1146
#. @-expanded: Second entry '%Dn' (inode=%Di) in directory inode %i should be '..'\n
msgid "Second @e '%Dn' (@i=%Di) in @d @i %i @s '..'\n"
msgstr ""
-#: e2fsck/problem.c:1131
+#: e2fsck/problem.c:1151
#. @-expanded: i_faddr for inode %i (%Q) is %IF, should be zero.\n
msgid "i_faddr @F %IF, @s zero.\n"
msgstr ""
-#: e2fsck/problem.c:1136
+#: e2fsck/problem.c:1156
#. @-expanded: i_file_acl for inode %i (%Q) is %If, should be zero.\n
msgid "i_file_acl @F %If, @s zero.\n"
msgstr ""
-#: e2fsck/problem.c:1141
+#: e2fsck/problem.c:1161
#. @-expanded: i_dir_acl for inode %i (%Q) is %Id, should be zero.\n
msgid "i_dir_acl @F %Id, @s zero.\n"
msgstr ""
-#: e2fsck/problem.c:1146
+#: e2fsck/problem.c:1166
#. @-expanded: i_frag for inode %i (%Q) is %N, should be zero.\n
msgid "i_frag @F %N, @s zero.\n"
msgstr ""
-#: e2fsck/problem.c:1151
+#: e2fsck/problem.c:1171
#. @-expanded: i_fsize for inode %i (%Q) is %N, should be zero.\n
msgid "i_fsize @F %N, @s zero.\n"
msgstr ""
-#: e2fsck/problem.c:1156
+#: e2fsck/problem.c:1176
#. @-expanded: inode %i (%Q) has invalid mode (%Im).\n
msgid "@i %i (%Q) has @n mode (%Im).\n"
msgstr ""
-#: e2fsck/problem.c:1161
+#: e2fsck/problem.c:1181
#. @-expanded: directory inode %i, %B, offset %N: directory corrupted\n
msgid "@d @i %i, %B, offset %N: @d corrupted\n"
msgstr ""
-#: e2fsck/problem.c:1166
+#: e2fsck/problem.c:1186
#. @-expanded: directory inode %i, %B, offset %N: filename too long\n
msgid "@d @i %i, %B, offset %N: filename too long\n"
msgstr ""
-#: e2fsck/problem.c:1171
+#: e2fsck/problem.c:1191
#. @-expanded: directory inode %i has an unallocated %B.
msgid "@d @i %i has an unallocated %B. "
msgstr ""
-#: e2fsck/problem.c:1176
+#: e2fsck/problem.c:1196
#, c-format
#. @-expanded: '.' directory entry in directory inode %i is not NULL terminated\n
msgid "'.' @d @e in @d @i %i is not NULL terminated\n"
msgstr ""
-#: e2fsck/problem.c:1181
+#: e2fsck/problem.c:1201
#, c-format
#. @-expanded: '..' directory entry in directory inode %i is not NULL terminated\n
msgid "'..' @d @e in @d @i %i is not NULL terminated\n"
msgstr ""
-#: e2fsck/problem.c:1186
+#: e2fsck/problem.c:1206
#. @-expanded: inode %i (%Q) is an illegal character device.\n
msgid "@i %i (%Q) is an @I character @v.\n"
msgstr ""
-#: e2fsck/problem.c:1191
+#: e2fsck/problem.c:1211
#. @-expanded: inode %i (%Q) is an illegal block device.\n
msgid "@i %i (%Q) is an @I @b @v.\n"
msgstr ""
-#: e2fsck/problem.c:1196
+#: e2fsck/problem.c:1216
#. @-expanded: entry '%Dn' in %p (%i) is duplicate '.' entry.\n
msgid "@E is duplicate '.' @e.\n"
msgstr ""
-#: e2fsck/problem.c:1201
+#: e2fsck/problem.c:1221
#. @-expanded: entry '%Dn' in %p (%i) is duplicate '..' entry.\n
msgid "@E is duplicate '..' @e.\n"
msgstr ""
-#: e2fsck/problem.c:1206 e2fsck/problem.c:1506
+#: e2fsck/problem.c:1226 e2fsck/problem.c:1526
#, c-format
msgid "Internal error: couldn't find dir_info for %i.\n"
msgstr ""
-#: e2fsck/problem.c:1211
+#: e2fsck/problem.c:1231
#. @-expanded: entry '%Dn' in %p (%i) has rec_len of %Dr, should be %N.\n
msgid "@E has rec_len of %Dr, @s %N.\n"
msgstr ""
-#: e2fsck/problem.c:1216
+#: e2fsck/problem.c:1236
#, c-format
#. @-expanded: error allocating icount structure: %m\n
msgid "@A icount structure: %m\n"
msgstr ""
-#: e2fsck/problem.c:1221
+#: e2fsck/problem.c:1241
#, c-format
#. @-expanded: Error iterating over directory blocks: %m\n
msgid "Error iterating over @d @bs: %m\n"
msgstr ""
-#: e2fsck/problem.c:1226
+#: e2fsck/problem.c:1246
#. @-expanded: Error reading directory block %b (inode %i): %m\n
msgid "Error reading @d @b %b (@i %i): %m\n"
msgstr ""
-#: e2fsck/problem.c:1231
+#: e2fsck/problem.c:1251
#. @-expanded: Error writing directory block %b (inode %i): %m\n
msgid "Error writing @d @b %b (@i %i): %m\n"
msgstr ""
-#: e2fsck/problem.c:1236
+#: e2fsck/problem.c:1256
#, c-format
#. @-expanded: error allocating new directory block for inode %i (%s): %m\n
msgid "@A new @d @b for @i %i (%s): %m\n"
msgstr ""
-#: e2fsck/problem.c:1241
+#: e2fsck/problem.c:1261
#, c-format
#. @-expanded: Error deallocating inode %i: %m\n
msgid "Error deallocating @i %i: %m\n"
msgstr ""
-#: e2fsck/problem.c:1246
+#: e2fsck/problem.c:1266
#, c-format
#. @-expanded: directory entry for '.' in %p (%i) is big.\n
msgid "@d @e for '.' in %p (%i) is big.\n"
msgstr ""
-#: e2fsck/problem.c:1251
+#: e2fsck/problem.c:1271
#. @-expanded: inode %i (%Q) is an illegal FIFO.\n
msgid "@i %i (%Q) is an @I FIFO.\n"
msgstr ""
-#: e2fsck/problem.c:1256
+#: e2fsck/problem.c:1276
#. @-expanded: inode %i (%Q) is an illegal socket.\n
msgid "@i %i (%Q) is an @I socket.\n"
msgstr ""
-#: e2fsck/problem.c:1261
+#: e2fsck/problem.c:1281
#. @-expanded: Setting filetype for entry '%Dn' in %p (%i) to %N.\n
msgid "Setting filetype for @E to %N.\n"
msgstr ""
-#: e2fsck/problem.c:1266
+#: e2fsck/problem.c:1286
#. @-expanded: entry '%Dn' in %p (%i) has an incorrect filetype (was %Dt, should be %N).\n
msgid "@E has an incorrect filetype (was %Dt, @s %N).\n"
msgstr ""
-#: e2fsck/problem.c:1271
+#: e2fsck/problem.c:1291
#. @-expanded: entry '%Dn' in %p (%i) has filetype set.\n
msgid "@E has filetype set.\n"
msgstr ""
-#: e2fsck/problem.c:1276
+#: e2fsck/problem.c:1296
#. @-expanded: entry '%Dn' in %p (%i) has a zero-length name.\n
msgid "@E has a @z name.\n"
msgstr ""
-#: e2fsck/problem.c:1281
+#: e2fsck/problem.c:1301
#. @-expanded: Symlink %Q (inode #%i) is invalid.\n
msgid "Symlink %Q (@i #%i) is @n.\n"
msgstr ""
-#: e2fsck/problem.c:1286
+#: e2fsck/problem.c:1306
#. @-expanded: extended attribute block for inode %i (%Q) is invalid (%If).\n
msgid "@a @b @F @n (%If).\n"
msgstr ""
-#: e2fsck/problem.c:1291
+#: e2fsck/problem.c:1311
#. @-expanded: filesystem contains large files, but lacks LARGE_FILE flag in superblock.\n
msgid "@f contains large files, but lacks LARGE_FILE flag in @S.\n"
msgstr ""
-#: e2fsck/problem.c:1296
+#: e2fsck/problem.c:1316
#. @-expanded: problem in HTREE directory inode %d: %B not referenced\n
msgid "@p @h %d: %B not referenced\n"
msgstr ""
-#: e2fsck/problem.c:1301
+#: e2fsck/problem.c:1321
#. @-expanded: problem in HTREE directory inode %d: %B referenced twice\n
msgid "@p @h %d: %B referenced twice\n"
msgstr ""
-#: e2fsck/problem.c:1306
+#: e2fsck/problem.c:1326
#. @-expanded: problem in HTREE directory inode %d: %B has bad min hash\n
msgid "@p @h %d: %B has bad min hash\n"
msgstr ""
-#: e2fsck/problem.c:1311
+#: e2fsck/problem.c:1331
#. @-expanded: problem in HTREE directory inode %d: %B has bad max hash\n
msgid "@p @h %d: %B has bad max hash\n"
msgstr ""
-#: e2fsck/problem.c:1316
+#: e2fsck/problem.c:1336
#. @-expanded: invalid HTREE directory inode %d (%q).
msgid "@n @h %d (%q). "
msgstr ""
-#: e2fsck/problem.c:1320
+#: e2fsck/problem.c:1340
#. @-expanded: problem in HTREE directory inode %d (%q): bad block number %b.\n
msgid "@p @h %d (%q): bad @b number %b.\n"
msgstr ""
-#: e2fsck/problem.c:1330
+#: e2fsck/problem.c:1350
#, c-format
#. @-expanded: problem in HTREE directory inode %d: root node is invalid\n
msgid "@p @h %d: root node is @n\n"
msgstr ""
-#: e2fsck/problem.c:1335
+#: e2fsck/problem.c:1355
#. @-expanded: problem in HTREE directory inode %d: %B has invalid limit (%N)\n
msgid "@p @h %d: %B has @n limit (%N)\n"
msgstr ""
-#: e2fsck/problem.c:1340
+#: e2fsck/problem.c:1360
#. @-expanded: problem in HTREE directory inode %d: %B has invalid count (%N)\n
msgid "@p @h %d: %B has @n count (%N)\n"
msgstr ""
-#: e2fsck/problem.c:1345
+#: e2fsck/problem.c:1365
#. @-expanded: problem in HTREE directory inode %d: %B has an unordered hash table\n
msgid "@p @h %d: %B has an unordered hash table\n"
msgstr ""
-#: e2fsck/problem.c:1350
+#: e2fsck/problem.c:1370
#. @-expanded: problem in HTREE directory inode %d: %B has invalid depth (%N)\n
msgid "@p @h %d: %B has @n depth (%N)\n"
msgstr ""
-#: e2fsck/problem.c:1355
+#: e2fsck/problem.c:1375
#. @-expanded: Duplicate entry '%Dn' in %p (%i) found.
msgid "Duplicate @E found. "
msgstr ""
-#: e2fsck/problem.c:1360
+#: e2fsck/problem.c:1380
#, no-c-format
#. @-expanded: entry '%Dn' in %p (%i) has a non-unique filename.\n
#. @-expanded: Rename to %s
@@ -2132,7 +2157,7 @@ msgid ""
"Rename to %s"
msgstr ""
-#: e2fsck/problem.c:1365
+#: e2fsck/problem.c:1385
#. @-expanded: Duplicate entry '%Dn' found.\n
#. @-expanded: \tMarking %p (%i) to be rebuilt.\n
#. @-expanded: \n
@@ -2142,115 +2167,115 @@ msgid ""
"\n"
msgstr ""
-#: e2fsck/problem.c:1370
+#: e2fsck/problem.c:1390
#. @-expanded: i_blocks_hi for inode %i (%Q) is %N, should be zero.\n
msgid "i_blocks_hi @F %N, @s zero.\n"
msgstr ""
-#: e2fsck/problem.c:1375
+#: e2fsck/problem.c:1395
#. @-expanded: Unexpected block in HTREE directory inode %d (%q).\n
msgid "Unexpected @b in @h %d (%q).\n"
msgstr ""
-#: e2fsck/problem.c:1379
+#: e2fsck/problem.c:1399
#. @-expanded: entry '%Dn' in %p (%i) references inode %Di in group %g where _INODE_UNINIT is set.\n
msgid "@E references @i %Di in @g %g where _INODE_UNINIT is set.\n"
msgstr ""
-#: e2fsck/problem.c:1384
+#: e2fsck/problem.c:1404
#. @-expanded: entry '%Dn' in %p (%i) references inode %Di found in group %g's unused inodes area.\n
msgid "@E references @i %Di found in @g %g's unused inodes area.\n"
msgstr ""
-#: e2fsck/problem.c:1389
+#: e2fsck/problem.c:1409
#. @-expanded: i_file_acl_hi for inode %i (%Q) is %N, should be zero.\n
msgid "i_file_acl_hi @F %N, @s zero.\n"
msgstr ""
-#: e2fsck/problem.c:1396
+#: e2fsck/problem.c:1416
#. @-expanded: Pass 3: Checking directory connectivity\n
msgid "Pass 3: Checking @d connectivity\n"
msgstr ""
-#: e2fsck/problem.c:1401
+#: e2fsck/problem.c:1421
#. @-expanded: root inode not allocated.
msgid "@r not allocated. "
msgstr ""
-#: e2fsck/problem.c:1406
+#: e2fsck/problem.c:1426
#. @-expanded: No room in lost+found directory.
msgid "No room in @l @d. "
msgstr ""
-#: e2fsck/problem.c:1411
+#: e2fsck/problem.c:1431
#, c-format
#. @-expanded: Unconnected directory inode %i (%p)\n
msgid "Unconnected @d @i %i (%p)\n"
msgstr ""
-#: e2fsck/problem.c:1416
+#: e2fsck/problem.c:1436
#. @-expanded: /lost+found not found.
msgid "/@l not found. "
msgstr ""
-#: e2fsck/problem.c:1421
+#: e2fsck/problem.c:1441
#. @-expanded: '..' in %Q (%i) is %P (%j), should be %q (%d).\n
msgid "'..' in %Q (%i) is %P (%j), @s %q (%d).\n"
msgstr ""
-#: e2fsck/problem.c:1426
+#: e2fsck/problem.c:1446
#. @-expanded: Bad or non-existent /lost+found. Cannot reconnect.\n
msgid "Bad or non-existent /@l. Cannot reconnect.\n"
msgstr ""
-#: e2fsck/problem.c:1431
+#: e2fsck/problem.c:1451
#, c-format
#. @-expanded: Could not expand /lost+found: %m\n
msgid "Could not expand /@l: %m\n"
msgstr ""
-#: e2fsck/problem.c:1436
+#: e2fsck/problem.c:1456
#, c-format
msgid "Could not reconnect %i: %m\n"
msgstr ""
-#: e2fsck/problem.c:1441
+#: e2fsck/problem.c:1461
#, c-format
#. @-expanded: Error while trying to find /lost+found: %m\n
msgid "Error while trying to find /@l: %m\n"
msgstr ""
-#: e2fsck/problem.c:1446
+#: e2fsck/problem.c:1466
#, c-format
#. @-expanded: ext2fs_new_block: %m while trying to create /lost+found directory\n
msgid "ext2fs_new_@b: %m while trying to create /@l @d\n"
msgstr ""
-#: e2fsck/problem.c:1451
+#: e2fsck/problem.c:1471
#, c-format
#. @-expanded: ext2fs_new_inode: %m while trying to create /lost+found directory\n
msgid "ext2fs_new_@i: %m while trying to create /@l @d\n"
msgstr ""
-#: e2fsck/problem.c:1456
+#: e2fsck/problem.c:1476
#, c-format
#. @-expanded: ext2fs_new_dir_block: %m while creating new directory block\n
msgid "ext2fs_new_dir_@b: %m while creating new @d @b\n"
msgstr ""
-#: e2fsck/problem.c:1461
+#: e2fsck/problem.c:1481
#, c-format
#. @-expanded: ext2fs_write_dir_block: %m while writing the directory block for /lost+found\n
msgid "ext2fs_write_dir_@b: %m while writing the @d @b for /@l\n"
msgstr ""
-#: e2fsck/problem.c:1466
+#: e2fsck/problem.c:1486
#, c-format
#. @-expanded: Error while adjusting inode count on inode %i\n
msgid "Error while adjusting @i count on @i %i\n"
msgstr ""
-#: e2fsck/problem.c:1471
+#: e2fsck/problem.c:1491
#, c-format
#. @-expanded: Couldn't fix parent of inode %i: %m\n
#. @-expanded: \n
@@ -2259,7 +2284,7 @@ msgid ""
"\n"
msgstr ""
-#: e2fsck/problem.c:1476
+#: e2fsck/problem.c:1496
#, c-format
#. @-expanded: Couldn't fix parent of inode %i: Couldn't find parent directory entry\n
#. @-expanded: \n
@@ -2268,73 +2293,73 @@ msgid ""
"\n"
msgstr ""
-#: e2fsck/problem.c:1486
+#: e2fsck/problem.c:1506
#, c-format
#. @-expanded: Error creating root directory (%s): %m\n
msgid "Error creating root @d (%s): %m\n"
msgstr ""
-#: e2fsck/problem.c:1491
+#: e2fsck/problem.c:1511
#, c-format
#. @-expanded: Error creating /lost+found directory (%s): %m\n
msgid "Error creating /@l @d (%s): %m\n"
msgstr ""
-#: e2fsck/problem.c:1496
+#: e2fsck/problem.c:1516
#. @-expanded: root inode is not a directory; aborting.\n
msgid "@r is not a @d; aborting.\n"
msgstr ""
-#: e2fsck/problem.c:1501
+#: e2fsck/problem.c:1521
#. @-expanded: Cannot proceed without a root inode.\n
msgid "Cannot proceed without a @r.\n"
msgstr ""
-#: e2fsck/problem.c:1511
+#: e2fsck/problem.c:1531
#, c-format
#. @-expanded: /lost+found is not a directory (ino=%i)\n
msgid "/@l is not a @d (ino=%i)\n"
msgstr ""
-#: e2fsck/problem.c:1518
+#: e2fsck/problem.c:1538
msgid "Pass 3A: Optimizing directories\n"
msgstr ""
-#: e2fsck/problem.c:1523
+#: e2fsck/problem.c:1543
#, c-format
msgid "Failed to create dirs_to_hash iterator: %m\n"
msgstr ""
-#: e2fsck/problem.c:1528
+#: e2fsck/problem.c:1548
msgid "Failed to optimize directory %q (%d): %m\n"
msgstr ""
-#: e2fsck/problem.c:1533
+#: e2fsck/problem.c:1553
msgid "Optimizing directories: "
msgstr ""
-#: e2fsck/problem.c:1550
+#: e2fsck/problem.c:1570
msgid "Pass 4: Checking reference counts\n"
msgstr ""
-#: e2fsck/problem.c:1555
+#: e2fsck/problem.c:1575
#, c-format
#. @-expanded: unattached zero-length inode %i.
msgid "@u @z @i %i. "
msgstr ""
-#: e2fsck/problem.c:1560
+#: e2fsck/problem.c:1580
#, c-format
#. @-expanded: unattached inode %i\n
msgid "@u @i %i\n"
msgstr ""
-#: e2fsck/problem.c:1565
+#: e2fsck/problem.c:1585
#. @-expanded: inode %i ref count is %Il, should be %N.
msgid "@i %i ref count is %Il, @s %N. "
msgstr ""
-#: e2fsck/problem.c:1569
+#: e2fsck/problem.c:1589
#. @-expanded: WARNING: PROGRAMMING BUG IN E2FSCK!\n
#. @-expanded: \tOR SOME BONEHEAD (YOU) IS CHECKING A MOUNTED (LIVE) FILESYSTEM.\n
#. @-expanded: inode_link_info[%i] is %N, inode.i_links_count is %Il. They should be the same!\n
@@ -2344,57 +2369,57 @@ msgid ""
"@i_link_info[%i] is %N, @i.i_links_count is %Il. They @s the same!\n"
msgstr ""
-#: e2fsck/problem.c:1579
+#: e2fsck/problem.c:1599
#. @-expanded: Pass 5: Checking group summary information\n
msgid "Pass 5: Checking @g summary information\n"
msgstr ""
-#: e2fsck/problem.c:1584
+#: e2fsck/problem.c:1604
#. @-expanded: Padding at end of inode bitmap is not set.
msgid "Padding at end of @i @B is not set. "
msgstr ""
-#: e2fsck/problem.c:1589
+#: e2fsck/problem.c:1609
#. @-expanded: Padding at end of block bitmap is not set.
msgid "Padding at end of @b @B is not set. "
msgstr ""
-#: e2fsck/problem.c:1594
+#: e2fsck/problem.c:1614
#. @-expanded: block bitmap differences:
msgid "@b @B differences: "
msgstr ""
-#: e2fsck/problem.c:1614
+#: e2fsck/problem.c:1634
#. @-expanded: inode bitmap differences:
msgid "@i @B differences: "
msgstr ""
-#: e2fsck/problem.c:1634
+#: e2fsck/problem.c:1654
#. @-expanded: Free inodes count wrong for group #%g (%i, counted=%j).\n
msgid "Free @is count wrong for @g #%g (%i, counted=%j).\n"
msgstr ""
-#: e2fsck/problem.c:1639
+#: e2fsck/problem.c:1659
#. @-expanded: Directories count wrong for group #%g (%i, counted=%j).\n
msgid "Directories count wrong for @g #%g (%i, counted=%j).\n"
msgstr ""
-#: e2fsck/problem.c:1644
+#: e2fsck/problem.c:1664
#. @-expanded: Free inodes count wrong (%i, counted=%j).\n
msgid "Free @is count wrong (%i, counted=%j).\n"
msgstr ""
-#: e2fsck/problem.c:1649
+#: e2fsck/problem.c:1669
#. @-expanded: Free blocks count wrong for group #%g (%b, counted=%c).\n
msgid "Free @bs count wrong for @g #%g (%b, counted=%c).\n"
msgstr ""
-#: e2fsck/problem.c:1654
+#: e2fsck/problem.c:1674
#. @-expanded: Free blocks count wrong (%b, counted=%c).\n
msgid "Free @bs count wrong (%b, counted=%c).\n"
msgstr ""
-#: e2fsck/problem.c:1659
+#: e2fsck/problem.c:1679
#. @-expanded: PROGRAMMING ERROR: filesystem (#%N) bitmap endpoints (%b, %c) don't match calculated bitmap
#. @-expanded: endpoints (%i, %j)\n
msgid ""
@@ -2402,49 +2427,65 @@ msgid ""
"endpoints (%i, %j)\n"
msgstr ""
-#: e2fsck/problem.c:1665
+#: e2fsck/problem.c:1685
msgid "Internal error: fudging end of bitmap (%N)\n"
msgstr ""
-#: e2fsck/problem.c:1670
+#: e2fsck/problem.c:1690
#, c-format
#. @-expanded: Error copying in replacement inode bitmap: %m\n
msgid "Error copying in replacement @i @B: %m\n"
msgstr ""
-#: e2fsck/problem.c:1675
+#: e2fsck/problem.c:1695
#, c-format
#. @-expanded: Error copying in replacement block bitmap: %m\n
msgid "Error copying in replacement @b @B: %m\n"
msgstr ""
-#: e2fsck/problem.c:1700
+#: e2fsck/problem.c:1720
#, c-format
#. @-expanded: group %g block(s) in use but group is marked BLOCK_UNINIT\n
msgid "@g %g @b(s) in use but @g is marked BLOCK_UNINIT\n"
msgstr ""
-#: e2fsck/problem.c:1705
+#: e2fsck/problem.c:1725
#, c-format
#. @-expanded: group %g inode(s) in use but group is marked INODE_UNINIT\n
msgid "@g %g @i(s) in use but @g is marked INODE_UNINIT\n"
msgstr ""
-#: e2fsck/problem.c:1712
+#: e2fsck/problem.c:1732
#. @-expanded: Recreate journal
msgid "Recreate @j"
msgstr ""
-#: e2fsck/problem.c:1717
+#: e2fsck/problem.c:1737
msgid "Update quota info for quota type %N"
msgstr ""
-#: e2fsck/problem.c:1836
+#: e2fsck/problem.c:1742
+#, c-format
+#. @-expanded: Error setting block group checksum info: %m\n
+msgid "Error setting @b @g checksum info: %m\n"
+msgstr ""
+
+#: e2fsck/problem.c:1747
+#, c-format
+msgid "Error writing file system info: %m\n"
+msgstr ""
+
+#: e2fsck/problem.c:1752
+#, c-format
+msgid "Error flushing writes to strage device: %m\n"
+msgstr ""
+
+#: e2fsck/problem.c:1871
#, c-format
msgid "Unhandled error code (0x%x)!\n"
msgstr ""
-#: e2fsck/problem.c:1961 e2fsck/problem.c:1965
+#: e2fsck/problem.c:1996 e2fsck/problem.c:2000
msgid "IGNORED"
msgstr ""
@@ -2649,7 +2690,7 @@ msgid_plural "%12u files\n"
msgstr[0] ""
msgstr[1] ""
-#: e2fsck/unix.c:232 misc/badblocks.c:988 misc/tune2fs.c:2023 misc/util.c:311
+#: e2fsck/unix.c:232 misc/badblocks.c:988 misc/tune2fs.c:2120 misc/util.c:316
#: resize/main.c:260
#, c-format
msgid "while determining whether %s is mounted."
@@ -2785,8 +2826,8 @@ msgstr ""
msgid "The -t option is not supported on this version of e2fsck.\n"
msgstr ""
-#: e2fsck/unix.c:868 e2fsck/unix.c:942 misc/tune2fs.c:846 misc/tune2fs.c:1141
-#: misc/tune2fs.c:1159
+#: e2fsck/unix.c:868 e2fsck/unix.c:942 misc/tune2fs.c:878 misc/tune2fs.c:1173
+#: misc/tune2fs.c:1191
#, c-format
msgid "Unable to resolve '%s'"
msgstr ""
@@ -2833,7 +2874,7 @@ msgstr ""
msgid "while checking MMP block"
msgstr ""
-#: e2fsck/unix.c:1156 misc/tune2fs.c:1950
+#: e2fsck/unix.c:1156 misc/tune2fs.c:2047
msgid ""
"If you are sure the filesystem is not in use on any node, run:\n"
"'tune2fs -f -E clear_mmp {device}'\n"
@@ -2964,51 +3005,51 @@ msgstr ""
msgid "This doesn't bode well, but we'll try to go on...\n"
msgstr ""
-#: e2fsck/unix.c:1651
+#: e2fsck/unix.c:1652
#, c-format
msgid "Creating journal (%d blocks): "
msgstr ""
-#: e2fsck/unix.c:1661
+#: e2fsck/unix.c:1662
msgid " Done.\n"
msgstr ""
-#: e2fsck/unix.c:1663
+#: e2fsck/unix.c:1664
msgid ""
"\n"
"*** journal has been re-created - filesystem is now ext3 again ***\n"
msgstr ""
-#: e2fsck/unix.c:1687
+#: e2fsck/unix.c:1688
msgid "Restarting e2fsck from the beginning...\n"
msgstr ""
-#: e2fsck/unix.c:1691
+#: e2fsck/unix.c:1692
msgid "while resetting context"
msgstr ""
-#: e2fsck/unix.c:1698
-#, c-format
-msgid "%s: e2fsck canceled.\n"
+#: e2fsck/unix.c:1699
+msgid "aborted"
msgstr ""
-#: e2fsck/unix.c:1703
-msgid "aborted"
+#: e2fsck/unix.c:1706
+#, c-format
+msgid "%s: e2fsck canceled.\n"
msgstr ""
-#: e2fsck/unix.c:1715 e2fsck/util.c:67
+#: e2fsck/unix.c:1741 e2fsck/util.c:67
#, c-format
msgid ""
"\n"
"%s: ***** FILE SYSTEM WAS MODIFIED *****\n"
msgstr ""
-#: e2fsck/unix.c:1719
+#: e2fsck/unix.c:1745
#, c-format
msgid "%s: ***** REBOOT LINUX *****\n"
msgstr ""
-#: e2fsck/unix.c:1727 e2fsck/util.c:73
+#: e2fsck/unix.c:1753 e2fsck/util.c:73
#, c-format
msgid ""
"\n"
@@ -3016,10 +3057,6 @@ msgid ""
"\n"
msgstr ""
-#: e2fsck/unix.c:1767
-msgid "while setting block group checksum info"
-msgstr ""
-
#: e2fsck/util.c:190 misc/util.c:86
msgid "yY"
msgstr ""
@@ -3251,7 +3288,7 @@ msgstr ""
msgid "during test data write, block %lu"
msgstr ""
-#: misc/badblocks.c:993 misc/util.c:316
+#: misc/badblocks.c:993 misc/util.c:321
#, c-format
msgid "%s is mounted; "
msgstr ""
@@ -3264,7 +3301,7 @@ msgstr ""
msgid "it's not safe to run badblocks!\n"
msgstr ""
-#: misc/badblocks.c:1005 misc/util.c:327
+#: misc/badblocks.c:1005 misc/util.c:332
#, c-format
msgid "%s is apparently in use by the system; "
msgstr ""
@@ -3491,7 +3528,7 @@ msgstr ""
msgid "Bad blocks: %u"
msgstr ""
-#: misc/dumpe2fs.c:345 misc/tune2fs.c:314
+#: misc/dumpe2fs.c:345 misc/tune2fs.c:346
msgid "while reading journal inode"
msgstr ""
@@ -3528,7 +3565,7 @@ msgstr ""
msgid "Journal errno: %d\n"
msgstr ""
-#: misc/dumpe2fs.c:415 misc/tune2fs.c:230
+#: misc/dumpe2fs.c:415 misc/tune2fs.c:196
msgid "while reading journal superblock"
msgstr ""
@@ -3553,7 +3590,7 @@ msgstr ""
msgid "Journal users: %s\n"
msgstr ""
-#: misc/dumpe2fs.c:456 misc/mke2fs.c:743 misc/tune2fs.c:1178
+#: misc/dumpe2fs.c:456 misc/mke2fs.c:743 misc/tune2fs.c:1210
msgid "Couldn't allocate memory to parse options!\n"
msgstr ""
@@ -3586,12 +3623,12 @@ msgstr ""
msgid "\tUsing %s\n"
msgstr ""
-#: misc/dumpe2fs.c:604 misc/e2image.c:1582 misc/tune2fs.c:1961
+#: misc/dumpe2fs.c:606 misc/e2image.c:1582 misc/tune2fs.c:2058
#: resize/main.c:318
msgid "Couldn't find valid filesystem superblock.\n"
msgstr ""
-#: misc/dumpe2fs.c:632
+#: misc/dumpe2fs.c:634
#, c-format
msgid ""
"\n"
@@ -3857,7 +3894,7 @@ msgstr ""
msgid "e2label: not an ext2 filesystem\n"
msgstr ""
-#: misc/e2label.c:97 misc/tune2fs.c:2126
+#: misc/e2label.c:97 misc/tune2fs.c:2223
#, c-format
msgid "Warning: label too long, truncating.\n"
msgstr ""
@@ -3872,7 +3909,7 @@ msgstr ""
msgid "e2label: error writing superblock\n"
msgstr ""
-#: misc/e2label.c:117 misc/tune2fs.c:838
+#: misc/e2label.c:117 misc/tune2fs.c:870
#, c-format
msgid "Usage: e2label device [newlabel]\n"
msgstr ""
@@ -4102,7 +4139,7 @@ msgid ""
"Could not write %d blocks in inode table starting at %llu: %s\n"
msgstr ""
-#: misc/mke2fs.c:421 misc/mke2fs.c:2477 misc/mke2fs.c:2762
+#: misc/mke2fs.c:421 misc/mke2fs.c:2479 misc/mke2fs.c:2764
msgid "done \n"
msgstr ""
@@ -4287,7 +4324,7 @@ msgstr ""
msgid "Invalid offset: %s\n"
msgstr ""
-#: misc/mke2fs.c:812 misc/tune2fs.c:1206
+#: misc/mke2fs.c:812 misc/tune2fs.c:1238
#, c-format
msgid "Invalid mmp_update_interval: %s\n"
msgstr ""
@@ -4373,12 +4410,12 @@ msgid ""
"\t%s\n"
msgstr ""
-#: misc/mke2fs.c:1068 misc/tune2fs.c:416
+#: misc/mke2fs.c:1068 misc/tune2fs.c:448
#, c-format
msgid "Invalid filesystem option set: %s\n"
msgstr ""
-#: misc/mke2fs.c:1080 misc/tune2fs.c:357
+#: misc/mke2fs.c:1080 misc/tune2fs.c:389
#, c-format
msgid "Invalid mount option set: %s\n"
msgstr ""
@@ -4505,7 +4542,7 @@ msgstr ""
msgid "The -T option may only be used once"
msgstr ""
-#: misc/mke2fs.c:1759 misc/mke2fs.c:2843
+#: misc/mke2fs.c:1759 misc/mke2fs.c:2845
#, c-format
msgid "while trying to open journal device %s\n"
msgstr ""
@@ -4525,21 +4562,21 @@ msgstr ""
msgid "invalid blocks '%s' on device '%s'"
msgstr ""
-#: misc/mke2fs.c:1802
+#: misc/mke2fs.c:1804
msgid "filesystem"
msgstr ""
-#: misc/mke2fs.c:1815 resize/main.c:372
+#: misc/mke2fs.c:1817 resize/main.c:373
msgid "while trying to determine filesystem size"
msgstr ""
-#: misc/mke2fs.c:1821
+#: misc/mke2fs.c:1823
msgid ""
"Couldn't determine device size; you must specify\n"
"the size of the filesystem\n"
msgstr ""
-#: misc/mke2fs.c:1828
+#: misc/mke2fs.c:1830
msgid ""
"Device size reported to be zero. Invalid partition specified, or\n"
"\tpartition table wasn't reread after running fdisk, due to\n"
@@ -4547,112 +4584,112 @@ msgid ""
"\tto re-read your partition table.\n"
msgstr ""
-#: misc/mke2fs.c:1845
+#: misc/mke2fs.c:1847
msgid "Filesystem larger than apparent device size."
msgstr ""
-#: misc/mke2fs.c:1865
+#: misc/mke2fs.c:1867
msgid "Failed to parse fs types list\n"
msgstr ""
-#: misc/mke2fs.c:1906
+#: misc/mke2fs.c:1908
msgid "while trying to determine hardware sector size"
msgstr ""
-#: misc/mke2fs.c:1912
+#: misc/mke2fs.c:1914
msgid "while trying to determine physical sector size"
msgstr ""
-#: misc/mke2fs.c:1944
+#: misc/mke2fs.c:1946
msgid "while setting blocksize; too small for device\n"
msgstr ""
-#: misc/mke2fs.c:1949
+#: misc/mke2fs.c:1951
#, c-format
msgid ""
"Warning: specified blocksize %d is less than device physical sectorsize %d\n"
msgstr ""
-#: misc/mke2fs.c:1973
+#: misc/mke2fs.c:1975
#, c-format
msgid ""
"%s: Size of device (0x%llx blocks) %s too big to be expressed\n"
"\tin 32 bits using a blocksize of %d.\n"
msgstr ""
-#: misc/mke2fs.c:1989
+#: misc/mke2fs.c:1991
msgid "fs_types for mke2fs.conf resolution: "
msgstr ""
-#: misc/mke2fs.c:1996
+#: misc/mke2fs.c:1998
msgid "Filesystem features not supported with revision 0 filesystems\n"
msgstr ""
-#: misc/mke2fs.c:2004
+#: misc/mke2fs.c:2006
msgid "Sparse superblocks not supported with revision 0 filesystems\n"
msgstr ""
-#: misc/mke2fs.c:2016
+#: misc/mke2fs.c:2018
msgid "Journals not supported with revision 0 filesystems\n"
msgstr ""
-#: misc/mke2fs.c:2030
+#: misc/mke2fs.c:2032
#, c-format
msgid "invalid reserved blocks percent - %lf"
msgstr ""
-#: misc/mke2fs.c:2047
+#: misc/mke2fs.c:2049
msgid ""
"Extents MUST be enabled for a 64-bit filesystem. Pass -O extents to "
"rectify.\n"
msgstr ""
-#: misc/mke2fs.c:2067
+#: misc/mke2fs.c:2069
msgid "The cluster size may not be smaller than the block size.\n"
msgstr ""
-#: misc/mke2fs.c:2073
+#: misc/mke2fs.c:2075
msgid "specifying a cluster size requires the bigalloc feature"
msgstr ""
-#: misc/mke2fs.c:2092
+#: misc/mke2fs.c:2094
#, c-format
msgid "warning: Unable to get device geometry for %s\n"
msgstr ""
-#: misc/mke2fs.c:2095
+#: misc/mke2fs.c:2097
#, c-format
msgid "%s alignment is offset by %lu bytes.\n"
msgstr ""
-#: misc/mke2fs.c:2097
+#: misc/mke2fs.c:2099
#, c-format
msgid ""
"This may result in very poor performance, (re)-partitioning suggested.\n"
msgstr ""
-#: misc/mke2fs.c:2118
+#: misc/mke2fs.c:2120
#, c-format
msgid "%d-byte blocks too big for system (max %d)"
msgstr ""
-#: misc/mke2fs.c:2122
+#: misc/mke2fs.c:2124
#, c-format
msgid ""
"Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
msgstr ""
-#: misc/mke2fs.c:2178
+#: misc/mke2fs.c:2180
msgid "Can't support bigalloc feature without extents feature"
msgstr ""
-#: misc/mke2fs.c:2185
+#: misc/mke2fs.c:2187
msgid ""
"The resize_inode and meta_bg features are not compatible.\n"
"They can not be both enabled simultaneously.\n"
msgstr ""
-#: misc/mke2fs.c:2194
+#: misc/mke2fs.c:2196
msgid ""
"\n"
"Warning: the bigalloc feature is still under development\n"
@@ -4660,34 +4697,34 @@ msgid ""
"\n"
msgstr ""
-#: misc/mke2fs.c:2205
+#: misc/mke2fs.c:2207
msgid "reserved online resize blocks not supported on non-sparse filesystem"
msgstr ""
-#: misc/mke2fs.c:2214
+#: misc/mke2fs.c:2216
msgid "blocks per group count out of range"
msgstr ""
-#: misc/mke2fs.c:2238
+#: misc/mke2fs.c:2240
msgid "Flex_bg feature not enabled, so flex_bg size may not be specified"
msgstr ""
-#: misc/mke2fs.c:2250
+#: misc/mke2fs.c:2252
#, c-format
msgid "invalid inode size %d (min %d/max %d)"
msgstr ""
-#: misc/mke2fs.c:2268
+#: misc/mke2fs.c:2270
#, c-format
msgid "too many inodes (%llu), raise inode ratio?"
msgstr ""
-#: misc/mke2fs.c:2275
+#: misc/mke2fs.c:2277
#, c-format
msgid "too many inodes (%llu), specify < 2^32 inodes"
msgstr ""
-#: misc/mke2fs.c:2289
+#: misc/mke2fs.c:2291
#, c-format
msgid ""
"inode_size (%u) * inodes_count (%u) too big for a\n"
@@ -4695,7 +4732,7 @@ msgid ""
"\tor lower inode count (-N).\n"
msgstr ""
-#: misc/mke2fs.c:2416
+#: misc/mke2fs.c:2418
#, c-format
msgid ""
"Overwriting existing filesystem; this can be undone using the command:\n"
@@ -4703,111 +4740,111 @@ msgid ""
"\n"
msgstr ""
-#: misc/mke2fs.c:2430
+#: misc/mke2fs.c:2432
msgid "while trying to setup undo file\n"
msgstr ""
-#: misc/mke2fs.c:2456
+#: misc/mke2fs.c:2458
msgid "Discarding device blocks: "
msgstr ""
-#: misc/mke2fs.c:2472
+#: misc/mke2fs.c:2474
msgid "failed - "
msgstr ""
-#: misc/mke2fs.c:2594
+#: misc/mke2fs.c:2596
msgid "while setting up superblock"
msgstr ""
-#: misc/mke2fs.c:2610
+#: misc/mke2fs.c:2612
msgid "Discard succeeded and will return 0s - skipping inode table wipe\n"
msgstr ""
-#: misc/mke2fs.c:2698
+#: misc/mke2fs.c:2700
#, c-format
msgid "unknown os - %s"
msgstr ""
-#: misc/mke2fs.c:2750
+#: misc/mke2fs.c:2752
msgid "Allocating group tables: "
msgstr ""
-#: misc/mke2fs.c:2758
+#: misc/mke2fs.c:2760
msgid "while trying to allocate filesystem tables"
msgstr ""
-#: misc/mke2fs.c:2767
+#: misc/mke2fs.c:2769
msgid ""
"\n"
"\twhile converting subcluster bitmap"
msgstr ""
-#: misc/mke2fs.c:2810
+#: misc/mke2fs.c:2812
#, c-format
msgid "while zeroing block %llu at end of filesystem"
msgstr ""
-#: misc/mke2fs.c:2824
+#: misc/mke2fs.c:2826
msgid "while reserving blocks for online resize"
msgstr ""
-#: misc/mke2fs.c:2836 misc/tune2fs.c:679
+#: misc/mke2fs.c:2838 misc/tune2fs.c:711
msgid "journal"
msgstr ""
-#: misc/mke2fs.c:2848
+#: misc/mke2fs.c:2850
#, c-format
msgid "Adding journal to device %s: "
msgstr ""
-#: misc/mke2fs.c:2855
+#: misc/mke2fs.c:2857
#, c-format
msgid ""
"\n"
"\twhile trying to add journal to device %s"
msgstr ""
-#: misc/mke2fs.c:2860 misc/mke2fs.c:2891 misc/tune2fs.c:708 misc/tune2fs.c:727
+#: misc/mke2fs.c:2862 misc/mke2fs.c:2893 misc/tune2fs.c:740 misc/tune2fs.c:759
msgid "done\n"
msgstr ""
-#: misc/mke2fs.c:2867
+#: misc/mke2fs.c:2869
msgid "Skipping journal creation in super-only mode\n"
msgstr ""
-#: misc/mke2fs.c:2878
+#: misc/mke2fs.c:2880
#, c-format
msgid "Creating journal (%u blocks): "
msgstr ""
-#: misc/mke2fs.c:2887
+#: misc/mke2fs.c:2889
msgid ""
"\n"
"\twhile trying to create journal"
msgstr ""
-#: misc/mke2fs.c:2899 misc/tune2fs.c:483
+#: misc/mke2fs.c:2901 misc/tune2fs.c:515
msgid ""
"\n"
"Error while enabling multiple mount protection feature."
msgstr ""
-#: misc/mke2fs.c:2904
+#: misc/mke2fs.c:2906
#, c-format
msgid "Multiple mount protection is enabled with update interval %d seconds.\n"
msgstr ""
-#: misc/mke2fs.c:2921
+#: misc/mke2fs.c:2923
msgid "Writing superblocks and filesystem accounting information: "
msgstr ""
-#: misc/mke2fs.c:2928
+#: misc/mke2fs.c:2930
msgid ""
"\n"
"Warning, had trouble writing out superblocks."
msgstr ""
-#: misc/mke2fs.c:2930
+#: misc/mke2fs.c:2932
msgid ""
"done\n"
"\n"
@@ -4865,162 +4902,162 @@ msgid ""
"\t[ -I new_inode_size ] device\n"
msgstr ""
-#: misc/tune2fs.c:217
+#: misc/tune2fs.c:203
+msgid "Journal superblock not found!\n"
+msgstr ""
+
+#: misc/tune2fs.c:261
msgid "while trying to open external journal"
msgstr ""
-#: misc/tune2fs.c:222
+#: misc/tune2fs.c:267 misc/tune2fs.c:1961
#, c-format
msgid "%s is not a journal device.\n"
msgstr ""
-#: misc/tune2fs.c:237
-msgid "Journal superblock not found!\n"
-msgstr ""
-
-#: misc/tune2fs.c:248
+#: misc/tune2fs.c:277 misc/tune2fs.c:1972
msgid "Filesystem's UUID not found on journal device.\n"
msgstr ""
-#: misc/tune2fs.c:269
+#: misc/tune2fs.c:301
msgid ""
"Cannot locate journal device. It was NOT removed\n"
"Use -f option to remove missing journal device.\n"
msgstr ""
-#: misc/tune2fs.c:277
+#: misc/tune2fs.c:309
msgid "Journal removed\n"
msgstr ""
-#: misc/tune2fs.c:321
+#: misc/tune2fs.c:353
msgid "while reading bitmaps"
msgstr ""
-#: misc/tune2fs.c:329
+#: misc/tune2fs.c:361
msgid "while clearing journal inode"
msgstr ""
-#: misc/tune2fs.c:340
+#: misc/tune2fs.c:372
msgid "while writing journal inode"
msgstr ""
-#: misc/tune2fs.c:372 misc/tune2fs.c:385
+#: misc/tune2fs.c:404 misc/tune2fs.c:417
msgid "(and reboot afterwards!)\n"
msgstr ""
-#: misc/tune2fs.c:419
+#: misc/tune2fs.c:451
#, c-format
msgid "Clearing filesystem feature '%s' not supported.\n"
msgstr ""
-#: misc/tune2fs.c:425
+#: misc/tune2fs.c:457
#, c-format
msgid "Setting filesystem feature '%s' not supported.\n"
msgstr ""
-#: misc/tune2fs.c:434
+#: misc/tune2fs.c:466
msgid ""
"The has_journal feature may only be cleared when the filesystem is\n"
"unmounted or mounted read-only.\n"
msgstr ""
-#: misc/tune2fs.c:443
+#: misc/tune2fs.c:475
msgid ""
"The needs_recovery flag is set. Please run e2fsck before clearing\n"
"the has_journal flag.\n"
msgstr ""
-#: misc/tune2fs.c:462
+#: misc/tune2fs.c:494
msgid ""
"Setting filesystem feature 'sparse_super' not supported\n"
"for filesystems with the meta_bg feature enabled.\n"
msgstr ""
-#: misc/tune2fs.c:475
+#: misc/tune2fs.c:507
msgid ""
"The multiple mount protection feature can't\n"
"be set if the filesystem is mounted or\n"
"read-only.\n"
msgstr ""
-#: misc/tune2fs.c:493
+#: misc/tune2fs.c:525
#, c-format
msgid "Multiple mount protection has been enabled with update interval %ds.\n"
msgstr ""
-#: misc/tune2fs.c:502
+#: misc/tune2fs.c:534
msgid ""
"The multiple mount protection feature cannot\n"
"be disabled if the filesystem is readonly.\n"
msgstr ""
-#: misc/tune2fs.c:510
+#: misc/tune2fs.c:542
msgid "Error while reading bitmaps\n"
msgstr ""
-#: misc/tune2fs.c:519
+#: misc/tune2fs.c:551
#, c-format
msgid "Magic number in MMP block does not match. expected: %x, actual: %x\n"
msgstr ""
-#: misc/tune2fs.c:524
+#: misc/tune2fs.c:556
msgid "while reading MMP block."
msgstr ""
-#: misc/tune2fs.c:556
+#: misc/tune2fs.c:588
msgid ""
"Clearing the flex_bg flag would cause the the filesystem to be\n"
"inconsistent.\n"
msgstr ""
-#: misc/tune2fs.c:567
+#: misc/tune2fs.c:599
msgid ""
"The huge_file feature may only be cleared when the filesystem is\n"
"unmounted or mounted read-only.\n"
msgstr ""
-#: misc/tune2fs.c:627
+#: misc/tune2fs.c:659
msgid ""
"\n"
"Warning: '^quota' option overrides '-Q'arguments.\n"
msgstr ""
-#: misc/tune2fs.c:672
+#: misc/tune2fs.c:704
msgid "The filesystem already has a journal.\n"
msgstr ""
-#: misc/tune2fs.c:692
+#: misc/tune2fs.c:724
#, c-format
msgid ""
"\n"
"\twhile trying to open journal on %s\n"
msgstr ""
-#: misc/tune2fs.c:696
+#: misc/tune2fs.c:728
#, c-format
msgid "Creating journal on device %s: "
msgstr ""
-#: misc/tune2fs.c:704
+#: misc/tune2fs.c:736
#, c-format
msgid "while adding filesystem to journal on %s"
msgstr ""
-#: misc/tune2fs.c:710
+#: misc/tune2fs.c:742
msgid "Creating journal inode: "
msgstr ""
-#: misc/tune2fs.c:724
+#: misc/tune2fs.c:756
msgid ""
"\n"
"\twhile trying to create journal file"
msgstr ""
-#: misc/tune2fs.c:799
+#: misc/tune2fs.c:831
msgid "Couldn't allocate memory to parse quota options!\n"
msgstr ""
-#: misc/tune2fs.c:821
+#: misc/tune2fs.c:853
msgid ""
"\n"
"Bad quota options specified.\n"
@@ -5033,70 +5070,70 @@ msgid ""
"\n"
msgstr ""
-#: misc/tune2fs.c:881
+#: misc/tune2fs.c:913
#, c-format
msgid "Couldn't parse date/time specifier: %s"
msgstr ""
-#: misc/tune2fs.c:909 misc/tune2fs.c:922
+#: misc/tune2fs.c:941 misc/tune2fs.c:954
#, c-format
msgid "bad mounts count - %s"
msgstr ""
-#: misc/tune2fs.c:938
+#: misc/tune2fs.c:970
#, c-format
msgid "bad error behavior - %s"
msgstr ""
-#: misc/tune2fs.c:965
+#: misc/tune2fs.c:997
#, c-format
msgid "bad gid/group name - %s"
msgstr ""
-#: misc/tune2fs.c:998
+#: misc/tune2fs.c:1030
#, c-format
msgid "bad interval - %s"
msgstr ""
-#: misc/tune2fs.c:1027
+#: misc/tune2fs.c:1059
#, c-format
msgid "bad reserved block ratio - %s"
msgstr ""
-#: misc/tune2fs.c:1042
+#: misc/tune2fs.c:1074
msgid "-o may only be specified once"
msgstr ""
-#: misc/tune2fs.c:1051
+#: misc/tune2fs.c:1083
msgid "-O may only be specified once"
msgstr ""
-#: misc/tune2fs.c:1068
+#: misc/tune2fs.c:1100
#, c-format
msgid "bad reserved blocks count - %s"
msgstr ""
-#: misc/tune2fs.c:1097
+#: misc/tune2fs.c:1129
#, c-format
msgid "bad uid/user name - %s"
msgstr ""
-#: misc/tune2fs.c:1114
+#: misc/tune2fs.c:1146
#, c-format
msgid "bad inode size - %s"
msgstr ""
-#: misc/tune2fs.c:1121
+#: misc/tune2fs.c:1153
#, c-format
msgid "Inode size must be a power of two- %s"
msgstr ""
-#: misc/tune2fs.c:1215
+#: misc/tune2fs.c:1247
#, c-format
msgid "mmp_update_interval too big: %lu\n"
msgstr ""
-#: misc/tune2fs.c:1220
+#: misc/tune2fs.c:1252
#, c-format
msgid "Setting multiple mount protection update interval to %lu second\n"
msgid_plural ""
@@ -5104,27 +5141,27 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: misc/tune2fs.c:1243
+#: misc/tune2fs.c:1275
#, c-format
msgid "Invalid RAID stride: %s\n"
msgstr ""
-#: misc/tune2fs.c:1258
+#: misc/tune2fs.c:1290
#, c-format
msgid "Invalid RAID stripe-width: %s\n"
msgstr ""
-#: misc/tune2fs.c:1273
+#: misc/tune2fs.c:1305
#, c-format
msgid "Invalid hash algorithm: %s\n"
msgstr ""
-#: misc/tune2fs.c:1279
+#: misc/tune2fs.c:1311
#, c-format
msgid "Setting default hash algorithm to %s (%d)\n"
msgstr ""
-#: misc/tune2fs.c:1298
+#: misc/tune2fs.c:1330
msgid ""
"\n"
"Bad options specified.\n"
@@ -5142,46 +5179,46 @@ msgid ""
"\t^test_fs\n"
msgstr ""
-#: misc/tune2fs.c:1764
+#: misc/tune2fs.c:1796
msgid "Failed to read inode bitmap\n"
msgstr ""
-#: misc/tune2fs.c:1769
+#: misc/tune2fs.c:1801
msgid "Failed to read block bitmap\n"
msgstr ""
-#: misc/tune2fs.c:1786 resize/resize2fs.c:925
+#: misc/tune2fs.c:1818 resize/resize2fs.c:931
msgid "blocks to be moved"
msgstr ""
-#: misc/tune2fs.c:1789
+#: misc/tune2fs.c:1821
msgid "Failed to allocate block bitmap when increasing inode size\n"
msgstr ""
-#: misc/tune2fs.c:1795
+#: misc/tune2fs.c:1827
msgid "Not enough space to increase inode size \n"
msgstr ""
-#: misc/tune2fs.c:1800
+#: misc/tune2fs.c:1832
msgid "Failed to relocate blocks during inode resize \n"
msgstr ""
-#: misc/tune2fs.c:1832
+#: misc/tune2fs.c:1864
msgid ""
"Error in resizing the inode size.\n"
"Run e2undo to undo the file system changes. \n"
msgstr ""
-#: misc/tune2fs.c:1859
+#: misc/tune2fs.c:1891
msgid "Couldn't allocate memory for tdb filename\n"
msgstr ""
-#: misc/tune2fs.c:1880
+#: misc/tune2fs.c:1912
#, c-format
msgid "while trying to delete %s"
msgstr ""
-#: misc/tune2fs.c:1888
+#: misc/tune2fs.c:1920
#, c-format
msgid ""
"To undo the tune2fs operation please run the command\n"
@@ -5189,155 +5226,159 @@ msgid ""
"\n"
msgstr ""
-#: misc/tune2fs.c:1957
+#: misc/tune2fs.c:2054
#, c-format
msgid ""
"MMP block magic is bad. Try to fix it by running:\n"
"'e2fsck -f %s'\n"
msgstr ""
-#: misc/tune2fs.c:1975
+#: misc/tune2fs.c:2072
#, c-format
msgid "The inode size is already %lu\n"
msgstr ""
-#: misc/tune2fs.c:1982
+#: misc/tune2fs.c:2079
msgid "Shrinking inode size is not supported\n"
msgstr ""
-#: misc/tune2fs.c:1987
+#: misc/tune2fs.c:2084
#, c-format
msgid "Invalid inode size %lu (max %d)\n"
msgstr ""
-#: misc/tune2fs.c:2034
+#: misc/tune2fs.c:2131
#, c-format
msgid "Setting maximal mount count to %d\n"
msgstr ""
-#: misc/tune2fs.c:2040
+#: misc/tune2fs.c:2137
#, c-format
msgid "Setting current mount count to %d\n"
msgstr ""
-#: misc/tune2fs.c:2045
+#: misc/tune2fs.c:2142
#, c-format
msgid "Setting error behavior to %d\n"
msgstr ""
-#: misc/tune2fs.c:2050
+#: misc/tune2fs.c:2147
#, c-format
msgid "Setting reserved blocks gid to %lu\n"
msgstr ""
-#: misc/tune2fs.c:2055
+#: misc/tune2fs.c:2152
#, c-format
msgid "interval between checks is too big (%lu)"
msgstr ""
-#: misc/tune2fs.c:2062
+#: misc/tune2fs.c:2159
#, c-format
msgid "Setting interval between checks to %lu seconds\n"
msgstr ""
-#: misc/tune2fs.c:2069
+#: misc/tune2fs.c:2166
#, c-format
msgid "Setting reserved blocks percentage to %g%% (%llu blocks)\n"
msgstr ""
-#: misc/tune2fs.c:2075
+#: misc/tune2fs.c:2172
#, c-format
msgid "reserved blocks count is too big (%llu)"
msgstr ""
-#: misc/tune2fs.c:2082
+#: misc/tune2fs.c:2179
#, c-format
msgid "Setting reserved blocks count to %llu\n"
msgstr ""
-#: misc/tune2fs.c:2088
+#: misc/tune2fs.c:2185
msgid ""
"\n"
"The filesystem already has sparse superblocks.\n"
msgstr ""
-#: misc/tune2fs.c:2092
+#: misc/tune2fs.c:2189
msgid ""
"\n"
"Setting the sparse superblock flag not supported\n"
"for filesystems with the meta_bg feature enabled.\n"
msgstr ""
-#: misc/tune2fs.c:2103
+#: misc/tune2fs.c:2200
#, c-format
msgid ""
"\n"
"Sparse superblock flag set. %s"
msgstr ""
-#: misc/tune2fs.c:2108
+#: misc/tune2fs.c:2205
msgid ""
"\n"
"Clearing the sparse superblock flag not supported.\n"
msgstr ""
-#: misc/tune2fs.c:2116
+#: misc/tune2fs.c:2213
#, c-format
msgid "Setting time filesystem last checked to %s\n"
msgstr ""
-#: misc/tune2fs.c:2122
+#: misc/tune2fs.c:2219
#, c-format
msgid "Setting reserved blocks uid to %lu\n"
msgstr ""
-#: misc/tune2fs.c:2154
+#: misc/tune2fs.c:2251
msgid "Error in using clear_mmp. It must be used with -f\n"
msgstr ""
-#: misc/tune2fs.c:2172
+#: misc/tune2fs.c:2269
msgid ""
"The quota feature may only be changed when the filesystem is unmounted.\n"
msgstr ""
-#: misc/tune2fs.c:2191
+#: misc/tune2fs.c:2290
msgid "The UUID may only be changed when the filesystem is unmounted.\n"
msgstr ""
-#: misc/tune2fs.c:2219
+#: misc/tune2fs.c:2320
msgid "Invalid UUID format\n"
msgstr ""
-#: misc/tune2fs.c:2232
+#: misc/tune2fs.c:2335
+msgid "Need to update journal superblock.\n"
+msgstr ""
+
+#: misc/tune2fs.c:2356
msgid "The inode size may only be changed when the filesystem is unmounted.\n"
msgstr ""
-#: misc/tune2fs.c:2240
+#: misc/tune2fs.c:2364
msgid ""
"Changing the inode size not supported for filesystems with the flex_bg\n"
"feature enabled.\n"
msgstr ""
-#: misc/tune2fs.c:2253
+#: misc/tune2fs.c:2377
#, c-format
msgid "Setting inode size %lu\n"
msgstr ""
-#: misc/tune2fs.c:2256
+#: misc/tune2fs.c:2380
msgid "Failed to change inode size\n"
msgstr ""
-#: misc/tune2fs.c:2267
+#: misc/tune2fs.c:2391
#, c-format
msgid "Setting stride size to %d\n"
msgstr ""
-#: misc/tune2fs.c:2272
+#: misc/tune2fs.c:2396
#, c-format
msgid "Setting stripe width to %d\n"
msgstr ""
-#: misc/tune2fs.c:2279
+#: misc/tune2fs.c:2403
#, c-format
msgid "Setting extended default mount options to '%s'\n"
msgstr ""
@@ -5380,67 +5421,72 @@ msgstr ""
msgid "Found a %s partition table in %s\n"
msgstr ""
-#: misc/util.c:205
+#: misc/util.c:202
+#, c-format
+msgid "The file %s does not exist and no size was specified.\n"
+msgstr ""
+
+#: misc/util.c:210
#, c-format
msgid "Creating regular file %s\n"
msgstr ""
-#: misc/util.c:208
+#: misc/util.c:213
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: misc/util.c:211
+#: misc/util.c:216
msgid ""
"\n"
"The device apparently does not exist; did you specify it correctly?\n"
msgstr ""
-#: misc/util.c:233
+#: misc/util.c:238
#, c-format
msgid "%s is not a block special device.\n"
msgstr ""
-#: misc/util.c:255
+#: misc/util.c:260
#, c-format
msgid "%s contains a %s file system labelled '%s'\n"
msgstr ""
-#: misc/util.c:258
+#: misc/util.c:263
#, c-format
msgid "%s contains a %s file system\n"
msgstr ""
-#: misc/util.c:295
+#: misc/util.c:300
#, c-format
msgid "%s is entire device, not just one partition!\n"
msgstr ""
-#: misc/util.c:318
+#: misc/util.c:323
msgid "mke2fs forced anyway. Hope /etc/mtab is incorrect.\n"
msgstr ""
-#: misc/util.c:323
+#: misc/util.c:328
#, c-format
msgid "will not make a %s here!\n"
msgstr ""
-#: misc/util.c:330
+#: misc/util.c:335
msgid "mke2fs forced anyway.\n"
msgstr ""
-#: misc/util.c:346
+#: misc/util.c:351
msgid "Couldn't allocate memory to parse journal options!\n"
msgstr ""
-#: misc/util.c:371
+#: misc/util.c:376
#, c-format
msgid ""
"\n"
"Could not find journal device matching %s\n"
msgstr ""
-#: misc/util.c:398
+#: misc/util.c:403
msgid ""
"\n"
"Bad journal options specified.\n"
@@ -5457,13 +5503,13 @@ msgid ""
"\n"
msgstr ""
-#: misc/util.c:429
+#: misc/util.c:434
msgid ""
"\n"
"Filesystem too small for a journal\n"
msgstr ""
-#: misc/util.c:436
+#: misc/util.c:441
#, c-format
msgid ""
"\n"
@@ -5471,143 +5517,143 @@ msgid ""
"between 1024 and 10240000 blocks. Aborting.\n"
msgstr ""
-#: misc/util.c:444
+#: misc/util.c:449
msgid ""
"\n"
"Journal size too big for filesystem.\n"
msgstr ""
-#: misc/util.c:458
+#: misc/util.c:463
#, c-format
msgid ""
"This filesystem will be automatically checked every %d mounts or\n"
"%g days, whichever comes first. Use tune2fs -c or -i to override.\n"
msgstr ""
-#: misc/uuidd.c:48
+#: misc/uuidd.c:49
#, c-format
msgid "Usage: %s [-d] [-p pidfile] [-s socketpath] [-T timeout]\n"
msgstr ""
-#: misc/uuidd.c:50
+#: misc/uuidd.c:51
#, c-format
msgid " %s [-r|t] [-n num] [-s socketpath]\n"
msgstr ""
-#: misc/uuidd.c:52
+#: misc/uuidd.c:53
#, c-format
msgid " %s -k\n"
msgstr ""
-#: misc/uuidd.c:154
+#: misc/uuidd.c:155
msgid "bad arguments"
msgstr ""
-#: misc/uuidd.c:172
+#: misc/uuidd.c:173
msgid "connect"
msgstr ""
-#: misc/uuidd.c:191
+#: misc/uuidd.c:192
msgid "write"
msgstr ""
-#: misc/uuidd.c:199
+#: misc/uuidd.c:200
msgid "read count"
msgstr ""
-#: misc/uuidd.c:205
+#: misc/uuidd.c:206
msgid "bad response length"
msgstr ""
-#: misc/uuidd.c:270
+#: misc/uuidd.c:271
#, c-format
msgid "uuidd daemon already running at pid %s\n"
msgstr ""
-#: misc/uuidd.c:278
+#: misc/uuidd.c:279
#, c-format
msgid "Couldn't create unix stream socket: %s"
msgstr ""
-#: misc/uuidd.c:307
+#: misc/uuidd.c:308
#, c-format
msgid "Couldn't bind unix socket %s: %s\n"
msgstr ""
-#: misc/uuidd.c:315
+#: misc/uuidd.c:316
#, c-format
msgid "Couldn't listen on unix socket %s: %s\n"
msgstr ""
-#: misc/uuidd.c:353
+#: misc/uuidd.c:354
#, c-format
msgid "Error reading from client, len = %d\n"
msgstr ""
-#: misc/uuidd.c:361
+#: misc/uuidd.c:362
#, c-format
msgid "operation %d, incoming num = %d\n"
msgstr ""
-#: misc/uuidd.c:380
+#: misc/uuidd.c:381
#, c-format
msgid "Generated time UUID: %s\n"
msgstr ""
-#: misc/uuidd.c:390
+#: misc/uuidd.c:391
#, c-format
msgid "Generated random UUID: %s\n"
msgstr ""
-#: misc/uuidd.c:399
+#: misc/uuidd.c:400
#, c-format
msgid "Generated time UUID %s and subsequent UUID\n"
msgid_plural "Generated time UUID %s and %d subsequent UUIDs\n"
msgstr[0] ""
msgstr[1] ""
-#: misc/uuidd.c:420
+#: misc/uuidd.c:421
#, c-format
msgid "Generated %d UUID's:\n"
msgstr ""
-#: misc/uuidd.c:432
+#: misc/uuidd.c:433
#, c-format
msgid "Invalid operation %d\n"
msgstr ""
-#: misc/uuidd.c:476 misc/uuidd.c:498
+#: misc/uuidd.c:477 misc/uuidd.c:499
#, c-format
msgid "Bad number: %s\n"
msgstr ""
-#: misc/uuidd.c:533 misc/uuidd.c:562
+#: misc/uuidd.c:534 misc/uuidd.c:563
#, c-format
msgid "Error calling uuidd daemon (%s): %s\n"
msgstr ""
-#: misc/uuidd.c:543
+#: misc/uuidd.c:544
#, c-format
msgid "%s and subsequent UUID\n"
msgid_plural "%s and subsequent %d UUIDs\n"
msgstr[0] ""
msgstr[1] ""
-#: misc/uuidd.c:547
+#: misc/uuidd.c:548
msgid "List of UUID's:\n"
msgstr ""
-#: misc/uuidd.c:568
+#: misc/uuidd.c:569
#, c-format
msgid "Unexpected reply length from server %d\n"
msgstr ""
-#: misc/uuidd.c:585
+#: misc/uuidd.c:586
#, c-format
msgid "Couldn't kill uuidd running at pid %d: %s\n"
msgstr ""
-#: misc/uuidd.c:591
+#: misc/uuidd.c:592
#, c-format
msgid "Killed uuidd running at pid %d\n"
msgstr ""
@@ -5680,37 +5726,37 @@ msgstr ""
msgid "while getting stat information for %s"
msgstr ""
-#: resize/main.c:327
+#: resize/main.c:328
#, c-format
msgid ""
"Please run 'e2fsck -f %s' first.\n"
"\n"
msgstr ""
-#: resize/main.c:346
+#: resize/main.c:347
#, c-format
msgid "Estimated minimum size of the filesystem: %llu\n"
msgstr ""
-#: resize/main.c:382
+#: resize/main.c:383
#, c-format
msgid "Invalid new size: %s\n"
msgstr ""
-#: resize/main.c:398
+#: resize/main.c:399
msgid "New size too large to be expressed in 32 bits\n"
msgstr ""
-#: resize/main.c:406
+#: resize/main.c:407
#, c-format
msgid "New size smaller than minimum (%llu)\n"
msgstr ""
-#: resize/main.c:412
+#: resize/main.c:413
msgid "Invalid stride length"
msgstr ""
-#: resize/main.c:436
+#: resize/main.c:437
#, c-format
msgid ""
"The containing partition (or device) is only %llu (%dk) blocks.\n"
@@ -5718,38 +5764,38 @@ msgid ""
"\n"
msgstr ""
-#: resize/main.c:443
+#: resize/main.c:444
#, c-format
msgid ""
-"The filesystem is already %llu blocks long. Nothing to do!\n"
+"The filesystem is already %llu (%dk) blocks long. Nothing to do!\n"
"\n"
msgstr ""
-#: resize/main.c:452
+#: resize/main.c:454
#, c-format
msgid "Resizing the filesystem on %s to %llu (%dk) blocks.\n"
msgstr ""
-#: resize/main.c:461
+#: resize/main.c:463
#, c-format
msgid "while trying to resize %s"
msgstr ""
-#: resize/main.c:464
+#: resize/main.c:466
#, c-format
msgid ""
"Please run 'e2fsck -fy %s' to fix the filesystem\n"
"after the aborted resize operation.\n"
msgstr ""
-#: resize/main.c:470
+#: resize/main.c:472
#, c-format
msgid ""
-"The filesystem on %s is now %llu blocks long.\n"
+"The filesystem on %s is now %llu (%dk) blocks long.\n"
"\n"
msgstr ""
-#: resize/main.c:485
+#: resize/main.c:487
#, c-format
msgid "while trying to truncate %s"
msgstr ""
@@ -5827,32 +5873,32 @@ msgstr ""
msgid "inodes (%llu) must be less than %u"
msgstr ""
-#: resize/resize2fs.c:685
+#: resize/resize2fs.c:691
msgid "reserved blocks"
msgstr ""
-#: resize/resize2fs.c:930
+#: resize/resize2fs.c:936
msgid "meta-data blocks"
msgstr ""
-#: resize/resize2fs.c:1031 resize/resize2fs.c:1828
+#: resize/resize2fs.c:1039 resize/resize2fs.c:1836
msgid "new meta blocks"
msgstr ""
-#: resize/resize2fs.c:2046
+#: resize/resize2fs.c:2054
msgid "Should never happen! No sb in last super_sparse bg?\n"
msgstr ""
-#: resize/resize2fs.c:2051
+#: resize/resize2fs.c:2059
msgid "Should never happen! Unexpected old_desc in super_sparse bg?\n"
msgstr ""
-#: resize/resize2fs.c:2129
+#: resize/resize2fs.c:2137
msgid "Should never happen: resize inode corrupt!\n"
msgstr ""
#: lib/ext2fs/ext2_err.c:11
-msgid "EXT2FS Library version 1.42.11"
+msgid "EXT2FS Library version 1.42.12"
msgstr ""
#: lib/ext2fs/ext2_err.c:12
diff --git a/version.h b/version.h
index f38b6f3a..13119392 100644
--- a/version.h
+++ b/version.h
@@ -7,5 +7,5 @@
* file may be redistributed under the GNU Public License v2.
*/
-#define E2FSPROGS_VERSION "1.42.11"
-#define E2FSPROGS_DATE "09-Jul-2014"
+#define E2FSPROGS_VERSION "1.42.12"
+#define E2FSPROGS_DATE "25-Aug-2014"