btrfs: add specific helper for range bit test exists
authorDavid Sterba <dsterba@suse.com>
Mon, 11 Sep 2023 23:09:23 +0000 (01:09 +0200)
committerDavid Sterba <dsterba@suse.com>
Thu, 12 Oct 2023 14:44:14 +0000 (16:44 +0200)
commit99be1a66e1fe6c62fbd7c1b0c50ea38c33ffdd5a
tree4d83e0ee8336713d3455a43aac36159cb2d5e74b
parent6422b4cd959d4b796146c4b7746c26eb17783579
btrfs: add specific helper for range bit test exists

The existing helper test_range_bit works in two ways, checks if the whole
range contains all the bits, or stop on the first occurrence.  By adding
a specific helper for the latter case, the inner loop can be simplified
and contains fewer conditionals, making it a bit faster.

There's no caller that uses the cached state pointer so this reduces the
argument count further.

Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/defrag.c
fs/btrfs/extent-io-tree.c
fs/btrfs/extent-io-tree.h
fs/btrfs/extent_io.c
fs/btrfs/inode.c