diff mbox

[RFC,3/3] ext4:Reimplement convert and split_unwritten.

Message ID 4DB09E01.6030209@linux.vnet.ibm.com
State New, archived
Headers show

Commit Message

Allison Henderson April 21, 2011, 9:13 p.m. UTC
On 4/21/2011 2:10 AM, Yongqiang Yang wrote:
> On Thu, Apr 21, 2011 at 4:28 PM, Allison Henderson
> <achender@linux.vnet.ibm.com>  wrote:
>> On 4/13/2011 10:40 PM, Yongqiang Yang wrote:
>>> convert and split unwritten are reimplemented based on ext4_split_extent()
>>> added in last patch.
>>>
>>> Signed-off-by: Yongqiang Yang<xiaoqiangnk@gmail.com>
>>> ---
>>>    fs/ext4/extents.c |  483 ++++++++--------------------------------------------
>>>    1 files changed, 75 insertions(+), 408 deletions(-)
>>>
>>> diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
>>> index 1756e0f..ee2dda3 100644
>>> --- a/fs/ext4/extents.c
>>> +++ b/fs/ext4/extents.c
>>> @@ -2770,17 +2770,13 @@ static int ext4_ext_convert_to_initialized(handle_t *handle,
>>>                                           struct ext4_map_blocks *map,
>>>                                           struct ext4_ext_path *path)
>>>    {
>>> +     struct ext4_map_blocks split_map;
>>> +     struct ext4_extent zero_ex;
>>> +     struct ext4_extent *ex;
>>>        ext4_lblk_t ee_block, eof_block;
>>>        unsigned int allocated, ee_len, depth;
>>>        int err = 0;
>>> +     int split_flag = 0;
>>>
>>>        ext_debug("ext4_ext_convert_to_initialized: inode %lu, logical"
>>>                "block %llu, max_blocks %u\n", inode->i_ino,
>>> @@ -2792,280 +2788,90 @@ static int ext4_ext_convert_to_initialized(handle_t *handle,
>>>                eof_block = map->m_lblk + map->m_len;
>>>
>>>        depth = ext_depth(inode);
>>>        ex = path[depth].p_ext;
>>>        ee_block = le32_to_cpu(ex->ee_block);
>>>        ee_len = ext4_ext_get_actual_len(ex);
>>>        allocated = ee_len - (map->m_lblk - ee_block);
>>>
>>> +     WARN_ON(map->m_lblk<    ee_block);
>>>        /*
>>>         * It is safe to convert extent to initialized via explicit
>>>         * zeroout only if extent is fully insde i_size or new_size.
>>>         */
>>> +     split_flag |= ee_block + ee_len<= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;
>>>
>>>        /* If extent has less than 2*EXT4_EXT_ZERO_LEN zerout directly */
>>> +     if (ee_len<= 2*EXT4_EXT_ZERO_LEN&&
>>> +         (EXT4_EXT_MAY_ZEROOUT&    split_flag)) {
>>> +             zero_ex.ee_block = ex->ee_block;
>>> +             zero_ex.ee_len = cpu_to_le16(map->m_lblk - ee_block);
>>> +             ext4_ext_store_pblock(&zero_ex, ext4_ext_pblock(ex));
>>> +             err = ext4_ext_zeroout(inode,&zero_ex);
> Hi,
> 
> Sorry, this is a bug.  We should zero out two extents [ee_block,
> map->m_lblk) and [map->m_lblk + map->m_len, ee_block + ee_len).
> Original ext4 code zero out whole extent ex.  Could you try to have a
> test which zero out whole extent like below.
>                err = ext4_ext_zeroout(inode,ex);
> 
> ext4_ext_zeroout() wait until all zero IOs are finished.  Slowness may
> come from two ext4_ext_zeroout()s.
> 
> BTW:  we can optimize ext4_ext_zeroout() by zeroing out pages in page
> cache and marking the pages dirty.  What's your opinion?
> 
> Thank you,
> Yongqiang.
> 
>> Hi again,
>>
>> I am working on trying to get the code to pass the fsx stress test.  If I add this snippet of code here, it seems to fix most of the tests, but it is very slow.  So this may not be the best solution yet.  But I thought if updated you with what I found we might be able to come up with a better solution.
>>
>>                 if((map->m_lblk + map->m_len)<  ee_block + ee_len){
>>                         zero_ex.ee_block = map->m_lblk + map->m_len;
>>                         zero_ex.ee_len = cpu_to_le16(ee_len - (map->m_lblk + map->m_len));
>>                         ext4_ext_store_pblock(&zero_ex, ext4_ext_pblock(ex)+(map->m_lblk - ee_block)+ map->m_len);
>>                         err = ext4_ext_zeroout(inode,&zero_ex);
>>                         if (err) {
>>                                 goto out;
>>                         }
>>                 }
>>
>> At the moment, the test fails because a portion of the test file does not get zeroed out when it should.  The punch hole code needs to flush the pages before it punches out any blocks.  It uses the filemap_write_and_wait_range routine, which eventually calls ext4_ext_convert_to_initialized.  The bug only appears to show up when flushing out the middle of an unwritten extent. The two halves on either side are supposed to get zeroed out or split off, but it looks like one of them was not getting zeroed out.  This snippet seems to fix that, but I'm not yet sure why it's so slow.
>>
>>>                err = ext4_ext_get_access(handle, inode, path + depth);
>>>                if (err)
>>>                        goto out;
>>> +             ext4_ext_mark_initialized(ex);
>>> +             ext4_ext_try_to_merge(inode, path, ex);
>>> +             err = ext4_ext_dirty(handle, inode, path + depth);
>>> +             goto out;
>>>        }
>>> +
>>>        /*
>>> +      * four cases:
>>> +      * 1. split the extent into three extents.
>>> +      * 2. split the extent into two extents, zeroout the first half.
>>> +      * 3. split the extent into two extents, zeroout the second half.
>>> +      * 4. split the extent into two extents with out zeroout.
>>>         */
>>> +     split_map.m_lblk = map->m_lblk;
>>> +     split_map.m_len = map->m_len;
>>> +
>>> +     if (allocated>    map->m_len) {
>>> +             if (allocated<= EXT4_EXT_ZERO_LEN&&
>>> +                 (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);
>>> +                     ext4_ext_store_pblock(&zero_ex,
>>> +                             ext4_ext_pblock(ex) + map->m_lblk - ee_block);
>>> +                     err = ext4_ext_zeroout(inode,&zero_ex);
>>>                        if (err)
>>>                                goto out;
>>> +                     split_map.m_lblk = map->m_lblk;
>>> +                     split_map.m_len = allocated;
>>> +             } else if ((map->m_lblk - ee_block + map->m_len<
>>> +                        EXT4_EXT_ZERO_LEN)&&
>>> +                        (EXT4_EXT_MAY_ZEROOUT&    split_flag)) {
>>> +                     /* case 2 */
>>> +                     if (map->m_lblk != ee_block) {
>>> +                             zero_ex.ee_block = ex->ee_block;
>>> +                             zero_ex.ee_len = cpu_to_le16(map->m_lblk -
>>> +                                                     ee_block);
>>> +                             ext4_ext_store_pblock(&zero_ex,
>>> +                                                   ext4_ext_pblock(ex));
>>> +                             err = ext4_ext_zeroout(inode,&zero_ex);
>>> +                             if (err)
>>> +                                     goto out;
>>> +                     }
>>> +
>>> +                     allocated = map->m_lblk - ee_block + map->m_len;
>>> +
>>> +                     split_map.m_lblk = ee_block;
>>> +                     split_map.m_len = allocated;
>>>                }
>>>        }
>>> +
>>> +     allocated = ext4_split_extent(handle, inode, path,
>>> +&split_map, split_flag, 0);
>>> +     if (allocated<    0)
>>> +             err = allocated;
>>> +
>>>    out:
>>>        return err ? err : allocated;
>>>    }
>>>
>>>    /*
>>> @@ -3096,15 +2902,11 @@ static int ext4_split_unwritten_extents(handle_t *handle,
>>>                                        struct ext4_ext_path *path,
>>>                                        int flags)
>>>    {
>>> -     struct ext4_extent *ex, newex, orig_ex;
>>> -     struct ext4_extent *ex1 = NULL;
>>> -     struct ext4_extent *ex2 = NULL;
>>> -     struct ext4_extent *ex3 = NULL;
>>> -     ext4_lblk_t ee_block, eof_block;
>>> -     unsigned int allocated, ee_len, depth;
>>> -     ext4_fsblk_t newblock;
>>> -     int err = 0;
>>> -     int may_zeroout;
>>> +     ext4_lblk_t eof_block;
>>> +     ext4_lblk_t ee_block;
>>> +     struct ext4_extent *ex;
>>> +     unsigned int ee_len;
>>> +     int split_flag = 0, depth;
>>>
>>>        ext_debug("ext4_split_unwritten_extents: inode %lu, logical"
>>>                "block %llu, max_blocks %u\n", inode->i_ino,
>>> @@ -3114,155 +2916,20 @@ static int ext4_split_unwritten_extents(handle_t *handle,
>>>                inode->i_sb->s_blocksize_bits;
>>>        if (eof_block<    map->m_lblk + map->m_len)
>>>                eof_block = map->m_lblk + map->m_len;
>>> -
>>> -     depth = ext_depth(inode);
>>> -     ex = path[depth].p_ext;
>>> -     ee_block = le32_to_cpu(ex->ee_block);
>>> -     ee_len = ext4_ext_get_actual_len(ex);
>>> -     allocated = ee_len - (map->m_lblk - ee_block);
>>> -     newblock = map->m_lblk - ee_block + ext4_ext_pblock(ex);
>>> -
>>> -     ex2 = ex;
>>> -     orig_ex.ee_block = ex->ee_block;
>>> -     orig_ex.ee_len   = cpu_to_le16(ee_len);
>>> -     ext4_ext_store_pblock(&orig_ex, ext4_ext_pblock(ex));
>>> -
>>>        /*
>>>         * It is safe to convert extent to initialized via explicit
>>>         * zeroout only if extent is fully insde i_size or new_size.
>>>         */
>>> -     may_zeroout = ee_block + ee_len<= eof_block;
>>> -
>>> -     /*
>>> -      * If the uninitialized extent begins at the same logical
>>> -      * block where the write begins, and the write completely
>>> -      * covers the extent, then we don't need to split it.
>>> -      */
>>> -     if ((map->m_lblk == ee_block)&&    (allocated<= map->m_len))
>>> -             return allocated;
>>> -
>>> -     err = ext4_ext_get_access(handle, inode, path + depth);
>>> -     if (err)
>>> -             goto out;
>>> -     /* ex1: ee_block to map->m_lblk - 1 : uninitialized */
>>> -     if (map->m_lblk>    ee_block) {
>>> -             ex1 = ex;
>>> -             ex1->ee_len = cpu_to_le16(map->m_lblk - ee_block);
>>> -             ext4_ext_mark_uninitialized(ex1);
>>> -             ex2 =&newex;
>>> -     }
>>> -     /*
>>> -      * for sanity, update the length of the ex2 extent before
>>> -      * we insert ex3, if ex1 is NULL. This is to avoid temporary
>>> -      * overlap of blocks.
>>> -      */
>>> -     if (!ex1&&    allocated>    map->m_len)
>>> -             ex2->ee_len = cpu_to_le16(map->m_len);
>>> -     /* ex3: to ee_block + ee_len : uninitialised */
>>> -     if (allocated>    map->m_len) {
>>> -             unsigned int newdepth;
>>> -             ex3 =&newex;
>>> -             ex3->ee_block = cpu_to_le32(map->m_lblk + map->m_len);
>>> -             ext4_ext_store_pblock(ex3, newblock + map->m_len);
>>> -             ex3->ee_len = cpu_to_le16(allocated - map->m_len);
>>> -             ext4_ext_mark_uninitialized(ex3);
>>> -             err = ext4_ext_insert_extent(handle, inode, path, ex3, flags);
>>> -             if (err == -ENOSPC&&    may_zeroout) {
>>> -                     err =  ext4_ext_zeroout(inode,&orig_ex);
>>> -                     if (err)
>>> -                             goto fix_extent_len;
>>> -                     /* update the extent length and mark as initialized */
>>> -                     ex->ee_block = orig_ex.ee_block;
>>> -                     ex->ee_len   = orig_ex.ee_len;
>>> -                     ext4_ext_store_pblock(ex, ext4_ext_pblock(&orig_ex));
>>> -                     ext4_ext_dirty(handle, inode, path + depth);
>>> -                     /* zeroed the full extent */
>>> -                     /* blocks available from map->m_lblk */
>>> -                     return allocated;
>>> -
>>> -             } else if (err)
>>> -                     goto fix_extent_len;
>>> -             /*
>>> -              * The depth, and hence eh&    ex might change
>>> -              * as part of the insert above.
>>> -              */
>>> -             newdepth = ext_depth(inode);
>>> -             /*
>>> -              * update the extent length after successful insert of the
>>> -              * split extent
>>> -              */
>>> -             ee_len -= ext4_ext_get_actual_len(ex3);
>>> -             orig_ex.ee_len = cpu_to_le16(ee_len);
>>> -             may_zeroout = ee_block + ee_len<= eof_block;
>>> -
>>> -             depth = newdepth;
>>> -             ext4_ext_drop_refs(path);
>>> -             path = ext4_ext_find_extent(inode, map->m_lblk, path);
>>> -             if (IS_ERR(path)) {
>>> -                     err = PTR_ERR(path);
>>> -                     goto out;
>>> -             }
>>> -             ex = path[depth].p_ext;
>>> -             if (ex2 !=&newex)
>>> -                     ex2 = ex;
>>> -
>>> -             err = ext4_ext_get_access(handle, inode, path + depth);
>>> -             if (err)
>>> -                     goto out;
>>> +     depth = ext_depth(inode);
>>> +     ex = path[depth].p_ext;
>>> +     ee_block = le32_to_cpu(ex->ee_block);
>>> +     ee_len = ext4_ext_get_actual_len(ex);
>>>
>>> -             allocated = map->m_len;
>>> -     }
>>> -     /*
>>> -      * If there was a change of depth as part of the
>>> -      * insertion of ex3 above, we need to update the length
>>> -      * of the ex1 extent again here
>>> -      */
>>> -     if (ex1&&    ex1 != ex) {
>>> -             ex1 = ex;
>>> -             ex1->ee_len = cpu_to_le16(map->m_lblk - ee_block);
>>> -             ext4_ext_mark_uninitialized(ex1);
>>> -             ex2 =&newex;
>>> -     }
>>> -     /*
>>> -      * ex2: map->m_lblk to map->m_lblk + map->m_len-1 : to be written
>>> -      * using direct I/O, uninitialised still.
>>> -      */
>>> -     ex2->ee_block = cpu_to_le32(map->m_lblk);
>>> -     ext4_ext_store_pblock(ex2, newblock);
>>> -     ex2->ee_len = cpu_to_le16(allocated);
>>> -     ext4_ext_mark_uninitialized(ex2);
>>> -     if (ex2 != ex)
>>> -             goto insert;
>>> -     /* Mark modified extent as dirty */
>>> -     err = ext4_ext_dirty(handle, inode, path + depth);
>>> -     ext_debug("out here\n");
>>> -     goto out;
>>> -insert:
>>> -     err = ext4_ext_insert_extent(handle, inode, path,&newex, flags);
>>> -     if (err == -ENOSPC&&    may_zeroout) {
>>> -             err =  ext4_ext_zeroout(inode,&orig_ex);
>>> -             if (err)
>>> -                     goto fix_extent_len;
>>> -             /* update the extent length and mark as initialized */
>>> -             ex->ee_block = orig_ex.ee_block;
>>> -             ex->ee_len   = orig_ex.ee_len;
>>> -             ext4_ext_store_pblock(ex, ext4_ext_pblock(&orig_ex));
>>> -             ext4_ext_dirty(handle, inode, path + depth);
>>> -             /* zero out the first half */
>>> -             return allocated;
>>> -     } else if (err)
>>> -             goto fix_extent_len;
>>> -out:
>>> -     ext4_ext_show_leaf(inode, path);
>>> -     return err ? err : allocated;
>>> +     split_flag |= ee_block + ee_len<= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;
>>> +     split_flag |= EXT4_EXT_MARK_UNINIT2;
>>>
>>> -fix_extent_len:
>>> -     ex->ee_block = orig_ex.ee_block;
>>> -     ex->ee_len   = orig_ex.ee_len;
>>> -     ext4_ext_store_pblock(ex, ext4_ext_pblock(&orig_ex));
>>> -     ext4_ext_mark_uninitialized(ex);
>>> -     ext4_ext_dirty(handle, inode, path + depth);
>>> -     return err;
>>> +     flags |= EXT4_GET_BLOCKS_PRE_IO;
>>> +     return ext4_split_extent(handle, inode, path, map, split_flag, flags);
>>>    }
>>>
>>>    static int ext4_convert_unwritten_extents_endio(handle_t *handle,
>>
>>
> 
> 
> 

Hi there,

That seems to have done the trick.  Here is a patch that you can apply to your last patch:

Signed-off-by: Allison Henderson <achender@us.ibm.com>
---
:100644 100644 ee2dda3... 00e9e4f... M	fs/ext4/extents.c
 fs/ext4/extents.c |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)
diff mbox

Patch

diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
index ee2dda3..00e9e4f 100644
--- a/fs/ext4/extents.c
+++ b/fs/ext4/extents.c
@@ -2803,10 +2803,7 @@  static int ext4_ext_convert_to_initialized(handle_t *handle,
 	/* If extent has less than 2*EXT4_EXT_ZERO_LEN zerout directly */
 	if (ee_len <= 2*EXT4_EXT_ZERO_LEN &&
 	    (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
-		zero_ex.ee_block = ex->ee_block;
-		zero_ex.ee_len = cpu_to_le16(map->m_lblk - ee_block);
-		ext4_ext_store_pblock(&zero_ex, ext4_ext_pblock(ex));
-		err = ext4_ext_zeroout(inode, &zero_ex);
+		err = ext4_ext_zeroout(inode, ex);
 		if (err)
 			goto out;