summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Devera <devik@eaxlabs.cz>2021-03-03 10:05:19 +0100
committerRichard Weinberger <richard@nod.at>2021-04-15 22:00:41 +0200
commit829ad58a04e28e1979cc8b9ac7d2db69cc44dc80 (patch)
tree27e7c495cad70a3bd77324fedb4fe7888975f83a
parentaf61e7bf927855e9647393f6c5ac4e411ac2041e (diff)
downloadlinux-stable-829ad58a04e28e1979cc8b9ac7d2db69cc44dc80.tar.gz
linux-stable-829ad58a04e28e1979cc8b9ac7d2db69cc44dc80.tar.bz2
linux-stable-829ad58a04e28e1979cc8b9ac7d2db69cc44dc80.zip
ubifs: Report max LEB count at mount time
There is no other way to directly report/query this quantity. It is useful when planing how given filesystem can be resized. Signed-off-by: Martin Devera <devik@eaxlabs.cz> Signed-off-by: Richard Weinberger <richard@nod.at>
-rw-r--r--fs/ubifs/super.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c
index 73f0ac209fb8..7b572e1414ba 100644
--- a/fs/ubifs/super.c
+++ b/fs/ubifs/super.c
@@ -1552,8 +1552,8 @@ static int mount_ubifs(struct ubifs_info *c)
ubifs_msg(c, "LEB size: %d bytes (%d KiB), min./max. I/O unit sizes: %d bytes/%d bytes",
c->leb_size, c->leb_size >> 10, c->min_io_size,
c->max_write_size);
- ubifs_msg(c, "FS size: %lld bytes (%lld MiB, %d LEBs), journal size %lld bytes (%lld MiB, %d LEBs)",
- x, x >> 20, c->main_lebs,
+ ubifs_msg(c, "FS size: %lld bytes (%lld MiB, %d LEBs), max %d LEBs, journal size %lld bytes (%lld MiB, %d LEBs)",
+ x, x >> 20, c->main_lebs, c->max_leb_cnt,
y, y >> 20, c->log_lebs + c->max_bud_cnt);
ubifs_msg(c, "reserved for root: %llu bytes (%llu KiB)",
c->report_rp_size, c->report_rp_size >> 10);