aboutsummaryrefslogtreecommitdiff
path: root/util-linux/mkfs_ext2.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/mkfs_ext2.c')
-rw-r--r--util-linux/mkfs_ext2.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/util-linux/mkfs_ext2.c b/util-linux/mkfs_ext2.c
index 8b435c120..19c3c673e 100644
--- a/util-linux/mkfs_ext2.c
+++ b/util-linux/mkfs_ext2.c
@@ -145,12 +145,12 @@ static void PUT(uint64_t off, void *buf, uint32_t size)
145 145
146// Standard mke2fs 1.41.9: 146// Standard mke2fs 1.41.9:
147// Usage: mke2fs [-c|-l filename] [-b block-size] [-f fragment-size] 147// Usage: mke2fs [-c|-l filename] [-b block-size] [-f fragment-size]
148// [-i bytes-per-inode] [-I inode-size] [-J journal-options] 148// [-i bytes-per-inode] [-I inode-size] [-J journal-options]
149// [-G meta group size] [-N number-of-inodes] 149// [-G meta group size] [-N number-of-inodes]
150// [-m reserved-blocks-percentage] [-o creator-os] 150// [-m reserved-blocks-percentage] [-o creator-os]
151// [-g blocks-per-group] [-L volume-label] [-M last-mounted-directory] 151// [-g blocks-per-group] [-L volume-label] [-M last-mounted-directory]
152// [-O feature[,...]] [-r fs-revision] [-E extended-option[,...]] 152// [-O feature[,...]] [-r fs-revision] [-E extended-option[,...]]
153// [-T fs-type] [-U UUID] [-jnqvFSV] device [blocks-count] 153// [-T fs-type] [-U UUID] [-jnqvFSV] device [blocks-count]
154// 154//
155// Options not commented below are taken but silently ignored: 155// Options not commented below are taken but silently ignored:
156enum { 156enum {
@@ -311,7 +311,7 @@ int mkfs_ext2_main(int argc UNUSED_PARAM, char **argv)
311 nreserved = (uint64_t)nblocks * reserved_percent / 100; 311 nreserved = (uint64_t)nblocks * reserved_percent / 100;
312 312
313 // N.B. killing e2fsprogs feature! Unused blocks don't account in calculations 313 // N.B. killing e2fsprogs feature! Unused blocks don't account in calculations
314 nblocks_full = nblocks; 314 nblocks_full = nblocks;
315 315
316 // If last block group is too small, nblocks may be decreased in order 316 // If last block group is too small, nblocks may be decreased in order
317 // to discard it, and control returns here to recalculate some 317 // to discard it, and control returns here to recalculate some