• F
    Btrfs: avoid premature -ENOMEM in clear_extent_bit() · c7bc6319
    Filipe Manana 提交于
    We try to allocate an extent state structure before acquiring the extent
    state tree's spinlock as we might need a new one later and therefore avoid
    doing later an atomic allocation while holding the tree's spinlock. However
    we returned -ENOMEM if that initial non-atomic allocation failed, which is
    a bit excessive since we might end up not needing the pre-allocated extent
    state at all - for the case where the tree doesn't have any extent states
    that cover the input range and cover too any other range. Therefore don't
    return -ENOMEM if that pre-allocation fails.
    Signed-off-by: NFilipe Manana <fdmanana@suse.com>
    Signed-off-by: NChris Mason <clm@fb.com>
    c7bc6319
extent_io.c 139.9 KB