The patch titled Subject: minix zmap block counts calculation fix has been added to the -mm tree. Its filename is minix-zmap-block-counts-calculation-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/minix-zmap-block-counts-calculation-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/minix-zmap-block-counts-calculation-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Qi Yong <qiyong@xxxxxxxxx> Subject: minix zmap block counts calculation fix The original minix zmap blocks calculation was correct, in the formula of: sbi->s_nzones - sbi->s_firstdatazone + 1 It is sp->s_zones - (sp->s_firstdatazone - 1) in the minix3 source code. But a later patch 016e8d44bc06dd ("fs/minix: Verify bitmap block counts before mounting") has changed it unfortunately as: sbi->s_nzones - (sbi->s_firstdatazone + 1) This would show free blocks one block less than the real when the total data blocks are in "full zmap blocks plus one". This patch corrects that zmap blocks calculation and tidy a printk message while at it. Signed-off-by: Qi Yong <qiyong@xxxxxxxxx> Cc: Josh Boyer <jwboyer@xxxxxxxxxx> Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/minix/bitmap.c | 2 +- fs/minix/inode.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff -puN fs/minix/bitmap.c~minix-zmap-block-counts-calculation-fix fs/minix/bitmap.c --- a/fs/minix/bitmap.c~minix-zmap-block-counts-calculation-fix +++ a/fs/minix/bitmap.c @@ -96,7 +96,7 @@ int minix_new_block(struct inode * inode unsigned long minix_count_free_blocks(struct super_block *sb) { struct minix_sb_info *sbi = minix_sb(sb); - u32 bits = sbi->s_nzones - (sbi->s_firstdatazone + 1); + u32 bits = sbi->s_nzones - sbi->s_firstdatazone + 1; return (count_free(sbi->s_zmap, sb->s_blocksize, bits) << sbi->s_log_zone_size); diff -puN fs/minix/inode.c~minix-zmap-block-counts-calculation-fix fs/minix/inode.c --- a/fs/minix/inode.c~minix-zmap-block-counts-calculation-fix +++ a/fs/minix/inode.c @@ -267,12 +267,12 @@ static int minix_fill_super(struct super block = minix_blocks_needed(sbi->s_ninodes, s->s_blocksize); if (sbi->s_imap_blocks < block) { printk("MINIX-fs: file system does not have enough " - "imap blocks allocated. Refusing to mount\n"); + "imap blocks allocated. Refusing to mount.\n"); goto out_no_bitmap; } block = minix_blocks_needed( - (sbi->s_nzones - (sbi->s_firstdatazone + 1)), + (sbi->s_nzones - sbi->s_firstdatazone + 1), s->s_blocksize); if (sbi->s_zmap_blocks < block) { printk("MINIX-fs: file system does not have enough " _ Patches currently in -mm which might be from qiyong@xxxxxxxxx are minix-zmap-block-counts-calculation-fix.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html