From: Mingming Cao <cmm@us.ibm.com>
To: Allison Henderson <achender@linux.vnet.ibm.com>
Cc: Ext4 Developers List <linux-ext4@vger.kernel.org>,
Yongqiang Yang <xiaoqiangnk@gmail.com>,
Theodore Tso <tytso@mit.edu>
Subject: Re: [PATCH v2] ext4: ext4_ext_convert_to_initialized bug found in extended FSX testing
Date: Mon, 16 May 2011 08:09:21 -0700 [thread overview]
Message-ID: <1305558561.2610.9.camel@mingming-laptop> (raw)
In-Reply-To: <4DCE1B19.9070503@linux.vnet.ibm.com>
On Fri, 2011-05-13 at 23:03 -0700, Allison Henderson wrote:
> Hi all,
>
> After applying this patch, the fsx test has been able to run ok all
> day (about 12hrs). So I think it's safe to send it out now. Thx all!
>
> Allison Henderson
>
> Signed-off-by: Allison Henderson <achender@us.ibm.com>
Looks good to me.
Reviewed-by: Mingming Cao <cmm@us.ibm.com>
>
> ---
> :100644 100644 e363f21... 5f243da... M fs/ext4/extents.c
> fs/ext4/extents.c | 9 ++++-----
> 1 files changed, 4 insertions(+), 5 deletions(-)
>
> diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
> index e363f21..5f243da 100644
> --- a/fs/ext4/extents.c
> +++ b/fs/ext4/extents.c
> @@ -2818,8 +2818,8 @@ static int ext4_ext_convert_to_initialized(handle_t *handle,
> (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
> /* case 3 */
> zero_ex.ee_block =
> - cpu_to_le32(map->m_lblk + map->m_len);
> - zero_ex.ee_len = cpu_to_le16(allocated - map->m_len);
> + cpu_to_le32(map->m_lblk);
> + zero_ex.ee_len = cpu_to_le16(allocated);
> ext4_ext_store_pblock(&zero_ex,
> ext4_ext_pblock(ex) + map->m_lblk - ee_block);
> err = ext4_ext_zeroout(inode, &zero_ex);
> @@ -2842,10 +2842,9 @@ static int ext4_ext_convert_to_initialized(handle_t *handle,
> goto out;
> }
>
> - allocated = map->m_lblk - ee_block + map->m_len;
> -
> split_map.m_lblk = ee_block;
> - split_map.m_len = allocated;
> + split_map.m_len = map->m_lblk - ee_block + map->m_len;
> + allocated = map->m_len;
> }
> }
>
prev parent reply other threads:[~2011-05-16 15:09 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-14 6:03 [PATCH v2] ext4: ext4_ext_convert_to_initialized bug found in extended FSX testing Allison Henderson
2011-05-16 15:09 ` Mingming Cao [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=1305558561.2610.9.camel@mingming-laptop \
--to=cmm@us.ibm.com \
--cc=achender@linux.vnet.ibm.com \
--cc=linux-ext4@vger.kernel.org \
--cc=tytso@mit.edu \
--cc=xiaoqiangnk@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.