lib/group_cpus.c: avoid acquiring cpu hotplug lock in group_cpus_evenly
[linux-block.git] / fs / bcachefs / ec.h
CommitLineData
cd575ddf
KO
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _BCACHEFS_EC_H
3#define _BCACHEFS_EC_H
4
5#include "ec_types.h"
af4d05c4 6#include "buckets_types.h"
c501fef6 7#include "extents_types.h"
cd575ddf 8
8726dc93
KO
9enum bkey_invalid_flags;
10
b65db750 11int bch2_stripe_invalid(struct bch_fs *, struct bkey_s_c,
8726dc93 12 enum bkey_invalid_flags, struct printbuf *);
26609b61 13void bch2_stripe_to_text(struct printbuf *, struct bch_fs *,
cd575ddf
KO
14 struct bkey_s_c);
15
a1019576 16#define bch2_bkey_ops_stripe ((struct bkey_ops) { \
26609b61
KO
17 .key_invalid = bch2_stripe_invalid, \
18 .val_to_text = bch2_stripe_to_text, \
1f49dafc 19 .swab = bch2_ptr_swab, \
880e2275
KO
20 .trans_trigger = bch2_trans_mark_stripe, \
21 .atomic_trigger = bch2_mark_stripe, \
174f930b 22 .min_val_size = 8, \
a1019576 23})
cd575ddf 24
61c8d7c8
KO
25static inline unsigned stripe_csums_per_device(const struct bch_stripe *s)
26{
27 return DIV_ROUND_UP(le16_to_cpu(s->sectors),
28 1 << s->csum_granularity_bits);
29}
30
31static inline unsigned stripe_csum_offset(const struct bch_stripe *s,
32 unsigned dev, unsigned csum_idx)
33{
34 unsigned csum_bytes = bch_crc_bytes[s->csum_type];
35
36 return sizeof(struct bch_stripe) +
37 sizeof(struct bch_extent_ptr) * s->nr_blocks +
38 (dev * stripe_csums_per_device(s) + csum_idx) * csum_bytes;
39}
40
41static inline unsigned stripe_blockcount_offset(const struct bch_stripe *s,
42 unsigned idx)
43{
44 return stripe_csum_offset(s, s->nr_blocks, 0) +
45 sizeof(u16) * idx;
46}
47
48static inline unsigned stripe_blockcount_get(const struct bch_stripe *s,
49 unsigned idx)
50{
51 return le16_to_cpup((void *) s + stripe_blockcount_offset(s, idx));
52}
53
54static inline void stripe_blockcount_set(struct bch_stripe *s,
55 unsigned idx, unsigned v)
56{
57 __le16 *p = (void *) s + stripe_blockcount_offset(s, idx);
58
59 *p = cpu_to_le16(v);
60}
61
62static inline unsigned stripe_val_u64s(const struct bch_stripe *s)
63{
64 return DIV_ROUND_UP(stripe_blockcount_offset(s, s->nr_blocks),
65 sizeof(u64));
66}
67
68static inline void *stripe_csum(struct bch_stripe *s,
2a3731e3 69 unsigned block, unsigned csum_idx)
61c8d7c8 70{
2a3731e3
KO
71 EBUG_ON(block >= s->nr_blocks);
72 EBUG_ON(csum_idx >= stripe_csums_per_device(s));
73
74 return (void *) s + stripe_csum_offset(s, block, csum_idx);
75}
76
77static inline struct bch_csum stripe_csum_get(struct bch_stripe *s,
78 unsigned block, unsigned csum_idx)
79{
80 struct bch_csum csum = { 0 };
81
82 memcpy(&csum, stripe_csum(s, block, csum_idx), bch_crc_bytes[s->csum_type]);
83 return csum;
84}
85
86static inline void stripe_csum_set(struct bch_stripe *s,
87 unsigned block, unsigned csum_idx,
88 struct bch_csum csum)
89{
90 memcpy(stripe_csum(s, block, csum_idx), &csum, bch_crc_bytes[s->csum_type]);
91}
92
b3b66e30
KO
93static inline bool __bch2_ptr_matches_stripe(const struct bch_extent_ptr *stripe_ptr,
94 const struct bch_extent_ptr *data_ptr,
95 unsigned sectors)
96{
97 return data_ptr->dev == stripe_ptr->dev &&
98 data_ptr->gen == stripe_ptr->gen &&
99 data_ptr->offset >= stripe_ptr->offset &&
100 data_ptr->offset < stripe_ptr->offset + sectors;
101}
102
103static inline bool bch2_ptr_matches_stripe(const struct bch_stripe *s,
104 struct extent_ptr_decoded p)
2a3731e3
KO
105{
106 unsigned nr_data = s->nr_blocks - s->nr_redundant;
107
b3b66e30
KO
108 BUG_ON(!p.has_ec);
109
110 if (p.ec.block >= nr_data)
2a3731e3
KO
111 return false;
112
b3b66e30
KO
113 return __bch2_ptr_matches_stripe(&s->ptrs[p.ec.block], &p.ptr,
114 le16_to_cpu(s->sectors));
2a3731e3
KO
115}
116
990d42d1 117static inline bool bch2_ptr_matches_stripe_m(const struct gc_stripe *m,
b3b66e30 118 struct extent_ptr_decoded p)
2a3731e3 119{
b3b66e30
KO
120 unsigned nr_data = m->nr_blocks - m->nr_redundant;
121
2a3731e3
KO
122 BUG_ON(!p.has_ec);
123
b3b66e30
KO
124 if (p.ec.block >= nr_data)
125 return false;
126
127 return __bch2_ptr_matches_stripe(&m->ptrs[p.ec.block], &p.ptr,
128 m->sectors);
61c8d7c8
KO
129}
130
cd575ddf
KO
131struct bch_read_bio;
132
133struct ec_stripe_buf {
134 /* might not be buffering the entire stripe: */
135 unsigned offset;
136 unsigned size;
ffb7c3d3 137 unsigned long valid[BITS_TO_LONGS(BCH_BKEY_PTRS_MAX)];
cd575ddf 138
ffb7c3d3 139 void *data[BCH_BKEY_PTRS_MAX];
cd575ddf 140
bf5a261c 141 __BKEY_PADDED(key, 255);
cd575ddf
KO
142};
143
144struct ec_stripe_head;
145
fba053d2
KO
146enum ec_stripe_ref {
147 STRIPE_REF_io,
148 STRIPE_REF_stripe,
149 STRIPE_REF_NR
150};
151
cd575ddf
KO
152struct ec_stripe_new {
153 struct bch_fs *c;
154 struct ec_stripe_head *h;
155 struct mutex lock;
156 struct list_head list;
4b1e6699
KO
157
158 struct hlist_node hash;
159 u64 idx;
160
81d8599e 161 struct closure iodone;
cd575ddf 162
fba053d2 163 atomic_t ref[STRIPE_REF_NR];
cd575ddf
KO
164
165 int err;
166
f6b94a3b
KO
167 u8 nr_data;
168 u8 nr_parity;
169 bool allocated;
170 bool pending;
81d8599e 171 bool have_existing_stripe;
0ba95acc 172
6c7585b0 173 unsigned long blocks_gotten[BITS_TO_LONGS(BCH_BKEY_PTRS_MAX)];
ffb7c3d3 174 unsigned long blocks_allocated[BITS_TO_LONGS(BCH_BKEY_PTRS_MAX)];
6c7585b0 175 open_bucket_idx_t blocks[BCH_BKEY_PTRS_MAX];
af4d05c4 176 struct disk_reservation res;
cd575ddf 177
81d8599e
KO
178 struct ec_stripe_buf new_stripe;
179 struct ec_stripe_buf existing_stripe;
cd575ddf
KO
180};
181
182struct ec_stripe_head {
183 struct list_head list;
184 struct mutex lock;
185
cd575ddf
KO
186 unsigned target;
187 unsigned algo;
188 unsigned redundancy;
e53a961c 189 enum bch_watermark watermark;
cd575ddf
KO
190
191 struct bch_devs_mask devs;
192 unsigned nr_active_devs;
193
194 unsigned blocksize;
195
196 struct dev_stripe_state block_stripe;
197 struct dev_stripe_state parity_stripe;
198
cd575ddf
KO
199 struct ec_stripe_new *s;
200};
201
aa982665 202int bch2_ec_read_extent(struct btree_trans *, struct bch_read_bio *);
cd575ddf
KO
203
204void *bch2_writepoint_ec_buf(struct bch_fs *, struct write_point *);
cd575ddf 205
cd575ddf
KO
206void bch2_ec_bucket_cancel(struct bch_fs *, struct open_bucket *);
207
208int bch2_ec_stripe_new_alloc(struct bch_fs *, struct ec_stripe_head *);
209
703e2a43 210void bch2_ec_stripe_head_put(struct bch_fs *, struct ec_stripe_head *);
2c7dd446 211struct ec_stripe_head *bch2_ec_stripe_head_get(struct btree_trans *,
a1fb08f5 212 unsigned, unsigned, unsigned,
e53a961c 213 enum bch_watermark, struct closure *);
cd575ddf 214
dfe9bfb3
KO
215void bch2_stripes_heap_update(struct bch_fs *, struct stripe *, size_t);
216void bch2_stripes_heap_del(struct bch_fs *, struct stripe *, size_t);
217void bch2_stripes_heap_insert(struct bch_fs *, struct stripe *, size_t);
cd575ddf 218
dd81a060 219void bch2_do_stripe_deletes(struct bch_fs *);
2a912a9a 220void bch2_ec_do_stripe_creates(struct bch_fs *);
fba053d2 221void bch2_ec_stripe_new_free(struct bch_fs *, struct ec_stripe_new *);
2a912a9a 222
fba053d2
KO
223static inline void ec_stripe_new_get(struct ec_stripe_new *s,
224 enum ec_stripe_ref ref)
2a912a9a 225{
fba053d2 226 atomic_inc(&s->ref[ref]);
2a912a9a
KO
227}
228
fba053d2
KO
229static inline void ec_stripe_new_put(struct bch_fs *c, struct ec_stripe_new *s,
230 enum ec_stripe_ref ref)
2a912a9a 231{
fba053d2
KO
232 BUG_ON(atomic_read(&s->ref[ref]) <= 0);
233
234 if (atomic_dec_and_test(&s->ref[ref]))
235 switch (ref) {
236 case STRIPE_REF_stripe:
237 bch2_ec_stripe_new_free(c, s);
238 break;
239 case STRIPE_REF_io:
240 bch2_ec_do_stripe_creates(c);
241 break;
242 default:
439c172b 243 BUG();
fba053d2 244 }
2a912a9a 245}
dd81a060 246
cd575ddf 247void bch2_ec_stop_dev(struct bch_fs *, struct bch_dev *);
b40901b0
KO
248void bch2_fs_ec_stop(struct bch_fs *);
249void bch2_fs_ec_flush(struct bch_fs *);
cd575ddf 250
ac1019d3 251int bch2_stripes_read(struct bch_fs *);
61c8d7c8 252
ba6dd1dd 253void bch2_stripes_heap_to_text(struct printbuf *, struct bch_fs *);
7807e143 254void bch2_new_stripes_to_text(struct printbuf *, struct bch_fs *);
ba6dd1dd 255
cd575ddf 256void bch2_fs_ec_exit(struct bch_fs *);
84c72755 257void bch2_fs_ec_init_early(struct bch_fs *);
cd575ddf
KO
258int bch2_fs_ec_init(struct bch_fs *);
259
260#endif /* _BCACHEFS_EC_H */