From: Ritesh Harjani Date: Sun, 10 May 2020 06:24:41 +0000 (+0530) Subject: ext4: mballoc: print bb_free info even when it is 0 X-Git-Tag: v5.10.7~2303^2~45 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=212da3ec6fafe458cd54c3a365cbcb4f9bd794e1;p=platform%2Fkernel%2Flinux-rpi.git ext4: mballoc: print bb_free info even when it is 0 Improve the debugging msg by also printing even if bb_free is 0. Signed-off-by: Ritesh Harjani Link: https://lore.kernel.org/r/c894f1d1d30f86ae38f4e3a861949665b6dc61cd.1589086800.git.riteshh@linux.ibm.com Signed-off-by: Theodore Ts'o --- diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 30d5d97..bcfaaad 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c @@ -4170,8 +4170,6 @@ static void ext4_mb_show_ac(struct ext4_allocation_context *ac) } ext4_unlock_group(sb, i); - if (grp->bb_free == 0) - continue; printk(KERN_ERR "%u: %d/%d \n", i, grp->bb_free, grp->bb_fragments); }