From c93d54a1867858f8b81e2df49fa43f4d7950b43d Mon Sep 17 00:00:00 2001 From: Jaegeuk Kim Date: Fri, 20 Mar 2015 16:41:59 -0700 Subject: [PATCH] mkfs.f2fs: show bytes for total_sectors This patch shows correct information about total_sectors. Signed-off-by: Jaegeuk Kim --- lib/libf2fs.c | 4 ++-- mkfs/f2fs_format_main.c | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/libf2fs.c b/lib/libf2fs.c index 9e19e9b..7fd2550 100644 --- a/lib/libf2fs.c +++ b/lib/libf2fs.c @@ -497,8 +497,8 @@ int f2fs_get_device_info(struct f2fs_configuration *c) } MSG(0, "Info: sector size = %u\n", c->sector_size); - MSG(0, "Info: total sectors = %"PRIu64" (in %u bytes)\n", - c->total_sectors, c->sector_size); + MSG(0, "Info: total sectors = %"PRIu64" (%"PRIu64" MB)\n", + c->total_sectors, c->total_sectors >> 11); if (c->total_sectors < (F2FS_MIN_VOLUME_SIZE / c->sector_size)) { MSG(0, "Error: Min volume size supported is %d\n", diff --git a/mkfs/f2fs_format_main.c b/mkfs/f2fs_format_main.c index bba2085..aefe9fc 100644 --- a/mkfs/f2fs_format_main.c +++ b/mkfs/f2fs_format_main.c @@ -103,8 +103,9 @@ static void f2fs_parse_options(int argc, char *argv[]) if ((optind + 1) < argc) { /* We have a sector count. */ config.total_sectors = atoll(argv[optind+1]); - MSG(0, "\ttotal_sectors=%08"PRIx64" (%s bytes)\n", - config.total_sectors, argv[optind+1]); + MSG(1, "\ttotal_sectors=%"PRIx64" (%"PRIx64" bytes)\n", + config.total_sectors, + config.total_sectors * 512); } config.reserved_segments = -- 2.7.4