[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20130221131253.GA2268@gmail.com>
Date: Thu, 21 Feb 2013 21:12:53 +0800
From: Zheng Liu <gnehzuil.liu@...il.com>
To: Lukáš Czerner <lczerner@...hat.com>
Cc: linux-ext4@...r.kernel.org, Theodore Ts'o <tytso@....edu>
Subject: Re: [PATCH] ext4: fix overhead calculation in bigalloc filesystem
(Re: ... )
On Thu, Feb 21, 2013 at 01:40:34PM +0100, Lukáš Czerner wrote:
[snip]
>
> Hi Zheng,
>
> thanks for the review. I know about the other issues and I'm trying
> to resolve those as well. Right now I have a patch which includes
> the changes ext4_calculate_overhead() you've described below and more,
> but even with this I still see some problems remaining.
>
> Hopefully will send another patch soon.
Yeah, we will get a lot of xfstests failures about bigalloc feature when
bigalloc and delalloc are enabled simultaneouly. So that would be great
if we could fix these problems. Looking forward your patch. :-)
Regards,
- Zheng
> >
> > Subject: [PATCH] ext4: fix overhead calculation in bigalloc filesystem
> >
> > From: Zheng Liu <wenqing.lz@...bao.com>
> >
> > ext4_calculate_overhead() should compute the overhead and stash it in
> > sbi->s_overhead. But we miss use EXT4_B2C() to calculate the number of
> > clusters before first_data_block and the number of journal blocks. This
> > commit use EXT4_NUM_B2C() instead of EXT4_B2C() to calculate the
> > overhead.
> >
> > Signed-off-by: Zheng Liu <wenqing.lz@...bao.com>
> > Cc: "Theodore Ts'o" <tytso@....edu>
> > ---
> > fs/ext4/super.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/fs/ext4/super.c b/fs/ext4/super.c
> > index 3d4fb81..6165558 100644
> > --- a/fs/ext4/super.c
> > +++ b/fs/ext4/super.c
> > @@ -3219,7 +3219,7 @@ int ext4_calculate_overhead(struct super_block *sb)
> > /*
> > * All of the blocks before first_data_block are overhead
> > */
> > - overhead = EXT4_B2C(sbi, le32_to_cpu(es->s_first_data_block));
> > + overhead = EXT4_NUM_B2C(sbi, le32_to_cpu(es->s_first_data_block));
> >
> > /*
> > * Add the overhead found in each block group
> > @@ -3235,7 +3235,7 @@ int ext4_calculate_overhead(struct super_block *sb)
> > }
> > /* Add the journal blocks as well */
> > if (sbi->s_journal)
> > - overhead += EXT4_B2C(sbi, sbi->s_journal->j_maxlen);
> > + overhead += EXT4_NUM_B2C(sbi, sbi->s_journal->j_maxlen);
> >
> > sbi->s_overhead = overhead;
> > smp_wmb();
> >
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists