aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/ctree.h
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2018-08-17 17:38:12 +0200
committerDavid Sterba <dsterba@suse.com>2018-10-15 17:23:34 +0200
commit57ec5fb478a3c27073ebc8f8f47a91eaaa083c13 (patch)
tree5be8d026bac560285bf86402766693fa8ca2d809 /fs/btrfs/ctree.h
parentbtrfs: tests: add separate stub for find_lock_delalloc_range (diff)
downloadlinux-dev-57ec5fb478a3c27073ebc8f8f47a91eaaa083c13.tar.xz
linux-dev-57ec5fb478a3c27073ebc8f8f47a91eaaa083c13.zip
btrfs: tests: move testing members of struct btrfs_root to the end
The data used only for tests are better placed at the end of the structure so that they don't change the structure layout. All new members of btrfs_root should be placed before. Reviewed-by: Omar Sandoval <osandov@fb.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r--fs/btrfs/ctree.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h
index f4d5eeb2be20..0e637cfc90d1 100644
--- a/fs/btrfs/ctree.h
+++ b/fs/btrfs/ctree.h
@@ -1202,11 +1202,6 @@ struct btrfs_root {
u64 highest_objectid;
-#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
- /* only used with CONFIG_BTRFS_FS_RUN_SANITY_TESTS is enabled */
- u64 alloc_bytenr;
-#endif
-
u64 defrag_trans_start;
struct btrfs_key defrag_progress;
struct btrfs_key defrag_max;
@@ -1279,6 +1274,10 @@ struct btrfs_root {
spinlock_t qgroup_meta_rsv_lock;
u64 qgroup_meta_rsv_pertrans;
u64 qgroup_meta_rsv_prealloc;
+
+#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
+ u64 alloc_bytenr;
+#endif
};
struct btrfs_file_private {