Whamcloud - gitweb
Update release notes, etc., for the 1.46.2 release v1.46.2
authorTheodore Ts'o <tytso@mit.edu>
Sun, 28 Feb 2021 14:57:25 +0000 (09:57 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 1 Mar 2021 02:46:44 +0000 (21:46 -0500)
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
.release-checklist
README
RELEASE-NOTES
debian/changelog
doc/RelNotes/v1.46.2.txt [new file with mode: 0644]
doc/libext2fs.texinfo
e2fsprogs.lsm
po/e2fsprogs.pot
version.h

index c8a6fc2..276dd8a 100644 (file)
@@ -2,19 +2,18 @@
 
 2)  "make check"!!!
 
-3)  Use "git log" to assemble release notes.
+3)  Use "git log" to assemble release notes and update RELEASE-NOTES symlink.
 
-4)  Run "(cd po; make e2fsprogs.pot-update)" to update the translation template.
-
-5)  Update files which contain version information
+4)  Update files which contain version information
        version.h
        README
-       RELEASE-NOTES
        e2fsprogs.lsm
        e2fsprogs.spec
        doc/libext2fs.texinfo (three places)
 
-6)  Make source distribution
+5)  Run "(cd po; make e2fsprogs.pot-update)" to update the translation template.
+
+6)  Make source tarfile
 
-7)  Adjust sizes in e2fsprogs-VER.lsm; rebuild source files; rebuild RPM files
+7)  Adjust sizes in e2fsprogs-VER.lsm; rebuild source files; regenerate source tarfile
 
diff --git a/README b/README
index 4f516e0..fa4d997 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-       This is the new version (1.46.1) of the second extended file
+       This is the new version (1.46.2) of the second extended file
 system management programs.
 
        From time to time, I release new versions of e2fsprogs, to fix
index c894cce..a0e8f57 120000 (symlink)
@@ -1 +1 @@
-doc/RelNotes/v1.46.1.txt
\ No newline at end of file
+doc/RelNotes/v1.46.2.txt
\ No newline at end of file
index 42d4b77..f462967 100644 (file)
@@ -1,3 +1,29 @@
+e2fsprogs (1.46.2-1) unstable; urgency=medium
+
+  * New upstream release
+  * Add support for the FS_NOCOMP_FL flag to chattr and lsattr.
+  * Fix Direct I/O support on block devices where the logical block size is
+    greater 1k.
+  * Fix debugfs's logdump so it works on file systems whose block size is
+    greater than 8k.
+  * Fix the debugfs rdump and ls commands so they will work correctly for
+    uid's and gid's => 65536.
+  * Teach the tune2fs program to support "random" as an argument to the -c
+    option, which sets the maximum mount count.  (Closes: #926293)
+  * Fix a where e2fsck could a crash when there is error while e2fsck is
+    trying to open the file system, and e2fsck calls ext2fs_mmp_stop()
+    before MMP has been initialized.  (Closes: #696609)
+  * Fix the debugfs write and symlink commands so they support targets which
+    contain a pathname (instead of only working when writing a file or
+    creating a symlink in the current directory).
+  * When resizing a small file systems to a super-large file system size,
+    avoid issuing some scary bitmap operation warnings.  
+  * Improved error checking in the fast commit replay code in e2fsck.
+  * Updated and clarified the chattr man page.
+  * Update the Spanish translation from the translation project.
+
+ -- Theodore Y. Ts'o <tytso@mit.edu>  Sun, 28 Feb 2021 21:24:34 -0500
+
 e2fsprogs (1.46.1-1) unstable; urgency=medium
 
   * Drop transitional packages libcomerr2, e2fslibs, and e2fslibs-dev
diff --git a/doc/RelNotes/v1.46.2.txt b/doc/RelNotes/v1.46.2.txt
new file mode 100644 (file)
index 0000000..8f15738
--- /dev/null
@@ -0,0 +1,64 @@
+E2fsprogs 1.46.2 (February 28, 2021)
+===================================
+
+Updates/Fixes since v1.46.1:
+
+UI and Features
+---------------
+
+Teach the tune2fs program to support "random" as an argument to the -c
+option, which sets the maximum mount count.  (Addresses Debian Bug:
+#926293)
+
+Add support for the FS_NOCOMP_FL flag to chattr and lsattr.
+
+
+Fixes
+-----
+
+When resizing a small file systems to a super-large file system size,
+avoid issuing some scary bitmap operation warnings.  (Addresses Github
+issue https://github.com/tytso/e2fsprogs/issues/60)
+
+Fix the debugfs rdump and ls commands so they will work correctly for
+uid's and gid's => 65536.  (Addresses Github issue issue
+https://github.com/tytso/e2fsprogs/issues/63)
+
+Fix the debugfs write and symlink commands so they support targets which
+contain a pathname (instead of only working when writing a file or
+creating a symlink in the current directory).  (Addresses Github issue
+https://github.com/tytso/e2fsprogs/issues/61)
+
+Fix Direct I/O support on block devices where the logical block size is
+greater 1k.  (This includes Advanced Format HDD's, where the sector size
+is 4k, and IBM Mainframe DASD's, where the sector size is 2k.)
+
+Fix debugfs's logdump so it works on file systems whose block size is
+greater than 8k.
+
+Fix a where e2fsck could a crash when there is error while e2fsck is
+trying to open the file system, and e2fsck calls ext2fs_mmp_stop()
+before MMP has been initialized.  (Addresses Debian Bug: #696609)
+
+Improved error checking in the fast commit replay code in e2fsck.
+
+Updated and clarified the chattr man page.
+
+
+Performance, Internal Implementation, Development Support etc.
+--------------------------------------------------------------
+
+Fix various compiler and Coverity warnings.
+
+Update the Spanish translation from the translation project.
+
+Update the e2fsck/iscan.c test program so that it builds again.
+
+Fix an environmental dependency bug for the m_rootdir_acl regression
+test.
+
+Avoid the use of loff_t, which is not available for all compilers /
+system include files.
+
+Fix failure of the t_mmp_fail test when running on a device with a 4k
+logical sector size.
index 7ebcfba..26cfb0a 100644 (file)
@@ -1,7 +1,7 @@
 \input texinfo    @c -*-texinfo-*-
 @c %**start of header
 @setfilename libext2fs.info
-@settitle The EXT2FS Library (version 1.46.1)
+@settitle The EXT2FS Library (version 1.46.2)
 @synindex tp fn
 @comment %**end of header
 
@@ -60,7 +60,7 @@ by the author.
 
 @title The EXT2FS Library
 @subtitle The EXT2FS Library
-@subtitle Version 1.46.1
+@subtitle Version 1.46.2
 @subtitle February 2021
 
 @author by Theodore Ts'o
@@ -101,7 +101,7 @@ by the Foundation.
 
 @top The EXT2FS Library
 
-This manual documents the EXT2FS Library, version 1.46.1.
+This manual documents the EXT2FS Library, version 1.46.2.
 
 @menu
 * Introduction to the EXT2FS Library::  
index 00bf9ce..9f99921 100644 (file)
@@ -1,15 +1,15 @@
 Begin3
 Title:          EXT2 Filesystem utilities
-Version:        1.46.1
-Entered-date:   2021-02-9
+Version:        1.46.2
+Entered-date:   2021-02-28
 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:   ftp.kernel.org /pub/linux/kernel/people/tytso/e2fsprogs
-                9272kB e2fsprogs-1.46.1.tar.gz
-                1kB    e2fsprogs-1.46.1.lsm
+                9276kB e2fsprogs-1.46.2.tar.gz
+                1kB    e2fsprogs-1.46.2.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/4.x/5.x
 Copying-policy: GPL-2/LGPL-2
index b29cc4b..1ecd767 100644 (file)
@@ -77,9 +77,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: e2fsprogs v1.46.1\n"
+"Project-Id-Version: e2fsprogs 1.46.2\n"
 "Report-Msgid-Bugs-To: tytso@alum.mit.edu\n"
-"POT-Creation-Date: 2021-02-09 17:42-0500\n"
+"POT-Creation-Date: 2021-02-28 09:37-0500\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"
@@ -102,30 +102,30 @@ msgstr ""
 msgid "while reading the bad blocks inode"
 msgstr ""
 
-#: e2fsck/badblocks.c:72 e2fsck/scantest.c:107 e2fsck/unix.c:1581
-#: e2fsck/unix.c:1695 misc/badblocks.c:1251 misc/badblocks.c:1259
-#: misc/badblocks.c:1273 misc/badblocks.c:1285 misc/dumpe2fs.c:437
-#: misc/dumpe2fs.c:700 misc/dumpe2fs.c:704 misc/e2image.c:1430
-#: misc/e2image.c:1628 misc/e2image.c:1649 misc/mke2fs.c:237
-#: misc/tune2fs.c:2875 misc/tune2fs.c:2975 resize/main.c:416
+#: e2fsck/badblocks.c:72 e2fsck/scantest.c:107 e2fsck/unix.c:1584
+#: e2fsck/unix.c:1698 misc/badblocks.c:1264 misc/badblocks.c:1272
+#: misc/badblocks.c:1286 misc/badblocks.c:1298 misc/dumpe2fs.c:437
+#: misc/dumpe2fs.c:702 misc/dumpe2fs.c:706 misc/e2image.c:1437
+#: misc/e2image.c:1635 misc/e2image.c:1656 misc/mke2fs.c:237
+#: misc/tune2fs.c:2880 misc/tune2fs.c:2980 resize/main.c:416
 #, c-format
 msgid "while trying to open %s"
 msgstr ""
 
-#: e2fsck/badblocks.c:83
+#: e2fsck/badblocks.c:84
 #, c-format
 msgid "while trying popen '%s'"
 msgstr ""
 
-#: e2fsck/badblocks.c:94 misc/mke2fs.c:244
+#: e2fsck/badblocks.c:95 misc/mke2fs.c:244
 msgid "while reading in list of bad blocks from file"
 msgstr ""
 
-#: e2fsck/badblocks.c:105
+#: e2fsck/badblocks.c:106
 msgid "while updating bad block inode"
 msgstr ""
 
-#: e2fsck/badblocks.c:133
+#: e2fsck/badblocks.c:134
 #, c-format
 msgid "Warning: illegal block %u found in bad block inode.  Cleared.\n"
 msgstr ""
@@ -204,69 +204,36 @@ msgstr ""
 msgid "BLKFLSBUF ioctl not supported!  Can't flush buffers.\n"
 msgstr ""
 
-#: e2fsck/iscan.c:44
-#, c-format
-msgid "Usage: %s [-F] [-I inode_buffer_blocks] device\n"
-msgstr ""
-
-#: e2fsck/iscan.c:81 e2fsck/unix.c:1091
-#, c-format
-msgid "while opening %s for flushing"
-msgstr ""
-
-#: e2fsck/iscan.c:86 e2fsck/unix.c:1097 resize/main.c:385
-#, c-format
-msgid "while trying to flush %s"
-msgstr ""
-
-#: e2fsck/iscan.c:110
-#, c-format
-msgid "while trying to open '%s'"
-msgstr ""
-
-#: e2fsck/iscan.c:119 e2fsck/scantest.c:114 misc/e2image.c:1323
-msgid "while opening inode scan"
-msgstr ""
-
-#: e2fsck/iscan.c:127 misc/e2image.c:1342
-msgid "while getting next inode"
-msgstr ""
-
-#: e2fsck/iscan.c:136
-#, c-format
-msgid "%u inodes scanned.\n"
-msgstr ""
-
-#: e2fsck/journal.c:1262
+#: e2fsck/journal.c:1263
 msgid "reading journal superblock\n"
 msgstr ""
 
-#: e2fsck/journal.c:1335
+#: e2fsck/journal.c:1336
 #, c-format
 msgid "%s: no valid journal superblock found\n"
 msgstr ""
 
-#: e2fsck/journal.c:1344
+#: e2fsck/journal.c:1345
 #, c-format
 msgid "%s: journal too short\n"
 msgstr ""
 
-#: e2fsck/journal.c:1357
+#: e2fsck/journal.c:1358
 #, c-format
 msgid "%s: incorrect fast commit blocks\n"
 msgstr ""
 
-#: e2fsck/journal.c:1659 misc/fuse2fs.c:3797
+#: e2fsck/journal.c:1660 misc/fuse2fs.c:3797
 #, c-format
 msgid "%s: recovering journal\n"
 msgstr ""
 
-#: e2fsck/journal.c:1661
+#: e2fsck/journal.c:1662
 #, c-format
 msgid "%s: won't do journal recovery while read-only\n"
 msgstr ""
 
-#: e2fsck/journal.c:1688
+#: e2fsck/journal.c:1689
 #, c-format
 msgid "while trying to re-open %s"
 msgstr ""
@@ -435,72 +402,72 @@ msgstr ""
 msgid "<Reserved inode 10>"
 msgstr ""
 
-#: e2fsck/message.c:324
+#: e2fsck/message.c:325
 msgid "regular file"
 msgstr ""
 
-#: e2fsck/message.c:326
+#: e2fsck/message.c:327
 msgid "directory"
 msgstr ""
 
-#: e2fsck/message.c:328
+#: e2fsck/message.c:329
 msgid "character device"
 msgstr ""
 
-#: e2fsck/message.c:330
+#: e2fsck/message.c:331
 msgid "block device"
 msgstr ""
 
-#: e2fsck/message.c:332
+#: e2fsck/message.c:333
 msgid "named pipe"
 msgstr ""
 
-#: e2fsck/message.c:334
+#: e2fsck/message.c:335
 msgid "symbolic link"
 msgstr ""
 
-#: e2fsck/message.c:336 misc/uuidd.c:162
+#: e2fsck/message.c:337 misc/uuidd.c:162
 msgid "socket"
 msgstr ""
 
-#: e2fsck/message.c:338
+#: e2fsck/message.c:339
 #, c-format
 msgid "unknown file type with mode 0%o"
 msgstr ""
 
-#: e2fsck/message.c:409
+#: e2fsck/message.c:410
 msgid "indirect block"
 msgstr ""
 
-#: e2fsck/message.c:411
+#: e2fsck/message.c:412
 msgid "double indirect block"
 msgstr ""
 
-#: e2fsck/message.c:413
+#: e2fsck/message.c:414
 msgid "triple indirect block"
 msgstr ""
 
-#: e2fsck/message.c:415
+#: e2fsck/message.c:416
 msgid "translator block"
 msgstr ""
 
-#: e2fsck/message.c:417
+#: e2fsck/message.c:418
 msgid "block #"
 msgstr ""
 
-#: e2fsck/message.c:479
+#: e2fsck/message.c:482
 msgid "user"
 msgstr ""
 
-#: e2fsck/message.c:482
+#: e2fsck/message.c:485
 msgid "group"
 msgstr ""
 
-#: e2fsck/message.c:485
+#: e2fsck/message.c:488
 msgid "project"
 msgstr ""
 
-#: e2fsck/message.c:488
+#: e2fsck/message.c:491
 msgid "unknown quota type"
 msgstr ""
 
@@ -513,16 +480,16 @@ msgstr ""
 msgid "internal error: can't find dup_blk for %llu\n"
 msgstr ""
 
-#: e2fsck/pass1b.c:956
+#: e2fsck/pass1b.c:957
 msgid "returned from clone_file_block"
 msgstr ""
 
-#: e2fsck/pass1b.c:980
+#: e2fsck/pass1b.c:981
 #, c-format
 msgid "internal error: couldn't lookup EA block record for %llu"
 msgstr ""
 
-#: e2fsck/pass1b.c:992
+#: e2fsck/pass1b.c:994
 #, c-format
 msgid "internal error: couldn't lookup EA inode record for %u"
 msgstr ""
@@ -532,7 +499,7 @@ msgstr ""
 msgid "while hashing entry with e_value_inum = %u"
 msgstr ""
 
-#: e2fsck/pass1.c:767 e2fsck/pass2.c:1132
+#: e2fsck/pass1.c:767 e2fsck/pass2.c:1133
 msgid "reading directory block"
 msgstr ""
 
@@ -552,7 +519,7 @@ msgstr ""
 msgid "regular file inode map"
 msgstr ""
 
-#: e2fsck/pass1.c:1248 misc/e2image.c:1282
+#: e2fsck/pass1.c:1248 misc/e2image.c:1289
 msgid "in-use block map"
 msgstr ""
 
@@ -597,20 +564,20 @@ msgstr ""
 msgid "ext attr block map"
 msgstr ""
 
-#: e2fsck/pass1.c:3719
+#: e2fsck/pass1.c:3726
 #, c-format
 msgid "%6lu(%c): expecting %6lu got phys %6lu (blkcnt %lld)\n"
 msgstr ""
 
-#: e2fsck/pass1.c:4140
+#: e2fsck/pass1.c:4147
 msgid "block bitmap"
 msgstr ""
 
-#: e2fsck/pass1.c:4146
+#: e2fsck/pass1.c:4153
 msgid "inode bitmap"
 msgstr ""
 
-#: e2fsck/pass1.c:4152
+#: e2fsck/pass1.c:4159
 msgid "inode table"
 msgstr ""
 
@@ -618,11 +585,11 @@ msgstr ""
 msgid "Pass 2"
 msgstr ""
 
-#: e2fsck/pass2.c:553
+#: e2fsck/pass2.c:554
 msgid "NLS is broken."
 msgstr ""
 
-#: e2fsck/pass2.c:1205 e2fsck/pass2.c:1389
+#: e2fsck/pass2.c:1206 e2fsck/pass2.c:1390
 msgid "Can not continue."
 msgstr ""
 
@@ -2982,6 +2949,10 @@ msgstr ""
 msgid "size of inode=%d\n"
 msgstr ""
 
+#: e2fsck/scantest.c:114 misc/e2image.c:1330
+msgid "while opening inode scan"
+msgstr ""
+
 #: e2fsck/scantest.c:119
 msgid "while starting inode scan"
 msgstr ""
@@ -3044,7 +3015,7 @@ msgstr ""
 msgid "%s: %u/%u files (%0d.%d%% non-contiguous), %llu/%llu blocks\n"
 msgstr ""
 
-#: e2fsck/unix.c:163
+#: e2fsck/unix.c:164
 #, c-format
 msgid ""
 "\n"
@@ -3055,51 +3026,51 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:167
+#: e2fsck/unix.c:168
 #, c-format
 msgid "%12u non-contiguous file (%0d.%d%%)\n"
 msgid_plural "%12u non-contiguous files (%0d.%d%%)\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:172
+#: e2fsck/unix.c:173
 #, c-format
 msgid "%12u non-contiguous directory (%0d.%d%%)\n"
 msgid_plural "%12u non-contiguous directories (%0d.%d%%)\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:177
+#: e2fsck/unix.c:178
 #, c-format
 msgid "             # of inodes with ind/dind/tind blocks: %u/%u/%u\n"
 msgstr ""
 
-#: e2fsck/unix.c:185
+#: e2fsck/unix.c:186
 msgid "             Extent depth histogram: "
 msgstr ""
 
-#: e2fsck/unix.c:194
+#: e2fsck/unix.c:195
 #, c-format
 msgid "%12llu block used (%2.2f%%, out of %llu)\n"
 msgid_plural "%12llu blocks used (%2.2f%%, out of %llu)\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:198
+#: e2fsck/unix.c:200
 #, c-format
 msgid "%12u bad block\n"
 msgid_plural "%12u bad blocks\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:200
+#: e2fsck/unix.c:202
 #, c-format
 msgid "%12u large file\n"
 msgid_plural "%12u large files\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:202
+#: e2fsck/unix.c:204
 #, c-format
 msgid ""
 "\n"
@@ -3110,102 +3081,102 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:204
+#: e2fsck/unix.c:206
 #, c-format
 msgid "%12u directory\n"
 msgid_plural "%12u directories\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:206
+#: e2fsck/unix.c:208
 #, c-format
 msgid "%12u character device file\n"
 msgid_plural "%12u character device files\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:209
+#: e2fsck/unix.c:211
 #, c-format
 msgid "%12u block device file\n"
 msgid_plural "%12u block device files\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:211
+#: e2fsck/unix.c:213
 #, c-format
 msgid "%12u fifo\n"
 msgid_plural "%12u fifos\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:213
+#: e2fsck/unix.c:215
 #, c-format
 msgid "%12u link\n"
 msgid_plural "%12u links\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:215
+#: e2fsck/unix.c:217
 #, c-format
 msgid "%12u symbolic link"
 msgid_plural "%12u symbolic links"
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:217
+#: e2fsck/unix.c:219
 #, c-format
 msgid " (%u fast symbolic link)\n"
 msgid_plural " (%u fast symbolic links)\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:221
+#: e2fsck/unix.c:223
 #, c-format
 msgid "%12u socket\n"
 msgid_plural "%12u sockets\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:225
+#: e2fsck/unix.c:227
 #, c-format
 msgid "%12u file\n"
 msgid_plural "%12u files\n"
 msgstr[0] ""
 msgstr[1] ""
 
-#: e2fsck/unix.c:238 misc/badblocks.c:1002 misc/tune2fs.c:3067 misc/util.c:129
+#: e2fsck/unix.c:240 misc/badblocks.c:1001 misc/tune2fs.c:3072 misc/util.c:129
 #: resize/main.c:356
 #, c-format
 msgid "while determining whether %s is mounted."
 msgstr ""
 
-#: e2fsck/unix.c:259
+#: e2fsck/unix.c:261
 #, c-format
 msgid "Warning!  %s is mounted.\n"
 msgstr ""
 
-#: e2fsck/unix.c:262
+#: e2fsck/unix.c:264
 #, c-format
 msgid "Warning!  %s is in use.\n"
 msgstr ""
 
-#: e2fsck/unix.c:268
+#: e2fsck/unix.c:270
 #, c-format
 msgid "%s is mounted.\n"
 msgstr ""
 
-#: e2fsck/unix.c:270
+#: e2fsck/unix.c:272
 #, c-format
 msgid "%s is in use.\n"
 msgstr ""
 
-#: e2fsck/unix.c:272
+#: e2fsck/unix.c:274
 msgid ""
 "Cannot continue, aborting.\n"
 "\n"
 msgstr ""
 
-#: e2fsck/unix.c:274
+#: e2fsck/unix.c:276
 msgid ""
 "\n"
 "\n"
@@ -3214,85 +3185,85 @@ msgid ""
 "\n"
 msgstr ""
 
-#: e2fsck/unix.c:279
+#: e2fsck/unix.c:281
 msgid "Do you really want to continue"
 msgstr ""
 
-#: e2fsck/unix.c:281
+#: e2fsck/unix.c:283
 msgid "check aborted.\n"
 msgstr ""
 
-#: e2fsck/unix.c:375
+#: e2fsck/unix.c:377
 msgid " contains a file system with errors"
 msgstr ""
 
-#: e2fsck/unix.c:377
+#: e2fsck/unix.c:379
 msgid " was not cleanly unmounted"
 msgstr ""
 
-#: e2fsck/unix.c:379
+#: e2fsck/unix.c:381
 msgid " primary superblock features different from backup"
 msgstr ""
 
-#: e2fsck/unix.c:383
+#: e2fsck/unix.c:385
 #, c-format
 msgid " has been mounted %u times without being checked"
 msgstr ""
 
-#: e2fsck/unix.c:390
+#: e2fsck/unix.c:392
 msgid " has filesystem last checked time in the future"
 msgstr ""
 
-#: e2fsck/unix.c:396
+#: e2fsck/unix.c:398
 #, c-format
 msgid " has gone %u days without being checked"
 msgstr ""
 
-#: e2fsck/unix.c:404
+#: e2fsck/unix.c:406
 msgid "ignoring check interval, broken_system_clock set\n"
 msgstr ""
 
-#: e2fsck/unix.c:410
+#: e2fsck/unix.c:412
 msgid ", check forced.\n"
 msgstr ""
 
-#: e2fsck/unix.c:443
+#: e2fsck/unix.c:445
 #, c-format
 msgid "%s: clean, %u/%u files, %llu/%llu blocks"
 msgstr ""
 
-#: e2fsck/unix.c:463
+#: e2fsck/unix.c:465
 msgid " (check deferred; on battery)"
 msgstr ""
 
-#: e2fsck/unix.c:466
+#: e2fsck/unix.c:468
 msgid " (check after next mount)"
 msgstr ""
 
-#: e2fsck/unix.c:468
+#: e2fsck/unix.c:470
 #, c-format
 msgid " (check in %ld mounts)"
 msgstr ""
 
-#: e2fsck/unix.c:618
+#: e2fsck/unix.c:620
 #, c-format
 msgid "ERROR: Couldn't open /dev/null (%s)\n"
 msgstr ""
 
-#: e2fsck/unix.c:689
+#: e2fsck/unix.c:691
 msgid "Invalid EA version.\n"
 msgstr ""
 
-#: e2fsck/unix.c:702
+#: e2fsck/unix.c:704
 msgid "Invalid readahead buffer size.\n"
 msgstr ""
 
-#: e2fsck/unix.c:765
+#: e2fsck/unix.c:767
 #, c-format
 msgid "Unknown extended option: %s\n"
 msgstr ""
 
-#: e2fsck/unix.c:773
+#: e2fsck/unix.c:775
 msgid ""
 "\n"
 "Extended options are separated by commas, and may take an argument which\n"
@@ -3300,77 +3271,87 @@ msgid ""
 "\n"
 msgstr ""
 
-#: e2fsck/unix.c:777
+#: e2fsck/unix.c:779
 msgid "\tea_ver=<ea_version (1 or 2)>\n"
 msgstr ""
 
-#: e2fsck/unix.c:786
+#: e2fsck/unix.c:788
 msgid "\treadahead_kb=<buffer size>\n"
 msgstr ""
 
-#: e2fsck/unix.c:799
+#: e2fsck/unix.c:801
 #, c-format
 msgid ""
 "Syntax error in e2fsck config file (%s, line #%d)\n"
 "\t%s\n"
 msgstr ""
 
-#: e2fsck/unix.c:872
+#: e2fsck/unix.c:874
 #, c-format
 msgid "Error validating file descriptor %d: %s\n"
 msgstr ""
 
-#: e2fsck/unix.c:876
+#: e2fsck/unix.c:878
 msgid "Invalid completion information file descriptor"
 msgstr ""
 
-#: e2fsck/unix.c:891
+#: e2fsck/unix.c:893
 msgid "Only one of the options -p/-a, -n or -y may be specified."
 msgstr ""
 
-#: e2fsck/unix.c:912
+#: e2fsck/unix.c:914
 #, c-format
 msgid "The -t option is not supported on this version of e2fsck.\n"
 msgstr ""
 
-#: e2fsck/unix.c:943 e2fsck/unix.c:1021 misc/e2initrd_helper.c:330
-#: misc/tune2fs.c:1772 misc/tune2fs.c:2067 misc/tune2fs.c:2085
+#: e2fsck/unix.c:946 e2fsck/unix.c:1024 misc/e2initrd_helper.c:330
+#: misc/tune2fs.c:1772 misc/tune2fs.c:2072 misc/tune2fs.c:2090
 #, c-format
 msgid "Unable to resolve '%s'"
 msgstr ""
 
-#: e2fsck/unix.c:1000
+#: e2fsck/unix.c:1003
 msgid "The -n and -D options are incompatible."
 msgstr ""
 
-#: e2fsck/unix.c:1005
+#: e2fsck/unix.c:1008
 msgid "The -n and -c options are incompatible."
 msgstr ""
 
-#: e2fsck/unix.c:1010
+#: e2fsck/unix.c:1013
 msgid "The -n and -l/-L options are incompatible."
 msgstr ""
 
-#: e2fsck/unix.c:1034
+#: e2fsck/unix.c:1037
 msgid "The -D and -E fixes_only options are incompatible."
 msgstr ""
 
-#: e2fsck/unix.c:1040
+#: e2fsck/unix.c:1043
 msgid "The -E bmap2extent and fixes_only options are incompatible."
 msgstr ""
 
-#: e2fsck/unix.c:1104
+#: e2fsck/unix.c:1094
+#, c-format
+msgid "while opening %s for flushing"
+msgstr ""
+
+#: e2fsck/unix.c:1100 resize/main.c:385
+#, c-format
+msgid "while trying to flush %s"
+msgstr ""
+
+#: e2fsck/unix.c:1107
 msgid "The -c and the -l/-L options may not be both used at the same time.\n"
 msgstr ""
 
-#: e2fsck/unix.c:1151
+#: e2fsck/unix.c:1154
 #, c-format
 msgid ""
 "E2FSCK_JBD_DEBUG \"%s\" not an integer\n"
 "\n"
 msgstr ""
 
-#: e2fsck/unix.c:1160
+#: e2fsck/unix.c:1163
 #, c-format
 msgid ""
 "\n"
@@ -3378,31 +3359,31 @@ msgid ""
 "\n"
 msgstr ""
 
-#: e2fsck/unix.c:1251
+#: e2fsck/unix.c:1254
 #, c-format
 msgid ""
 "MMP interval is %u seconds and total wait time is %u seconds. Please "
 "wait...\n"
 msgstr ""
 
-#: e2fsck/unix.c:1268 e2fsck/unix.c:1273
+#: e2fsck/unix.c:1271 e2fsck/unix.c:1276
 msgid "while checking MMP block"
 msgstr ""
 
-#: e2fsck/unix.c:1275
+#: e2fsck/unix.c:1278
 #, c-format
 msgid ""
 "If you are sure the filesystem is not in use on any node, run:\n"
 "'tune2fs -f -E clear_mmp %s'\n"
 msgstr ""
 
-#: e2fsck/unix.c:1291
+#: e2fsck/unix.c:1294
 msgid "while reading MMP block"
 msgstr ""
 
-#: e2fsck/unix.c:1311 e2fsck/unix.c:1363 misc/e2undo.c:236 misc/e2undo.c:281
-#: misc/mke2fs.c:2720 misc/mke2fs.c:2771 misc/tune2fs.c:2792
-#: misc/tune2fs.c:2837 resize/main.c:188 resize/main.c:233
+#: e2fsck/unix.c:1314 e2fsck/unix.c:1366 misc/e2undo.c:240 misc/e2undo.c:285
+#: misc/mke2fs.c:2724 misc/mke2fs.c:2775 misc/tune2fs.c:2797
+#: misc/tune2fs.c:2842 resize/main.c:188 resize/main.c:233
 #, c-format
 msgid ""
 "Overwriting existing filesystem; this can be undone using the command:\n"
@@ -3410,210 +3391,210 @@ msgid ""
 "\n"
 msgstr ""
 
-#: e2fsck/unix.c:1352 misc/e2undo.c:270 misc/mke2fs.c:2760 misc/tune2fs.c:2826
+#: e2fsck/unix.c:1355 misc/e2undo.c:274 misc/mke2fs.c:2764 misc/tune2fs.c:2831
 #: resize/main.c:222
 #, c-format
 msgid "while trying to delete %s"
 msgstr ""
 
-#: e2fsck/unix.c:1378 misc/mke2fs.c:2786 resize/main.c:243
+#: e2fsck/unix.c:1381 misc/mke2fs.c:2790 resize/main.c:243
 msgid "while trying to setup undo file\n"
 msgstr ""
 
-#: e2fsck/unix.c:1422
+#: e2fsck/unix.c:1425
 msgid "Error: ext2fs library version out of date!\n"
 msgstr ""
 
-#: e2fsck/unix.c:1429
+#: e2fsck/unix.c:1432
 msgid "while trying to initialize program"
 msgstr ""
 
-#: e2fsck/unix.c:1466
+#: e2fsck/unix.c:1469
 #, c-format
 msgid "\tUsing %s, %s\n"
 msgstr ""
 
-#: e2fsck/unix.c:1478
+#: e2fsck/unix.c:1481
 msgid "need terminal for interactive repairs"
 msgstr ""
 
-#: e2fsck/unix.c:1539
+#: e2fsck/unix.c:1542
 #, c-format
 msgid "%s: %s trying backup blocks...\n"
 msgstr ""
 
-#: e2fsck/unix.c:1541
+#: e2fsck/unix.c:1544
 msgid "Superblock invalid,"
 msgstr ""
 
-#: e2fsck/unix.c:1542
+#: e2fsck/unix.c:1545
 msgid "Group descriptors look bad..."
 msgstr ""
 
-#: e2fsck/unix.c:1552
+#: e2fsck/unix.c:1555
 #, c-format
 msgid "%s: %s while using the backup blocks"
 msgstr ""
 
-#: e2fsck/unix.c:1556
+#: e2fsck/unix.c:1559
 #, c-format
 msgid "%s: going back to original superblock\n"
 msgstr ""
 
-#: e2fsck/unix.c:1585
+#: e2fsck/unix.c:1588
 msgid ""
 "The filesystem revision is apparently too high for this version of e2fsck.\n"
 "(Or the filesystem superblock is corrupt)\n"
 "\n"
 msgstr ""
 
-#: e2fsck/unix.c:1592
+#: e2fsck/unix.c:1595
 msgid "Could this be a zero-length partition?\n"
 msgstr ""
 
-#: e2fsck/unix.c:1594
+#: e2fsck/unix.c:1597
 #, c-format
 msgid "You must have %s access to the filesystem or be root\n"
 msgstr ""
 
-#: e2fsck/unix.c:1600
+#: e2fsck/unix.c:1603
 msgid "Possibly non-existent or swap device?\n"
 msgstr ""
 
-#: e2fsck/unix.c:1602
+#: e2fsck/unix.c:1605
 msgid "Filesystem mounted or opened exclusively by another program?\n"
 msgstr ""
 
-#: e2fsck/unix.c:1606
+#: e2fsck/unix.c:1609
 msgid "Possibly non-existent device?\n"
 msgstr ""
 
-#: e2fsck/unix.c:1609
+#: e2fsck/unix.c:1612
 msgid ""
 "Disk write-protected; use the -n option to do a read-only\n"
 "check of the device.\n"
 msgstr ""
 
-#: e2fsck/unix.c:1623
+#: e2fsck/unix.c:1626
 #, c-format
 msgid "%s: Trying to load superblock despite errors...\n"
 msgstr ""
 
-#: e2fsck/unix.c:1698
+#: e2fsck/unix.c:1701
 msgid "Get a newer version of e2fsck!"
 msgstr ""
 
-#: e2fsck/unix.c:1758
+#: e2fsck/unix.c:1761
 #, c-format
 msgid "while checking journal for %s"
 msgstr ""
 
-#: e2fsck/unix.c:1761
+#: e2fsck/unix.c:1764
 msgid "Cannot proceed with file system check"
 msgstr ""
 
-#: e2fsck/unix.c:1772
+#: e2fsck/unix.c:1775
 msgid ""
 "Warning: skipping journal recovery because doing a read-only filesystem "
 "check.\n"
 msgstr ""
 
-#: e2fsck/unix.c:1784
+#: e2fsck/unix.c:1787
 #, c-format
 msgid "unable to set superblock flags on %s\n"
 msgstr ""
 
-#: e2fsck/unix.c:1790
+#: e2fsck/unix.c:1793
 #, c-format
 msgid "Journal checksum error found in %s\n"
 msgstr ""
 
-#: e2fsck/unix.c:1794
+#: e2fsck/unix.c:1797
 #, c-format
 msgid "Journal corrupted in %s\n"
 msgstr ""
 
-#: e2fsck/unix.c:1798
+#: e2fsck/unix.c:1801
 #, c-format
 msgid "while recovering journal of %s"
 msgstr ""
 
-#: e2fsck/unix.c:1820
+#: e2fsck/unix.c:1823
 #, c-format
 msgid "%s has unsupported feature(s):"
 msgstr ""
 
-#: e2fsck/unix.c:1835
+#: e2fsck/unix.c:1838
 #, c-format
 msgid "%s has unsupported encoding: %0x\n"
 msgstr ""
 
-#: e2fsck/unix.c:1885
+#: e2fsck/unix.c:1888
 #, c-format
 msgid "%s: %s while reading bad blocks inode\n"
 msgstr ""
 
-#: e2fsck/unix.c:1888
+#: e2fsck/unix.c:1891
 msgid "This doesn't bode well, but we'll try to go on...\n"
 msgstr ""
 
-#: e2fsck/unix.c:1931
+#: e2fsck/unix.c:1934
 #, c-format
 msgid "Creating journal (%d blocks): "
 msgstr ""
 
-#: e2fsck/unix.c:1940
+#: e2fsck/unix.c:1943
 msgid " Done.\n"
 msgstr ""
 
-#: e2fsck/unix.c:1942
+#: e2fsck/unix.c:1945
 msgid ""
 "\n"
 "*** journal has been regenerated ***\n"
 msgstr ""
 
-#: e2fsck/unix.c:1948
+#: e2fsck/unix.c:1951
 msgid "aborted"
 msgstr ""
 
-#: e2fsck/unix.c:1950
+#: e2fsck/unix.c:1953
 #, c-format
 msgid "%s: e2fsck canceled.\n"
 msgstr ""
 
-#: e2fsck/unix.c:1977
+#: e2fsck/unix.c:1980
 msgid "Restarting e2fsck from the beginning...\n"
 msgstr ""
 
-#: e2fsck/unix.c:1981
+#: e2fsck/unix.c:1984
 msgid "while resetting context"
 msgstr ""
 
-#: e2fsck/unix.c:2040
+#: e2fsck/unix.c:2043
 #, c-format
 msgid ""
 "\n"
 "%s: ***** FILE SYSTEM ERRORS CORRECTED *****\n"
 msgstr ""
 
-#: e2fsck/unix.c:2042
+#: e2fsck/unix.c:2045
 #, c-format
 msgid "%s: File system was modified.\n"
 msgstr ""
 
-#: e2fsck/unix.c:2046 e2fsck/util.c:67
+#: e2fsck/unix.c:2049 e2fsck/util.c:67
 #, c-format
 msgid ""
 "\n"
 "%s: ***** FILE SYSTEM WAS MODIFIED *****\n"
 msgstr ""
 
-#: e2fsck/unix.c:2051
+#: e2fsck/unix.c:2054
 #, c-format
 msgid "%s: ***** REBOOT SYSTEM *****\n"
 msgstr ""
 
-#: e2fsck/unix.c:2061 e2fsck/util.c:73
+#: e2fsck/unix.c:2064 e2fsck/util.c:73
 #, c-format
 msgid ""
 "\n"
@@ -3749,7 +3730,7 @@ msgstr ""
 msgid "while writing inode %lu in %s"
 msgstr ""
 
-#: e2fsck/util.c:789
+#: e2fsck/util.c:790
 msgid ""
 "UNEXPECTED INCONSISTENCY: the filesystem is being modified while fsck is "
 "running.\n"
@@ -3860,92 +3841,102 @@ msgstr ""
 msgid "during test data write, block %lu"
 msgstr ""
 
-#: misc/badblocks.c:1007 misc/util.c:134
+#: misc/badblocks.c:1006 misc/util.c:134
 #, c-format
 msgid "%s is mounted; "
 msgstr ""
 
-#: misc/badblocks.c:1009
+#: misc/badblocks.c:1008
 msgid "badblocks forced anyway.  Hope /etc/mtab is incorrect.\n"
 msgstr ""
 
-#: misc/badblocks.c:1014
+#: misc/badblocks.c:1013
 msgid "it's not safe to run badblocks!\n"
 msgstr ""
 
-#: misc/badblocks.c:1019 misc/util.c:145
+#: misc/badblocks.c:1018 misc/util.c:145
 #, c-format
 msgid "%s is apparently in use by the system; "
 msgstr ""
 
-#: misc/badblocks.c:1022
+#: misc/badblocks.c:1021
 msgid "badblocks forced anyway.\n"
 msgstr ""
 
-#: misc/badblocks.c:1042
+#: misc/badblocks.c:1041
 #, c-format
 msgid "invalid %s - %s"
 msgstr ""
 
-#: misc/badblocks.c:1136
+#: misc/badblocks.c:1135
 #, c-format
 msgid "Too big max bad blocks count %u - maximum is %u"
 msgstr ""
 
-#: misc/badblocks.c:1163
+#: misc/badblocks.c:1162
 #, c-format
 msgid "can't allocate memory for test_pattern - %s"
 msgstr ""
 
-#: misc/badblocks.c:1193
+#: misc/badblocks.c:1192
 msgid "Maximum of one test_pattern may be specified in read-only mode"
 msgstr ""
 
-#: misc/badblocks.c:1199
+#: misc/badblocks.c:1198
 msgid "Random test_pattern is not allowed in read-only mode"
 msgstr ""
 
-#: misc/badblocks.c:1213
+#: misc/badblocks.c:1205
+#, c-format
+msgid "Invalid block size: %d\n"
+msgstr ""
+
+#: misc/badblocks.c:1211
+#, c-format
+msgid "Invalid blocks_at_once: %d\n"
+msgstr ""
+
+#: misc/badblocks.c:1225
 msgid ""
 "Couldn't determine device size; you must specify\n"
 "the size manually\n"
 msgstr ""
 
-#: misc/badblocks.c:1219
+#: misc/badblocks.c:1231
 msgid "while trying to determine device size"
 msgstr ""
 
-#: misc/badblocks.c:1224
+#: misc/badblocks.c:1236
 msgid "last block"
 msgstr ""
 
-#: misc/badblocks.c:1230
+#: misc/badblocks.c:1242
 msgid "first block"
 msgstr ""
 
-#: misc/badblocks.c:1233
+#: misc/badblocks.c:1245
 #, c-format
 msgid "invalid starting block (%llu): must be less than %llu"
 msgstr ""
 
-#: misc/badblocks.c:1240
+#: misc/badblocks.c:1253
 #, c-format
 msgid "invalid end block (%llu): must be 32-bit value"
 msgstr ""
 
-#: misc/badblocks.c:1296
+#: misc/badblocks.c:1309
 msgid "while creating in-memory bad blocks list"
 msgstr ""
 
-#: misc/badblocks.c:1305
+#: misc/badblocks.c:1318
 msgid "input file - bad format"
 msgstr ""
 
-#: misc/badblocks.c:1313 misc/badblocks.c:1322
+#: misc/badblocks.c:1326 misc/badblocks.c:1335
 msgid "while adding to in-memory bad block list"
 msgstr ""
 
-#: misc/badblocks.c:1347
+#: misc/badblocks.c:1360
 #, c-format
 msgid "Pass completed, %u bad blocks found. (%d/%d/%d errors)\n"
 msgstr ""
@@ -3955,12 +3946,12 @@ msgstr ""
 msgid "Usage: %s [-pRVf] [-+=aAcCdDeijPsStTuFx] [-v version] files...\n"
 msgstr ""
 
-#: misc/chattr.c:161
+#: misc/chattr.c:162
 #, c-format
 msgid "bad project - %s\n"
 msgstr ""
 
-#: misc/chattr.c:175
+#: misc/chattr.c:176
 #, c-format
 msgid "bad version - %s\n"
 msgstr ""
@@ -4052,9 +4043,9 @@ msgstr ""
 msgid "while reading xattrs for inode %u"
 msgstr ""
 
-#: misc/create_inode.c:178 misc/create_inode.c:205 misc/create_inode.c:1052
-#: misc/e2undo.c:182 misc/e2undo.c:479 misc/e2undo.c:485 misc/e2undo.c:491
-#: misc/mke2fs.c:360
+#: misc/create_inode.c:178 misc/create_inode.c:205 misc/create_inode.c:1065
+#: misc/e2undo.c:186 misc/e2undo.c:483 misc/e2undo.c:489 misc/e2undo.c:495
+#: misc/mke2fs.c:361
 msgid "while allocating memory"
 msgstr ""
 
@@ -4088,7 +4079,7 @@ msgstr ""
 msgid "while creating symlink \"%s\""
 msgstr ""
 
-#: misc/create_inode.c:387 misc/create_inode.c:972
+#: misc/create_inode.c:387 misc/create_inode.c:651 misc/create_inode.c:985
 #, c-format
 msgid "while looking up \"%s\""
 msgstr ""
@@ -4098,83 +4089,83 @@ msgstr ""
 msgid "while creating directory \"%s\""
 msgstr ""
 
-#: misc/create_inode.c:636
+#: misc/create_inode.c:637
 #, c-format
 msgid "while opening \"%s\" to copy"
 msgstr ""
 
-#: misc/create_inode.c:814
+#: misc/create_inode.c:827
 #, c-format
 msgid "while changing working directory to \"%s\""
 msgstr ""
 
-#: misc/create_inode.c:824
+#: misc/create_inode.c:837
 #, c-format
 msgid "while scanning directory \"%s\""
 msgstr ""
 
-#: misc/create_inode.c:834
+#: misc/create_inode.c:847
 #, c-format
 msgid "while lstat \"%s\""
 msgstr ""
 
-#: misc/create_inode.c:884
+#: misc/create_inode.c:897
 #, c-format
 msgid "while creating special file \"%s\""
 msgstr ""
 
-#: misc/create_inode.c:893
+#: misc/create_inode.c:906
 msgid "malloc failed"
 msgstr ""
 
-#: misc/create_inode.c:901
+#: misc/create_inode.c:914
 #, c-format
 msgid "while trying to read link \"%s\""
 msgstr ""
 
-#: misc/create_inode.c:908
+#: misc/create_inode.c:921
 msgid "symlink increased in size between lstat() and readlink()"
 msgstr ""
 
-#: misc/create_inode.c:919
+#: misc/create_inode.c:932
 #, c-format
 msgid "while writing symlink\"%s\""
 msgstr ""
 
-#: misc/create_inode.c:930
+#: misc/create_inode.c:943
 #, c-format
 msgid "while writing file \"%s\""
 msgstr ""
 
-#: misc/create_inode.c:943
+#: misc/create_inode.c:956
 #, c-format
 msgid "while making dir \"%s\""
 msgstr ""
 
-#: misc/create_inode.c:961
+#: misc/create_inode.c:974
 msgid "while changing directory"
 msgstr ""
 
-#: misc/create_inode.c:967
+#: misc/create_inode.c:980
 #, c-format
 msgid "ignoring entry \"%s\""
 msgstr ""
 
-#: misc/create_inode.c:980
+#: misc/create_inode.c:993
 #, c-format
 msgid "while setting inode for \"%s\""
 msgstr ""
 
-#: misc/create_inode.c:987
+#: misc/create_inode.c:1000
 #, c-format
 msgid "while setting xattrs for \"%s\""
 msgstr ""
 
-#: misc/create_inode.c:1013
+#: misc/create_inode.c:1026
 msgid "while saving inode data"
 msgstr ""
 
-#: misc/create_inode.c:1063
+#: misc/create_inode.c:1076
 msgid "while copying xattrs on root directory"
 msgstr ""
 
@@ -4325,21 +4316,21 @@ msgstr ""
 msgid "reading MMP block %llu from '%s'\n"
 msgstr ""
 
-#: misc/dumpe2fs.c:517 misc/mke2fs.c:806 misc/tune2fs.c:2107
+#: misc/dumpe2fs.c:519 misc/mke2fs.c:809 misc/tune2fs.c:2112
 msgid "Couldn't allocate memory to parse options!\n"
 msgstr ""
 
-#: misc/dumpe2fs.c:543
+#: misc/dumpe2fs.c:545
 #, c-format
 msgid "Invalid superblock parameter: %s\n"
 msgstr ""
 
-#: misc/dumpe2fs.c:558
+#: misc/dumpe2fs.c:560
 #, c-format
 msgid "Invalid blocksize parameter: %s\n"
 msgstr ""
 
-#: misc/dumpe2fs.c:569
+#: misc/dumpe2fs.c:571
 #, c-format
 msgid ""
 "\n"
@@ -4353,27 +4344,27 @@ msgid ""
 "\tblocksize=<blocksize>\n"
 msgstr ""
 
-#: misc/dumpe2fs.c:659 misc/mke2fs.c:1904
+#: misc/dumpe2fs.c:661 misc/mke2fs.c:1907
 #, c-format
 msgid "\tUsing %s\n"
 msgstr ""
 
-#: misc/dumpe2fs.c:706 misc/e2image.c:1630 misc/tune2fs.c:2993
+#: misc/dumpe2fs.c:708 misc/e2image.c:1637 misc/tune2fs.c:2998
 #: resize/main.c:418
 msgid "Couldn't find valid filesystem superblock.\n"
 msgstr ""
 
-#: misc/dumpe2fs.c:728
+#: misc/dumpe2fs.c:730
 #, c-format
 msgid "%s: MMP feature not enabled.\n"
 msgstr ""
 
-#: misc/dumpe2fs.c:759
+#: misc/dumpe2fs.c:761
 #, c-format
 msgid "while trying to read '%s' bitmaps\n"
 msgstr ""
 
-#: misc/dumpe2fs.c:768
+#: misc/dumpe2fs.c:770
 msgid ""
 "*** Run e2fsck now!\n"
 "\n"
@@ -4398,7 +4389,7 @@ msgid ""
 "[ dest_fs ]\n"
 msgstr ""
 
-#: misc/e2image.c:176 misc/e2image.c:589 misc/e2image.c:595 misc/e2image.c:1194
+#: misc/e2image.c:176 misc/e2image.c:592 misc/e2image.c:598 misc/e2image.c:1200
 msgid "while allocating buffer"
 msgstr ""
 
@@ -4412,166 +4403,170 @@ msgstr ""
 msgid "error writing block %llu"
 msgstr ""
 
-#: misc/e2image.c:198
+#: misc/e2image.c:199
 msgid "error in generic_write()"
 msgstr ""
 
-#: misc/e2image.c:215
+#: misc/e2image.c:216
 msgid "Error: header size is bigger than wrt_size\n"
 msgstr ""
 
-#: misc/e2image.c:220
+#: misc/e2image.c:221
 msgid "Couldn't allocate header buffer\n"
 msgstr ""
 
-#: misc/e2image.c:248
+#: misc/e2image.c:249
 msgid "while writing superblock"
 msgstr ""
 
-#: misc/e2image.c:257
+#: misc/e2image.c:258
 msgid "while writing inode table"
 msgstr ""
 
-#: misc/e2image.c:265
+#: misc/e2image.c:266
 msgid "while writing block bitmap"
 msgstr ""
 
-#: misc/e2image.c:273
+#: misc/e2image.c:274
 msgid "while writing inode bitmap"
 msgstr ""
 
-#: misc/e2image.c:515
+#: misc/e2image.c:516
 #, c-format
 msgid "Corrupt directory block %llu: bad rec_len (%d)\n"
 msgstr ""
 
-#: misc/e2image.c:527
+#: misc/e2image.c:528
 #, c-format
 msgid "Corrupt directory block %llu: bad name_len (%d)\n"
 msgstr ""
 
-#: misc/e2image.c:568
+#: misc/e2image.c:569
 #, c-format
 msgid "%llu / %llu blocks (%d%%)"
 msgstr ""
 
-#: misc/e2image.c:599 misc/e2image.c:639
+#: misc/e2image.c:602 misc/e2image.c:642
 msgid "Copying "
 msgstr ""
 
-#: misc/e2image.c:636
+#: misc/e2image.c:639
 msgid ""
 "Stopping now will destroy the filesystem, interrupt again if you are sure\n"
 msgstr ""
 
-#: misc/e2image.c:662
+#: misc/e2image.c:665
 #, c-format
 msgid " %s remaining at %.2f MB/s"
 msgstr ""
 
-#: misc/e2image.c:674 misc/e2image.c:1204
+#: misc/e2image.c:677 misc/e2image.c:1210
 #, c-format
 msgid "error reading block %llu"
 msgstr ""
 
-#: misc/e2image.c:728
+#: misc/e2image.c:732
 #, c-format
 msgid "Copied %llu / %llu blocks (%d%%) in %s "
 msgstr ""
 
-#: misc/e2image.c:732
+#: misc/e2image.c:737
 #, c-format
 msgid "at %.2f MB/s"
 msgstr ""
 
-#: misc/e2image.c:768
+#: misc/e2image.c:773
 msgid "while allocating l1 table"
 msgstr ""
 
-#: misc/e2image.c:813
+#: misc/e2image.c:818
 msgid "while allocating l2 cache"
 msgstr ""
 
-#: misc/e2image.c:836
+#: misc/e2image.c:841
 msgid ""
 "Warning: There are still tables in the cache while putting the cache, data "
 "will be lost so the image may not be valid.\n"
 msgstr ""
 
-#: misc/e2image.c:1161
+#: misc/e2image.c:1167
 msgid "while allocating ext2_qcow2_image"
 msgstr ""
 
-#: misc/e2image.c:1168
+#: misc/e2image.c:1174
 msgid "while initializing ext2_qcow2_image"
 msgstr ""
 
-#: misc/e2image.c:1227 misc/e2image.c:1245
+#: misc/e2image.c:1234 misc/e2image.c:1252
 msgid "Programming error: multiple sequential refcount blocks created!\n"
 msgstr ""
 
-#: misc/e2image.c:1286
+#: misc/e2image.c:1293
 msgid "while allocating block bitmap"
 msgstr ""
 
-#: misc/e2image.c:1295
+#: misc/e2image.c:1302
 msgid "while allocating scramble block bitmap"
 msgstr ""
 
-#: misc/e2image.c:1318
+#: misc/e2image.c:1325
 msgid "Scanning inodes...\n"
 msgstr ""
 
-#: misc/e2image.c:1330
+#: misc/e2image.c:1337
 msgid "Can't allocate block buffer"
 msgstr ""
 
-#: misc/e2image.c:1369 misc/e2image.c:1383
+#: misc/e2image.c:1349
+msgid "while getting next inode"
+msgstr ""
+
+#: misc/e2image.c:1376 misc/e2image.c:1390
 #, c-format
 msgid "while iterating over inode %u"
 msgstr ""
 
-#: misc/e2image.c:1415
+#: misc/e2image.c:1422
 msgid "Raw and qcow2 images cannot be installed"
 msgstr ""
 
-#: misc/e2image.c:1437
+#: misc/e2image.c:1444
 msgid "error reading bitmaps"
 msgstr ""
 
-#: misc/e2image.c:1449
+#: misc/e2image.c:1456
 msgid "while opening device file"
 msgstr ""
 
-#: misc/e2image.c:1460
+#: misc/e2image.c:1467
 msgid "while restoring the image table"
 msgstr ""
 
-#: misc/e2image.c:1566
+#: misc/e2image.c:1573
 msgid "-a option can only be used with raw or QCOW2 images."
 msgstr ""
 
-#: misc/e2image.c:1571
+#: misc/e2image.c:1578
 msgid "-b option can only be used with raw or QCOW2 images."
 msgstr ""
 
-#: misc/e2image.c:1577
+#: misc/e2image.c:1584
 msgid "Offsets are only allowed with raw images."
 msgstr ""
 
-#: misc/e2image.c:1582
+#: misc/e2image.c:1589
 msgid "Move mode is only allowed with raw images."
 msgstr ""
 
-#: misc/e2image.c:1587
+#: misc/e2image.c:1594
 msgid "Move mode requires all data mode."
 msgstr ""
 
-#: misc/e2image.c:1597
+#: misc/e2image.c:1604
 msgid "checking if mounted"
 msgstr ""
 
-#: misc/e2image.c:1604
+#: misc/e2image.c:1611
 msgid ""
 "\n"
 "Running e2image on a R/W mounted filesystem can result in an\n"
@@ -4579,51 +4574,51 @@ msgid ""
 "Use -f option if you really want to do that.\n"
 msgstr ""
 
-#: misc/e2image.c:1658
+#: misc/e2image.c:1665
 msgid "QCOW2 image can not be written to the stdout!\n"
 msgstr ""
 
-#: misc/e2image.c:1664
+#: misc/e2image.c:1671
 msgid "Can not stat output\n"
 msgstr ""
 
-#: misc/e2image.c:1674
+#: misc/e2image.c:1681
 #, c-format
 msgid "Image (%s) is compressed\n"
 msgstr ""
 
-#: misc/e2image.c:1677
+#: misc/e2image.c:1684
 #, c-format
 msgid "Image (%s) is encrypted\n"
 msgstr ""
 
-#: misc/e2image.c:1680
+#: misc/e2image.c:1687
 #, c-format
 msgid "Image (%s) is corrupted\n"
 msgstr ""
 
-#: misc/e2image.c:1684
+#: misc/e2image.c:1691
 #, c-format
 msgid "while trying to convert qcow2 image (%s) into raw image (%s)"
 msgstr ""
 
-#: misc/e2image.c:1694
+#: misc/e2image.c:1701
 msgid "The -c option only supported in raw mode\n"
 msgstr ""
 
-#: misc/e2image.c:1699
+#: misc/e2image.c:1706
 msgid "The -c option not supported when writing to stdout\n"
 msgstr ""
 
-#: misc/e2image.c:1706
+#: misc/e2image.c:1713
 msgid "while allocating check_buf"
 msgstr ""
 
-#: misc/e2image.c:1712
+#: misc/e2image.c:1719
 msgid "The -p option only supported in raw mode\n"
 msgstr ""
 
-#: misc/e2image.c:1722
+#: misc/e2image.c:1729
 #, c-format
 msgid "%d blocks already contained the data to be copied\n"
 msgstr ""
@@ -4653,7 +4648,7 @@ msgstr ""
 msgid "e2label: not an ext2 filesystem\n"
 msgstr ""
 
-#: misc/e2label.c:97 misc/tune2fs.c:3198
+#: misc/e2label.c:97 misc/tune2fs.c:3207
 #, c-format
 msgid "Warning: label too long, truncating.\n"
 msgstr ""
@@ -4680,151 +4675,151 @@ msgid ""
 "<filesystem>\n"
 msgstr ""
 
-#: misc/e2undo.c:149
+#: misc/e2undo.c:153
 msgid "The file system superblock doesn't match the undo file.\n"
 msgstr ""
 
-#: misc/e2undo.c:152
+#: misc/e2undo.c:156
 msgid "UUID does not match.\n"
 msgstr ""
 
-#: misc/e2undo.c:154
+#: misc/e2undo.c:158
 msgid "Last mount time does not match.\n"
 msgstr ""
 
-#: misc/e2undo.c:156
+#: misc/e2undo.c:160
 msgid "Last write time does not match.\n"
 msgstr ""
 
-#: misc/e2undo.c:158
+#: misc/e2undo.c:162
 msgid "Lifetime write counter does not match.\n"
 msgstr ""
 
-#: misc/e2undo.c:172
+#: misc/e2undo.c:176
 msgid "while reading filesystem superblock."
 msgstr ""
 
-#: misc/e2undo.c:188
+#: misc/e2undo.c:192
 msgid "while fetching superblock"
 msgstr ""
 
-#: misc/e2undo.c:201
+#: misc/e2undo.c:205
 #, c-format
 msgid "Undo file superblock checksum doesn't match.\n"
 msgstr ""
 
-#: misc/e2undo.c:340
+#: misc/e2undo.c:344
 #, c-format
 msgid "illegal offset - %s"
 msgstr ""
 
-#: misc/e2undo.c:364
+#: misc/e2undo.c:368
 #, c-format
 msgid "Will not write to an undo file while replaying it.\n"
 msgstr ""
 
-#: misc/e2undo.c:373
+#: misc/e2undo.c:377
 #, c-format
 msgid "while opening undo file `%s'\n"
 msgstr ""
 
-#: misc/e2undo.c:380
+#: misc/e2undo.c:384
 msgid "while reading undo file"
 msgstr ""
 
-#: misc/e2undo.c:385
+#: misc/e2undo.c:389
 #, c-format
 msgid "%s: Not an undo file.\n"
 msgstr ""
 
-#: misc/e2undo.c:396
+#: misc/e2undo.c:400
 #, c-format
 msgid "%s: Header checksum doesn't match.\n"
 msgstr ""
 
-#: misc/e2undo.c:403
+#: misc/e2undo.c:407
 #, c-format
 msgid "%s: Corrupt undo file header.\n"
 msgstr ""
 
-#: misc/e2undo.c:407
+#: misc/e2undo.c:411
 #, c-format
 msgid "%s: Undo block size too large.\n"
 msgstr ""
 
-#: misc/e2undo.c:412
+#: misc/e2undo.c:416
 #, c-format
 msgid "%s: Undo block size too small.\n"
 msgstr ""
 
-#: misc/e2undo.c:425
+#: misc/e2undo.c:429
 #, c-format
 msgid "%s: Unknown undo file feature set.\n"
 msgstr ""
 
-#: misc/e2undo.c:433
+#: misc/e2undo.c:437
 #, c-format
 msgid "Error while determining whether %s is mounted."
 msgstr ""
 
-#: misc/e2undo.c:439
+#: misc/e2undo.c:443
 msgid "e2undo should only be run on unmounted filesystems"
 msgstr ""
 
-#: misc/e2undo.c:455
+#: misc/e2undo.c:459
 #, c-format
 msgid "while opening `%s'"
 msgstr ""
 
-#: misc/e2undo.c:466
+#: misc/e2undo.c:470
 msgid "specified offset is too large"
 msgstr ""
 
-#: misc/e2undo.c:507
+#: misc/e2undo.c:511
 msgid "while reading keys"
 msgstr ""
 
-#: misc/e2undo.c:519
+#: misc/e2undo.c:523
 #, c-format
 msgid "%s: wrong key magic at %llu\n"
 msgstr ""
 
-#: misc/e2undo.c:529
+#: misc/e2undo.c:533
 #, c-format
 msgid "%s: key block checksum error at %llu.\n"
 msgstr ""
 
-#: misc/e2undo.c:552
+#: misc/e2undo.c:556
 #, c-format
 msgid "%s: block %llu is too long."
 msgstr ""
 
-#: misc/e2undo.c:564 misc/e2undo.c:600
+#: misc/e2undo.c:569 misc/e2undo.c:606
 #, c-format
 msgid "while fetching block %llu."
 msgstr ""
 
-#: misc/e2undo.c:576
+#: misc/e2undo.c:581
 #, c-format
 msgid "checksum error in filesystem block %llu (undo blk %llu)\n"
 msgstr ""
 
-#: misc/e2undo.c:615
+#: misc/e2undo.c:622
 #, c-format
 msgid "while writing block %llu."
 msgstr ""
 
-#: misc/e2undo.c:621
+#: misc/e2undo.c:629
 #, c-format
 msgid "Undo file corruption; run e2fsck NOW!\n"
 msgstr ""
 
-#: misc/e2undo.c:623
+#: misc/e2undo.c:631
 #, c-format
 msgid "IO error during replay; run e2fsck NOW!\n"
 msgstr ""
 
-#: misc/e2undo.c:626
+#: misc/e2undo.c:634
 #, c-format
 msgid "Incomplete undo record; run e2fsck.\n"
 msgstr ""
@@ -4988,7 +4983,7 @@ msgstr ""
 msgid "%s: %s.\n"
 msgstr ""
 
-#: misc/fuse2fs.c:3783 misc/fuse2fs.c:3802 misc/tune2fs.c:3093
+#: misc/fuse2fs.c:3783 misc/fuse2fs.c:3802 misc/tune2fs.c:3098
 #, c-format
 msgid "Please run e2fsck -fy %s.\n"
 msgstr ""
@@ -5061,35 +5056,35 @@ msgid ""
 "\t[-jnqvDFSV] device [blocks-count]\n"
 msgstr ""
 
-#: misc/mke2fs.c:262
+#: misc/mke2fs.c:263
 #, c-format
 msgid "Running command: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:266
+#: misc/mke2fs.c:267
 #, c-format
 msgid "while trying to run '%s'"
 msgstr ""
 
-#: misc/mke2fs.c:273
+#: misc/mke2fs.c:274
 msgid "while processing list of bad blocks from program"
 msgstr ""
 
-#: misc/mke2fs.c:300
+#: misc/mke2fs.c:301
 #, c-format
 msgid "Block %d in primary superblock/group descriptor area bad.\n"
 msgstr ""
 
-#: misc/mke2fs.c:302
+#: misc/mke2fs.c:303
 #, c-format
 msgid "Blocks %u through %u must be good in order to build a filesystem.\n"
 msgstr ""
 
-#: misc/mke2fs.c:305
+#: misc/mke2fs.c:306
 msgid "Aborting....\n"
 msgstr ""
 
-#: misc/mke2fs.c:325
+#: misc/mke2fs.c:326
 #, c-format
 msgid ""
 "Warning: the backup superblock/group descriptors at block %u contain\n"
@@ -5097,263 +5092,263 @@ msgid ""
 "\n"
 msgstr ""
 
-#: misc/mke2fs.c:344 misc/mke2fs.c:3281
+#: misc/mke2fs.c:345 misc/mke2fs.c:3285
 msgid "while marking bad blocks as used"
 msgstr ""
 
-#: misc/mke2fs.c:369
+#: misc/mke2fs.c:370
 msgid "while writing reserved inodes"
 msgstr ""
 
-#: misc/mke2fs.c:421
+#: misc/mke2fs.c:422
 msgid "Writing inode tables: "
 msgstr ""
 
-#: misc/mke2fs.c:443
+#: misc/mke2fs.c:444
 #, c-format
 msgid ""
 "\n"
 "Could not write %d blocks in inode table starting at %llu: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:457 misc/mke2fs.c:2833 misc/mke2fs.c:3241
+#: misc/mke2fs.c:459 misc/mke2fs.c:2837 misc/mke2fs.c:3245
 msgid "done                            \n"
 msgstr ""
 
-#: misc/mke2fs.c:472
+#: misc/mke2fs.c:474
 msgid "while creating root dir"
 msgstr ""
 
-#: misc/mke2fs.c:479
+#: misc/mke2fs.c:481
 msgid "while reading root inode"
 msgstr ""
 
-#: misc/mke2fs.c:491
+#: misc/mke2fs.c:493
 msgid "while setting root inode ownership"
 msgstr ""
 
-#: misc/mke2fs.c:509
+#: misc/mke2fs.c:511
 msgid "while creating /lost+found"
 msgstr ""
 
-#: misc/mke2fs.c:516
+#: misc/mke2fs.c:518
 msgid "while looking up /lost+found"
 msgstr ""
 
-#: misc/mke2fs.c:529
+#: misc/mke2fs.c:531
 msgid "while expanding /lost+found"
 msgstr ""
 
-#: misc/mke2fs.c:544
+#: misc/mke2fs.c:546
 msgid "while setting bad block inode"
 msgstr ""
 
-#: misc/mke2fs.c:571
+#: misc/mke2fs.c:573
 #, c-format
 msgid "Out of memory erasing sectors %d-%d\n"
 msgstr ""
 
-#: misc/mke2fs.c:581
+#: misc/mke2fs.c:583
 #, c-format
 msgid "Warning: could not read block 0: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:597
+#: misc/mke2fs.c:599
 #, c-format
 msgid "Warning: could not erase sector %d: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:613
+#: misc/mke2fs.c:615
 msgid "while splitting the journal size"
 msgstr ""
 
-#: misc/mke2fs.c:620
+#: misc/mke2fs.c:622
 msgid "while initializing journal superblock"
 msgstr ""
 
-#: misc/mke2fs.c:628
+#: misc/mke2fs.c:630
 msgid "Zeroing journal device: "
 msgstr ""
 
-#: misc/mke2fs.c:640
+#: misc/mke2fs.c:642
 #, c-format
 msgid "while zeroing journal device (block %llu, count %d)"
 msgstr ""
 
-#: misc/mke2fs.c:658
+#: misc/mke2fs.c:660
 msgid "while writing journal superblock"
 msgstr ""
 
-#: misc/mke2fs.c:672
+#: misc/mke2fs.c:674
 #, c-format
 msgid "Creating filesystem with %llu %dk blocks and %u inodes\n"
 msgstr ""
 
-#: misc/mke2fs.c:680
+#: misc/mke2fs.c:682
 #, c-format
 msgid ""
 "warning: %llu blocks unused.\n"
 "\n"
 msgstr ""
 
-#: misc/mke2fs.c:683
+#: misc/mke2fs.c:686
 #, c-format
 msgid "Filesystem label=%.*s\n"
 msgstr ""
 
-#: misc/mke2fs.c:687
+#: misc/mke2fs.c:690
 #, c-format
 msgid "OS type: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:689
+#: misc/mke2fs.c:692
 #, c-format
 msgid "Block size=%u (log=%u)\n"
 msgstr ""
 
-#: misc/mke2fs.c:692
+#: misc/mke2fs.c:695
 #, c-format
 msgid "Cluster size=%u (log=%u)\n"
 msgstr ""
 
-#: misc/mke2fs.c:696
+#: misc/mke2fs.c:699
 #, c-format
 msgid "Fragment size=%u (log=%u)\n"
 msgstr ""
 
-#: misc/mke2fs.c:698
+#: misc/mke2fs.c:701
 #, c-format
 msgid "Stride=%u blocks, Stripe width=%u blocks\n"
 msgstr ""
 
-#: misc/mke2fs.c:700
+#: misc/mke2fs.c:703
 #, c-format
 msgid "%u inodes, %llu blocks\n"
 msgstr ""
 
-#: misc/mke2fs.c:702
+#: misc/mke2fs.c:705
 #, c-format
 msgid "%llu blocks (%2.2f%%) reserved for the super user\n"
 msgstr ""
 
-#: misc/mke2fs.c:705
+#: misc/mke2fs.c:708
 #, c-format
 msgid "First data block=%u\n"
 msgstr ""
 
-#: misc/mke2fs.c:707
+#: misc/mke2fs.c:710
 #, c-format
 msgid "Root directory owner=%u:%u\n"
 msgstr ""
 
-#: misc/mke2fs.c:709
+#: misc/mke2fs.c:712
 #, c-format
 msgid "Maximum filesystem blocks=%lu\n"
 msgstr ""
 
-#: misc/mke2fs.c:713
+#: misc/mke2fs.c:716
 #, c-format
 msgid "%u block groups\n"
 msgstr ""
 
-#: misc/mke2fs.c:715
+#: misc/mke2fs.c:718
 #, c-format
 msgid "%u block group\n"
 msgstr ""
 
-#: misc/mke2fs.c:717
+#: misc/mke2fs.c:720
 #, c-format
 msgid "%u blocks per group, %u clusters per group\n"
 msgstr ""
 
-#: misc/mke2fs.c:720
+#: misc/mke2fs.c:723
 #, c-format
 msgid "%u blocks per group, %u fragments per group\n"
 msgstr ""
 
-#: misc/mke2fs.c:722
+#: misc/mke2fs.c:725
 #, c-format
 msgid "%u inodes per group\n"
 msgstr ""
 
-#: misc/mke2fs.c:731
+#: misc/mke2fs.c:734
 #, c-format
 msgid "Filesystem UUID: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:732
+#: misc/mke2fs.c:735
 msgid "Superblock backups stored on blocks: "
 msgstr ""
 
-#: misc/mke2fs.c:828
+#: misc/mke2fs.c:831
 #, c-format
 msgid "%s requires '-O 64bit'\n"
 msgstr ""
 
-#: misc/mke2fs.c:834
+#: misc/mke2fs.c:837
 #, c-format
 msgid "'%s' must be before 'resize=%u'\n"
 msgstr ""
 
-#: misc/mke2fs.c:847
+#: misc/mke2fs.c:850
 #, c-format
 msgid "Invalid desc_size: '%s'\n"
 msgstr ""
 
-#: misc/mke2fs.c:861
+#: misc/mke2fs.c:864
 #, c-format
 msgid "Invalid hash seed: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:873
+#: misc/mke2fs.c:876
 #, c-format
 msgid "Invalid offset: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:887 misc/tune2fs.c:2135
+#: misc/mke2fs.c:890 misc/tune2fs.c:2140
 #, c-format
 msgid "Invalid mmp_update_interval: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:904
+#: misc/mke2fs.c:907
 #, c-format
 msgid "Invalid # of backup superblocks: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:926
+#: misc/mke2fs.c:929
 #, c-format
 msgid "Invalid stride parameter: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:941
+#: misc/mke2fs.c:944
 #, c-format
 msgid "Invalid stripe-width parameter: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:964
+#: misc/mke2fs.c:967
 #, c-format
 msgid "Invalid resize parameter: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:971
+#: misc/mke2fs.c:974
 msgid "The resize maximum must be greater than the filesystem size.\n"
 msgstr ""
 
-#: misc/mke2fs.c:995
+#: misc/mke2fs.c:998
 msgid "On-line resizing not supported with revision 0 filesystems\n"
 msgstr ""
 
-#: misc/mke2fs.c:1021 misc/mke2fs.c:1030
+#: misc/mke2fs.c:1024 misc/mke2fs.c:1033
 #, c-format
 msgid "Invalid root_owner: '%s'\n"
 msgstr ""
 
-#: misc/mke2fs.c:1075
+#: misc/mke2fs.c:1078
 #, c-format
 msgid "Invalid encoding: %s"
 msgstr ""
 
-#: misc/mke2fs.c:1093
+#: misc/mke2fs.c:1096
 #, c-format
 msgid ""
 "\n"
@@ -5382,7 +5377,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: misc/mke2fs.c:1120
+#: misc/mke2fs.c:1123
 #, c-format
 msgid ""
 "\n"
@@ -5390,52 +5385,52 @@ msgid ""
 "\n"
 msgstr ""
 
-#: misc/mke2fs.c:1131 misc/tune2fs.c:2271
+#: misc/mke2fs.c:1134 misc/tune2fs.c:2276
 #, c-format
 msgid "error: Invalid encoding flag: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:1137 misc/tune2fs.c:2280
+#: misc/mke2fs.c:1140 misc/tune2fs.c:2285
 #, c-format
 msgid ""
 "error: An encoding must be explicitly specified when passing encoding-flags\n"
 msgstr ""
 
-#: misc/mke2fs.c:1187
+#: misc/mke2fs.c:1190
 #, c-format
 msgid ""
 "Syntax error in mke2fs config file (%s, line #%d)\n"
 "\t%s\n"
 msgstr ""
 
-#: misc/mke2fs.c:1200 misc/tune2fs.c:1105
+#: misc/mke2fs.c:1203 misc/tune2fs.c:1105
 #, c-format
 msgid "Invalid filesystem option set: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:1212 misc/tune2fs.c:422
+#: misc/mke2fs.c:1215 misc/tune2fs.c:422
 #, c-format
 msgid "Invalid mount option set: %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:1348
+#: misc/mke2fs.c:1351
 #, c-format
 msgid ""
 "\n"
 "Your mke2fs.conf file does not define the %s filesystem type.\n"
 msgstr ""
 
-#: misc/mke2fs.c:1352
+#: misc/mke2fs.c:1355
 msgid ""
 "You probably need to install an updated mke2fs.conf file.\n"
 "\n"
 msgstr ""
 
-#: misc/mke2fs.c:1356
+#: misc/mke2fs.c:1359
 msgid "Aborting...\n"
 msgstr ""
 
-#: misc/mke2fs.c:1397
+#: misc/mke2fs.c:1400
 #, c-format
 msgid ""
 "\n"
@@ -5443,154 +5438,154 @@ msgid ""
 "\n"
 msgstr ""
 
-#: misc/mke2fs.c:1584
+#: misc/mke2fs.c:1587
 msgid "Couldn't allocate memory for new PATH.\n"
 msgstr ""
 
-#: misc/mke2fs.c:1621
+#: misc/mke2fs.c:1624
 #, c-format
 msgid "Couldn't init profile successfully (error: %ld).\n"
 msgstr ""
 
-#: misc/mke2fs.c:1654
+#: misc/mke2fs.c:1657
 #, c-format
 msgid "invalid block size - %s"
 msgstr ""
 
-#: misc/mke2fs.c:1658
+#: misc/mke2fs.c:1661
 #, c-format
 msgid "Warning: blocksize %d not usable on most systems.\n"
 msgstr ""
 
-#: misc/mke2fs.c:1674
+#: misc/mke2fs.c:1677
 #, c-format
 msgid "invalid cluster size - %s"
 msgstr ""
 
-#: misc/mke2fs.c:1687
+#: misc/mke2fs.c:1690
 msgid "'-R' is deprecated, use '-E' instead"
 msgstr ""
 
-#: misc/mke2fs.c:1701 misc/tune2fs.c:1861
+#: misc/mke2fs.c:1704 misc/tune2fs.c:1866
 #, c-format
 msgid "bad error behavior - %s"
 msgstr ""
 
-#: misc/mke2fs.c:1713
+#: misc/mke2fs.c:1716
 msgid "Illegal number for blocks per group"
 msgstr ""
 
-#: misc/mke2fs.c:1718
+#: misc/mke2fs.c:1721
 msgid "blocks per group must be multiple of 8"
 msgstr ""
 
-#: misc/mke2fs.c:1726
+#: misc/mke2fs.c:1729
 msgid "Illegal number for flex_bg size"
 msgstr ""
 
-#: misc/mke2fs.c:1732
+#: misc/mke2fs.c:1735
 msgid "flex_bg size must be a power of 2"
 msgstr ""
 
-#: misc/mke2fs.c:1737
+#: misc/mke2fs.c:1740
 #, c-format
 msgid "flex_bg size (%lu) must be less than or equal to 2^31"
 msgstr ""
 
-#: misc/mke2fs.c:1747
+#: misc/mke2fs.c:1750
 #, c-format
 msgid "invalid inode ratio %s (min %d/max %d)"
 msgstr ""
 
-#: misc/mke2fs.c:1757
+#: misc/mke2fs.c:1760
 #, c-format
 msgid "invalid inode size - %s"
 msgstr ""
 
-#: misc/mke2fs.c:1772
+#: misc/mke2fs.c:1775
 msgid ""
 "Warning: -K option is deprecated and should not be used anymore. Use '-E "
 "nodiscard' extended option instead!\n"
 msgstr ""
 
-#: misc/mke2fs.c:1783
+#: misc/mke2fs.c:1786
 msgid "in malloc for bad_blocks_filename"
 msgstr ""
 
-#: misc/mke2fs.c:1792
+#: misc/mke2fs.c:1795
 #, c-format
 msgid ""
 "Warning: label too long; will be truncated to '%s'\n"
 "\n"
 msgstr ""
 
-#: misc/mke2fs.c:1801
+#: misc/mke2fs.c:1804
 #, c-format
 msgid "invalid reserved blocks percent - %s"
 msgstr ""
 
-#: misc/mke2fs.c:1816
+#: misc/mke2fs.c:1819
 #, c-format
 msgid "bad num inodes - %s"
 msgstr ""
 
-#: misc/mke2fs.c:1829
+#: misc/mke2fs.c:1832
 msgid "while allocating fs_feature string"
 msgstr ""
 
-#: misc/mke2fs.c:1846
+#: misc/mke2fs.c:1849
 #, c-format
 msgid "bad revision level - %s"
 msgstr ""
 
-#: misc/mke2fs.c:1851
+#: misc/mke2fs.c:1854
 #, c-format
 msgid "while trying to create revision %d"
 msgstr ""
 
-#: misc/mke2fs.c:1865
+#: misc/mke2fs.c:1868
 msgid "The -t option may only be used once"
 msgstr ""
 
-#: misc/mke2fs.c:1873
+#: misc/mke2fs.c:1876
 msgid "The -T option may only be used once"
 msgstr ""
 
-#: misc/mke2fs.c:1929 misc/mke2fs.c:3364
+#: misc/mke2fs.c:1932 misc/mke2fs.c:3368
 #, c-format
 msgid "while trying to open journal device %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:1935
+#: misc/mke2fs.c:1938
 #, c-format
 msgid "Journal dev blocksize (%d) smaller than minimum blocksize %d\n"
 msgstr ""
 
-#: misc/mke2fs.c:1941
+#: misc/mke2fs.c:1944
 #, c-format
 msgid "Using journal device's blocksize: %d\n"
 msgstr ""
 
-#: misc/mke2fs.c:1952
+#: misc/mke2fs.c:1955
 #, c-format
 msgid "invalid blocks '%s' on device '%s'"
 msgstr ""
 
-#: misc/mke2fs.c:1982
+#: misc/mke2fs.c:1985
 msgid "filesystem"
 msgstr ""
 
-#: misc/mke2fs.c:2000 resize/main.c:499
+#: misc/mke2fs.c:2003 resize/main.c:499
 msgid "while trying to determine filesystem size"
 msgstr ""
 
-#: misc/mke2fs.c:2006
+#: misc/mke2fs.c:2009
 msgid ""
 "Couldn't determine device size; you must specify\n"
 "the size of the filesystem\n"
 msgstr ""
 
-#: misc/mke2fs.c:2013
+#: misc/mke2fs.c:2016
 msgid ""
 "Device size reported to be zero.  Invalid partition specified, or\n"
 "\tpartition table wasn't reread after running fdisk, due to\n"
@@ -5598,149 +5593,149 @@ msgid ""
 "\tto re-read your partition table.\n"
 msgstr ""
 
-#: misc/mke2fs.c:2030
+#: misc/mke2fs.c:2033
 msgid "Filesystem larger than apparent device size."
 msgstr ""
 
-#: misc/mke2fs.c:2050
+#: misc/mke2fs.c:2053
 msgid "Failed to parse fs types list\n"
 msgstr ""
 
-#: misc/mke2fs.c:2100
+#: misc/mke2fs.c:2103
 msgid "The HURD does not support the filetype feature.\n"
 msgstr ""
 
-#: misc/mke2fs.c:2105
+#: misc/mke2fs.c:2108
 msgid "The HURD does not support the huge_file feature.\n"
 msgstr ""
 
-#: misc/mke2fs.c:2110
+#: misc/mke2fs.c:2113
 msgid "The HURD does not support the metadata_csum feature.\n"
 msgstr ""
 
-#: misc/mke2fs.c:2115
+#: misc/mke2fs.c:2118
 msgid "The HURD does not support the ea_inode feature.\n"
 msgstr ""
 
-#: misc/mke2fs.c:2125
+#: misc/mke2fs.c:2128
 msgid "while trying to determine hardware sector size"
 msgstr ""
 
-#: misc/mke2fs.c:2131
+#: misc/mke2fs.c:2134
 msgid "while trying to determine physical sector size"
 msgstr ""
 
-#: misc/mke2fs.c:2163
+#: misc/mke2fs.c:2166
 msgid "while setting blocksize; too small for device\n"
 msgstr ""
 
-#: misc/mke2fs.c:2168
+#: misc/mke2fs.c:2171
 #, c-format
 msgid ""
 "Warning: specified blocksize %d is less than device physical sectorsize %d\n"
 msgstr ""
 
-#: misc/mke2fs.c:2192
+#: misc/mke2fs.c:2195
 #, 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:2206
+#: misc/mke2fs.c:2209
 #, c-format
 msgid ""
 "%s: Size of device (0x%llx blocks) %s too big to create\n"
 "\ta filesystem using a blocksize of %d.\n"
 msgstr ""
 
-#: misc/mke2fs.c:2228
+#: misc/mke2fs.c:2231
 msgid "fs_types for mke2fs.conf resolution: "
 msgstr ""
 
-#: misc/mke2fs.c:2235
+#: misc/mke2fs.c:2238
 msgid "Filesystem features not supported with revision 0 filesystems\n"
 msgstr ""
 
-#: misc/mke2fs.c:2243
+#: misc/mke2fs.c:2246
 msgid "Sparse superblocks not supported with revision 0 filesystems\n"
 msgstr ""
 
-#: misc/mke2fs.c:2253
+#: misc/mke2fs.c:2256
 msgid "Journals not supported with revision 0 filesystems\n"
 msgstr ""
 
-#: misc/mke2fs.c:2266
+#: misc/mke2fs.c:2269
 #, c-format
 msgid "invalid reserved blocks percent - %lf"
 msgstr ""
 
-#: misc/mke2fs.c:2283
+#: misc/mke2fs.c:2286
 msgid ""
 "Extents MUST be enabled for a 64-bit filesystem.  Pass -O extents to "
 "rectify.\n"
 msgstr ""
 
-#: misc/mke2fs.c:2303
+#: misc/mke2fs.c:2306
 msgid "The cluster size may not be smaller than the block size.\n"
 msgstr ""
 
-#: misc/mke2fs.c:2309
+#: misc/mke2fs.c:2312
 msgid "specifying a cluster size requires the bigalloc feature"
 msgstr ""
 
-#: misc/mke2fs.c:2329
+#: misc/mke2fs.c:2332
 #, c-format
 msgid "warning: Unable to get device geometry for %s\n"
 msgstr ""
 
-#: misc/mke2fs.c:2341
+#: misc/mke2fs.c:2344
 #, c-format
 msgid "%s alignment is offset by %lu bytes.\n"
 msgstr ""
 
-#: misc/mke2fs.c:2343
+#: misc/mke2fs.c:2346
 #, c-format
 msgid ""
 "This may result in very poor performance, (re)-partitioning suggested.\n"
 msgstr ""
 
-#: misc/mke2fs.c:2349
+#: misc/mke2fs.c:2352
 #, c-format
 msgid ""
 "%s is capable of DAX but current block size %u is different from system page "
 "size %u so filesystem will not support DAX.\n"
 msgstr ""
 
-#: misc/mke2fs.c:2373
+#: misc/mke2fs.c:2376
 #, c-format
 msgid "%d-byte blocks too big for system (max %d)"
 msgstr ""
 
-#: misc/mke2fs.c:2377
+#: misc/mke2fs.c:2380
 #, c-format
 msgid ""
 "Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
 msgstr ""
 
-#: misc/mke2fs.c:2385
+#: misc/mke2fs.c:2388
 #, c-format
 msgid ""
 "Suggestion: Use Linux kernel >= 3.18 for improved stability of the metadata "
 "and journal checksum features.\n"
 msgstr ""
 
-#: misc/mke2fs.c:2431
+#: misc/mke2fs.c:2434
 #, c-format
 msgid "Unknown filename encoding from profile: %s"
 msgstr ""
 
-#: misc/mke2fs.c:2442
+#: misc/mke2fs.c:2445
 #, c-format
 msgid "Unknown encoding flags from profile: %s"
 msgstr ""
 
-#: misc/mke2fs.c:2467
+#: misc/mke2fs.c:2470
 #, c-format
 msgid ""
 "\n"
@@ -5750,22 +5745,22 @@ msgid ""
 "\n"
 msgstr ""
 
-#: misc/mke2fs.c:2482
+#: misc/mke2fs.c:2485
 #, c-format
 msgid "%d byte inodes are too small for project quota"
 msgstr ""
 
-#: misc/mke2fs.c:2504
+#: misc/mke2fs.c:2507
 msgid "Can't support bigalloc feature without extents feature"
 msgstr ""
 
-#: misc/mke2fs.c:2511
+#: misc/mke2fs.c:2514
 msgid ""
 "The resize_inode and meta_bg features are not compatible.\n"
 "They can not be both enabled simultaneously.\n"
 msgstr ""
 
-#: misc/mke2fs.c:2519
+#: misc/mke2fs.c:2522
 msgid ""
 "\n"
 "Warning: the bigalloc feature is still under development\n"
@@ -5773,39 +5768,39 @@ msgid ""
 "\n"
 msgstr ""
 
-#: misc/mke2fs.c:2531
+#: misc/mke2fs.c:2534
 msgid "reserved online resize blocks not supported on non-sparse filesystem"
 msgstr ""
 
-#: misc/mke2fs.c:2540
+#: misc/mke2fs.c:2543
 msgid "blocks per group count out of range"
 msgstr ""
 
-#: misc/mke2fs.c:2562
+#: misc/mke2fs.c:2565
 msgid "Flex_bg feature not enabled, so flex_bg size may not be specified"
 msgstr ""
 
-#: misc/mke2fs.c:2574
+#: misc/mke2fs.c:2577
 #, c-format
 msgid "invalid inode size %d (min %d/max %d)"
 msgstr ""
 
-#: misc/mke2fs.c:2589
+#: misc/mke2fs.c:2592
 #, c-format
 msgid "%d byte inodes are too small for inline data; specify larger size"
 msgstr ""
 
-#: misc/mke2fs.c:2604
+#: misc/mke2fs.c:2607
 #, c-format
 msgid "too many inodes (%llu), raise inode ratio?"
 msgstr ""
 
-#: misc/mke2fs.c:2611
+#: misc/mke2fs.c:2615
 #, c-format
 msgid "too many inodes (%llu), specify < 2^32 inodes"
 msgstr ""
 
-#: misc/mke2fs.c:2625
+#: misc/mke2fs.c:2629
 #, c-format
 msgid ""
 "inode_size (%u) * inodes_count (%u) too big for a\n"
@@ -5813,161 +5808,161 @@ msgid ""
 "\tor lower inode count (-N).\n"
 msgstr ""
 
-#: misc/mke2fs.c:2812
+#: misc/mke2fs.c:2816
 msgid "Discarding device blocks: "
 msgstr ""
 
-#: misc/mke2fs.c:2828
+#: misc/mke2fs.c:2832
 msgid "failed - "
 msgstr ""
 
-#: misc/mke2fs.c:2887
+#: misc/mke2fs.c:2891
 msgid "while initializing quota context"
 msgstr ""
 
-#: misc/mke2fs.c:2894
+#: misc/mke2fs.c:2898
 msgid "while writing quota inodes"
 msgstr ""
 
-#: misc/mke2fs.c:2919
+#: misc/mke2fs.c:2923
 #, c-format
 msgid "bad error behavior in profile - %s"
 msgstr ""
 
-#: misc/mke2fs.c:2998
+#: misc/mke2fs.c:3002
 msgid "in malloc for android_sparse_params"
 msgstr ""
 
-#: misc/mke2fs.c:3012
+#: misc/mke2fs.c:3016
 msgid "while setting up superblock"
 msgstr ""
 
-#: misc/mke2fs.c:3028
+#: misc/mke2fs.c:3032
 msgid ""
 "Extents are not enabled.  The file extent tree can be checksummed, whereas "
 "block maps cannot.  Not enabling extents reduces the coverage of metadata "
 "checksumming.  Pass -O extents to rectify.\n"
 msgstr ""
 
-#: misc/mke2fs.c:3035
+#: misc/mke2fs.c:3039
 msgid ""
 "64-bit filesystem support is not enabled.  The larger fields afforded by "
 "this feature enable full-strength checksumming.  Pass -O 64bit to rectify.\n"
 msgstr ""
 
-#: misc/mke2fs.c:3043
+#: misc/mke2fs.c:3047
 msgid "The metadata_csum_seed feature requires the metadata_csum feature.\n"
 msgstr ""
 
-#: misc/mke2fs.c:3067
+#: misc/mke2fs.c:3071
 msgid "Discard succeeded and will return 0s - skipping inode table wipe\n"
 msgstr ""
 
-#: misc/mke2fs.c:3166
+#: misc/mke2fs.c:3170
 #, c-format
 msgid "unknown os - %s"
 msgstr ""
 
-#: misc/mke2fs.c:3229
+#: misc/mke2fs.c:3233
 msgid "Allocating group tables: "
 msgstr ""
 
-#: misc/mke2fs.c:3237
+#: misc/mke2fs.c:3241
 msgid "while trying to allocate filesystem tables"
 msgstr ""
 
-#: misc/mke2fs.c:3252
+#: misc/mke2fs.c:3256
 msgid "while unmarking bad blocks"
 msgstr ""
 
-#: misc/mke2fs.c:3263
+#: misc/mke2fs.c:3267
 msgid ""
 "\n"
 "\twhile converting subcluster bitmap"
 msgstr ""
 
-#: misc/mke2fs.c:3272
+#: misc/mke2fs.c:3276
 msgid "while calculating overhead"
 msgstr ""
 
-#: misc/mke2fs.c:3291
+#: misc/mke2fs.c:3295
 #, c-format
 msgid "%s may be further corrupted by superblock rewrite\n"
 msgstr ""
 
-#: misc/mke2fs.c:3332
+#: misc/mke2fs.c:3336
 #, c-format
 msgid "while zeroing block %llu at end of filesystem"
 msgstr ""
 
-#: misc/mke2fs.c:3345
+#: misc/mke2fs.c:3349
 msgid "while reserving blocks for online resize"
 msgstr ""
 
-#: misc/mke2fs.c:3357 misc/tune2fs.c:1567
+#: misc/mke2fs.c:3361 misc/tune2fs.c:1567
 msgid "journal"
 msgstr ""
 
-#: misc/mke2fs.c:3369
+#: misc/mke2fs.c:3373
 #, c-format
 msgid "Adding journal to device %s: "
 msgstr ""
 
-#: misc/mke2fs.c:3376
+#: misc/mke2fs.c:3380
 #, c-format
 msgid ""
 "\n"
 "\twhile trying to add journal to device %s"
 msgstr ""
 
-#: misc/mke2fs.c:3381 misc/mke2fs.c:3411 misc/mke2fs.c:3453
-#: misc/mk_hugefiles.c:600 misc/tune2fs.c:1596 misc/tune2fs.c:1615
+#: misc/mke2fs.c:3385 misc/mke2fs.c:3415 misc/mke2fs.c:3457
+#: misc/mk_hugefiles.c:602 misc/tune2fs.c:1596 misc/tune2fs.c:1615
 msgid "done\n"
 msgstr ""
 
-#: misc/mke2fs.c:3388
+#: misc/mke2fs.c:3392
 msgid "Skipping journal creation in super-only mode\n"
 msgstr ""
 
-#: misc/mke2fs.c:3398
+#: misc/mke2fs.c:3402
 #, c-format
 msgid "Creating journal (%u blocks): "
 msgstr ""
 
-#: misc/mke2fs.c:3407
+#: misc/mke2fs.c:3411
 msgid ""
 "\n"
 "\twhile trying to create journal"
 msgstr ""
 
-#: misc/mke2fs.c:3419 misc/tune2fs.c:1170
+#: misc/mke2fs.c:3423 misc/tune2fs.c:1170
 msgid ""
 "\n"
 "Error while enabling multiple mount protection feature."
 msgstr ""
 
-#: misc/mke2fs.c:3424
+#: misc/mke2fs.c:3428
 #, c-format
 msgid "Multiple mount protection is enabled with update interval %d seconds.\n"
 msgstr ""
 
-#: misc/mke2fs.c:3444
+#: misc/mke2fs.c:3448
 msgid "Copying files into the device: "
 msgstr ""
 
-#: misc/mke2fs.c:3450
+#: misc/mke2fs.c:3454
 msgid "while populating file system"
 msgstr ""
 
-#: misc/mke2fs.c:3457
+#: misc/mke2fs.c:3461
 msgid "Writing superblocks and filesystem accounting information: "
 msgstr ""
 
-#: misc/mke2fs.c:3464
+#: misc/mke2fs.c:3468
 msgid "while writing out and closing file system"
 msgstr ""
 
-#: misc/mke2fs.c:3467
+#: misc/mke2fs.c:3471
 msgid ""
 "done\n"
 "\n"
@@ -5978,27 +5973,27 @@ msgstr ""
 msgid "while zeroing block %llu for hugefile"
 msgstr ""
 
-#: misc/mk_hugefiles.c:515
+#: misc/mk_hugefiles.c:516
 #, c-format
 msgid ""
 "Partition offset of %llu (%uk) blocks not compatible with cluster size %u.\n"
 msgstr ""
 
-#: misc/mk_hugefiles.c:583
+#: misc/mk_hugefiles.c:584
 msgid "Huge files will be zero'ed\n"
 msgstr ""
 
-#: misc/mk_hugefiles.c:584
+#: misc/mk_hugefiles.c:585
 #, c-format
 msgid "Creating %lu huge file(s) "
 msgstr ""
 
-#: misc/mk_hugefiles.c:586
+#: misc/mk_hugefiles.c:587
 #, c-format
 msgid "with %llu blocks each"
 msgstr ""
 
-#: misc/mk_hugefiles.c:595
+#: misc/mk_hugefiles.c:597
 #, c-format
 msgid "while creating huge file %lu"
 msgstr ""
@@ -6072,19 +6067,19 @@ msgstr ""
 msgid "while trying to open external journal"
 msgstr ""
 
-#: misc/tune2fs.c:292 misc/tune2fs.c:2883
+#: misc/tune2fs.c:292 misc/tune2fs.c:2888
 #, c-format
 msgid "%s is not a journal device.\n"
 msgstr ""
 
-#: misc/tune2fs.c:301 misc/tune2fs.c:2892
+#: misc/tune2fs.c:301 misc/tune2fs.c:2897
 #, c-format
 msgid ""
 "Journal superblock is corrupted, nr_users\n"
 "is too high (%d).\n"
 msgstr ""
 
-#: misc/tune2fs.c:308 misc/tune2fs.c:2899
+#: misc/tune2fs.c:308 misc/tune2fs.c:2904
 msgid "Filesystem's UUID not found on journal device.\n"
 msgstr ""
 
@@ -6284,7 +6279,7 @@ msgid ""
 "Warning: '^quota' option overrides '-Q'arguments.\n"
 msgstr ""
 
-#: misc/tune2fs.c:1481 misc/tune2fs.c:2233
+#: misc/tune2fs.c:1481 misc/tune2fs.c:2238
 msgid ""
 "The casefold feature may only be enabled when the filesystem is unmounted.\n"
 msgstr ""
@@ -6380,60 +6375,60 @@ msgstr ""
 msgid "Couldn't parse date/time specifier: %s"
 msgstr ""
 
-#: misc/tune2fs.c:1832 misc/tune2fs.c:1845
+#: misc/tune2fs.c:1839 misc/tune2fs.c:1850
 #, c-format
 msgid "bad mounts count - %s"
 msgstr ""
 
-#: misc/tune2fs.c:1888
+#: misc/tune2fs.c:1893
 #, c-format
 msgid "bad gid/group name - %s"
 msgstr ""
 
-#: misc/tune2fs.c:1921
+#: misc/tune2fs.c:1926
 #, c-format
 msgid "bad interval - %s"
 msgstr ""
 
-#: misc/tune2fs.c:1950
+#: misc/tune2fs.c:1955
 #, c-format
 msgid "bad reserved block ratio - %s"
 msgstr ""
 
-#: misc/tune2fs.c:1965
+#: misc/tune2fs.c:1970
 msgid "-o may only be specified once"
 msgstr ""
 
-#: misc/tune2fs.c:1974
+#: misc/tune2fs.c:1979
 msgid "-O may only be specified once"
 msgstr ""
 
-#: misc/tune2fs.c:1991
+#: misc/tune2fs.c:1996
 #, c-format
 msgid "bad reserved blocks count - %s"
 msgstr ""
 
-#: misc/tune2fs.c:2020
+#: misc/tune2fs.c:2025
 #, c-format
 msgid "bad uid/user name - %s"
 msgstr ""
 
-#: misc/tune2fs.c:2037
+#: misc/tune2fs.c:2042
 #, c-format
 msgid "bad inode size - %s"
 msgstr ""
 
-#: misc/tune2fs.c:2044
+#: misc/tune2fs.c:2049
 #, c-format
 msgid "Inode size must be a power of two- %s"
 msgstr ""
 
-#: misc/tune2fs.c:2144
+#: misc/tune2fs.c:2149
 #, c-format
 msgid "mmp_update_interval too big: %lu\n"
 msgstr ""
 
-#: misc/tune2fs.c:2149
+#: misc/tune2fs.c:2154
 #, c-format
 msgid "Setting multiple mount protection update interval to %lu second\n"
 msgid_plural ""
@@ -6441,52 +6436,52 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#: misc/tune2fs.c:2158
+#: misc/tune2fs.c:2163
 #, c-format
 msgid "Setting filesystem error flag to force fsck.\n"
 msgstr ""
 
-#: misc/tune2fs.c:2176
+#: misc/tune2fs.c:2181
 #, c-format
 msgid "Invalid RAID stride: %s\n"
 msgstr ""
 
-#: misc/tune2fs.c:2191
+#: misc/tune2fs.c:2196
 #, c-format
 msgid "Invalid RAID stripe-width: %s\n"
 msgstr ""
 
-#: misc/tune2fs.c:2206
+#: misc/tune2fs.c:2211
 #, c-format
 msgid "Invalid hash algorithm: %s\n"
 msgstr ""
 
-#: misc/tune2fs.c:2212
+#: misc/tune2fs.c:2217
 #, c-format
 msgid "Setting default hash algorithm to %s (%d)\n"
 msgstr ""
 
-#: misc/tune2fs.c:2239
+#: misc/tune2fs.c:2244
 #, c-format
 msgid "Cannot alter existing encoding\n"
 msgstr ""
 
-#: misc/tune2fs.c:2245
+#: misc/tune2fs.c:2250
 #, c-format
 msgid "Invalid encoding: %s\n"
 msgstr ""
 
-#: misc/tune2fs.c:2251
+#: misc/tune2fs.c:2256
 #, c-format
 msgid "Setting encoding to '%s'\n"
 msgstr ""
 
-#: misc/tune2fs.c:2275
+#: misc/tune2fs.c:2280
 #, c-format
 msgid "Setting encoding_flags to '%s'\n"
 msgstr ""
 
-#: misc/tune2fs.c:2285
+#: misc/tune2fs.c:2290
 msgid ""
 "\n"
 "Bad options specified.\n"
@@ -6508,72 +6503,72 @@ msgid ""
 "\tencoding_flags=<flags>\n"
 msgstr ""
 
-#: misc/tune2fs.c:2701
+#: misc/tune2fs.c:2706
 msgid "Failed to read inode bitmap\n"
 msgstr ""
 
-#: misc/tune2fs.c:2706
+#: misc/tune2fs.c:2711
 msgid "Failed to read block bitmap\n"
 msgstr ""
 
-#: misc/tune2fs.c:2723 resize/resize2fs.c:1278
+#: misc/tune2fs.c:2728 resize/resize2fs.c:1279
 msgid "blocks to be moved"
 msgstr ""
 
-#: misc/tune2fs.c:2726
+#: misc/tune2fs.c:2731
 msgid "Failed to allocate block bitmap when increasing inode size\n"
 msgstr ""
 
-#: misc/tune2fs.c:2732
+#: misc/tune2fs.c:2737
 msgid "Not enough space to increase inode size \n"
 msgstr ""
 
-#: misc/tune2fs.c:2737
+#: misc/tune2fs.c:2742
 msgid "Failed to relocate blocks during inode resize \n"
 msgstr ""
 
-#: misc/tune2fs.c:2769
+#: misc/tune2fs.c:2774
 msgid ""
 "Error in resizing the inode size.\n"
 "Run e2undo to undo the file system changes. \n"
 msgstr ""
 
-#: misc/tune2fs.c:2980
+#: misc/tune2fs.c:2985
 msgid ""
 "If you are sure the filesystem is not in use on any node, run:\n"
 "'tune2fs -f -E clear_mmp {device}'\n"
 msgstr ""
 
-#: misc/tune2fs.c:2987
+#: misc/tune2fs.c:2992
 #, c-format
 msgid ""
 "MMP block magic is bad. Try to fix it by running:\n"
 "'e2fsck -f %s'\n"
 msgstr ""
 
-#: misc/tune2fs.c:2999
+#: misc/tune2fs.c:3004
 msgid "Cannot modify a journal device.\n"
 msgstr ""
 
-#: misc/tune2fs.c:3012
+#: misc/tune2fs.c:3017
 #, c-format
 msgid "The inode size is already %lu\n"
 msgstr ""
 
-#: misc/tune2fs.c:3019
+#: misc/tune2fs.c:3024
 msgid "Shrinking inode size is not supported\n"
 msgstr ""
 
-#: misc/tune2fs.c:3024
+#: misc/tune2fs.c:3029
 #, c-format
 msgid "Invalid inode size %lu (max %d)\n"
 msgstr ""
 
-#: misc/tune2fs.c:3030
+#: misc/tune2fs.c:3035
 msgid "Resizing inodes could take some time."
 msgstr ""
 
-#: misc/tune2fs.c:3079
+#: misc/tune2fs.c:3084
 #, c-format
 msgid ""
 "Warning: The journal is dirty. You may wish to replay the journal like:\n"
@@ -6584,159 +6579,159 @@ msgid ""
 "by journal recovery.\n"
 msgstr ""
 
-#: misc/tune2fs.c:3088
+#: misc/tune2fs.c:3093
 #, c-format
 msgid "Recovering journal.\n"
 msgstr ""
 
-#: misc/tune2fs.c:3109
+#: misc/tune2fs.c:3117
 #, c-format
 msgid "Setting maximal mount count to %d\n"
 msgstr ""
 
-#: misc/tune2fs.c:3115
+#: misc/tune2fs.c:3123
 #, c-format
 msgid "Setting current mount count to %d\n"
 msgstr ""
 
-#: misc/tune2fs.c:3120
+#: misc/tune2fs.c:3128
 #, c-format
 msgid "Setting error behavior to %d\n"
 msgstr ""
 
-#: misc/tune2fs.c:3125
+#: misc/tune2fs.c:3133
 #, c-format
 msgid "Setting reserved blocks gid to %lu\n"
 msgstr ""
 
-#: misc/tune2fs.c:3130
+#: misc/tune2fs.c:3138
 #, c-format
 msgid "interval between checks is too big (%lu)"
 msgstr ""
 
-#: misc/tune2fs.c:3137
+#: misc/tune2fs.c:3145
 #, c-format
 msgid "Setting interval between checks to %lu seconds\n"
 msgstr ""
 
-#: misc/tune2fs.c:3144
+#: misc/tune2fs.c:3152
 #, c-format
 msgid "Setting reserved blocks percentage to %g%% (%llu blocks)\n"
 msgstr ""
 
-#: misc/tune2fs.c:3150
+#: misc/tune2fs.c:3159
 #, c-format
 msgid "reserved blocks count is too big (%llu)"
 msgstr ""
 
-#: misc/tune2fs.c:3157
+#: misc/tune2fs.c:3166
 #, c-format
 msgid "Setting reserved blocks count to %llu\n"
 msgstr ""
 
-#: misc/tune2fs.c:3162
+#: misc/tune2fs.c:3171
 msgid ""
 "\n"
 "The filesystem already has sparse superblocks.\n"
 msgstr ""
 
-#: misc/tune2fs.c:3165
+#: misc/tune2fs.c:3174
 msgid ""
 "\n"
 "Setting the sparse superblock flag not supported\n"
 "for filesystems with the meta_bg feature enabled.\n"
 msgstr ""
 
-#: misc/tune2fs.c:3175
+#: misc/tune2fs.c:3184
 #, c-format
 msgid ""
 "\n"
 "Sparse superblock flag set.  %s"
 msgstr ""
 
-#: misc/tune2fs.c:3180
+#: misc/tune2fs.c:3189
 msgid ""
 "\n"
 "Clearing the sparse superblock flag not supported.\n"
 msgstr ""
 
-#: misc/tune2fs.c:3188
+#: misc/tune2fs.c:3197
 #, c-format
 msgid "Setting time filesystem last checked to %s\n"
 msgstr ""
 
-#: misc/tune2fs.c:3194
+#: misc/tune2fs.c:3203
 #, c-format
 msgid "Setting reserved blocks uid to %lu\n"
 msgstr ""
 
-#: misc/tune2fs.c:3226
+#: misc/tune2fs.c:3235
 msgid "Error in using clear_mmp. It must be used with -f\n"
 msgstr ""
 
-#: misc/tune2fs.c:3244
+#: misc/tune2fs.c:3253
 msgid ""
 "The quota feature may only be changed when the filesystem is unmounted.\n"
 msgstr ""
 
-#: misc/tune2fs.c:3261
+#: misc/tune2fs.c:3270
 msgid ""
 "Cannot change the UUID of this filesystem because it has the stable_inodes "
 "feature flag.\n"
 msgstr ""
 
-#: misc/tune2fs.c:3271
+#: misc/tune2fs.c:3280
 msgid "Setting the UUID on this filesystem could take some time."
 msgstr ""
 
-#: misc/tune2fs.c:3288
+#: misc/tune2fs.c:3297
 msgid "The UUID may only be changed when the filesystem is unmounted.\n"
 msgstr ""
 
-#: misc/tune2fs.c:3291
+#: misc/tune2fs.c:3300
 msgid ""
 "If you only use kernels newer than v4.4, run 'tune2fs -O metadata_csum_seed' "
 "and re-run this command.\n"
 msgstr ""
 
-#: misc/tune2fs.c:3322
+#: misc/tune2fs.c:3331
 msgid "Invalid UUID format\n"
 msgstr ""
 
-#: misc/tune2fs.c:3338
+#: misc/tune2fs.c:3347
 msgid "Need to update journal superblock.\n"
 msgstr ""
 
-#: misc/tune2fs.c:3360
+#: misc/tune2fs.c:3369
 msgid "The inode size may only be changed when the filesystem is unmounted.\n"
 msgstr ""
 
-#: misc/tune2fs.c:3367
+#: misc/tune2fs.c:3376
 msgid ""
 "Changing the inode size not supported for filesystems with the flex_bg\n"
 "feature enabled.\n"
 msgstr ""
 
-#: misc/tune2fs.c:3385
+#: misc/tune2fs.c:3394
 #, c-format
 msgid "Setting inode size %lu\n"
 msgstr ""
 
-#: misc/tune2fs.c:3389
+#: misc/tune2fs.c:3398
 msgid "Failed to change inode size\n"
 msgstr ""
 
-#: misc/tune2fs.c:3403
+#: misc/tune2fs.c:3412
 #, c-format
 msgid "Setting stride size to %d\n"
 msgstr ""
 
-#: misc/tune2fs.c:3408
+#: misc/tune2fs.c:3417
 #, c-format
 msgid "Setting stripe width to %d\n"
 msgstr ""
 
-#: misc/tune2fs.c:3415
+#: misc/tune2fs.c:3424
 #, c-format
 msgid "Setting extended default mount options to '%s'\n"
 msgstr ""
@@ -7049,11 +7044,11 @@ msgstr ""
 msgid "New size smaller than minimum (%llu)\n"
 msgstr ""
 
-#: resize/main.c:554
+#: resize/main.c:555
 msgid "Invalid stride length"
 msgstr ""
 
-#: resize/main.c:578
+#: resize/main.c:579
 #, c-format
 msgid ""
 "The containing partition (or device) is only %llu (%dk) blocks.\n"
@@ -7061,89 +7056,89 @@ msgid ""
 "\n"
 msgstr ""
 
-#: resize/main.c:585
+#: resize/main.c:586
 #, c-format
 msgid "Cannot set and unset 64bit feature.\n"
 msgstr ""
 
-#: resize/main.c:589
+#: resize/main.c:590
 #, c-format
 msgid ""
 "Cannot change the 64bit feature on a filesystem that is larger than 2^32 "
 "blocks.\n"
 msgstr ""
 
-#: resize/main.c:595
+#: resize/main.c:596
 #, c-format
 msgid "Cannot change the 64bit feature while the filesystem is mounted.\n"
 msgstr ""
 
-#: resize/main.c:601
+#: resize/main.c:602
 #, c-format
 msgid ""
 "Please enable the extents feature with tune2fs before enabling the 64bit "
 "feature.\n"
 msgstr ""
 
-#: resize/main.c:607
+#: resize/main.c:608
 #, c-format
 msgid ""
 "The filesystem is already %llu (%dk) blocks long.  Nothing to do!\n"
 "\n"
 msgstr ""
 
-#: resize/main.c:614
+#: resize/main.c:616
 #, c-format
 msgid "The filesystem is already 64-bit.\n"
 msgstr ""
 
-#: resize/main.c:619
+#: resize/main.c:621
 #, c-format
 msgid "The filesystem is already 32-bit.\n"
 msgstr ""
 
-#: resize/main.c:624
+#: resize/main.c:626
 #, c-format
 msgid ""
 "Cannot shrink this filesystem because it has the stable_inodes feature "
 "flag.\n"
 msgstr ""
 
-#: resize/main.c:633
+#: resize/main.c:635
 #, c-format
 msgid "Converting the filesystem to 64-bit.\n"
 msgstr ""
 
-#: resize/main.c:635
+#: resize/main.c:637
 #, c-format
 msgid "Converting the filesystem to 32-bit.\n"
 msgstr ""
 
-#: resize/main.c:637
+#: resize/main.c:639
 #, c-format
 msgid "Resizing the filesystem on %s to %llu (%dk) blocks.\n"
 msgstr ""
 
-#: resize/main.c:646
+#: resize/main.c:649
 #, c-format
 msgid "while trying to resize %s"
 msgstr ""
 
-#: resize/main.c:649
+#: resize/main.c:652
 #, c-format
 msgid ""
 "Please run 'e2fsck -fy %s' to fix the filesystem\n"
 "after the aborted resize operation.\n"
 msgstr ""
 
-#: resize/main.c:655
+#: resize/main.c:658
 #, c-format
 msgid ""
 "The filesystem on %s is now %llu (%dk) blocks long.\n"
 "\n"
 msgstr ""
 
-#: resize/main.c:670
+#: resize/main.c:673
 #, c-format
 msgid "while trying to truncate %s"
 msgstr ""
@@ -7200,16 +7195,16 @@ msgstr ""
 msgid "Performing an on-line resize of %s to %llu (%dk) blocks.\n"
 msgstr ""
 
-#: resize/online.c:230
+#: resize/online.c:231
 msgid "While trying to extend the last group"
 msgstr ""
 
-#: resize/online.c:277
+#: resize/online.c:278
 #, c-format
 msgid "While trying to add group #%d"
 msgstr ""
 
-#: resize/online.c:288
+#: resize/online.c:289
 #, c-format
 msgid ""
 "Filesystem at %s is mounted on %s, and on-line resizing is not supported on "
@@ -7225,28 +7220,28 @@ msgstr ""
 msgid "reserved blocks"
 msgstr ""
 
-#: resize/resize2fs.c:1283
+#: resize/resize2fs.c:1284
 msgid "meta-data blocks"
 msgstr ""
 
-#: resize/resize2fs.c:1387 resize/resize2fs.c:2422
+#: resize/resize2fs.c:1388 resize/resize2fs.c:2430
 msgid "new meta blocks"
 msgstr ""
 
-#: resize/resize2fs.c:2645
+#: resize/resize2fs.c:2654
 msgid "Should never happen!  No sb in last super_sparse bg?\n"
 msgstr ""
 
-#: resize/resize2fs.c:2650
+#: resize/resize2fs.c:2659
 msgid "Should never happen!  Unexpected old_desc in super_sparse bg?\n"
 msgstr ""
 
-#: resize/resize2fs.c:2723
+#: resize/resize2fs.c:2732
 msgid "Should never happen: resize inode corrupt!\n"
 msgstr ""
 
 #: lib/ext2fs/ext2_err.c:11
-msgid "EXT2FS Library version 1.46.0"
+msgid "EXT2FS Library version 1.46.2"
 msgstr ""
 
 #: lib/ext2fs/ext2_err.c:12
@@ -7965,6 +7960,10 @@ msgstr ""
 msgid "Group descriptors not loaded"
 msgstr ""
 
+#: lib/ext2fs/ext2_err.c:191
+msgid "The internal ext2_filsys data structure appears to be corrupted"
+msgstr ""
+
 #: lib/support/prof_err.c:11
 msgid "Profile version 0.0"
 msgstr ""
index a45d995..e27de3c 100644 (file)
--- a/version.h
+++ b/version.h
@@ -7,5 +7,5 @@
  * file may be redistributed under the GNU Public License v2.
  */
 
-#define E2FSPROGS_VERSION "1.46.1"
-#define E2FSPROGS_DATE "9-Feb-2021"
+#define E2FSPROGS_VERSION "1.46.2"
+#define E2FSPROGS_DATE "28-Feb-2021"