Contributors: 17
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Chris Mason |
129 |
53.53% |
9 |
26.47% |
Miao Xie |
30 |
12.45% |
2 |
5.88% |
Zheng Yan |
22 |
9.13% |
4 |
11.76% |
Josef Whiter |
19 |
7.88% |
2 |
5.88% |
Josef Bacik |
8 |
3.32% |
1 |
2.94% |
Li Zefan |
6 |
2.49% |
1 |
2.94% |
Jeff Mahoney |
5 |
2.07% |
3 |
8.82% |
Sweet Tea Dorminy |
4 |
1.66% |
2 |
5.88% |
Eric Sandeen |
3 |
1.24% |
1 |
2.94% |
Omar Sandoval |
3 |
1.24% |
1 |
2.94% |
Alexander Block |
3 |
1.24% |
1 |
2.94% |
Qu Wenruo |
2 |
0.83% |
1 |
2.94% |
Boris Burkov |
2 |
0.83% |
2 |
5.88% |
Sage Weil |
2 |
0.83% |
1 |
2.94% |
Liu Bo |
1 |
0.41% |
1 |
2.94% |
Mark Fasheh |
1 |
0.41% |
1 |
2.94% |
David Sterba |
1 |
0.41% |
1 |
2.94% |
Total |
241 |
|
34 |
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef BTRFS_ROOT_TREE_H
#define BTRFS_ROOT_TREE_H
struct fscrypt_str;
int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
struct btrfs_block_rsv *rsv,
int nitems, bool use_global_rsv);
void btrfs_subvolume_release_metadata(struct btrfs_root *root,
struct btrfs_block_rsv *rsv);
int btrfs_add_root_ref(struct btrfs_trans_handle *trans, u64 root_id,
u64 ref_id, u64 dirid, u64 sequence,
const struct fscrypt_str *name);
int btrfs_del_root_ref(struct btrfs_trans_handle *trans, u64 root_id,
u64 ref_id, u64 dirid, u64 *sequence,
const struct fscrypt_str *name);
int btrfs_del_root(struct btrfs_trans_handle *trans, const struct btrfs_key *key);
int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
const struct btrfs_key *key,
struct btrfs_root_item *item);
int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
struct btrfs_key *key, struct btrfs_root_item *item);
int btrfs_find_root(struct btrfs_root *root, const struct btrfs_key *search_key,
struct btrfs_path *path, struct btrfs_root_item *root_item,
struct btrfs_key *root_key);
int btrfs_find_orphan_roots(struct btrfs_fs_info *fs_info);
void btrfs_set_root_node(struct btrfs_root_item *item,
struct extent_buffer *node);
void btrfs_check_and_init_root_item(struct btrfs_root_item *item);
void btrfs_update_root_times(struct btrfs_trans_handle *trans, struct btrfs_root *root);
#endif