• Josef Bacik's avatar
    btrfs: reserve extra space for the free space tree · c18e3235
    Josef Bacik authored
    Filipe reported a problem where sometimes he'd get an ENOSPC abort when
    running delayed refs with generic/619 and the free space tree enabled.
    This is partly because we do not reserve space for modifying the free
    space tree, nor do we have a block rsv associated with that tree.
    
    The delayed_refs_rsv tracks the amount of space required to run delayed
    refs.  This means 1 modification means 1 change to the extent root.
    With the free space tree this turns into 2 changes, because modifying 1
    extent means updating the extent tree and potentially updating the free
    space tree to either remove that entry or add the free space.  Thus if
    we have the FST enabled, simply double the reservation size for our
    modification.
    Reviewed-by: default avatarNikolay Borisov <nborisov@suse.com>
    Signed-off-by: default avatarJosef Bacik <josef@toxicpanda.com>
    Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
    c18e3235
block-rsv.c 16.6 KB