1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19#ifndef __TREE_LOG_
20#define __TREE_LOG_
21
22int btrfs_sync_log(struct btrfs_trans_handle *trans,
23 struct btrfs_root *root);
24int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root);
25int btrfs_recover_log_trees(struct btrfs_root *tree_root);
26int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans,
27 struct btrfs_root *root, struct dentry *dentry);
28int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
29 struct btrfs_root *root,
30 const char *name, int name_len,
31 struct inode *dir, u64 index);
32int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans,
33 struct btrfs_root *root,
34 const char *name, int name_len,
35 struct inode *inode, u64 dirid);
36int btrfs_join_running_log_trans(struct btrfs_root *root);
37int btrfs_end_log_trans(struct btrfs_root *root);
38int btrfs_pin_log_trans(struct btrfs_root *root);
39int btrfs_log_inode_parent(struct btrfs_trans_handle *trans,
40 struct btrfs_root *root, struct inode *inode,
41 struct dentry *parent, int exists_only);
42void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans,
43 struct inode *dir, struct inode *inode,
44 int for_rename);
45int btrfs_log_new_name(struct btrfs_trans_handle *trans,
46 struct inode *inode, struct inode *old_dir,
47 struct dentry *parent);
48#endif
49