diff options
Diffstat (limited to 'fs/btrfs/ctree.c')
-rw-r--r-- | fs/btrfs/ctree.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c index a17d9991c333..de6de8e60b46 100644 --- a/fs/btrfs/ctree.c +++ b/fs/btrfs/ctree.c | |||
@@ -41,12 +41,7 @@ static void del_ptr(struct btrfs_root *root, struct btrfs_path *path, | |||
41 | int level, int slot); | 41 | int level, int slot); |
42 | static void tree_mod_log_free_eb(struct btrfs_fs_info *fs_info, | 42 | static void tree_mod_log_free_eb(struct btrfs_fs_info *fs_info, |
43 | struct extent_buffer *eb); | 43 | struct extent_buffer *eb); |
44 | struct extent_buffer *read_old_tree_block(struct btrfs_root *root, u64 bytenr, | 44 | static int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path); |
45 | u32 blocksize, u64 parent_transid, | ||
46 | u64 time_seq); | ||
47 | struct extent_buffer *btrfs_find_old_tree_block(struct btrfs_root *root, | ||
48 | u64 bytenr, u32 blocksize, | ||
49 | u64 time_seq); | ||
50 | 45 | ||
51 | struct btrfs_path *btrfs_alloc_path(void) | 46 | struct btrfs_path *btrfs_alloc_path(void) |
52 | { | 47 | { |
@@ -208,7 +203,7 @@ struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root) | |||
208 | * tree until you end up with a lock on the root. A locked buffer | 203 | * tree until you end up with a lock on the root. A locked buffer |
209 | * is returned, with a reference held. | 204 | * is returned, with a reference held. |
210 | */ | 205 | */ |
211 | struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root) | 206 | static struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root) |
212 | { | 207 | { |
213 | struct extent_buffer *eb; | 208 | struct extent_buffer *eb; |
214 | 209 | ||