David Sterba | 9888c34 | 2018-04-03 19:16:55 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2011 STRATO. All rights reserved. |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 4 | */ |
| 5 | |
David Sterba | 9888c34 | 2018-04-03 19:16:55 +0200 | [diff] [blame] | 6 | #ifndef BTRFS_BACKREF_H |
| 7 | #define BTRFS_BACKREF_H |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 8 | |
Filipe Brandenburger | 55e301f | 2013-01-29 06:04:50 +0000 | [diff] [blame] | 9 | #include <linux/btrfs.h> |
Jan Schmidt | 8da6d58 | 2011-11-23 18:55:04 +0100 | [diff] [blame] | 10 | #include "ulist.h" |
Alexander Block | 91cb916 | 2012-06-03 14:23:23 +0200 | [diff] [blame] | 11 | #include "extent_io.h" |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 12 | |
| 13 | struct inode_fs_paths { |
| 14 | struct btrfs_path *btrfs_path; |
| 15 | struct btrfs_root *fs_root; |
| 16 | struct btrfs_data_container *fspath; |
| 17 | }; |
| 18 | |
| 19 | typedef int (iterate_extent_inodes_t)(u64 inum, u64 offset, u64 root, |
| 20 | void *ctx); |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 21 | |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 22 | int extent_from_logical(struct btrfs_fs_info *fs_info, u64 logical, |
Liu Bo | 69917e4 | 2012-09-07 20:01:28 -0600 | [diff] [blame] | 23 | struct btrfs_path *path, struct btrfs_key *found_key, |
| 24 | u64 *flags); |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 25 | |
| 26 | int tree_backref_for_extent(unsigned long *ptr, struct extent_buffer *eb, |
Liu Bo | 6eda71d | 2014-06-09 10:54:07 +0800 | [diff] [blame] | 27 | struct btrfs_key *key, struct btrfs_extent_item *ei, |
| 28 | u32 item_size, u64 *out_root, u8 *out_level); |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 29 | |
| 30 | int iterate_extent_inodes(struct btrfs_fs_info *fs_info, |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 31 | u64 extent_item_objectid, |
Jan Schmidt | 7a3ae2f | 2012-03-23 17:32:28 +0100 | [diff] [blame] | 32 | u64 extent_offset, int search_commit_root, |
Zygo Blaxell | c995ab3 | 2017-09-22 13:58:45 -0400 | [diff] [blame] | 33 | iterate_extent_inodes_t *iterate, void *ctx, |
| 34 | bool ignore_offset); |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 35 | |
| 36 | int iterate_inodes_from_logical(u64 logical, struct btrfs_fs_info *fs_info, |
| 37 | struct btrfs_path *path, |
Zygo Blaxell | c995ab3 | 2017-09-22 13:58:45 -0400 | [diff] [blame] | 38 | iterate_extent_inodes_t *iterate, void *ctx, |
| 39 | bool ignore_offset); |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 40 | |
| 41 | int paths_from_inode(u64 inum, struct inode_fs_paths *ipath); |
| 42 | |
Qu Wenruo | 19b546d | 2020-03-10 16:14:15 +0800 | [diff] [blame^] | 43 | int btrfs_find_all_leafs(struct btrfs_trans_handle *trans, |
| 44 | struct btrfs_fs_info *fs_info, u64 bytenr, |
| 45 | u64 time_seq, struct ulist **leafs, |
| 46 | const u64 *extent_item_pos, bool ignore_offset); |
Jan Schmidt | 8da6d58 | 2011-11-23 18:55:04 +0100 | [diff] [blame] | 47 | int btrfs_find_all_roots(struct btrfs_trans_handle *trans, |
Josef Bacik | fcebe45 | 2014-05-13 17:30:47 -0700 | [diff] [blame] | 48 | struct btrfs_fs_info *fs_info, u64 bytenr, |
Zygo Blaxell | c995ab3 | 2017-09-22 13:58:45 -0400 | [diff] [blame] | 49 | u64 time_seq, struct ulist **roots, bool ignore_offset); |
Jan Schmidt | 96b5bd7 | 2012-10-15 08:30:45 +0000 | [diff] [blame] | 50 | char *btrfs_ref_to_path(struct btrfs_root *fs_root, struct btrfs_path *path, |
| 51 | u32 name_len, unsigned long name_off, |
| 52 | struct extent_buffer *eb_in, u64 parent, |
| 53 | char *dest, u32 size); |
Jan Schmidt | 8da6d58 | 2011-11-23 18:55:04 +0100 | [diff] [blame] | 54 | |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 55 | struct btrfs_data_container *init_data_container(u32 total_bytes); |
| 56 | struct inode_fs_paths *init_ipath(s32 total_bytes, struct btrfs_root *fs_root, |
| 57 | struct btrfs_path *path); |
| 58 | void free_ipath(struct inode_fs_paths *ipath); |
| 59 | |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 60 | int btrfs_find_one_extref(struct btrfs_root *root, u64 inode_objectid, |
| 61 | u64 start_off, struct btrfs_path *path, |
| 62 | struct btrfs_inode_extref **ret_extref, |
| 63 | u64 *found_off); |
David Sterba | 5911c8f | 2019-05-15 15:31:04 +0200 | [diff] [blame] | 64 | int btrfs_check_shared(struct btrfs_root *root, u64 inum, u64 bytenr, |
| 65 | struct ulist *roots, struct ulist *tmp_ulist); |
Mark Fasheh | f186373 | 2012-08-08 11:32:27 -0700 | [diff] [blame] | 66 | |
Wang Shilong | b9e9a6c | 2013-08-09 13:25:36 +0800 | [diff] [blame] | 67 | int __init btrfs_prelim_ref_init(void); |
David Sterba | e67c718 | 2018-02-19 17:24:18 +0100 | [diff] [blame] | 68 | void __cold btrfs_prelim_ref_exit(void); |
Jeff Mahoney | 0014275 | 2017-07-12 16:20:08 -0600 | [diff] [blame] | 69 | |
| 70 | struct prelim_ref { |
| 71 | struct rb_node rbnode; |
| 72 | u64 root_id; |
| 73 | struct btrfs_key key_for_search; |
| 74 | int level; |
| 75 | int count; |
| 76 | struct extent_inode_elem *inode_list; |
| 77 | u64 parent; |
| 78 | u64 wanted_disk_byte; |
| 79 | }; |
| 80 | |
Jan Schmidt | a542ad1 | 2011-06-13 19:52:59 +0200 | [diff] [blame] | 81 | #endif |