]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
btrfs: use btrfs_is_testing() everywhere
authorDavid Sterba <dsterba@suse.com>
Wed, 17 Apr 2024 22:47:13 +0000 (00:47 +0200)
committerDavid Sterba <dsterba@suse.com>
Tue, 7 May 2024 19:31:07 +0000 (21:31 +0200)
There are open coded tests of BTRFS_FS_STATE_DUMMY_FS_INFO and we have a
wrapper for that that's a compile-time constant when self-tests are not
built in. As this is only for development we can save some bytes and
conditions on release configs by using the helper in the remaining
cases.

Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/disk-io.c
fs/btrfs/sysfs.c
fs/btrfs/tests/btrfs-tests.c
fs/btrfs/tree-checker.c

index 3606fb18531e5e17e7f4948882832e9711dcd47f..e0bdf3ed2449001c0932435ca6f48a71523ad78d 100644 (file)
@@ -646,7 +646,7 @@ struct extent_buffer *read_tree_block(struct btrfs_fs_info *fs_info, u64 bytenr,
 static void __setup_root(struct btrfs_root *root, struct btrfs_fs_info *fs_info,
                         u64 objectid)
 {
-       bool dummy = test_bit(BTRFS_FS_STATE_DUMMY_FS_INFO, &fs_info->fs_state);
+       bool dummy = btrfs_is_testing(fs_info);
 
        memset(&root->root_key, 0, sizeof(root->root_key));
        memset(&root->root_item, 0, sizeof(root->root_item));
@@ -1075,7 +1075,7 @@ static struct btrfs_root *read_tree_root_path(struct btrfs_root *tree_root,
         * For real fs, and not log/reloc trees, root owner must
         * match its root node owner
         */
-       if (!test_bit(BTRFS_FS_STATE_DUMMY_FS_INFO, &fs_info->fs_state) &&
+       if (!btrfs_is_testing(fs_info) &&
            btrfs_root_id(root) != BTRFS_TREE_LOG_OBJECTID &&
            btrfs_root_id(root) != BTRFS_TREE_RELOC_OBJECTID &&
            btrfs_root_id(root) != btrfs_header_owner(root->node)) {
index c6387a8ddb940f733f4df979ad9456bf7a39315a..af545b6b1190e3e9b28284da3b5b0873e4bbabb4 100644 (file)
@@ -2339,7 +2339,7 @@ int btrfs_sysfs_add_one_qgroup(struct btrfs_fs_info *fs_info,
        struct kobject *qgroups_kobj = fs_info->qgroups_kobj;
        int ret;
 
-       if (test_bit(BTRFS_FS_STATE_DUMMY_FS_INFO, &fs_info->fs_state))
+       if (btrfs_is_testing(fs_info))
                return 0;
        if (qgroup->kobj.state_initialized)
                return 0;
@@ -2360,7 +2360,7 @@ void btrfs_sysfs_del_qgroups(struct btrfs_fs_info *fs_info)
        struct btrfs_qgroup *qgroup;
        struct btrfs_qgroup *next;
 
-       if (test_bit(BTRFS_FS_STATE_DUMMY_FS_INFO, &fs_info->fs_state))
+       if (btrfs_is_testing(fs_info))
                return;
 
        rbtree_postorder_for_each_entry_safe(qgroup, next,
@@ -2381,7 +2381,7 @@ int btrfs_sysfs_add_qgroups(struct btrfs_fs_info *fs_info)
        struct btrfs_qgroup *next;
        int ret = 0;
 
-       if (test_bit(BTRFS_FS_STATE_DUMMY_FS_INFO, &fs_info->fs_state))
+       if (btrfs_is_testing(fs_info))
                return 0;
 
        ASSERT(fsid_kobj);
@@ -2413,7 +2413,7 @@ out:
 void btrfs_sysfs_del_one_qgroup(struct btrfs_fs_info *fs_info,
                                struct btrfs_qgroup *qgroup)
 {
-       if (test_bit(BTRFS_FS_STATE_DUMMY_FS_INFO, &fs_info->fs_state))
+       if (btrfs_is_testing(fs_info))
                return;
 
        if (qgroup->kobj.state_initialized) {
index 709c6cc9706afe343a8a634129a58967e86effd9..dce0387ef155b6ea72c0f62585fedd360d2219d5 100644 (file)
@@ -160,8 +160,7 @@ void btrfs_free_dummy_fs_info(struct btrfs_fs_info *fs_info)
        if (!fs_info)
                return;
 
-       if (WARN_ON(!test_bit(BTRFS_FS_STATE_DUMMY_FS_INFO,
-                             &fs_info->fs_state)))
+       if (WARN_ON(!btrfs_is_testing(fs_info)))
                return;
 
        test_mnt->mnt_sb->s_fs_info = NULL;
index 32604e9b31c3ee99a97b3ed7bfc4486225e3c213..a2c3651a3d8fced4ce958d145c0f0e57b34ce12c 100644 (file)
@@ -2021,7 +2021,7 @@ int btrfs_check_eb_owner(const struct extent_buffer *eb, u64 root_owner)
         * Skip dummy fs, as selftests don't create unique ebs for each dummy
         * root.
         */
-       if (test_bit(BTRFS_FS_STATE_DUMMY_FS_INFO, &eb->fs_info->fs_state))
+       if (btrfs_is_testing(eb->fs_info))
                return 0;
        /*
         * There are several call sites (backref walking, qgroup, and data