diff options
author | Filipe Manana <fdmanana@suse.com> | 2025-07-08 16:23:02 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2025-07-22 00:09:22 +0200 |
commit | 11ad7983c2eeb71a0b25b5f7aca9831fbed9ea57 (patch) | |
tree | 65cf7f07c0ad8a1fba1196f1864115f482424601 /fs/btrfs/file.c | |
parent | 6599716de2d68ab7b3c0429221deca306dbda878 (diff) |
btrfs: use variable for io_tree when clearing range in btrfs_page_mkwrite()
We have the inode's io_tree already stored in a local variable, so use it
instead of grabbing it again in the call to btrfs_clear_extent_bit().
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/file.c')
-rw-r--r-- | fs/btrfs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c index cb07274d4126..e11b1733e3ae 100644 --- a/fs/btrfs/file.c +++ b/fs/btrfs/file.c @@ -1950,7 +1950,7 @@ again: * clear any delalloc bits within this page range since we have to * reserve data&meta space before lock_page() (see above comments). */ - btrfs_clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, end, + btrfs_clear_extent_bit(io_tree, page_start, end, EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, &cached_state); |