From: Mingming Cao <cmm@us.ibm.com>
To: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
Cc: tytso@mit.edu, sandeen@redhat.com, linux-ext4@vger.kernel.org
Subject: Re: [PATCH -v2] ext4: Handle unwritten extent properly with delayed allocation.
Date: Mon, 11 Aug 2008 14:49:49 -0700 [thread overview]
Message-ID: <1218491389.6766.20.camel@mingming-laptop> (raw)
In-Reply-To: <1218450188-9643-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com>
> When using fallocate the buffer_heads are marked unwritten
> and unmapped. We need to map them in the writepages after
> a get_block. Otherwise we split the uninit extents,
> but never write the content to disk.
>
> Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Reviewed-by: Mingming Cao <cmm@us.ibm.com>
Added to patch queue
> ---
> fs/ext4/inode.c | 12 ++++++++++--
> 1 files changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
> index c96cc0b..7a66bba 100644
> --- a/fs/ext4/inode.c
> +++ b/fs/ext4/inode.c
> @@ -1732,6 +1732,13 @@ static void mpage_put_bnr_to_bhs(struct mpage_da_data *mpd, sector_t logical,
> if (buffer_delay(bh)) {
> bh->b_blocknr = pblock;
> clear_buffer_delay(bh);
> + bh->b_bdev = inode->i_sb->s_bdev;
> + } else if (buffer_unwritten(bh)) {
> + bh->b_blocknr = pblock;
> + clear_buffer_unwritten(bh);
> + set_buffer_mapped(bh);
> + set_buffer_new(bh);
> + bh->b_bdev = inode->i_sb->s_bdev;
> } else if (buffer_mapped(bh))
> BUG_ON(bh->b_blocknr != pblock);
>
> @@ -1805,7 +1812,7 @@ static void mpage_da_map_blocks(struct mpage_da_data *mpd)
> * If blocks are delayed marked, we need to
> * put actual blocknr and drop delayed bit
> */
> - if (buffer_delay(lbh))
> + if (buffer_delay(lbh) || buffer_unwritten(lbh))
> mpage_put_bnr_to_bhs(mpd, next, &new);
>
> /* go for the remaining blocks */
> @@ -1814,7 +1821,8 @@ static void mpage_da_map_blocks(struct mpage_da_data *mpd)
> }
> }
>
> -#define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | (1 << BH_Delay))
> +#define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | \
> + (1 << BH_Delay) | (1 << BH_Unwritten))
>
> /*
> * mpage_add_bh_to_extent - try to add one more block to extent of blocks
prev parent reply other threads:[~2008-08-11 21:49 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-11 10:23 [PATCH -v2] ext4: Handle unwritten extent properly with delayed allocation Aneesh Kumar K.V
2008-08-11 10:23 ` [PATCH -v2] ext4: Rework the ext4_da_writepages Aneesh Kumar K.V
2008-08-11 10:23 ` [PATCH -v2] ext4: invalidate pages if delalloc block allocation fails Aneesh Kumar K.V
2008-08-11 21:50 ` Mingming Cao
2008-08-11 21:50 ` [PATCH -v2] ext4: Rework the ext4_da_writepages Mingming Cao
2008-08-11 21:49 ` 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=1218491389.6766.20.camel@mingming-laptop \
--to=cmm@us.ibm.com \
--cc=aneesh.kumar@linux.vnet.ibm.com \
--cc=linux-ext4@vger.kernel.org \
--cc=sandeen@redhat.com \
--cc=tytso@mit.edu \
/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