summaryrefslogtreecommitdiff
path: root/fs/btrfs/relocation.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2023-09-08 02:09:27 +0300
committerDavid Sterba <dsterba@suse.com>2023-10-12 17:44:04 +0300
commit203f6a8772fc631a946525decb5df6d98da3730d (patch)
tree9cd1d86d6f69b7a53cb1cf77cb477fde55a090c4 /fs/btrfs/relocation.c
parent9580503bcb6e1169c72f2cceb80af4c65d17b1da (diff)
downloadlinux-203f6a8772fc631a946525decb5df6d98da3730d.tar.xz
btrfs: drop __must_check annotations
Drop all __must_check annotations because they're used in random functions and not consistently. All errors should be handled. Reviewed-by: Qu Wenruo <wqu@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/relocation.c')
-rw-r--r--fs/btrfs/relocation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/relocation.c b/fs/btrfs/relocation.c
index 9951a0caf5bb..ad67a88f2bbf 100644
--- a/fs/btrfs/relocation.c
+++ b/fs/btrfs/relocation.c
@@ -631,7 +631,7 @@ fail:
/*
* helper to add 'address of tree root -> reloc tree' mapping
*/
-static int __must_check __add_reloc_root(struct btrfs_root *root)
+static int __add_reloc_root(struct btrfs_root *root)
{
struct btrfs_fs_info *fs_info = root->fs_info;
struct rb_node *rb_node;