aboutsummaryrefslogtreecommitdiff
path: root/fs/btrfs
diff options
context:
space:
mode:
authorGravatar Filipe Manana <fdmanana@suse.com> 2024-04-17 16:06:13 +0100
committerGravatar David Sterba <dsterba@suse.com> 2024-05-07 21:31:07 +0200
commit905a95f3dd25abba64cad3e7a96947fcb9bf7006 (patch)
tree93bb725dcdd601eb33e789e9a0c3ac66065d2296 /fs/btrfs
parentbtrfs: make try_release_extent_mapping() return a bool (diff)
downloadlinux-905a95f3dd25abba64cad3e7a96947fcb9bf7006.tar.gz
linux-905a95f3dd25abba64cad3e7a96947fcb9bf7006.tar.bz2
linux-905a95f3dd25abba64cad3e7a96947fcb9bf7006.zip
btrfs: initialize delayed inodes xarray without GFP_ATOMIC
There's no need to initialize the delayed inodes xarray with a GFP_ATOMIC flag because that actually does nothing on the xarray operations. That was needed for radix trees, but for xarrays the allocation flags are passed as the last argument to xa_store() (which we are using correctly). So initialize the delayed inodes xarray with a simple xa_init(). Reviewed-by: Josef Bacik <josef@toxicpanda.com> 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')
-rw-r--r--fs/btrfs/disk-io.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index c2dc88f909b0..3606fb18531e 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -663,8 +663,7 @@ static void __setup_root(struct btrfs_root *root, struct btrfs_fs_info *fs_info,
root->nr_delalloc_inodes = 0;
root->nr_ordered_extents = 0;
root->inode_tree = RB_ROOT;
- /* GFP flags are compatible with XA_FLAGS_*. */
- xa_init_flags(&root->delayed_nodes, GFP_ATOMIC);
+ xa_init(&root->delayed_nodes);
btrfs_init_root_block_rsv(root);