diff options
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r-- | fs/btrfs/ctree.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index 5ff74282a620..5611f8e035a4 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h | |||
@@ -606,6 +606,7 @@ struct btrfs_fs_info { | |||
606 | struct btrfs_root *tree_root; | 606 | struct btrfs_root *tree_root; |
607 | struct btrfs_root *chunk_root; | 607 | struct btrfs_root *chunk_root; |
608 | struct btrfs_root *dev_root; | 608 | struct btrfs_root *dev_root; |
609 | struct btrfs_root *fs_root; | ||
609 | 610 | ||
610 | /* the log root tree is a directory of all the other log roots */ | 611 | /* the log root tree is a directory of all the other log roots */ |
611 | struct btrfs_root *log_root_tree; | 612 | struct btrfs_root *log_root_tree; |
@@ -758,7 +759,6 @@ struct btrfs_root { | |||
758 | struct btrfs_root_item root_item; | 759 | struct btrfs_root_item root_item; |
759 | struct btrfs_key root_key; | 760 | struct btrfs_key root_key; |
760 | struct btrfs_fs_info *fs_info; | 761 | struct btrfs_fs_info *fs_info; |
761 | struct inode *inode; | ||
762 | struct extent_io_tree dirty_log_pages; | 762 | struct extent_io_tree dirty_log_pages; |
763 | 763 | ||
764 | struct kobject root_kobj; | 764 | struct kobject root_kobj; |
@@ -1876,6 +1876,8 @@ int btrfs_csum_truncate(struct btrfs_trans_handle *trans, | |||
1876 | #define PageChecked PageFsMisc | 1876 | #define PageChecked PageFsMisc |
1877 | #endif | 1877 | #endif |
1878 | 1878 | ||
1879 | struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry); | ||
1880 | int btrfs_set_inode_index(struct inode *dir, u64 *index); | ||
1879 | int btrfs_unlink_inode(struct btrfs_trans_handle *trans, | 1881 | int btrfs_unlink_inode(struct btrfs_trans_handle *trans, |
1880 | struct btrfs_root *root, | 1882 | struct btrfs_root *root, |
1881 | struct inode *dir, struct inode *inode, | 1883 | struct inode *dir, struct inode *inode, |
@@ -1896,9 +1898,6 @@ int btrfs_create_subvol_root(struct btrfs_root *new_root, struct dentry *dentry, | |||
1896 | struct btrfs_trans_handle *trans, u64 new_dirid, | 1898 | struct btrfs_trans_handle *trans, u64 new_dirid, |
1897 | struct btrfs_block_group_cache *block_group); | 1899 | struct btrfs_block_group_cache *block_group); |
1898 | 1900 | ||
1899 | void btrfs_invalidate_dcache_root(struct btrfs_root *root, char *name, | ||
1900 | int namelen); | ||
1901 | |||
1902 | int btrfs_merge_bio_hook(struct page *page, unsigned long offset, | 1901 | int btrfs_merge_bio_hook(struct page *page, unsigned long offset, |
1903 | size_t size, struct bio *bio, unsigned long bio_flags); | 1902 | size_t size, struct bio *bio, unsigned long bio_flags); |
1904 | 1903 | ||