Correctly calculate the total FS size in init_sb_info(), for sector
size may not be 512 bytes.

Signed-off-by: Junling Zheng <zhengjunl...@huawei.com>
---
 fsck/mount.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fsck/mount.c b/fsck/mount.c
index 4c807f9..7f4b85a 100644
--- a/fsck/mount.c
+++ b/fsck/mount.c
@@ -367,7 +367,8 @@ int init_sb_info(struct f2fs_sb_info *sbi)
 
        total_sectors = get_sb(block_count) << sbi->log_sectors_per_block;
        MSG(0, "Info: total FS sectors = %"PRIu64" (%"PRIu64" MB)\n",
-                               total_sectors, total_sectors >> 11);
+                               total_sectors, total_sectors >>
+                                               (20 - get_sb(log_sectorsize)));
        return 0;
 }
 
-- 
1.9.1


------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

Reply via email to