aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2021-07-27 12:46:39 -0400
committerTheodore Ts'o <tytso@mit.edu>2021-07-27 13:38:14 -0400
commit496669a2900e6be58dcf200b8ea1802a866ef3b8 (patch)
tree4aaf19f9b3b1b47c1738b4f7f3b4e1cfed7b205c
parent59eed5421c2ccb262d31c08e6d07535d76fe5688 (diff)
downloade2fsprogs-496669a2900e6be58dcf200b8ea1802a866ef3b8.tar.gz
Update release notes, etc., for the 1.46.3 releasev1.46.3
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r--README2
l---------RELEASE-NOTES2
-rw-r--r--debian/changelog43
-rw-r--r--doc/RelNotes/v1.46.3.txt77
-rw-r--r--doc/libext2fs.texinfo8
-rw-r--r--e2fsprogs.lsm8
-rw-r--r--e2fsprogs.spec2
-rw-r--r--misc/Makefile.in3
-rw-r--r--po/e2fsprogs.pot788
-rw-r--r--version.h4
10 files changed, 529 insertions, 408 deletions
diff --git a/README b/README
index fa4d9970b..e3f9fadb6 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
- This is the new version (1.46.2) of the second extended file
+ This is the new version (1.46.3) 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 a0e8f5709..3b25fbb20 120000
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1 +1 @@
-doc/RelNotes/v1.46.2.txt \ No newline at end of file
+doc/RelNotes/v1.46.3.txt \ No newline at end of file
diff --git a/debian/changelog b/debian/changelog
index 80a27c7c6..cc8793f7c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,46 @@
+e2fsprogs (1.46.3-1) experimental; urgency=medium
+
+ * New upstream release
+ * Fix resize2fs bug when performing an off-line file system expansion
+ with MMP and there isn't sufficient reserved block group descriptor
+ blocks could lead to file system corruption. (Closes: #984472)
+ * Teach the filefrag program the -V option, which will print the version
+ of the tool, or if -V option is specified twice, will print the list
+ of supported FIEMAP flags.
+ * Fix fast_commit portability problems on sparc64 and arm64
+ architectures (the latter when running e2fsprogs compiled for arm32).
+ (Closes: #987641)
+ * Fix missing mutex unlock in an error path in the Unix I/O manager.
+ * Fix Direct I/O support in the Unix I/O manager (this was a regression
+ introduced in v1.46.2).
+ * Fix mke2fs to avoid discarding blocks beyond the end of the file
+ system to be created when creating a file system which is smaller than
+ 16MB and the file system size was explicitly specified and smaller
+ than the size of the block device. (Closes: #989630)
+ * Teach mke2fs to avoid giving a spurious warning about a pre-existing
+ partition table and it is creating a file system at a non-zero offset
+ (so the partition table wouldn't be overwritten in any case).
+ (Closes: #989612)
+ * Fix e2image -Q to prevent a multiplcation overflow could corrupt
+ the generated QCOW2 output file for very large file systems.
+ * When e2fsck repairs '.' and '..' entries in corrupted directories, set
+ the file type in the directory entry to be EXT2_FT_DIR and do not
+ leave the file type as EXT2_FT_UNKNOWN.
+ * Fix e2fsck so that the if the s_interval is zero, and the last mount
+ or write time is in the future, it will fix invalid last mount/write
+ timestamps in the superblock. (This was a regression introduced in
+ v1.45.5.)
+ * Fix lsattr and chattr to avoid opening or calling EXT2_IOC_[GS]ETFLAGS
+ on devices, since this can cause some devices to react badly as a
+ result. (Thix fixes a regression introduced in v1.46.2.)
+ (Closes: #986332)
+ * Fix potential memory leaks and seg faults when memory allocations fail.
+ * Fix various compiler and valgrind warnings
+ * Updated and clarified the e2image and filefrag man pages.
+ * Update Dutch, Malay, and Serbian translations.
+
+ -- Theodore Y. Ts'o <tytso@mit.edu> Tue, 27 Jul 2021 11:04:05 -0400
+
e2fsprogs (1.46.2-1) unstable; urgency=medium
* New upstream release
diff --git a/doc/RelNotes/v1.46.3.txt b/doc/RelNotes/v1.46.3.txt
new file mode 100644
index 000000000..26f7cfde0
--- /dev/null
+++ b/doc/RelNotes/v1.46.3.txt
@@ -0,0 +1,77 @@
+E2fsprogs 1.46.3 (July 27, 2021)
+================================
+
+Updates/Fixes since v1.46.2:
+
+UI and Features
+---------------
+
+Teach the filefrag program the -V option, which will print the version
+of the tool, or if -V option is specified twice, will print the list of
+supported FIEMAP flags.
+
+
+Fixes
+-----
+
+Fix bug in resize2fs where growing a file system with MMP enabled and
+there aren't any (or sufficient) reserved block group descriptors,
+resize2fs could potentially overwrite the MMP block, leading to file
+system corruption. (Addresses Debian Bug: #984472)
+
+Fix fast_commit portability problems on sparc64 and arm64 architectures
+(the latter when running e2fsprogs compiled for arm32). (Addresses
+Debian Bug: #987641)
+
+Fix missing mutex unlock in an error path in the Unix I/O manager.
+
+Fix Direct I/O support in the Unix I/O manager (this was a regression
+that was introduced in v1.46.2).
+
+Fix mke2fs to avoid discarding blocks beyond the end of the file system
+to be created when creating a file system which is smaller than 16MB and
+the file system size was explicitly specified and smaller than the size
+of the block device. (Addresses Debian Bug: #989630)
+
+Teach mke2fs to avoid giving a spurious warning about a pre-existing
+partition table and it is creating a file system at a non-zero offset
+(so the partition table wouldn't be overwritten in any case).
+(Addresses Debian Bug: #989612)
+
+Fix e2image -Q to prevent a multiplcation overflow could corrupt the
+generated QCOW2 output file for very large file systems.
+
+When e2fsck repairs '.' and '..' entries in corrupted directories, set
+the file type in the directory entry to be EXT2_FT_DIR and do not leave
+the file type as EXT2_FT_UNKNOWN.
+
+Fix e2fsck so that the if the s_interval is zero, and the last mount or
+write time is in the future, it will fix invalid last mount/write
+timestamps in the superblock. (This was a regression introduced in
+v1.45.5.)
+
+Fix potential memory leaks and seg faults when memory allocations fail.
+
+Fix lsattr and chattr to avoid opening or calling EXT2_IOC_[GS]ETFLAGS
+on devices, since this can cause some devices to react badly as a
+result. (Thix fixes a regression introduced in v1.46.2 and addresses
+Debian Bug: #986332)
+
+Updated and clarified the e2image and filefrag man pages.
+
+
+Performance, Internal Implementation, Development Support etc.
+--------------------------------------------------------------
+
+Avoid forking an unnecessary thread in ext2fs_rw_bitmaps().
+
+Avoid unnecessary stat(2) calls on mountpoints when checking if a file
+system is mounted.
+
+Add more modern support for Windows I/O.
+
+Fix various compiler and valgrind warnings.
+
+Synchronized changes from Android's AOSP e2fsprogs tree.
+
+Update Dutch, Malay, and Serbian translations.
diff --git a/doc/libext2fs.texinfo b/doc/libext2fs.texinfo
index 26cfb0ac2..ce2f9ecb7 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.46.2)
+@settitle The EXT2FS Library (version 1.46.3)
@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.46.2
-@subtitle February 2021
+@subtitle Version 1.46.3
+@subtitle July 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.2.
+This manual documents the EXT2FS Library, version 1.46.3.
@menu
* Introduction to the EXT2FS Library::
diff --git a/e2fsprogs.lsm b/e2fsprogs.lsm
index 9f9992163..1fb73859e 100644
--- a/e2fsprogs.lsm
+++ b/e2fsprogs.lsm
@@ -1,15 +1,15 @@
Begin3
Title: EXT2 Filesystem utilities
-Version: 1.46.2
-Entered-date: 2021-02-28
+Version: 1.46.3
+Entered-date: 2021-07-27
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
- 9276kB e2fsprogs-1.46.2.tar.gz
- 1kB e2fsprogs-1.46.2.lsm
+ 9288kB e2fsprogs-1.46.3.tar.gz
+ 1kB e2fsprogs-1.46.3.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
diff --git a/e2fsprogs.spec b/e2fsprogs.spec
index 9c6ebcabd..f32b9b2e7 100644
--- a/e2fsprogs.spec
+++ b/e2fsprogs.spec
@@ -5,7 +5,7 @@
Summary: Utilities for managing ext2/ext3/ext4 filesystems
Name: e2fsprogs
-Version: 1.46.1
+Version: 1.46.3
Release: 0
License: GPLv2
Group: System Environment/Base
diff --git a/misc/Makefile.in b/misc/Makefile.in
index 3b949d351..4db59cdf6 100644
--- a/misc/Makefile.in
+++ b/misc/Makefile.in
@@ -826,7 +826,8 @@ filefrag.o: $(srcdir)/filefrag.c $(top_builddir)/lib/config.h \
$(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
$(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
- $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/fiemap.h
+ $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/fiemap.h \
+ $(top_srcdir)/version.h
base_device.o: $(srcdir)/base_device.c $(top_builddir)/lib/config.h \
$(top_builddir)/lib/dirpaths.h $(srcdir)/fsck.h
ismounted.o: $(srcdir)/ismounted.c $(top_builddir)/lib/config.h \
diff --git a/po/e2fsprogs.pot b/po/e2fsprogs.pot
index 1ecd767d1..4166d2c52 100644
--- a/po/e2fsprogs.pot
+++ b/po/e2fsprogs.pot
@@ -77,9 +77,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: e2fsprogs 1.46.2\n"
+"Project-Id-Version: e2fsprogs 1.46.3\n"
"Report-Msgid-Bugs-To: tytso@alum.mit.edu\n"
-"POT-Creation-Date: 2021-02-28 09:37-0500\n"
+"POT-Creation-Date: 2021-07-27 12:40-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"
@@ -107,7 +107,7 @@ msgstr ""
#: 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
+#: misc/tune2fs.c:2886 misc/tune2fs.c:2986 resize/main.c:416
#, c-format
msgid "while trying to open %s"
msgstr ""
@@ -204,36 +204,36 @@ msgstr ""
msgid "BLKFLSBUF ioctl not supported! Can't flush buffers.\n"
msgstr ""
-#: e2fsck/journal.c:1263
+#: e2fsck/journal.c:1270
msgid "reading journal superblock\n"
msgstr ""
-#: e2fsck/journal.c:1336
+#: e2fsck/journal.c:1343
#, c-format
msgid "%s: no valid journal superblock found\n"
msgstr ""
-#: e2fsck/journal.c:1345
+#: e2fsck/journal.c:1352
#, c-format
msgid "%s: journal too short\n"
msgstr ""
-#: e2fsck/journal.c:1358
+#: e2fsck/journal.c:1365
#, c-format
msgid "%s: incorrect fast commit blocks\n"
msgstr ""
-#: e2fsck/journal.c:1660 misc/fuse2fs.c:3797
+#: e2fsck/journal.c:1667 misc/fuse2fs.c:3797
#, c-format
msgid "%s: recovering journal\n"
msgstr ""
-#: e2fsck/journal.c:1662
+#: e2fsck/journal.c:1669
#, c-format
msgid "%s: won't do journal recovery while read-only\n"
msgstr ""
-#: e2fsck/journal.c:1689
+#: e2fsck/journal.c:1696
#, c-format
msgid "while trying to re-open %s"
msgstr ""
@@ -471,25 +471,25 @@ msgstr ""
msgid "unknown quota type"
msgstr ""
-#: e2fsck/pass1b.c:222
+#: e2fsck/pass1b.c:223
msgid "multiply claimed inode map"
msgstr ""
-#: e2fsck/pass1b.c:672 e2fsck/pass1b.c:830
+#: e2fsck/pass1b.c:673 e2fsck/pass1b.c:831
#, c-format
msgid "internal error: can't find dup_blk for %llu\n"
msgstr ""
-#: e2fsck/pass1b.c:957
+#: e2fsck/pass1b.c:958
msgid "returned from clone_file_block"
msgstr ""
-#: e2fsck/pass1b.c:981
+#: e2fsck/pass1b.c:982
#, c-format
msgid "internal error: couldn't lookup EA block record for %llu"
msgstr ""
-#: e2fsck/pass1b.c:994
+#: e2fsck/pass1b.c:995
#, c-format
msgid "internal error: couldn't lookup EA inode record for %u"
msgstr ""
@@ -499,7 +499,7 @@ msgstr ""
msgid "while hashing entry with e_value_inum = %u"
msgstr ""
-#: e2fsck/pass1.c:767 e2fsck/pass2.c:1133
+#: e2fsck/pass1.c:767 e2fsck/pass2.c:1147
msgid "reading directory block"
msgstr ""
@@ -535,49 +535,49 @@ msgstr ""
msgid "opening inode scan"
msgstr ""
-#: e2fsck/pass1.c:2103
+#: e2fsck/pass1.c:2101
msgid "Pass 1"
msgstr ""
-#: e2fsck/pass1.c:2164
+#: e2fsck/pass1.c:2162
#, c-format
msgid "reading indirect blocks of inode %u"
msgstr ""
-#: e2fsck/pass1.c:2215
+#: e2fsck/pass1.c:2213
msgid "bad inode map"
msgstr ""
-#: e2fsck/pass1.c:2255
+#: e2fsck/pass1.c:2253
msgid "inode in bad block map"
msgstr ""
-#: e2fsck/pass1.c:2275
+#: e2fsck/pass1.c:2273
msgid "imagic inode map"
msgstr ""
-#: e2fsck/pass1.c:2306
+#: e2fsck/pass1.c:2304
msgid "multiply claimed block map"
msgstr ""
-#: e2fsck/pass1.c:2431
+#: e2fsck/pass1.c:2429
msgid "ext attr block map"
msgstr ""
-#: e2fsck/pass1.c:3726
+#: e2fsck/pass1.c:3724
#, c-format
msgid "%6lu(%c): expecting %6lu got phys %6lu (blkcnt %lld)\n"
msgstr ""
-#: e2fsck/pass1.c:4147
+#: e2fsck/pass1.c:4145
msgid "block bitmap"
msgstr ""
-#: e2fsck/pass1.c:4153
+#: e2fsck/pass1.c:4151
msgid "inode bitmap"
msgstr ""
-#: e2fsck/pass1.c:4159
+#: e2fsck/pass1.c:4157
msgid "inode table"
msgstr ""
@@ -585,11 +585,11 @@ msgstr ""
msgid "Pass 2"
msgstr ""
-#: e2fsck/pass2.c:554
+#: e2fsck/pass2.c:568
msgid "NLS is broken."
msgstr ""
-#: e2fsck/pass2.c:1206 e2fsck/pass2.c:1390
+#: e2fsck/pass2.c:1220 e2fsck/pass2.c:1404
msgid "Can not continue."
msgstr ""
@@ -3144,7 +3144,7 @@ msgid_plural "%12u files\n"
msgstr[0] ""
msgstr[1] ""
-#: e2fsck/unix.c:240 misc/badblocks.c:1001 misc/tune2fs.c:3072 misc/util.c:129
+#: e2fsck/unix.c:240 misc/badblocks.c:1001 misc/tune2fs.c:3078 misc/util.c:129
#: resize/main.c:356
#, c-format
msgid "while determining whether %s is mounted."
@@ -3305,7 +3305,7 @@ msgid "The -t option is not supported on this version of e2fsck.\n"
msgstr ""
#: 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
+#: misc/tune2fs.c:1778 misc/tune2fs.c:2078 misc/tune2fs.c:2096
#, c-format
msgid "Unable to resolve '%s'"
msgstr ""
@@ -3382,8 +3382,8 @@ msgid "while reading MMP block"
msgstr ""
#: 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
+#: misc/mke2fs.c:2723 misc/mke2fs.c:2774 misc/tune2fs.c:2803
+#: misc/tune2fs.c:2848 resize/main.c:188 resize/main.c:233
#, c-format
msgid ""
"Overwriting existing filesystem; this can be undone using the command:\n"
@@ -3391,13 +3391,13 @@ msgid ""
"\n"
msgstr ""
-#: e2fsck/unix.c:1355 misc/e2undo.c:274 misc/mke2fs.c:2764 misc/tune2fs.c:2831
+#: e2fsck/unix.c:1355 misc/e2undo.c:274 misc/mke2fs.c:2763 misc/tune2fs.c:2837
#: resize/main.c:222
#, c-format
msgid "while trying to delete %s"
msgstr ""
-#: e2fsck/unix.c:1381 misc/mke2fs.c:2790 resize/main.c:243
+#: e2fsck/unix.c:1381 misc/mke2fs.c:2789 resize/main.c:243
msgid "while trying to setup undo file\n"
msgstr ""
@@ -4013,8 +4013,8 @@ msgstr ""
msgid "while reading inode %u"
msgstr ""
-#: misc/create_inode.c:90 misc/create_inode.c:297 misc/create_inode.c:362
-#: misc/create_inode.c:400
+#: misc/create_inode.c:90 misc/create_inode.c:296 misc/create_inode.c:361
+#: misc/create_inode.c:399
msgid "while expanding directory"
msgstr ""
@@ -4023,7 +4023,7 @@ msgstr ""
msgid "while linking \"%s\""
msgstr ""
-#: misc/create_inode.c:105 misc/create_inode.c:134 misc/create_inode.c:331
+#: misc/create_inode.c:105 misc/create_inode.c:134 misc/create_inode.c:330
#, c-format
msgid "while writing inode %u"
msgstr ""
@@ -4043,7 +4043,7 @@ msgstr ""
msgid "while reading xattrs for inode %u"
msgstr ""
-#: misc/create_inode.c:178 misc/create_inode.c:205 misc/create_inode.c:1065
+#: misc/create_inode.c:178 misc/create_inode.c:205 misc/create_inode.c:1066
#: misc/e2undo.c:186 misc/e2undo.c:483 misc/e2undo.c:489 misc/e2undo.c:495
#: misc/mke2fs.c:361
msgid "while allocating memory"
@@ -4064,108 +4064,108 @@ msgstr ""
msgid "while closing inode %u"
msgstr ""
-#: misc/create_inode.c:284
+#: misc/create_inode.c:283
#, c-format
msgid "while allocating inode \"%s\""
msgstr ""
-#: misc/create_inode.c:303
+#: misc/create_inode.c:302
#, c-format
msgid "while creating inode \"%s\""
msgstr ""
-#: misc/create_inode.c:369
+#: misc/create_inode.c:368
#, c-format
msgid "while creating symlink \"%s\""
msgstr ""
-#: misc/create_inode.c:387 misc/create_inode.c:651 misc/create_inode.c:985
+#: misc/create_inode.c:386 misc/create_inode.c:650 misc/create_inode.c:986
#, c-format
msgid "while looking up \"%s\""
msgstr ""
-#: misc/create_inode.c:407
+#: misc/create_inode.c:406
#, c-format
msgid "while creating directory \"%s\""
msgstr ""
-#: misc/create_inode.c:637
+#: misc/create_inode.c:636
#, c-format
msgid "while opening \"%s\" to copy"
msgstr ""
-#: misc/create_inode.c:827
+#: misc/create_inode.c:828
#, c-format
msgid "while changing working directory to \"%s\""
msgstr ""
-#: misc/create_inode.c:837
+#: misc/create_inode.c:838
#, c-format
msgid "while scanning directory \"%s\""
msgstr ""
-#: misc/create_inode.c:847
+#: misc/create_inode.c:848
#, c-format
msgid "while lstat \"%s\""
msgstr ""
-#: misc/create_inode.c:897
+#: misc/create_inode.c:898
#, c-format
msgid "while creating special file \"%s\""
msgstr ""
-#: misc/create_inode.c:906
+#: misc/create_inode.c:907
msgid "malloc failed"
msgstr ""
-#: misc/create_inode.c:914
+#: misc/create_inode.c:915
#, c-format
msgid "while trying to read link \"%s\""
msgstr ""
-#: misc/create_inode.c:921
+#: misc/create_inode.c:922
msgid "symlink increased in size between lstat() and readlink()"
msgstr ""
-#: misc/create_inode.c:932
+#: misc/create_inode.c:933
#, c-format
msgid "while writing symlink\"%s\""
msgstr ""
-#: misc/create_inode.c:943
+#: misc/create_inode.c:944
#, c-format
msgid "while writing file \"%s\""
msgstr ""
-#: misc/create_inode.c:956
+#: misc/create_inode.c:957
#, c-format
msgid "while making dir \"%s\""
msgstr ""
-#: misc/create_inode.c:974
+#: misc/create_inode.c:975
msgid "while changing directory"
msgstr ""
-#: misc/create_inode.c:980
+#: misc/create_inode.c:981
#, c-format
msgid "ignoring entry \"%s\""
msgstr ""
-#: misc/create_inode.c:993
+#: misc/create_inode.c:994
#, c-format
msgid "while setting inode for \"%s\""
msgstr ""
-#: misc/create_inode.c:1000
+#: misc/create_inode.c:1001
#, c-format
msgid "while setting xattrs for \"%s\""
msgstr ""
-#: misc/create_inode.c:1026
+#: misc/create_inode.c:1027
msgid "while saving inode data"
msgstr ""
-#: misc/create_inode.c:1076
+#: misc/create_inode.c:1077
msgid "while copying xattrs on root directory"
msgstr ""
@@ -4316,7 +4316,7 @@ msgstr ""
msgid "reading MMP block %llu from '%s'\n"
msgstr ""
-#: misc/dumpe2fs.c:519 misc/mke2fs.c:809 misc/tune2fs.c:2112
+#: misc/dumpe2fs.c:519 misc/mke2fs.c:811 misc/tune2fs.c:2118
msgid "Couldn't allocate memory to parse options!\n"
msgstr ""
@@ -4344,12 +4344,12 @@ msgid ""
"\tblocksize=<blocksize>\n"
msgstr ""
-#: misc/dumpe2fs.c:661 misc/mke2fs.c:1907
+#: misc/dumpe2fs.c:661 misc/mke2fs.c:1911
#, c-format
msgid "\tUsing %s\n"
msgstr ""
-#: misc/dumpe2fs.c:708 misc/e2image.c:1637 misc/tune2fs.c:2998
+#: misc/dumpe2fs.c:708 misc/e2image.c:1637 misc/tune2fs.c:3004
#: resize/main.c:418
msgid "Couldn't find valid filesystem superblock.\n"
msgstr ""
@@ -4648,7 +4648,7 @@ msgstr ""
msgid "e2label: not an ext2 filesystem\n"
msgstr ""
-#: misc/e2label.c:97 misc/tune2fs.c:3207
+#: misc/e2label.c:97 misc/tune2fs.c:3213
#, c-format
msgid "Warning: label too long, truncating.\n"
msgstr ""
@@ -4663,7 +4663,7 @@ msgstr ""
msgid "e2label: error writing superblock\n"
msgstr ""
-#: misc/e2label.c:117 misc/tune2fs.c:1764
+#: misc/e2label.c:117 misc/tune2fs.c:1770
#, c-format
msgid "Usage: e2label device [newlabel]\n"
msgstr ""
@@ -4983,7 +4983,7 @@ msgstr ""
msgid "%s: %s.\n"
msgstr ""
-#: misc/fuse2fs.c:3783 misc/fuse2fs.c:3802 misc/tune2fs.c:3098
+#: misc/fuse2fs.c:3783 misc/fuse2fs.c:3802 misc/tune2fs.c:3104
#, c-format
msgid "Please run e2fsck -fy %s.\n"
msgstr ""
@@ -5092,7 +5092,7 @@ msgid ""
"\n"
msgstr ""
-#: misc/mke2fs.c:345 misc/mke2fs.c:3285
+#: misc/mke2fs.c:345 misc/mke2fs.c:3283
msgid "while marking bad blocks as used"
msgstr ""
@@ -5111,7 +5111,7 @@ msgid ""
"Could not write %d blocks in inode table starting at %llu: %s\n"
msgstr ""
-#: misc/mke2fs.c:459 misc/mke2fs.c:2837 misc/mke2fs.c:3245
+#: misc/mke2fs.c:459 misc/mke2fs.c:2835 misc/mke2fs.c:3243
msgid "done \n"
msgstr ""
@@ -5153,202 +5153,202 @@ msgstr ""
msgid "Warning: could not read block 0: %s\n"
msgstr ""
-#: misc/mke2fs.c:599
+#: misc/mke2fs.c:601
#, c-format
msgid "Warning: could not erase sector %d: %s\n"
msgstr ""
-#: misc/mke2fs.c:615
+#: misc/mke2fs.c:617
msgid "while splitting the journal size"
msgstr ""
-#: misc/mke2fs.c:622
+#: misc/mke2fs.c:624
msgid "while initializing journal superblock"
msgstr ""
-#: misc/mke2fs.c:630
+#: misc/mke2fs.c:632
msgid "Zeroing journal device: "
msgstr ""
-#: misc/mke2fs.c:642
+#: misc/mke2fs.c:644
#, c-format
msgid "while zeroing journal device (block %llu, count %d)"
msgstr ""
-#: misc/mke2fs.c:660
+#: misc/mke2fs.c:662
msgid "while writing journal superblock"
msgstr ""
-#: misc/mke2fs.c:674
+#: misc/mke2fs.c:676
#, c-format
msgid "Creating filesystem with %llu %dk blocks and %u inodes\n"
msgstr ""
-#: misc/mke2fs.c:682
+#: misc/mke2fs.c:684
#, c-format
msgid ""
"warning: %llu blocks unused.\n"
"\n"
msgstr ""
-#: misc/mke2fs.c:686
+#: misc/mke2fs.c:688
#, c-format
msgid "Filesystem label=%.*s\n"
msgstr ""
-#: misc/mke2fs.c:690
+#: misc/mke2fs.c:692
#, c-format
msgid "OS type: %s\n"
msgstr ""
-#: misc/mke2fs.c:692
+#: misc/mke2fs.c:694
#, c-format
msgid "Block size=%u (log=%u)\n"
msgstr ""
-#: misc/mke2fs.c:695
+#: misc/mke2fs.c:697
#, c-format
msgid "Cluster size=%u (log=%u)\n"
msgstr ""
-#: misc/mke2fs.c:699
+#: misc/mke2fs.c:701
#, c-format
msgid "Fragment size=%u (log=%u)\n"
msgstr ""
-#: misc/mke2fs.c:701
+#: misc/mke2fs.c:703
#, c-format
msgid "Stride=%u blocks, Stripe width=%u blocks\n"
msgstr ""
-#: misc/mke2fs.c:703
+#: misc/mke2fs.c:705
#, c-format
msgid "%u inodes, %llu blocks\n"
msgstr ""
-#: misc/mke2fs.c:705
+#: misc/mke2fs.c:707
#, c-format
msgid "%llu blocks (%2.2f%%) reserved for the super user\n"
msgstr ""
-#: misc/mke2fs.c:708
+#: misc/mke2fs.c:710
#, c-format
msgid "First data block=%u\n"
msgstr ""
-#: misc/mke2fs.c:710
+#: misc/mke2fs.c:712
#, c-format
msgid "Root directory owner=%u:%u\n"
msgstr ""
-#: misc/mke2fs.c:712
+#: misc/mke2fs.c:714
#, c-format
msgid "Maximum filesystem blocks=%lu\n"
msgstr ""
-#: misc/mke2fs.c:716
+#: misc/mke2fs.c:718
#, c-format
msgid "%u block groups\n"
msgstr ""
-#: misc/mke2fs.c:718
+#: misc/mke2fs.c:720
#, c-format
msgid "%u block group\n"
msgstr ""
-#: misc/mke2fs.c:720
+#: misc/mke2fs.c:722
#, c-format
msgid "%u blocks per group, %u clusters per group\n"
msgstr ""
-#: misc/mke2fs.c:723
+#: misc/mke2fs.c:725
#, c-format
msgid "%u blocks per group, %u fragments per group\n"
msgstr ""
-#: misc/mke2fs.c:725
+#: misc/mke2fs.c:727
#, c-format
msgid "%u inodes per group\n"
msgstr ""
-#: misc/mke2fs.c:734
+#: misc/mke2fs.c:736
#, c-format
msgid "Filesystem UUID: %s\n"
msgstr ""
-#: misc/mke2fs.c:735
+#: misc/mke2fs.c:737
msgid "Superblock backups stored on blocks: "
msgstr ""
-#: misc/mke2fs.c:831
+#: misc/mke2fs.c:833
#, c-format
msgid "%s requires '-O 64bit'\n"
msgstr ""
-#: misc/mke2fs.c:837
+#: misc/mke2fs.c:839
#, c-format
msgid "'%s' must be before 'resize=%u'\n"
msgstr ""
-#: misc/mke2fs.c:850
+#: misc/mke2fs.c:852
#, c-format
msgid "Invalid desc_size: '%s'\n"
msgstr ""
-#: misc/mke2fs.c:864
+#: misc/mke2fs.c:866
#, c-format
msgid "Invalid hash seed: %s\n"
msgstr ""
-#: misc/mke2fs.c:876
+#: misc/mke2fs.c:878
#, c-format
msgid "Invalid offset: %s\n"
msgstr ""
-#: misc/mke2fs.c:890 misc/tune2fs.c:2140
+#: misc/mke2fs.c:892 misc/tune2fs.c:2146
#, c-format
msgid "Invalid mmp_update_interval: %s\n"
msgstr ""
-#: misc/mke2fs.c:907
+#: misc/mke2fs.c:909
#, c-format
msgid "Invalid # of backup superblocks: %s\n"
msgstr ""
-#: misc/mke2fs.c:929
+#: misc/mke2fs.c:931
#, c-format
msgid "Invalid stride parameter: %s\n"
msgstr ""
-#: misc/mke2fs.c:944
+#: misc/mke2fs.c:946
#, c-format
msgid "Invalid stripe-width parameter: %s\n"
msgstr ""
-#: misc/mke2fs.c:967
+#: misc/mke2fs.c:969
#, c-format
msgid "Invalid resize parameter: %s\n"
msgstr ""
-#: misc/mke2fs.c:974
+#: misc/mke2fs.c:976
msgid "The resize maximum must be greater than the filesystem size.\n"
msgstr ""
-#: misc/mke2fs.c:998
+#: misc/mke2fs.c:1000
msgid "On-line resizing not supported with revision 0 filesystems\n"
msgstr ""
-#: misc/mke2fs.c:1024 misc/mke2fs.c:1033
+#: misc/mke2fs.c:1026 misc/mke2fs.c:1035
#, c-format
msgid "Invalid root_owner: '%s'\n"
msgstr ""
-#: misc/mke2fs.c:1078
+#: misc/mke2fs.c:1080
#, c-format
msgid "Invalid encoding: %s"
msgstr ""
-#: misc/mke2fs.c:1096
+#: misc/mke2fs.c:1098
#, c-format
msgid ""
"\n"
@@ -5377,7 +5377,7 @@ msgid ""
"\n"
msgstr ""
-#: misc/mke2fs.c:1123
+#: misc/mke2fs.c:1125
#, c-format
msgid ""
"\n"
@@ -5385,52 +5385,52 @@ msgid ""
"\n"
msgstr ""
-#: misc/mke2fs.c:1134 misc/tune2fs.c:2276
+#: misc/mke2fs.c:1136 misc/tune2fs.c:2282
#, c-format
msgid "error: Invalid encoding flag: %s\n"
msgstr ""
-#: misc/mke2fs.c:1140 misc/tune2fs.c:2285
+#: misc/mke2fs.c:1142 misc/tune2fs.c:2291
#, c-format
msgid ""
"error: An encoding must be explicitly specified when passing encoding-flags\n"
msgstr ""
-#: misc/mke2fs.c:1190
+#: misc/mke2fs.c:1192
#, c-format
msgid ""
"Syntax error in mke2fs config file (%s, line #%d)\n"
"\t%s\n"
msgstr ""
-#: misc/mke2fs.c:1203 misc/tune2fs.c:1105
+#: misc/mke2fs.c:1205 misc/tune2fs.c:1107
#, c-format
msgid "Invalid filesystem option set: %s\n"
msgstr ""
-#: misc/mke2fs.c:1215 misc/tune2fs.c:422
+#: misc/mke2fs.c:1217 misc/tune2fs.c:424
#, c-format
msgid "Invalid mount option set: %s\n"
msgstr ""
-#: misc/mke2fs.c:1351
+#: misc/mke2fs.c:1353
#, c-format
msgid ""
"\n"
"Your mke2fs.conf file does not define the %s filesystem type.\n"
msgstr ""
-#: misc/mke2fs.c:1355
+#: misc/mke2fs.c:1357
msgid ""
"You probably need to install an updated mke2fs.conf file.\n"
"\n"
msgstr ""
-#: misc/mke2fs.c:1359
+#: misc/mke2fs.c:1361
msgid "Aborting...\n"
msgstr ""
-#: misc/mke2fs.c:1400
+#: misc/mke2fs.c:1402
#, c-format
msgid ""
"\n"
@@ -5438,154 +5438,154 @@ msgid ""
"\n"
msgstr ""
-#: misc/mke2fs.c:1587
+#: misc/mke2fs.c:1591
msgid "Couldn't allocate memory for new PATH.\n"
msgstr ""
-#: misc/mke2fs.c:1624
+#: misc/mke2fs.c:1628
#, c-format
msgid "Couldn't init profile successfully (error: %ld).\n"
msgstr ""
-#: misc/mke2fs.c:1657
+#: misc/mke2fs.c:1661
#, c-format
msgid "invalid block size - %s"
msgstr ""
-#: misc/mke2fs.c:1661
+#: misc/mke2fs.c:1665
#, c-format
msgid "Warning: blocksize %d not usable on most systems.\n"
msgstr ""
-#: misc/mke2fs.c:1677
+#: misc/mke2fs.c:1681
#, c-format
msgid "invalid cluster size - %s"
msgstr ""
-#: misc/mke2fs.c:1690
+#: misc/mke2fs.c:1694
msgid "'-R' is deprecated, use '-E' instead"
msgstr ""
-#: misc/mke2fs.c:1704 misc/tune2fs.c:1866
+#: misc/mke2fs.c:1708 misc/tune2fs.c:1872
#, c-format
msgid "bad error behavior - %s"
msgstr ""
-#: misc/mke2fs.c:1716
+#: misc/mke2fs.c:1720
msgid "Illegal number for blocks per group"
msgstr ""
-#: misc/mke2fs.c:1721
+#: misc/mke2fs.c:1725
msgid "blocks per group must be multiple of 8"
msgstr ""
-#: misc/mke2fs.c:1729
+#: misc/mke2fs.c:1733
msgid "Illegal number for flex_bg size"
msgstr ""
-#: misc/mke2fs.c:1735
+#: misc/mke2fs.c:1739
msgid "flex_bg size must be a power of 2"
msgstr ""
-#: misc/mke2fs.c:1740
+#: misc/mke2fs.c:1744
#, c-format
msgid "flex_bg size (%lu) must be less than or equal to 2^31"
msgstr ""
-#: misc/mke2fs.c:1750
+#: misc/mke2fs.c:1754
#, c-format
msgid "invalid inode ratio %s (min %d/max %d)"
msgstr ""
-#: misc/mke2fs.c:1760
+#: misc/mke2fs.c:1764
#, c-format
msgid "invalid inode size - %s"
msgstr ""
-#: misc/mke2fs.c:1775
+#: misc/mke2fs.c:1779
msgid ""
"Warning: -K option is deprecated and should not be used anymore. Use '-E "
"nodiscard' extended option instead!\n"
msgstr ""
-#: misc/mke2fs.c:1786
+#: misc/mke2fs.c:1790
msgid "in malloc for bad_blocks_filename"
msgstr ""
-#: misc/mke2fs.c:1795
+#: misc/mke2fs.c:1799
#, c-format
msgid ""
"Warning: label too long; will be truncated to '%s'\n"
"\n"
msgstr ""
-#: misc/mke2fs.c:1804
+#: misc/mke2fs.c:1808
#, c-format
msgid "invalid reserved blocks percent - %s"
msgstr ""
-#: misc/mke2fs.c:1819
+#: misc/mke2fs.c:1823
#, c-format
msgid "bad num inodes - %s"
msgstr ""
-#: misc/mke2fs.c:1832
+#: misc/mke2fs.c:1836
msgid "while allocating fs_feature string"
msgstr ""
-#: misc/mke2fs.c:1849
+#: misc/mke2fs.c:1853
#, c-format
msgid "bad revision level - %s"
msgstr ""
-#: misc/mke2fs.c:1854
+#: misc/mke2fs.c:1858
#, c-format
msgid "while trying to create revision %d"
msgstr ""
-#: misc/mke2fs.c:1868
+#: misc/mke2fs.c:1872
msgid "The -t option may only be used once"
msgstr ""
-#: misc/mke2fs.c:1876
+#: misc/mke2fs.c:1880
msgid "The -T option may only be used once"
msgstr ""
-#: misc/mke2fs.c:1932 misc/mke2fs.c:3368
+#: misc/mke2fs.c:1936 misc/mke2fs.c:3366
#, c-format
msgid "while trying to open journal device %s\n"
msgstr ""
-#: misc/mke2fs.c:1938
+#: misc/mke2fs.c:1942
#, c-format
msgid "Journal dev blocksize (%d) smaller than minimum blocksize %d\n"
msgstr ""
-#: misc/mke2fs.c:1944
+#: misc/mke2fs.c:1948
#, c-format
msgid "Using journal device's blocksize: %d\n"
msgstr ""
-#: misc/mke2fs.c:1955
+#: misc/mke2fs.c:1959
#, c-format
msgid "invalid blocks '%s' on device '%s'"
msgstr ""
-#: misc/mke2fs.c:1985
+#: misc/mke2fs.c:1979
msgid "filesystem"
msgstr ""
-#: misc/mke2fs.c:2003 resize/main.c:499
+#: misc/mke2fs.c:1991 resize/main.c:506
msgid "while trying to determine filesystem size"
msgstr ""
-#: misc/mke2fs.c:2009
+#: misc/mke2fs.c:1997
msgid ""
"Couldn't determine device size; you must specify\n"
"the size of the filesystem\n"
msgstr ""
-#: misc/mke2fs.c:2016
+#: misc/mke2fs.c:2004
msgid ""
"Device size reported to be zero. Invalid partition specified, or\n"
"\tpartition table wasn't reread after running fdisk, due to\n"
@@ -5593,149 +5593,149 @@ msgid ""
"\tto re-read your partition table.\n"
msgstr ""
-#: misc/mke2fs.c:2033
+#: misc/mke2fs.c:2021
msgid "Filesystem larger than apparent device size."
msgstr ""
-#: misc/mke2fs.c:2053
+#: misc/mke2fs.c:2041
msgid "Failed to parse fs types list\n"
msgstr ""
-#: misc/mke2fs.c:2103
+#: misc/mke2fs.c:2091
msgid "The HURD does not support the filetype feature.\n"
msgstr ""
-#: misc/mke2fs.c:2108
+#: misc/mke2fs.c:2096
msgid "The HURD does not support the huge_file feature.\n"
msgstr ""
-#: misc/mke2fs.c:2113
+#: misc/mke2fs.c:2101
msgid "The HURD does not support the metadata_csum feature.\n"
msgstr ""
-#: misc/mke2fs.c:2118
+#: misc/mke2fs.c:2106
msgid "The HURD does not support the ea_inode feature.\n"
msgstr ""
-#: misc/mke2fs.c:2128
+#: misc/mke2fs.c:2116
msgid "while trying to determine hardware sector size"
msgstr ""
-#: misc/mke2fs.c:2134
+#: misc/mke2fs.c:2122
msgid "while trying to determine physical sector size"
msgstr ""
-#: misc/mke2fs.c:2166
+#: misc/mke2fs.c:2154
msgid "while setting blocksize; too small for device\n"
msgstr ""
-#: misc/mke2fs.c:2171
+#: misc/mke2fs.c:2159
#, c-format
msgid ""
"Warning: specified blocksize %d is less than device physical sectorsize %d\n"
msgstr ""
-#: misc/mke2fs.c:2195
+#: misc/mke2fs.c:2183
#, 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:2209
+#: misc/mke2fs.c:2197
#, 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:2231
+#: misc/mke2fs.c:2219
msgid "fs_types for mke2fs.conf resolution: "
msgstr ""
-#: misc/mke2fs.c:2238
+#: misc/mke2fs.c:2226
msgid "Filesystem features not supported with revision 0 filesystems\n"
msgstr ""
-#: misc/mke2fs.c:2246
+#: misc/mke2fs.c:2234
msgid "Sparse superblocks not supported with revision 0 filesystems\n"
msgstr ""
-#: misc/mke2fs.c:2256
+#: misc/mke2fs.c:2244
msgid "Journals not supported with revision 0 filesystems\n"
msgstr ""
-#: misc/mke2fs.c:2269
+#: misc/mke2fs.c:2257
#, c-format
msgid "invalid reserved blocks percent - %lf"
msgstr ""
-#: misc/mke2fs.c:2286
+#: misc/mke2fs.c:2274
msgid ""
"Extents MUST be enabled for a 64-bit filesystem. Pass -O extents to "
"rectify.\n"
msgstr ""
-#: misc/mke2fs.c:2306
+#: misc/mke2fs.c:2294
msgid "The cluster size may not be smaller than the block size.\n"
msgstr ""
-#: misc/mke2fs.c:2312
+#: misc/mke2fs.c:2300
msgid "specifying a cluster size requires the bigalloc feature"
msgstr ""
-#: misc/mke2fs.c:2332
+#: misc/mke2fs.c:2320
#, c-format
msgid "warning: Unable to get device geometry for %s\n"
msgstr ""
-#: misc/mke2fs.c:2344
+#: misc/mke2fs.c:2332
#, c-format
msgid "%s alignment is offset by %lu bytes.\n"
msgstr ""
-#: misc/mke2fs.c:2346
+#: misc/mke2fs.c:2334
#, c-format
msgid ""
"This may result in very poor performance, (re)-partitioning suggested.\n"
msgstr ""
-#: misc/mke2fs.c:2352
+#: misc/mke2fs.c:2340
#, 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:2376
+#: misc/mke2fs.c:2364
#, c-format
msgid "%d-byte blocks too big for system (max %d)"
msgstr ""
-#: misc/mke2fs.c:2380
+#: misc/mke2fs.c:2368
#, c-format
msgid ""
"Warning: %d-byte blocks too big for system (max %d), forced to continue\n"
msgstr ""
-#: misc/mke2fs.c:2388
+#: misc/mke2fs.c:2376
#, c-format
msgid ""
"Suggestion: Use Linux kernel >= 3.18 for improved stability of the metadata "
"and journal checksum features.\n"
msgstr ""
-#: misc/mke2fs.c:2434
+#: misc/mke2fs.c:2422
#, c-format
msgid "Unknown filename encoding from profile: %s"
msgstr ""
-#: misc/mke2fs.c:2445
+#: misc/mke2fs.c:2433
#, c-format
msgid "Unknown encoding flags from profile: %s"
msgstr ""
-#: misc/mke2fs.c:2470
+#: misc/mke2fs.c:2458
#, c-format
msgid ""
"\n"
@@ -5745,22 +5745,22 @@ msgid ""
"\n"
msgstr ""
-#: misc/mke2fs.c:2485
+#: misc/mke2fs.c:2473
#, c-format
msgid "%d byte inodes are too small for project quota"
msgstr ""
-#: misc/mke2fs.c:2507
+#: misc/mke2fs.c:2495
msgid "Can't support bigalloc feature without extents feature"
msgstr ""
-#: misc/mke2fs.c:2514
+#: misc/mke2fs.c:2502
msgid ""
"The resize_inode and meta_bg features are not compatible.\n"
"They can not be both enabled simultaneously.\n"
msgstr ""
-#: misc/mke2fs.c:2522
+#: misc/mke2fs.c:2510
msgid ""
"\n"
"Warning: the bigalloc feature is still under development\n"
@@ -5768,39 +5768,39 @@ msgid ""
"\n"
msgstr ""
-#: misc/mke2fs.c:2534
+#: misc/mke2fs.c:2522
msgid "reserved online resize blocks not supported on non-sparse filesystem"
msgstr ""
-#: misc/mke2fs.c:2543
+#: misc/mke2fs.c:2531
msgid "blocks per group count out of range"
msgstr ""
-#: misc/mke2fs.c:2565
+#: misc/mke2fs.c:2553
msgid "Flex_bg feature not enabled, so flex_bg size may not be specified"
msgstr ""
-#: misc/mke2fs.c:2577
+#: misc/mke2fs.c:2565
#, c-format
msgid "invalid inode size %d (min %d/max %d)"
msgstr ""
-#: misc/mke2fs.c:2592
+#: misc/mke2fs.c:2580
#, c-format
msgid "%d byte inodes are too small for inline data; specify larger size"
msgstr ""
-#: misc/mke2fs.c:2607
+#: misc/mke2fs.c:2595
#, c-format
msgid "too many inodes (%llu), raise inode ratio?"
msgstr ""
-#: misc/mke2fs.c:2615
+#: misc/mke2fs.c:2603
#, c-format
msgid "too many inodes (%llu), specify < 2^32 inodes"
msgstr ""
-#: misc/mke2fs.c:2629
+#: misc/mke2fs.c:2617
#, c-format
msgid ""
"inode_size (%u) * inodes_count (%u) too big for a\n"
@@ -5808,161 +5808,161 @@ msgid ""
"\tor lower inode count (-N).\n"
msgstr ""
-#: misc/mke2fs.c:2816
+#: misc/mke2fs.c:2814
msgid "Discarding device blocks: "
msgstr ""
-#: misc/mke2fs.c:2832
+#: misc/mke2fs.c:2830
msgid "failed - "
msgstr ""
-#: misc/mke2fs.c:2891
+#: misc/mke2fs.c:2889
msgid "while initializing quota context"
msgstr ""
-#: misc/mke2fs.c:2898
+#: misc/mke2fs.c:2896
msgid "while writing quota inodes"
msgstr ""
-#: misc/mke2fs.c:2923
+#: misc/mke2fs.c:2921
#, c-format
msgid "bad error behavior in profile - %s"
msgstr ""
-#: misc/mke2fs.c:3002
+#: misc/mke2fs.c:3000
msgid "in malloc for android_sparse_params"
msgstr ""
-#: misc/mke2fs.c:3016
+#: misc/mke2fs.c:3014
msgid "while setting up superblock"
msgstr ""
-#: misc/mke2fs.c:3032
+#: misc/mke2fs.c:3030
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:3039
+#: misc/mke2fs.c:3037
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:3047
+#: misc/mke2fs.c:3045
msgid "The metadata_csum_seed feature requires the metadata_csum feature.\n"
msgstr ""
-#: misc/mke2fs.c:3071
+#: misc/mke2fs.c:3069
msgid "Discard succeeded and will return 0s - skipping inode table wipe\n"
msgstr ""
-#: misc/mke2fs.c:3170
+#: misc/mke2fs.c:3168
#, c-format
msgid "unknown os - %s"
msgstr ""
-#: misc/mke2fs.c:3233
+#: misc/mke2fs.c:3231
msgid "Allocating group tables: "
msgstr ""
-#: misc/mke2fs.c:3241
+#: misc/mke2fs.c:3239
msgid "while trying to allocate filesystem tables"
msgstr ""
-#: misc/mke2fs.c:3256
+#: misc/mke2fs.c:3254
msgid "while unmarking bad blocks"
msgstr ""
-#: misc/mke2fs.c:3267
+#: misc/mke2fs.c:3265
msgid ""
"\n"
"\twhile converting subcluster bitmap"
msgstr ""
-#: misc/mke2fs.c:3276
+#: misc/mke2fs.c:3274
msgid "while calculating overhead"
msgstr ""
-#: misc/mke2fs.c:3295
+#: misc/mke2fs.c:3293
#, c-format
msgid "%s may be further corrupted by superblock rewrite\n"
msgstr ""
-#: misc/mke2fs.c:3336
+#: misc/mke2fs.c:3334
#, c-format
msgid "while zeroing block %llu at end of filesystem"
msgstr ""
-#: misc/mke2fs.c:3349
+#: misc/mke2fs.c:3347
msgid "while reserving blocks for online resize"
msgstr ""
-#: misc/mke2fs.c:3361 misc/tune2fs.c:1567
+#: misc/mke2fs.c:3359 misc/tune2fs.c:1569
msgid "journal"
msgstr ""
-#: misc/mke2fs.c:3373
+#: misc/mke2fs.c:3371
#, c-format
msgid "Adding journal to device %s: "
msgstr ""
-#: misc/mke2fs.c:3380
+#: misc/mke2fs.c:3378
#, c-format
msgid ""
"\n"
"\twhile trying to add journal to device %s"
msgstr ""
-#: 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
+#: misc/mke2fs.c:3383 misc/mke2fs.c:3413 misc/mke2fs.c:3455
+#: misc/mk_hugefiles.c:602 misc/tune2fs.c:1598 misc/tune2fs.c:1620
msgid "done\n"
msgstr ""
-#: misc/mke2fs.c:3392
+#: misc/mke2fs.c:3390
msgid "Skipping journal creation in super-only mode\n"
msgstr ""
-#: misc/mke2fs.c:3402
+#: misc/mke2fs.c:3400
#, c-format
msgid "Creating journal (%u blocks): "
msgstr ""
-#: misc/mke2fs.c:3411
+#: misc/mke2fs.c:3409
msgid ""
"\n"
"\twhile trying to create journal"
msgstr ""
-#: misc/mke2fs.c:3423 misc/tune2fs.c:1170
+#: misc/mke2fs.c:3421 misc/tune2fs.c:1172
msgid ""
"\n"
"Error while enabling multiple mount protection feature."
msgstr ""
-#: misc/mke2fs.c:3428
+#: misc/mke2fs.c:3426
#, c-format
msgid "Multiple mount protection is enabled with update interval %d seconds.\n"
msgstr ""
-#: misc/mke2fs.c:3448
+#: misc/mke2fs.c:3446
msgid "Copying files into the device: "
msgstr ""
-#: misc/mke2fs.c:3454
+#: misc/mke2fs.c:3452
msgid "while populating file system"
msgstr ""
-#: misc/mke2fs.c:3461
+#: misc/mke2fs.c:3459
msgid "Writing superblocks and filesystem accounting information: "
msgstr ""
-#: misc/mke2fs.c:3468
+#: misc/mke2fs.c:3466
msgid "while writing out and closing file system"
msgstr ""
-#: misc/mke2fs.c:3471
+#: misc/mke2fs.c:3469
msgid ""
"done\n"
"\n"
@@ -6067,19 +6067,19 @@ msgstr ""
msgid "while trying to open external journal"
msgstr ""
-#: misc/tune2fs.c:292 misc/tune2fs.c:2888
+#: misc/tune2fs.c:292 misc/tune2fs.c:2894
#, c-format
msgid "%s is not a journal device.\n"
msgstr ""
-#: misc/tune2fs.c:301 misc/tune2fs.c:2897
+#: misc/tune2fs.c:301 misc/tune2fs.c:2903
#, c-format
msgid ""
"Journal superblock is corrupted, nr_users\n"
"is too high (%d).\n"
msgstr ""
-#: misc/tune2fs.c:308 misc/tune2fs.c:2904
+#: misc/tune2fs.c:308 misc/tune2fs.c:2910
msgid "Filesystem's UUID not found on journal device.\n"
msgstr ""
@@ -6101,262 +6101,262 @@ msgstr ""
msgid "while clearing journal inode"
msgstr ""
-#: misc/tune2fs.c:404
+#: misc/tune2fs.c:406
msgid "while writing journal inode"
msgstr ""
-#: misc/tune2fs.c:440 misc/tune2fs.c:465 misc/tune2fs.c:478
+#: misc/tune2fs.c:442 misc/tune2fs.c:467 misc/tune2fs.c:480
msgid "(and reboot afterwards!)\n"
msgstr ""
-#: misc/tune2fs.c:493
+#: misc/tune2fs.c:495
#, c-format
msgid "After running e2fsck, please run `resize2fs %s %s"
msgstr ""
-#: misc/tune2fs.c:496
+#: misc/tune2fs.c:498
#, c-format
msgid "Please run `resize2fs %s %s"
msgstr ""
-#: misc/tune2fs.c:500
+#: misc/tune2fs.c:502
#, c-format
msgid " -z \"%s\""
msgstr ""
-#: misc/tune2fs.c:502
+#: misc/tune2fs.c:504
#, c-format
msgid "' to enable 64-bit mode.\n"
msgstr ""
-#: misc/tune2fs.c:504
+#: misc/tune2fs.c:506
#, c-format
msgid "' to disable 64-bit mode.\n"
msgstr ""
-#: misc/tune2fs.c:1072
+#: misc/tune2fs.c:1074
msgid ""
"WARNING: Could not confirm kernel support for metadata_csum_seed.\n"
" This requires Linux >= v4.4.\n"
msgstr ""
-#: misc/tune2fs.c:1108
+#: misc/tune2fs.c:1110
#, c-format
msgid "Clearing filesystem feature '%s' not supported.\n"
msgstr ""
-#: misc/tune2fs.c:1114
+#: misc/tune2fs.c:1116
#, c-format
msgid "Setting filesystem feature '%s' not supported.\n"
msgstr ""
-#: misc/tune2fs.c:1123
+#: misc/tune2fs.c:1125
msgid ""
"The has_journal feature may only be cleared when the filesystem is\n"
"unmounted or mounted read-only.\n"
msgstr ""
-#: misc/tune2fs.c:1131
+#: misc/tune2fs.c:1133
msgid ""
"The needs_recovery flag is set. Please run e2fsck before clearing\n"
"the has_journal flag.\n"
msgstr ""
-#: misc/tune2fs.c:1149
+#: misc/tune2fs.c:1151
msgid ""
"Setting filesystem feature 'sparse_super' not supported\n"
"for filesystems with the meta_bg feature enabled.\n"
msgstr ""
-#: misc/tune2fs.c:1162
+#: misc/tune2fs.c:1164
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:1180
+#: misc/tune2fs.c:1182
#, c-format
msgid "Multiple mount protection has been enabled with update interval %ds.\n"
msgstr ""
-#: misc/tune2fs.c:1189
+#: misc/tune2fs.c:1191
msgid ""
"The multiple mount protection feature cannot\n"
"be disabled if the filesystem is readonly.\n"
msgstr ""
-#: misc/tune2fs.c:1197
+#: misc/tune2fs.c:1199
msgid "Error while reading bitmaps\n"
msgstr ""
-#: misc/tune2fs.c:1206
+#: misc/tune2fs.c:1208
#, c-format
msgid "Magic number in MMP block does not match. expected: %x, actual: %x\n"
msgstr ""
-#: misc/tune2fs.c:1211
+#: misc/tune2fs.c:1213
msgid "while reading MMP block."
msgstr ""
-#: misc/tune2fs.c:1244
+#: misc/tune2fs.c:1246
msgid ""
"Disabling directory index on filesystem with checksums could take some time."
msgstr ""
-#: misc/tune2fs.c:1248
+#: misc/tune2fs.c:1250
msgid "Cannot disable dir_index on a mounted filesystem!\n"
msgstr ""
-#: misc/tune2fs.c:1261
+#: misc/tune2fs.c:1263
msgid ""
"Clearing the flex_bg flag would cause the the filesystem to be\n"
"inconsistent.\n"
msgstr ""
-#: misc/tune2fs.c:1272
+#: misc/tune2fs.c:1274
msgid ""
"The huge_file feature may only be cleared when the filesystem is\n"
"unmounted or mounted read-only.\n"
msgstr ""
-#: misc/tune2fs.c:1283
+#: misc/tune2fs.c:1285
msgid "Enabling checksums could take some time."
msgstr ""
-#: misc/tune2fs.c:1286
+#: misc/tune2fs.c:1288
msgid "Cannot enable metadata_csum on a mounted filesystem!\n"
msgstr ""
-#: misc/tune2fs.c:1292
+#: misc/tune2fs.c:1294
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. Re-run with -O extent to rectify.\n"
msgstr ""
-#: misc/tune2fs.c:1299
+#: misc/tune2fs.c:1301
msgid ""
"64-bit filesystem support is not enabled. The larger fields afforded by "
"this feature enable full-strength checksumming. Run resize2fs -b to "
"rectify.\n"
msgstr ""
-#: misc/tune2fs.c:1325
+#: misc/tune2fs.c:1327
msgid "Disabling checksums could take some time."
msgstr ""
-#: misc/tune2fs.c:1328
+#: misc/tune2fs.c:1330
msgid "Cannot disable metadata_csum on a mounted filesystem!\n"
msgstr ""
-#: misc/tune2fs.c:1369
+#: misc/tune2fs.c:1371
msgid "Cannot enable uninit_bg on a mounted filesystem!\n"
msgstr ""
-#: misc/tune2fs.c:1384
+#: misc/tune2fs.c:1386
msgid "Cannot disable uninit_bg on a mounted filesystem!\n"
msgstr ""
-#: misc/tune2fs.c:1403
+#: misc/tune2fs.c:1405
#, c-format
msgid "Cannot enable 64-bit mode while mounted!\n"
msgstr ""
-#: misc/tune2fs.c:1413
+#: misc/tune2fs.c:1415
#, c-format
msgid "Cannot disable 64-bit mode while mounted!\n"
msgstr ""
-#: misc/tune2fs.c:1443
+#: misc/tune2fs.c:1445
#, c-format
msgid "Cannot enable project feature; inode size too small.\n"
msgstr ""
-#: misc/tune2fs.c:1464
+#: misc/tune2fs.c:1466
msgid ""
"\n"
"Warning: '^quota' option overrides '-Q'arguments.\n"
msgstr ""
-#: misc/tune2fs.c:1481 misc/tune2fs.c:2238
+#: misc/tune2fs.c:1483 misc/tune2fs.c:2244
msgid ""
"The casefold feature may only be enabled when the filesystem is unmounted.\n"
msgstr ""
-#: misc/tune2fs.c:1493
+#: misc/tune2fs.c:1495
msgid ""
"Setting feature 'metadata_csum_seed' is only supported\n"
"on filesystems with the metadata_csum feature enabled.\n"
msgstr ""
-#: misc/tune2fs.c:1511
+#: misc/tune2fs.c:1513
msgid ""
"UUID has changed since enabling metadata_csum. Filesystem must be "
"unmounted \n"
"to safely rewrite all metadata to match the new UUID.\n"
msgstr ""
-#: misc/tune2fs.c:1517
+#: misc/tune2fs.c:1519
msgid "Recalculating checksums could take some time."
msgstr ""
-#: misc/tune2fs.c:1560
+#: misc/tune2fs.c:1562
msgid "The filesystem already has a journal.\n"
msgstr ""
-#: misc/tune2fs.c:1580
+#: misc/tune2fs.c:1582
#, c-format
msgid ""
"\n"
"\twhile trying to open journal on %s\n"
msgstr ""
-#: misc/tune2fs.c:1584
+#: misc/tune2fs.c:1586
#, c-format
msgid "Creating journal on device %s: "
msgstr ""
-#: misc/tune2fs.c:1592
+#: misc/tune2fs.c:1594
#, c-format
msgid "while adding filesystem to journal on %s"
msgstr ""
-#: misc/tune2fs.c:1598
+#: misc/tune2fs.c:1600
msgid "Creating journal inode: "
msgstr ""
-#: misc/tune2fs.c:1612
+#: misc/tune2fs.c:1614
msgid ""
"\n"
"\twhile trying to create journal file"
msgstr ""
-#: misc/tune2fs.c:1650
+#: misc/tune2fs.c:1656
#, c-format
msgid "Cannot enable project quota; inode size too small.\n"
msgstr ""
-#: misc/tune2fs.c:1663
+#: misc/tune2fs.c:1669
msgid "while initializing quota context in support library"
msgstr ""
-#: misc/tune2fs.c:1678
+#: misc/tune2fs.c:1684
#, c-format
msgid "while updating quota limits (%d)"
msgstr ""
-#: misc/tune2fs.c:1688
+#: misc/tune2fs.c:1694
#, c-format
msgid "while writing quota file (%d)"
msgstr ""
-#: misc/tune2fs.c:1706
+#: misc/tune2fs.c:1712
#, c-format
msgid "while removing quota file (%d)"
msgstr ""
-#: misc/tune2fs.c:1749
+#: misc/tune2fs.c:1755
msgid ""
"\n"
"Bad quota options specified.\n"
@@ -6370,65 +6370,65 @@ msgid ""
"\n"
msgstr ""
-#: misc/tune2fs.c:1807
+#: misc/tune2fs.c:1813
#, c-format
msgid "Couldn't parse date/time specifier: %s"
msgstr ""
-#: misc/tune2fs.c:1839 misc/tune2fs.c:1850
+#: misc/tune2fs.c:1845 misc/tune2fs.c:1856
#, c-format
msgid "bad mounts count - %s"
msgstr ""
-#: misc/tune2fs.c:1893
+#: misc/tune2fs.c:1899
#, c-format
msgid "bad gid/group name - %s"
msgstr ""
-#: misc/tune2fs.c:1926
+#: misc/tune2fs.c:1932
#, c-format
msgid "bad interval - %s"
msgstr ""
-#: misc/tune2fs.c:1955
+#: misc/tune2fs.c:1961
#, c-format
msgid "bad reserved block ratio - %s"
msgstr ""
-#: misc/tune2fs.c:1970
+#: misc/tune2fs.c:1976
msgid "-o may only be specified once"
msgstr ""
-#: misc/tune2fs.c:1979
+#: misc/tune2fs.c:1985
msgid "-O may only be specified once"
msgstr ""
-#: misc/tune2fs.c:1996
+#: misc/tune2fs.c:2002
#, c-format
msgid "bad reserved blocks count - %s"
msgstr ""
-#: misc/tune2fs.c:2025
+#: misc/tune2fs.c:2031
#, c-format
msgid "bad uid/user name - %s"
msgstr ""
-#: misc/tune2fs.c:2042
+#: misc/tune2fs.c:2048
#, c-format
msgid "bad inode size - %s"
msgstr ""
-#: misc/tune2fs.c:2049
+#: misc/tune2fs.c:2055
#, c-format
msgid "Inode size must be a power of two- %s"
msgstr ""
-#: misc/tune2fs.c:2149
+#: misc/tune2fs.c:2155
#, c-format
msgid "mmp_update_interval too big: %lu\n"
msgstr ""
-#: misc/tune2fs.c:2154
+#: misc/tune2fs.c:2160
#, c-format
msgid "Setting multiple mount protection update interval to %lu second\n"
msgid_plural ""
@@ -6436,52 +6436,52 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: misc/tune2fs.c:2163
+#: misc/tune2fs.c:2169
#, c-format
msgid "Setting filesystem error flag to force fsck.\n"
msgstr ""
-#: misc/tune2fs.c:2181
+#: misc/tune2fs.c:2187
#, c-format
msgid "Invalid RAID stride: %s\n"
msgstr ""
-#: misc/tune2fs.c:2196
+#: misc/tune2fs.c:2202
#, c-format
msgid "Invalid RAID stripe-width: %s\n"
msgstr ""
-#: misc/tune2fs.c:2211
+#: misc/tune2fs.c:2217
#, c-format
msgid "Invalid hash algorithm: %s\n"
msgstr ""
-#: misc/tune2fs.c:2217
+#: misc/tune2fs.c:2223
#, c-format
msgid "Setting default hash algorithm to %s (%d)\n"
msgstr ""
-#: misc/tune2fs.c:2244
+#: misc/tune2fs.c:2250
#, c-format
msgid "Cannot alter existing encoding\n"
msgstr ""
-#: misc/tune2fs.c:2250
+#: misc/tune2fs.c:2256
#, c-format
msgid "Invalid encoding: %s\n"
msgstr ""
-#: misc/tune2fs.c:2256
+#: misc/tune2fs.c:2262
#, c-format
msgid "Setting encoding to '%s'\n"
msgstr ""
-#: misc/tune2fs.c:2280
+#: misc/tune2fs.c:2286
#, c-format
msgid "Setting encoding_flags to '%s'\n"
msgstr ""
-#: misc/tune2fs.c:2290
+#: misc/tune2fs.c:2296
msgid ""
"\n"
"Bad options specified.\n"
@@ -6503,72 +6503,72 @@ msgid ""
"\tencoding_flags=<flags>\n"
msgstr ""
-#: misc/tune2fs.c:2706
+#: misc/tune2fs.c:2712
msgid "Failed to read inode bitmap\n"
msgstr ""
-#: misc/tune2fs.c:2711
+#: misc/tune2fs.c:2717
msgid "Failed to read block bitmap\n"
msgstr ""
-#: misc/tune2fs.c:2728 resize/resize2fs.c:1279
+#: misc/tune2fs.c:2734 resize/resize2fs.c:1284
msgid "blocks to be moved"
msgstr ""
-#: misc/tune2fs.c:2731
+#: misc/tune2fs.c:2737
msgid "Failed to allocate block bitmap when increasing inode size\n"
msgstr ""
-#: misc/tune2fs.c:2737
+#: misc/tune2fs.c:2743
msgid "Not enough space to increase inode size \n"
msgstr ""
-#: misc/tune2fs.c:2742
+#: misc/tune2fs.c:2748
msgid "Failed to relocate blocks during inode resize \n"
msgstr ""
-#: misc/tune2fs.c:2774
+#: misc/tune2fs.c:2780
msgid ""
"Error in resizing the inode size.\n"
"Run e2undo to undo the file system changes. \n"
msgstr ""
-#: misc/tune2fs.c:2985
+#: misc/tune2fs.c:2991
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:2992
+#: misc/tune2fs.c:2998
#, c-format
msgid ""
"MMP block magic is bad. Try to fix it by running:\n"
"'e2fsck -f %s'\n"
msgstr ""
-#: misc/tune2fs.c:3004
+#: misc/tune2fs.c:3010
msgid "Cannot modify a journal device.\n"
msgstr ""
-#: misc/tune2fs.c:3017
+#: misc/tune2fs.c:3023
#, c-format
msgid "The inode size is already %lu\n"
msgstr ""
-#: misc/tune2fs.c:3024
+#: misc/tune2fs.c:3030
msgid "Shrinking inode size is not supported\n"
msgstr ""
-#: misc/tune2fs.c:3029
+#: misc/tune2fs.c:3035
#, c-format
msgid "Invalid inode size %lu (max %d)\n"
msgstr ""
-#: misc/tune2fs.c:3035
+#: misc/tune2fs.c:3041
msgid "Resizing inodes could take some time."
msgstr ""
-#: misc/tune2fs.c:3084
+#: misc/tune2fs.c:3090
#, c-format
msgid ""
"Warning: The journal is dirty. You may wish to replay the journal like:\n"
@@ -6579,159 +6579,159 @@ msgid ""
"by journal recovery.\n"
msgstr ""
-#: misc/tune2fs.c:3093
+#: misc/tune2fs.c:3099
#, c-format
msgid "Recovering journal.\n"
msgstr ""
-#: misc/tune2fs.c:3117
+#: misc/tune2fs.c:3123
#, c-format
msgid "Setting maximal mount count to %d\n"
msgstr ""
-#: misc/tune2fs.c:3123
+#: misc/tune2fs.c:3129
#, c-format
msgid "Setting current mount count to %d\n"
msgstr ""
-#: misc/tune2fs.c:3128
+#: misc/tune2fs.c:3134
#, c-format
msgid "Setting error behavior to %d\n"
msgstr ""
-#: misc/tune2fs.c:3133
+#: misc/tune2fs.c:3139
#, c-format
msgid "Setting reserved blocks gid to %lu\n"
msgstr ""
-#: misc/tune2fs.c:3138
+#: misc/tune2fs.c:3144
#, c-format
msgid "interval between checks is too big (%lu)"
msgstr ""
-#: misc/tune2fs.c:3145
+#: misc/tune2fs.c:3151
#, c-format
msgid "Setting interval between checks to %lu seconds\n"
msgstr ""
-#: misc/tune2fs.c:3152
+#: misc/tune2fs.c:3158
#, c-format
msgid "Setting reserved blocks percentage to %g%% (%llu blocks)\n"
msgstr ""
-#: misc/tune2fs.c:3159
+#: misc/tune2fs.c:3165
#, c-format
msgid "reserved blocks count is too big (%llu)"
msgstr ""
-#: misc/tune2fs.c:3166
+#: misc/tune2fs.c:3172
#, c-format
msgid "Setting reserved blocks count to %llu\n"
msgstr ""
-#: misc/tune2fs.c:3171
+#: misc/tune2fs.c:3177
msgid ""
"\n"
"The filesystem already has sparse superblocks.\n"
msgstr ""
-#: misc/tune2fs.c:3174
+#: misc/tune2fs.c:3180
msgid ""
"\n"
"Setting the sparse superblock flag not supported\n"
"for filesystems with the meta_bg feature enabled.\n"
msgstr ""
-#: misc/tune2fs.c:3184
+#: misc/tune2fs.c:3190
#, c-format
msgid ""
"\n"
"Sparse superblock flag set. %s"
msgstr ""
-#: misc/tune2fs.c:3189
+#: misc/tune2fs.c:3195
msgid ""
"\n"
"Clearing the sparse superblock flag not supported.\n"
msgstr ""
-#: misc/tune2fs.c:3197
+#: misc/tune2fs.c:3203
#, c-format
msgid "Setting time filesystem last checked to %s\n"
msgstr ""
-#: misc/tune2fs.c:3203
+#: misc/tune2fs.c:3209
#, c-format
msgid "Setting reserved blocks uid to %lu\n"
msgstr ""
-#: misc/tune2fs.c:3235
+#: misc/tune2fs.c:3241
msgid "Error in using clear_mmp. It must be used with -f\n"
msgstr ""
-#: misc/tune2fs.c:3253
+#: misc/tune2fs.c:3259
msgid ""
"The quota feature may only be changed when the filesystem is unmounted.\n"
msgstr ""
-#: misc/tune2fs.c:3270
+#: misc/tune2fs.c:3276
msgid ""
"Cannot change the UUID of this filesystem because it has the stable_inodes "
"feature flag.\n"
msgstr ""
-#: misc/tune2fs.c:3280
+#: misc/tune2fs.c:3286
msgid "Setting the UUID on this filesystem could take some time."
msgstr ""
-#: misc/tune2fs.c:3297
+#: misc/tune2fs.c:3303
msgid "The UUID may only be changed when the filesystem is unmounted.\n"
msgstr ""
-#: misc/tune2fs.c:3300
+#: misc/tune2fs.c:3306
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:3331
+#: misc/tune2fs.c:3337
msgid "Invalid UUID format\n"
msgstr ""
-#: misc/tune2fs.c:3347
+#: misc/tune2fs.c:3353
msgid "Need to update journal superblock.\n"
msgstr ""
-#: misc/tune2fs.c:3369
+#: misc/tune2fs.c:3375
msgid "The inode size may only be changed when the filesystem is unmounted.\n"
msgstr ""
-#: misc/tune2fs.c:3376
+#: misc/tune2fs.c:3382
msgid ""
"Changing the inode size not supported for filesystems with the flex_bg\n"
"feature enabled.\n"
msgstr ""
-#: misc/tune2fs.c:3394
+#: misc/tune2fs.c:3400
#, c-format
msgid "Setting inode size %lu\n"
msgstr ""
-#: misc/tune2fs.c:3398
+#: misc/tune2fs.c:3404
msgid "Failed to change inode size\n"
msgstr ""
-#: misc/tune2fs.c:3412
+#: misc/tune2fs.c:3418
#, c-format
msgid "Setting stride size to %d\n"
msgstr ""
-#: misc/tune2fs.c:3417
+#: misc/tune2fs.c:3423
#, c-format
msgid "Setting stripe width to %d\n"
msgstr ""
-#: misc/tune2fs.c:3424
+#: misc/tune2fs.c:3430
#, c-format
msgid "Setting extended default mount options to '%s'\n"
msgstr ""
@@ -7014,41 +7014,41 @@ msgstr ""
msgid "while getting stat information for %s"
msgstr ""
-#: resize/main.c:453
+#: resize/main.c:457
#, c-format
msgid ""
"Please run 'e2fsck -f %s' first.\n"
"\n"
msgstr ""
-#: resize/main.c:472
+#: resize/main.c:476
#, c-format
msgid "Estimated minimum size of the filesystem: %llu\n"
msgstr ""
-#: resize/main.c:509
+#: resize/main.c:516
#, c-format
msgid "Invalid new size: %s\n"
msgstr ""
-#: resize/main.c:528
+#: resize/main.c:535
msgid "New size too large to be expressed in 32 bits\n"
msgstr ""
-#: resize/main.c:541
+#: resize/main.c:548
msgid "New size results in too many block group descriptors.\n"
msgstr ""
-#: resize/main.c:548
+#: resize/main.c:555
#, c-format
msgid "New size smaller than minimum (%llu)\n"
msgstr ""
-#: resize/main.c:555
+#: resize/main.c:562
msgid "Invalid stride length"
msgstr ""
-#: resize/main.c:579
+#: resize/main.c:586
#, c-format
msgid ""
"The containing partition (or device) is only %llu (%dk) blocks.\n"
@@ -7056,89 +7056,89 @@ msgid ""
"\n"
msgstr ""
-#: resize/main.c:586
+#: resize/main.c:593
#, c-format
msgid "Cannot set and unset 64bit feature.\n"
msgstr ""
-#: resize/main.c:590
+#: resize/main.c:597
#, c-format
msgid ""
"Cannot change the 64bit feature on a filesystem that is larger than 2^32 "
"blocks.\n"
msgstr ""
-#: resize/main.c:596
+#: resize/main.c:603
#, c-format
msgid "Cannot change the 64bit feature while the filesystem is mounted.\n"
msgstr ""
-#: resize/main.c:602
+#: resize/main.c:609
#, c-format
msgid ""
"Please enable the extents feature with tune2fs before enabling the 64bit "
"feature.\n"
msgstr ""
-#: resize/main.c:608
+#: resize/main.c:615
#, c-format
msgid ""
"The filesystem is already %llu (%dk) blocks long. Nothing to do!\n"
"\n"
msgstr ""
-#: resize/main.c:616
+#: resize/main.c:623
#, c-format
msgid "The filesystem is already 64-bit.\n"
msgstr ""
-#: resize/main.c:621
+#: resize/main.c:628
#, c-format
msgid "The filesystem is already 32-bit.\n"
msgstr ""
-#: resize/main.c:626
+#: resize/main.c:633
#, c-format
msgid ""
"Cannot shrink this filesystem because it has the stable_inodes feature "
"flag.\n"
msgstr ""
-#: resize/main.c:635
+#: resize/main.c:642
#, c-format
msgid "Converting the filesystem to 64-bit.\n"
msgstr ""
-#: resize/main.c:637
+#: resize/main.c:644
#, c-format
msgid "Converting the filesystem to 32-bit.\n"
msgstr ""
-#: resize/main.c:639
+#: resize/main.c:646
#, c-format
msgid "Resizing the filesystem on %s to %llu (%dk) blocks.\n"
msgstr ""
-#: resize/main.c:649
+#: resize/main.c:656
#, c-format
msgid "while trying to resize %s"
msgstr ""
-#: resize/main.c:652
+#: resize/main.c:659
#, c-format
msgid ""
"Please run 'e2fsck -fy %s' to fix the filesystem\n"
"after the aborted resize operation.\n"
msgstr ""
-#: resize/main.c:658
+#: resize/main.c:664
#, c-format
msgid ""
"The filesystem on %s is now %llu (%dk) blocks long.\n"
"\n"
msgstr ""
-#: resize/main.c:673
+#: resize/main.c:679
#, c-format
msgid "while trying to truncate %s"
msgstr ""
@@ -7220,28 +7220,28 @@ msgstr ""
msgid "reserved blocks"
msgstr ""
-#: resize/resize2fs.c:1284
+#: resize/resize2fs.c:1289
msgid "meta-data blocks"
msgstr ""
-#: resize/resize2fs.c:1388 resize/resize2fs.c:2430
+#: resize/resize2fs.c:1393 resize/resize2fs.c:2435
msgid "new meta blocks"
msgstr ""
-#: resize/resize2fs.c:2654
+#: resize/resize2fs.c:2659
msgid "Should never happen! No sb in last super_sparse bg?\n"
msgstr ""
-#: resize/resize2fs.c:2659
+#: resize/resize2fs.c:2664
msgid "Should never happen! Unexpected old_desc in super_sparse bg?\n"
msgstr ""
-#: resize/resize2fs.c:2732
+#: resize/resize2fs.c:2737
msgid "Should never happen: resize inode corrupt!\n"
msgstr ""
#: lib/ext2fs/ext2_err.c:11
-msgid "EXT2FS Library version 1.46.2"
+msgid "EXT2FS Library version 1.46.3"
msgstr ""
#: lib/ext2fs/ext2_err.c:12
@@ -8088,68 +8088,68 @@ msgstr ""
msgid "Bad magic value in profile_file_data_t"
msgstr ""
-#: lib/support/plausible.c:114
+#: lib/support/plausible.c:119
#, c-format
msgid "\tlast mounted on %.*s on %s"
msgstr ""
-#: lib/support/plausible.c:117
+#: lib/support/plausible.c:122
#, c-format
msgid "\tlast mounted on %s"
msgstr ""
-#: lib/support/plausible.c:120
+#: lib/support/plausible.c:125
#, c-format
msgid "\tcreated on %s"
msgstr ""
-#: lib/support/plausible.c:123
+#: lib/support/plausible.c:128
#, c-format
msgid "\tlast modified on %s"
msgstr ""
-#: lib/support/plausible.c:157
+#: lib/support/plausible.c:162
#, c-format
msgid "Found a %s partition table in %s\n"
msgstr ""
-#: lib/support/plausible.c:187
+#: lib/support/plausible.c:192
#, c-format
msgid "The file %s does not exist and no size was specified.\n"
msgstr ""
-#: lib/support/plausible.c:195
+#: lib/support/plausible.c:200
#, c-format
msgid "Creating regular file %s\n"
msgstr ""
-#: lib/support/plausible.c:198
+#: lib/support/plausible.c:203
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: lib/support/plausible.c:201
+#: lib/support/plausible.c:206
msgid ""
"\n"
"The device apparently does not exist; did you specify it correctly?\n"
msgstr ""
-#: lib/support/plausible.c:223
+#: lib/support/plausible.c:228
#, c-format
msgid "%s is not a block special device.\n"
msgstr ""
-#: lib/support/plausible.c:245
+#: lib/support/plausible.c:250
#, c-format
msgid "%s contains a %s file system labelled '%s'\n"
msgstr ""
-#: lib/support/plausible.c:248
+#: lib/support/plausible.c:253
#, c-format
msgid "%s contains a %s file system\n"
msgstr ""
-#: lib/support/plausible.c:272
+#: lib/support/plausible.c:277
#, c-format
msgid "%s contains `%s' data\n"
msgstr ""
diff --git a/version.h b/version.h
index e27de3c10..778bde01a 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.46.2"
-#define E2FSPROGS_DATE "28-Feb-2021"
+#define E2FSPROGS_VERSION "1.46.3"
+#define E2FSPROGS_DATE "27-Jul-2021"