hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
kernel/fs/btrfs/ref-verify.h
....@@ -9,9 +9,8 @@
99 #ifdef CONFIG_BTRFS_FS_REF_VERIFY
1010 int btrfs_build_ref_tree(struct btrfs_fs_info *fs_info);
1111 void btrfs_free_ref_cache(struct btrfs_fs_info *fs_info);
12
-int btrfs_ref_tree_mod(struct btrfs_root *root, u64 bytenr, u64 num_bytes,
13
- u64 parent, u64 ref_root, u64 owner, u64 offset,
14
- int action);
12
+int btrfs_ref_tree_mod(struct btrfs_fs_info *fs_info,
13
+ struct btrfs_ref *generic_ref);
1514 void btrfs_free_ref_tree_range(struct btrfs_fs_info *fs_info, u64 start,
1615 u64 len);
1716
....@@ -30,9 +29,8 @@
3029 {
3130 }
3231
33
-static inline int btrfs_ref_tree_mod(struct btrfs_root *root, u64 bytenr,
34
- u64 num_bytes, u64 parent, u64 ref_root,
35
- u64 owner, u64 offset, int action)
32
+static inline int btrfs_ref_tree_mod(struct btrfs_fs_info *fs_info,
33
+ struct btrfs_ref *generic_ref)
3634 {
3735 return 0;
3836 }