OSDN Git Service

btrfs: only track ref_heads in delayed_ref_updates
authorJosef Bacik <jbacik@fb.com>
Mon, 3 Dec 2018 15:20:32 +0000 (10:20 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Dec 2019 21:24:49 +0000 (22:24 +0100)
commit24b25bb51e0fd03c254665abe429b642b21d9082
tree0037255939aeaba63726fad49ae13bbc44ad3451
parentde92215b3d14ab8ec4a93bb3187dd43a3e5999c3
btrfs: only track ref_heads in delayed_ref_updates

[ Upstream commit 158ffa364bf723fa1ef128060646d23dc3942994 ]

We use this number to figure out how many delayed refs to run, but
__btrfs_run_delayed_refs really only checks every time we need a new
delayed ref head, so we always run at least one ref head completely no
matter what the number of items on it.  Fix the accounting to only be
adjusted when we add/remove a ref head.

In addition to using this number to limit the number of delayed refs
run, a future patch is also going to use it to calculate the amount of
space required for delayed refs space reservation.

Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Signed-off-by: Josef Bacik <jbacik@fb.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/btrfs/delayed-ref.c