From: "Jose R. Santos" <jrs@us.ibm.com>
To: "Frédéric Bohé" <frederic.bohe@bull.net>
Cc: linux-ext4 <linux-ext4@vger.kernel.org>
Subject: Re: [PATCH][e2fsprogs] Fix inode table allocation with flexbg
Date: Thu, 17 Jul 2008 08:47:51 -0500 [thread overview]
Message-ID: <20080717084751.65ea6d57@ichigo> (raw)
In-Reply-To: <1216294481.3136.18.camel@localhost>
On Thu, 17 Jul 2008 13:34:41 +0200
Frédéric Bohé <frederic.bohe@bull.net> wrote:
> From: Frederic Bohe <frederic.bohe@bull.net>
>
> Disordered inode tables may appear when inode_blocks_per_group is lesser
> or equal to the number of groups in a flex group.
>
Acked-by: Jose R. Santos <jrs@us.ibm.com> with some comments bellow
> Signed-off-by: Frederic Bohe <frederic.bohe@bull.net>
> ---
> This bug can be reproduced with:
> mkfs.ext4 -t ext4dev -G512 70G
>
> In that case, you can see with dump2fs that inode tables for groups 510
> and 511 are placed just after group 51's inode table instead of being
> placed after group 509's inode table.
>
> alloc_tables.c | 16 +++++++---------
> 1 file changed, 7 insertions(+), 9 deletions(-)
>
> Index: e2fsprogs/lib/ext2fs/alloc_tables.c
> ===================================================================
> --- e2fsprogs.orig/lib/ext2fs/alloc_tables.c 2008-07-17 10:33:56.000000000 +0200
> +++ e2fsprogs/lib/ext2fs/alloc_tables.c 2008-07-17 10:46:49.000000000 +0200
> @@ -34,9 +34,10 @@
> * tables can be allocated continously and in order.
> */
> static blk_t flexbg_offset(ext2_filsys fs, dgrp_t group, blk_t start_blk,
> - ext2fs_block_bitmap bmap, int offset, int size)
> + ext2fs_block_bitmap bmap, int offset, int size,
> + int elem_size)
While there is nothing technically wrong with the patch I think it
exposes an issue with the original flexbg_offset function. The routine
right now requires to many arguments and you need to do some
calculations within some of the arguments which make this look ugly
and error prone if someone decides to modify this code later on.
I've been thinking about rewriting this function so it looks something
like this:
static blk64_t flexbg_offset(ext2_filsys fs, ext2fs_block_bitmap bmap,
dgrp_t group, unsigned int type)
and do all the offset, start_blk, size, elem_size calculations inside
the routine. I need to make a long term fix for this issue since I
think 7 args for this routine is just to much.
-JRS
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2008-07-17 13:48 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20080701084357.819339274@bull.net>
2008-07-01 9:17 ` [PATCH v2] ext4: fix online resize with mballoc Frédéric Bohé
2008-07-17 11:34 ` [PATCH][e2fsprogs] Fix inode table allocation with flexbg Frédéric Bohé
2008-07-17 13:47 ` Jose R. Santos [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080717084751.65ea6d57@ichigo \
--to=jrs@us.ibm.com \
--cc=frederic.bohe@bull.net \
--cc=linux-ext4@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox