Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 1 | /* |
| 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 Brandenburger | 55e301f | 2013-01-29 06:04:50 +0000 | [diff] [blame] | 22 | #include <linux/btrfs.h> |
Jan Schmidt | 8da6d58 | 2011-11-23 18:55:04 +0100 | [diff] [blame] | 23 | #include "ulist.h" |
Alexander Block | 91cb916 | 2012-06-03 14:23:23 +0200 | [diff] [blame] | 24 | #include "extent_io.h" |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 25 | |
| 26 | struct inode_fs_paths { |
| 27 | struct btrfs_path *btrfs_path; |
| 28 | struct btrfs_root *fs_root; |
| 29 | struct btrfs_data_container *fspath; |
| 30 | }; |
| 31 | |
| 32 | typedef int (iterate_extent_inodes_t)(u64 inum, u64 offset, u64 root, |
| 33 | void *ctx); |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 34 | |
| 35 | int inode_item_info(u64 inum, u64 ioff, struct btrfs_root *fs_root, |
| 36 | struct btrfs_path *path); |
| 37 | |
| 38 | int extent_from_logical(struct btrfs_fs_info *fs_info, u64 logical, |
Liu Bo | 69917e4 | 2012-09-07 20:01:28 -0600 | [diff] [blame] | 39 | struct btrfs_path *path, struct btrfs_key *found_key, |
| 40 | u64 *flags); |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 41 | |
| 42 | int tree_backref_for_extent(unsigned long *ptr, struct extent_buffer *eb, |
Liu Bo | 6eda71d | 2014-06-09 10:54:07 +0800 | [diff] [blame] | 43 | struct btrfs_key *key, struct btrfs_extent_item *ei, |
| 44 | u32 item_size, u64 *out_root, u8 *out_level); |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 45 | |
| 46 | int iterate_extent_inodes(struct btrfs_fs_info *fs_info, |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 47 | u64 extent_item_objectid, |
Jan Schmidt | 7a3ae2f | 2012-03-23 17:32:28 +0100 | [diff] [blame] | 48 | u64 extent_offset, int search_commit_root, |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 49 | iterate_extent_inodes_t *iterate, void *ctx); |
| 50 | |
| 51 | int iterate_inodes_from_logical(u64 logical, struct btrfs_fs_info *fs_info, |
| 52 | struct btrfs_path *path, |
| 53 | iterate_extent_inodes_t *iterate, void *ctx); |
| 54 | |
| 55 | int paths_from_inode(u64 inum, struct inode_fs_paths *ipath); |
| 56 | |
Jan Schmidt | 8da6d58 | 2011-11-23 18:55:04 +0100 | [diff] [blame] | 57 | int btrfs_find_all_roots(struct btrfs_trans_handle *trans, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 58 | struct btrfs_fs_info *fs_info, u64 bytenr, |
| 59 | u64 time_seq, struct ulist **roots); |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 60 | char *btrfs_ref_to_path(struct btrfs_root *fs_root, struct btrfs_path *path, |
| 61 | u32 name_len, unsigned long name_off, |
| 62 | struct extent_buffer *eb_in, u64 parent, |
| 63 | char *dest, u32 size); |
Jan Schmidt | 8da6d58 | 2011-11-23 18:55:04 +0100 | [diff] [blame] | 64 | |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 65 | struct btrfs_data_container *init_data_container(u32 total_bytes); |
| 66 | struct inode_fs_paths *init_ipath(s32 total_bytes, struct btrfs_root *fs_root, |
| 67 | struct btrfs_path *path); |
| 68 | void free_ipath(struct inode_fs_paths *ipath); |
| 69 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 70 | int btrfs_find_one_extref(struct btrfs_root *root, u64 inode_objectid, |
| 71 | u64 start_off, struct btrfs_path *path, |
| 72 | struct btrfs_inode_extref **ret_extref, |
| 73 | u64 *found_off); |
Josef Bacik | dc046b1 | 2014-09-10 16:20:45 -0400 | [diff] [blame] | 74 | int btrfs_check_shared(struct btrfs_trans_handle *trans, |
| 75 | struct btrfs_fs_info *fs_info, u64 root_objectid, |
| 76 | u64 inum, u64 bytenr); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 77 | |
Wang Shilong | b9e9a6c | 2013-08-09 13:25:36 +0800 | [diff] [blame] | 78 | int __init btrfs_prelim_ref_init(void); |
| 79 | void btrfs_prelim_ref_exit(void); |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 80 | #endif |