blob: 9c41fbac30091f39bad52a3f21ebf6e931db364b [file] [log] [blame]
Jan Schmidta542ad12011-06-13 19:52:59 +02001/*
2 * Copyright (C) 2011 STRATO. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#ifndef __BTRFS_BACKREF__
20#define __BTRFS_BACKREF__
21
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000022#include <linux/btrfs.h>
Jan Schmidt8da6d582011-11-23 18:55:04 +010023#include "ulist.h"
Alexander Block91cb9162012-06-03 14:23:23 +020024#include "extent_io.h"
Jan Schmidta542ad12011-06-13 19:52:59 +020025
26struct inode_fs_paths {
27 struct btrfs_path *btrfs_path;
28 struct btrfs_root *fs_root;
29 struct btrfs_data_container *fspath;
30};
31
32typedef int (iterate_extent_inodes_t)(u64 inum, u64 offset, u64 root,
33 void *ctx);
Jan Schmidta542ad12011-06-13 19:52:59 +020034
Jan Schmidta542ad12011-06-13 19:52:59 +020035int extent_from_logical(struct btrfs_fs_info *fs_info, u64 logical,
Liu Bo69917e42012-09-07 20:01:28 -060036 struct btrfs_path *path, struct btrfs_key *found_key,
37 u64 *flags);
Jan Schmidta542ad12011-06-13 19:52:59 +020038
39int tree_backref_for_extent(unsigned long *ptr, struct extent_buffer *eb,
Liu Bo6eda71d2014-06-09 10:54:07 +080040 struct btrfs_key *key, struct btrfs_extent_item *ei,
41 u32 item_size, u64 *out_root, u8 *out_level);
Jan Schmidta542ad12011-06-13 19:52:59 +020042
43int iterate_extent_inodes(struct btrfs_fs_info *fs_info,
Jan Schmidta542ad12011-06-13 19:52:59 +020044 u64 extent_item_objectid,
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +010045 u64 extent_offset, int search_commit_root,
Jan Schmidta542ad12011-06-13 19:52:59 +020046 iterate_extent_inodes_t *iterate, void *ctx);
47
48int iterate_inodes_from_logical(u64 logical, struct btrfs_fs_info *fs_info,
49 struct btrfs_path *path,
50 iterate_extent_inodes_t *iterate, void *ctx);
51
52int paths_from_inode(u64 inum, struct inode_fs_paths *ipath);
53
Jan Schmidt8da6d582011-11-23 18:55:04 +010054int btrfs_find_all_roots(struct btrfs_trans_handle *trans,
Josef Bacikfcebe452014-05-13 17:30:47 -070055 struct btrfs_fs_info *fs_info, u64 bytenr,
56 u64 time_seq, struct ulist **roots);
Jan Schmidt96b5bd72012-10-15 08:30:45 +000057char *btrfs_ref_to_path(struct btrfs_root *fs_root, struct btrfs_path *path,
58 u32 name_len, unsigned long name_off,
59 struct extent_buffer *eb_in, u64 parent,
60 char *dest, u32 size);
Jan Schmidt8da6d582011-11-23 18:55:04 +010061
Jan Schmidta542ad12011-06-13 19:52:59 +020062struct btrfs_data_container *init_data_container(u32 total_bytes);
63struct inode_fs_paths *init_ipath(s32 total_bytes, struct btrfs_root *fs_root,
64 struct btrfs_path *path);
65void free_ipath(struct inode_fs_paths *ipath);
66
Mark Fashehf1863732012-08-08 11:32:27 -070067int btrfs_find_one_extref(struct btrfs_root *root, u64 inode_objectid,
68 u64 start_off, struct btrfs_path *path,
69 struct btrfs_inode_extref **ret_extref,
70 u64 *found_off);
Josef Bacikdc046b12014-09-10 16:20:45 -040071int btrfs_check_shared(struct btrfs_trans_handle *trans,
72 struct btrfs_fs_info *fs_info, u64 root_objectid,
73 u64 inum, u64 bytenr);
Mark Fashehf1863732012-08-08 11:32:27 -070074
Wang Shilongb9e9a6c2013-08-09 13:25:36 +080075int __init btrfs_prelim_ref_init(void);
76void btrfs_prelim_ref_exit(void);
Jan Schmidta542ad12011-06-13 19:52:59 +020077#endif