]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/ec_types.h
New upstream snapshot
[bcachefs-tools-debian] / libbcachefs / ec_types.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_EC_TYPES_H
3 #define _BCACHEFS_EC_TYPES_H
4
5 #include <linux/llist.h>
6
7 struct bch_replicas_padded {
8         struct bch_replicas_entry       e;
9         u8                              pad[BCH_BKEY_PTRS_MAX];
10 };
11
12 struct stripe {
13         size_t                  heap_idx;
14
15         u16                     sectors;
16         u8                      algorithm;
17
18         u8                      nr_blocks;
19         u8                      nr_redundant;
20
21         unsigned                alive:1; /* does a corresponding key exist in stripes btree? */
22         unsigned                on_heap:1;
23         u8                      blocks_nonempty;
24         u16                     block_sectors[BCH_BKEY_PTRS_MAX];
25         struct bch_extent_ptr   ptrs[BCH_BKEY_PTRS_MAX];
26
27         struct bch_replicas_padded r;
28 };
29
30 struct ec_stripe_heap_entry {
31         size_t                  idx;
32         unsigned                blocks_nonempty;
33 };
34
35 typedef HEAP(struct ec_stripe_heap_entry) ec_stripes_heap;
36
37 #endif /* _BCACHEFS_EC_TYPES_H */