]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/subvolume.h
Update bcachefs sources to bee7b5a4fa21 bcachefs: Pin btree cache in ram for random...
[bcachefs-tools-debian] / libbcachefs / subvolume.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_SUBVOLUME_H
3 #define _BCACHEFS_SUBVOLUME_H
4
5 #include "subvolume_types.h"
6
7 enum bkey_invalid_flags;
8
9 int bch2_check_subvols(struct bch_fs *);
10 int bch2_check_subvol_children(struct bch_fs *);
11
12 int bch2_subvolume_invalid(struct bch_fs *, struct bkey_s_c,
13                            enum bkey_invalid_flags, struct printbuf *);
14 void bch2_subvolume_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
15 int bch2_subvolume_trigger(struct btree_trans *, enum btree_id, unsigned,
16                            struct bkey_s_c, struct bkey_s, unsigned);
17
18 #define bch2_bkey_ops_subvolume ((struct bkey_ops) {            \
19         .key_invalid    = bch2_subvolume_invalid,               \
20         .val_to_text    = bch2_subvolume_to_text,               \
21         .trigger        = bch2_subvolume_trigger,               \
22         .min_val_size   = 16,                                   \
23 })
24
25 int bch2_subvol_has_children(struct btree_trans *, u32);
26 int bch2_subvolume_get(struct btree_trans *, unsigned,
27                        bool, int, struct bch_subvolume *);
28 int bch2_subvolume_get_snapshot(struct btree_trans *, u32, u32 *);
29
30 int bch2_subvol_is_ro_trans(struct btree_trans *, u32);
31 int bch2_subvol_is_ro(struct bch_fs *, u32);
32
33 int bch2_delete_dead_snapshots(struct bch_fs *);
34 void bch2_delete_dead_snapshots_async(struct bch_fs *);
35
36 int bch2_subvolume_unlink(struct btree_trans *, u32);
37 int bch2_subvolume_create(struct btree_trans *, u64, u32, u32, u32 *, u32 *, bool);
38
39 int bch2_fs_subvolumes_init(struct bch_fs *);
40
41 #endif /* _BCACHEFS_SUBVOLUME_H */