Lines Matching refs:fs_info
53 #define BTRFS_LEAF_DATA_SIZE(fs_info) \ argument
54 (__BTRFS_LEAF_DATA_SIZE(fs_info->nodesize))
85 struct btrfs_fs_info *fs_info; member
140 BUG_ON(eb->fs_info && eb->fs_info->nodesize != eb->len); in BTRFS_NODEPTRS_PER_EXTENT_BUFFER()
1158 #define btrfs_fs_incompat(fs_info, opt) \ argument
1159 __btrfs_fs_incompat((fs_info), BTRFS_FEATURE_INCOMPAT_##opt)
1161 static inline bool __btrfs_fs_incompat(struct btrfs_fs_info *fs_info, u64 flag) in __btrfs_fs_incompat() argument
1164 disk_super = fs_info->super_copy; in __btrfs_fs_incompat()
1168 #define btrfs_fs_compat_ro(fs_info, opt) \ argument
1169 __btrfs_fs_compat_ro((fs_info), BTRFS_FEATURE_COMPAT_RO_##opt)
1171 static inline int __btrfs_fs_compat_ro(struct btrfs_fs_info *fs_info, u64 flag) in __btrfs_fs_compat_ro() argument
1174 disk_super = fs_info->super_copy; in __btrfs_fs_compat_ro()
1243 btrfs_check_node(struct btrfs_fs_info *fs_info,
1246 btrfs_check_leaf(struct btrfs_fs_info *fs_info,
1248 struct extent_buffer *read_node_slot(struct btrfs_fs_info *fs_info,
1253 int btrfs_next_sibling_tree_block(struct btrfs_fs_info *fs_info,
1265 return btrfs_next_sibling_tree_block(root->fs_info, path); in btrfs_next_leaf()