]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/ec.h
Update bcachefs sources to c9b4a210f9 fixup! bcachefs: Fixes for going RO
[bcachefs-tools-debian] / libbcachefs / ec.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_EC_H
3 #define _BCACHEFS_EC_H
4
5 #include "ec_types.h"
6 #include "keylist_types.h"
7
8 const char *bch2_stripe_invalid(const struct bch_fs *, struct bkey_s_c);
9 void bch2_stripe_to_text(struct printbuf *, struct bch_fs *,
10                          struct bkey_s_c);
11
12 #define bch2_bkey_ops_stripe (struct bkey_ops) {        \
13         .key_invalid    = bch2_stripe_invalid,          \
14         .val_to_text    = bch2_stripe_to_text,          \
15         .swab           = bch2_ptr_swab,                \
16 }
17
18 static inline unsigned stripe_csums_per_device(const struct bch_stripe *s)
19 {
20         return DIV_ROUND_UP(le16_to_cpu(s->sectors),
21                             1 << s->csum_granularity_bits);
22 }
23
24 static inline unsigned stripe_csum_offset(const struct bch_stripe *s,
25                                           unsigned dev, unsigned csum_idx)
26 {
27         unsigned csum_bytes = bch_crc_bytes[s->csum_type];
28
29         return sizeof(struct bch_stripe) +
30                 sizeof(struct bch_extent_ptr) * s->nr_blocks +
31                 (dev * stripe_csums_per_device(s) + csum_idx) * csum_bytes;
32 }
33
34 static inline unsigned stripe_blockcount_offset(const struct bch_stripe *s,
35                                                 unsigned idx)
36 {
37         return stripe_csum_offset(s, s->nr_blocks, 0) +
38                 sizeof(u16) * idx;
39 }
40
41 static inline unsigned stripe_blockcount_get(const struct bch_stripe *s,
42                                              unsigned idx)
43 {
44         return le16_to_cpup((void *) s + stripe_blockcount_offset(s, idx));
45 }
46
47 static inline void stripe_blockcount_set(struct bch_stripe *s,
48                                          unsigned idx, unsigned v)
49 {
50         __le16 *p = (void *) s + stripe_blockcount_offset(s, idx);
51
52         *p = cpu_to_le16(v);
53 }
54
55 static inline unsigned stripe_val_u64s(const struct bch_stripe *s)
56 {
57         return DIV_ROUND_UP(stripe_blockcount_offset(s, s->nr_blocks),
58                             sizeof(u64));
59 }
60
61 static inline void *stripe_csum(struct bch_stripe *s,
62                                 unsigned dev, unsigned csum_idx)
63 {
64         return (void *) s + stripe_csum_offset(s, dev, csum_idx);
65 }
66
67 struct bch_read_bio;
68
69 struct ec_stripe_buf {
70         /* might not be buffering the entire stripe: */
71         unsigned                offset;
72         unsigned                size;
73         unsigned long           valid[BITS_TO_LONGS(EC_STRIPE_MAX)];
74
75         void                    *data[EC_STRIPE_MAX];
76
77         union {
78                 struct bkey_i_stripe    key;
79                 u64                     pad[255];
80         };
81 };
82
83 struct ec_stripe_head;
84
85 struct ec_stripe_new {
86         struct bch_fs           *c;
87         struct ec_stripe_head   *h;
88         struct mutex            lock;
89         struct list_head        list;
90
91         /* counts in flight writes, stripe is created when pin == 0 */
92         atomic_t                pin;
93
94         int                     err;
95
96         unsigned long           blocks_allocated[BITS_TO_LONGS(EC_STRIPE_MAX)];
97
98         struct open_buckets     blocks;
99         struct open_buckets     parity;
100
101         struct keylist          keys;
102         u64                     inline_keys[BKEY_U64s * 8];
103
104         struct ec_stripe_buf    stripe;
105 };
106
107 struct ec_stripe_head {
108         struct list_head        list;
109         struct mutex            lock;
110
111         struct list_head        stripes;
112
113         unsigned                target;
114         unsigned                algo;
115         unsigned                redundancy;
116
117         struct bch_devs_mask    devs;
118         unsigned                nr_active_devs;
119
120         unsigned                blocksize;
121
122         struct dev_stripe_state block_stripe;
123         struct dev_stripe_state parity_stripe;
124
125         struct open_buckets     blocks;
126         struct open_buckets     parity;
127
128         struct ec_stripe_new    *s;
129 };
130
131 int bch2_ec_read_extent(struct bch_fs *, struct bch_read_bio *);
132
133 void *bch2_writepoint_ec_buf(struct bch_fs *, struct write_point *);
134 void bch2_ec_add_backpointer(struct bch_fs *, struct write_point *,
135                              struct bpos, unsigned);
136
137 void bch2_ec_bucket_written(struct bch_fs *, struct open_bucket *);
138 void bch2_ec_bucket_cancel(struct bch_fs *, struct open_bucket *);
139
140 int bch2_ec_stripe_new_alloc(struct bch_fs *, struct ec_stripe_head *);
141
142 void bch2_ec_stripe_head_put(struct ec_stripe_head *);
143 struct ec_stripe_head *bch2_ec_stripe_head_get(struct bch_fs *, unsigned,
144                                                unsigned, unsigned);
145
146 void bch2_stripes_heap_update(struct bch_fs *, struct stripe *, size_t);
147 void bch2_stripes_heap_del(struct bch_fs *, struct stripe *, size_t);
148 void bch2_stripes_heap_insert(struct bch_fs *, struct stripe *, size_t);
149
150 void bch2_ec_stop_dev(struct bch_fs *, struct bch_dev *);
151
152 void bch2_ec_flush_new_stripes(struct bch_fs *);
153
154 struct journal_keys;
155 int bch2_stripes_read(struct bch_fs *, struct journal_keys *);
156 int bch2_stripes_write(struct bch_fs *, unsigned, bool *);
157
158 int bch2_ec_mem_alloc(struct bch_fs *, bool);
159
160 void bch2_fs_ec_exit(struct bch_fs *);
161 int bch2_fs_ec_init(struct bch_fs *);
162
163 #endif /* _BCACHEFS_EC_H */