Btrfs: avoid returning -ENOMEM in convert_extent_bit() too early
We try to allocate an extent state before acquiring the tree's spinlock just in case we end up needing to split an existing extent state into two. If that allocation failed, we would return -ENOMEM. However, our only single caller (transaction/log commit code), passes in an extent state that was cached from a call to find_first_extent_bit() and that has a very high chance to match exactly the input range (always true for a transaction commit and very often, but not always, true for a log commit) - in this case we end up not needing at all that initial extent state used for an eventual split. Therefore just don't return -ENOMEM if we can't allocate the temporary extent state, since we might not need it at all, and if we end up needing one, we'll do it later anyway. Signed-off-by: Filipe Manana <fdmanana@suse.com> Signed-off-by: Chris Mason <clm@fb.com>
This commit is contained in:
Родитель
e38e2ed701
Коммит
c8fd3de79f
|
@ -1066,13 +1066,21 @@ int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
|
||||||
int err = 0;
|
int err = 0;
|
||||||
u64 last_start;
|
u64 last_start;
|
||||||
u64 last_end;
|
u64 last_end;
|
||||||
|
bool first_iteration = true;
|
||||||
|
|
||||||
btrfs_debug_check_extent_io_range(tree, start, end);
|
btrfs_debug_check_extent_io_range(tree, start, end);
|
||||||
|
|
||||||
again:
|
again:
|
||||||
if (!prealloc && (mask & __GFP_WAIT)) {
|
if (!prealloc && (mask & __GFP_WAIT)) {
|
||||||
|
/*
|
||||||
|
* Best effort, don't worry if extent state allocation fails
|
||||||
|
* here for the first iteration. We might have a cached state
|
||||||
|
* that matches exactly the target range, in which case no
|
||||||
|
* extent state allocations are needed. We'll only know this
|
||||||
|
* after locking the tree.
|
||||||
|
*/
|
||||||
prealloc = alloc_extent_state(mask);
|
prealloc = alloc_extent_state(mask);
|
||||||
if (!prealloc)
|
if (!prealloc && !first_iteration)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1242,6 +1250,7 @@ search_again:
|
||||||
spin_unlock(&tree->lock);
|
spin_unlock(&tree->lock);
|
||||||
if (mask & __GFP_WAIT)
|
if (mask & __GFP_WAIT)
|
||||||
cond_resched();
|
cond_resched();
|
||||||
|
first_iteration = false;
|
||||||
goto again;
|
goto again;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче