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>
Thu, 5 Dec 2019 08:20:23 +0000 (09:20 +0100)
commitdf3a72c9608ca74e9add4ac781a3613534bc585c
tree105cb5c6982d05d16ca2ee0351e4c2378ccbfea2
parente9a7415a347d8e7b0dbedc39cd1791e42abee74b
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