1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19#ifndef __BTRFS_BACKREF__
20#define __BTRFS_BACKREF__
21
22#include "ioctl.h"
23#include "ulist.h"
24#include "extent_io.h"
25
26#define BTRFS_BACKREF_SEARCH_COMMIT_ROOT ((struct btrfs_trans_handle *)0)
27
28struct inode_fs_paths {
29 struct btrfs_path *btrfs_path;
30 struct btrfs_root *fs_root;
31 struct btrfs_data_container *fspath;
32};
33
34typedef int (iterate_extent_inodes_t)(u64 inum, u64 offset, u64 root,
35 void *ctx);
36typedef int (iterate_irefs_t)(u64 parent, struct btrfs_inode_ref *iref,
37 struct extent_buffer *eb, void *ctx);
38
39int inode_item_info(u64 inum, u64 ioff, struct btrfs_root *fs_root,
40 struct btrfs_path *path);
41
42int extent_from_logical(struct btrfs_fs_info *fs_info, u64 logical,
43 struct btrfs_path *path, struct btrfs_key *found_key);
44
45int tree_backref_for_extent(unsigned long *ptr, struct extent_buffer *eb,
46 struct btrfs_extent_item *ei, u32 item_size,
47 u64 *out_root, u8 *out_level);
48
49int iterate_extent_inodes(struct btrfs_fs_info *fs_info,
50 u64 extent_item_objectid,
51 u64 extent_offset, int search_commit_root,
52 iterate_extent_inodes_t *iterate, void *ctx);
53
54int iterate_inodes_from_logical(u64 logical, struct btrfs_fs_info *fs_info,
55 struct btrfs_path *path,
56 iterate_extent_inodes_t *iterate, void *ctx);
57
58int paths_from_inode(u64 inum, struct inode_fs_paths *ipath);
59
60int btrfs_find_all_roots(struct btrfs_trans_handle *trans,
61 struct btrfs_fs_info *fs_info, u64 bytenr,
62 u64 time_seq, struct ulist **roots);
63char *btrfs_iref_to_path(struct btrfs_root *fs_root, struct btrfs_path *path,
64 struct btrfs_inode_ref *iref, struct extent_buffer *eb,
65 u64 parent, char *dest, u32 size);
66
67struct btrfs_data_container *init_data_container(u32 total_bytes);
68struct inode_fs_paths *init_ipath(s32 total_bytes, struct btrfs_root *fs_root,
69 struct btrfs_path *path);
70void free_ipath(struct inode_fs_paths *ipath);
71
72#endif
73