• Qu Wenruo's avatar
    btrfs: make subpage metadata write path call its own endio functions · fa04c165
    Qu Wenruo authored
    For subpage metadata, we're reusing two functions for subpage metadata
    write:
    
    - end_bio_extent_buffer_writepage()
    - write_one_eb()
    
    But the truth is, for subpage we just call
    end_bio_subpage_eb_writepage() without using any bit in
    end_bio_extent_buffer_writepage().
    
    For write_one_eb(), it's pretty similar, but with a small part of code
    reused.
    
    There is really no need to pollute the existing code path if we're not
    really using most of them.
    
    So this patch will do the following change to separate the subpage
    metadata write path from regular write path by:
    
    - Use end_bio_subpage_eb_writepage() directly as endio in
      write_one_subpage_eb()
    - Directly call write_one_subpage_eb() in submit_eb_subpage()
    Signed-off-by: default avatarQu Wenruo <wqu@suse.com>
    Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
    Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
    fa04c165
extent_io.c 186 KB