]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - fs/btrfs/backref.h
btrfs: improved readablity for add_inode_ref
[mirror_ubuntu-hirsute-kernel.git] / fs / btrfs / backref.h
CommitLineData
a542ad1b
JS
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
22#include "ioctl.h"
8da6d581 23#include "ulist.h"
91cb916c 24#include "extent_io.h"
a542ad1b 25
7a3ae2f8
JS
26#define BTRFS_BACKREF_SEARCH_COMMIT_ROOT ((struct btrfs_trans_handle *)0)
27
a542ad1b
JS
28struct inode_fs_paths {
29 struct btrfs_path *btrfs_path;
30 struct btrfs_root *fs_root;
31 struct btrfs_data_container *fspath;
32};
33
34typedef int (iterate_extent_inodes_t)(u64 inum, u64 offset, u64 root,
35 void *ctx);
36typedef int (iterate_irefs_t)(u64 parent, struct btrfs_inode_ref *iref,
37 struct extent_buffer *eb, void *ctx);
38
39int inode_item_info(u64 inum, u64 ioff, struct btrfs_root *fs_root,
40 struct btrfs_path *path);
41
42int extent_from_logical(struct btrfs_fs_info *fs_info, u64 logical,
69917e43
LB
43 struct btrfs_path *path, struct btrfs_key *found_key,
44 u64 *flags);
a542ad1b
JS
45
46int tree_backref_for_extent(unsigned long *ptr, struct extent_buffer *eb,
47 struct btrfs_extent_item *ei, u32 item_size,
48 u64 *out_root, u8 *out_level);
49
50int iterate_extent_inodes(struct btrfs_fs_info *fs_info,
a542ad1b 51 u64 extent_item_objectid,
7a3ae2f8 52 u64 extent_offset, int search_commit_root,
a542ad1b
JS
53 iterate_extent_inodes_t *iterate, void *ctx);
54
55int iterate_inodes_from_logical(u64 logical, struct btrfs_fs_info *fs_info,
56 struct btrfs_path *path,
57 iterate_extent_inodes_t *iterate, void *ctx);
58
59int paths_from_inode(u64 inum, struct inode_fs_paths *ipath);
60
8da6d581
JS
61int btrfs_find_all_roots(struct btrfs_trans_handle *trans,
62 struct btrfs_fs_info *fs_info, u64 bytenr,
097b8a7c 63 u64 time_seq, struct ulist **roots);
91cb916c
AB
64char *btrfs_iref_to_path(struct btrfs_root *fs_root, struct btrfs_path *path,
65 struct btrfs_inode_ref *iref, struct extent_buffer *eb,
66 u64 parent, char *dest, u32 size);
8da6d581 67
a542ad1b
JS
68struct btrfs_data_container *init_data_container(u32 total_bytes);
69struct inode_fs_paths *init_ipath(s32 total_bytes, struct btrfs_root *fs_root,
70 struct btrfs_path *path);
71void free_ipath(struct inode_fs_paths *ipath);
72
73#endif