1 // SPDX-License-Identifier: GPL-2.0
6 #include "alloc_foreground.h"
7 #include "backpointers.h"
11 #include "btree_update.h"
12 #include "btree_write_buffer.h"
15 #include "disk_groups.h"
25 #include <linux/sort.h>
29 #include <linux/raid/pq.h>
30 #include <linux/raid/xor.h>
32 static void raid5_recov(unsigned disks, unsigned failed_idx,
33 size_t size, void **data)
37 BUG_ON(failed_idx >= disks);
39 swap(data[0], data[failed_idx]);
40 memcpy(data[0], data[1], size);
43 nr = min_t(unsigned, disks - i, MAX_XOR_BLOCKS);
44 xor_blocks(nr, size, data[0], data + i);
48 swap(data[0], data[failed_idx]);
51 static void raid_gen(int nd, int np, size_t size, void **v)
54 raid5_recov(nd + np, nd, size, v);
56 raid6_call.gen_syndrome(nd + np, size, v);
60 static void raid_rec(int nr, int *ir, int nd, int np, size_t size, void **v)
67 raid5_recov(nd + 1, ir[0], size, v);
69 raid6_call.gen_syndrome(nd + np, size, v);
73 /* data+data failure. */
74 raid6_2data_recov(nd + np, size, ir[0], ir[1], v);
75 } else if (ir[0] < nd) {
76 /* data + p/q failure */
78 if (ir[1] == nd) /* data + p failure */
79 raid6_datap_recov(nd + np, size, ir[0], v);
80 else { /* data + q failure */
81 raid5_recov(nd + 1, ir[0], size, v);
82 raid6_call.gen_syndrome(nd + np, size, v);
85 raid_gen(nd, np, size, v);
95 #include <raid/raid.h>
101 struct ec_stripe_buf *buf;
106 /* Stripes btree keys: */
108 int bch2_stripe_invalid(struct bch_fs *c, struct bkey_s_c k,
109 enum bkey_invalid_flags flags,
110 struct printbuf *err)
112 const struct bch_stripe *s = bkey_s_c_to_stripe(k).v;
115 bkey_fsck_err_on(bkey_eq(k.k->p, POS_MIN) ||
116 bpos_gt(k.k->p, POS(0, U32_MAX)), c, err,
118 "stripe at bad pos");
120 bkey_fsck_err_on(bkey_val_u64s(k.k) < stripe_val_u64s(s), c, err,
122 "incorrect value size (%zu < %u)",
123 bkey_val_u64s(k.k), stripe_val_u64s(s));
125 ret = bch2_bkey_ptrs_invalid(c, k, flags, err);
130 void bch2_stripe_to_text(struct printbuf *out, struct bch_fs *c,
133 const struct bch_stripe *s = bkey_s_c_to_stripe(k).v;
134 unsigned i, nr_data = s->nr_blocks - s->nr_redundant;
136 prt_printf(out, "algo %u sectors %u blocks %u:%u csum %u gran %u",
138 le16_to_cpu(s->sectors),
142 1U << s->csum_granularity_bits);
144 for (i = 0; i < s->nr_blocks; i++) {
145 const struct bch_extent_ptr *ptr = s->ptrs + i;
146 struct bch_dev *ca = bch_dev_bkey_exists(c, ptr->dev);
148 u64 b = sector_to_bucket_and_offset(ca, ptr->offset, &offset);
150 prt_printf(out, " %u:%llu:%u", ptr->dev, b, offset);
152 prt_printf(out, "#%u", stripe_blockcount_get(s, i));
153 prt_printf(out, " gen %u", ptr->gen);
154 if (ptr_stale(ca, ptr))
155 prt_printf(out, " stale");
159 /* returns blocknr in stripe that we matched: */
160 static const struct bch_extent_ptr *bkey_matches_stripe(struct bch_stripe *s,
161 struct bkey_s_c k, unsigned *block)
163 struct bkey_ptrs_c ptrs = bch2_bkey_ptrs_c(k);
164 const struct bch_extent_ptr *ptr;
165 unsigned i, nr_data = s->nr_blocks - s->nr_redundant;
167 bkey_for_each_ptr(ptrs, ptr)
168 for (i = 0; i < nr_data; i++)
169 if (__bch2_ptr_matches_stripe(&s->ptrs[i], ptr,
170 le16_to_cpu(s->sectors))) {
178 static bool extent_has_stripe_ptr(struct bkey_s_c k, u64 idx)
181 case KEY_TYPE_extent: {
182 struct bkey_s_c_extent e = bkey_s_c_to_extent(k);
183 const union bch_extent_entry *entry;
185 extent_for_each_entry(e, entry)
186 if (extent_entry_type(entry) ==
187 BCH_EXTENT_ENTRY_stripe_ptr &&
188 entry->stripe_ptr.idx == idx)
200 static void ec_stripe_buf_exit(struct ec_stripe_buf *buf)
202 if (buf->key.k.type == KEY_TYPE_stripe) {
203 struct bkey_i_stripe *s = bkey_i_to_stripe(&buf->key);
206 for (i = 0; i < s->v.nr_blocks; i++) {
207 kvpfree(buf->data[i], buf->size << 9);
213 /* XXX: this is a non-mempoolified memory allocation: */
214 static int ec_stripe_buf_init(struct ec_stripe_buf *buf,
215 unsigned offset, unsigned size)
217 struct bch_stripe *v = &bkey_i_to_stripe(&buf->key)->v;
218 unsigned csum_granularity = 1U << v->csum_granularity_bits;
219 unsigned end = offset + size;
222 BUG_ON(end > le16_to_cpu(v->sectors));
224 offset = round_down(offset, csum_granularity);
225 end = min_t(unsigned, le16_to_cpu(v->sectors),
226 round_up(end, csum_granularity));
228 buf->offset = offset;
229 buf->size = end - offset;
231 memset(buf->valid, 0xFF, sizeof(buf->valid));
233 for (i = 0; i < v->nr_blocks; i++) {
234 buf->data[i] = kvpmalloc(buf->size << 9, GFP_KERNEL);
241 ec_stripe_buf_exit(buf);
242 return -BCH_ERR_ENOMEM_stripe_buf;
247 static struct bch_csum ec_block_checksum(struct ec_stripe_buf *buf,
248 unsigned block, unsigned offset)
250 struct bch_stripe *v = &bkey_i_to_stripe(&buf->key)->v;
251 unsigned csum_granularity = 1 << v->csum_granularity_bits;
252 unsigned end = buf->offset + buf->size;
253 unsigned len = min(csum_granularity, end - offset);
255 BUG_ON(offset >= end);
256 BUG_ON(offset < buf->offset);
257 BUG_ON(offset & (csum_granularity - 1));
258 BUG_ON(offset + len != le16_to_cpu(v->sectors) &&
259 (len & (csum_granularity - 1)));
261 return bch2_checksum(NULL, v->csum_type,
263 buf->data[block] + ((offset - buf->offset) << 9),
267 static void ec_generate_checksums(struct ec_stripe_buf *buf)
269 struct bch_stripe *v = &bkey_i_to_stripe(&buf->key)->v;
270 unsigned i, j, csums_per_device = stripe_csums_per_device(v);
276 BUG_ON(buf->size != le16_to_cpu(v->sectors));
278 for (i = 0; i < v->nr_blocks; i++)
279 for (j = 0; j < csums_per_device; j++)
280 stripe_csum_set(v, i, j,
281 ec_block_checksum(buf, i, j << v->csum_granularity_bits));
284 static void ec_validate_checksums(struct bch_fs *c, struct ec_stripe_buf *buf)
286 struct bch_stripe *v = &bkey_i_to_stripe(&buf->key)->v;
287 unsigned csum_granularity = 1 << v->csum_granularity_bits;
293 for (i = 0; i < v->nr_blocks; i++) {
294 unsigned offset = buf->offset;
295 unsigned end = buf->offset + buf->size;
297 if (!test_bit(i, buf->valid))
300 while (offset < end) {
301 unsigned j = offset >> v->csum_granularity_bits;
302 unsigned len = min(csum_granularity, end - offset);
303 struct bch_csum want = stripe_csum_get(v, i, j);
304 struct bch_csum got = ec_block_checksum(buf, i, offset);
306 if (bch2_crc_cmp(want, got)) {
307 struct printbuf err = PRINTBUF;
308 struct bch_dev *ca = bch_dev_bkey_exists(c, v->ptrs[i].dev);
310 prt_printf(&err, "stripe checksum error: expected %0llx:%0llx got %0llx:%0llx (type %s)\n",
313 bch2_csum_types[v->csum_type]);
314 prt_printf(&err, " for %ps at %u of\n ", (void *) _RET_IP_, i);
315 bch2_bkey_val_to_text(&err, c, bkey_i_to_s_c(&buf->key));
316 bch_err_ratelimited(ca, "%s", err.buf);
319 clear_bit(i, buf->valid);
321 bch2_io_error(ca, BCH_MEMBER_ERROR_checksum);
330 /* Erasure coding: */
332 static void ec_generate_ec(struct ec_stripe_buf *buf)
334 struct bch_stripe *v = &bkey_i_to_stripe(&buf->key)->v;
335 unsigned nr_data = v->nr_blocks - v->nr_redundant;
336 unsigned bytes = le16_to_cpu(v->sectors) << 9;
338 raid_gen(nr_data, v->nr_redundant, bytes, buf->data);
341 static unsigned ec_nr_failed(struct ec_stripe_buf *buf)
343 struct bch_stripe *v = &bkey_i_to_stripe(&buf->key)->v;
345 return v->nr_blocks - bitmap_weight(buf->valid, v->nr_blocks);
348 static int ec_do_recov(struct bch_fs *c, struct ec_stripe_buf *buf)
350 struct bch_stripe *v = &bkey_i_to_stripe(&buf->key)->v;
351 unsigned i, failed[BCH_BKEY_PTRS_MAX], nr_failed = 0;
352 unsigned nr_data = v->nr_blocks - v->nr_redundant;
353 unsigned bytes = buf->size << 9;
355 if (ec_nr_failed(buf) > v->nr_redundant) {
356 bch_err_ratelimited(c,
357 "error doing reconstruct read: unable to read enough blocks");
361 for (i = 0; i < nr_data; i++)
362 if (!test_bit(i, buf->valid))
363 failed[nr_failed++] = i;
365 raid_rec(nr_failed, failed, nr_data, v->nr_redundant, bytes, buf->data);
371 static void ec_block_endio(struct bio *bio)
373 struct ec_bio *ec_bio = container_of(bio, struct ec_bio, bio);
374 struct bch_stripe *v = &bkey_i_to_stripe(&ec_bio->buf->key)->v;
375 struct bch_extent_ptr *ptr = &v->ptrs[ec_bio->idx];
376 struct bch_dev *ca = ec_bio->ca;
377 struct closure *cl = bio->bi_private;
379 if (bch2_dev_io_err_on(bio->bi_status, ca,
381 ? BCH_MEMBER_ERROR_write
382 : BCH_MEMBER_ERROR_read,
383 "erasure coding %s error: %s",
384 bio_data_dir(bio) ? "write" : "read",
385 bch2_blk_status_to_str(bio->bi_status)))
386 clear_bit(ec_bio->idx, ec_bio->buf->valid);
388 if (ptr_stale(ca, ptr)) {
389 bch_err_ratelimited(ca->fs,
390 "error %s stripe: stale pointer after io",
391 bio_data_dir(bio) == READ ? "reading from" : "writing to");
392 clear_bit(ec_bio->idx, ec_bio->buf->valid);
395 bio_put(&ec_bio->bio);
396 percpu_ref_put(&ca->io_ref);
400 static void ec_block_io(struct bch_fs *c, struct ec_stripe_buf *buf,
401 blk_opf_t opf, unsigned idx, struct closure *cl)
403 struct bch_stripe *v = &bkey_i_to_stripe(&buf->key)->v;
404 unsigned offset = 0, bytes = buf->size << 9;
405 struct bch_extent_ptr *ptr = &v->ptrs[idx];
406 struct bch_dev *ca = bch_dev_bkey_exists(c, ptr->dev);
407 enum bch_data_type data_type = idx < v->nr_blocks - v->nr_redundant
410 int rw = op_is_write(opf);
412 if (ptr_stale(ca, ptr)) {
413 bch_err_ratelimited(c,
414 "error %s stripe: stale pointer",
415 rw == READ ? "reading from" : "writing to");
416 clear_bit(idx, buf->valid);
420 if (!bch2_dev_get_ioref(ca, rw)) {
421 clear_bit(idx, buf->valid);
425 this_cpu_add(ca->io_done->sectors[rw][data_type], buf->size);
427 while (offset < bytes) {
428 unsigned nr_iovecs = min_t(size_t, BIO_MAX_VECS,
429 DIV_ROUND_UP(bytes, PAGE_SIZE));
430 unsigned b = min_t(size_t, bytes - offset,
431 nr_iovecs << PAGE_SHIFT);
432 struct ec_bio *ec_bio;
434 ec_bio = container_of(bio_alloc_bioset(ca->disk_sb.bdev,
445 ec_bio->bio.bi_iter.bi_sector = ptr->offset + buf->offset + (offset >> 9);
446 ec_bio->bio.bi_end_io = ec_block_endio;
447 ec_bio->bio.bi_private = cl;
449 bch2_bio_map(&ec_bio->bio, buf->data[idx] + offset, b);
452 percpu_ref_get(&ca->io_ref);
454 submit_bio(&ec_bio->bio);
459 percpu_ref_put(&ca->io_ref);
462 static int get_stripe_key_trans(struct btree_trans *trans, u64 idx,
463 struct ec_stripe_buf *stripe)
465 struct btree_iter iter;
469 k = bch2_bkey_get_iter(trans, &iter, BTREE_ID_stripes,
470 POS(0, idx), BTREE_ITER_SLOTS);
474 if (k.k->type != KEY_TYPE_stripe) {
478 bkey_reassemble(&stripe->key, k);
480 bch2_trans_iter_exit(trans, &iter);
484 /* recovery read path: */
485 int bch2_ec_read_extent(struct btree_trans *trans, struct bch_read_bio *rbio)
487 struct bch_fs *c = trans->c;
488 struct ec_stripe_buf *buf;
490 struct bch_stripe *v;
494 closure_init_stack(&cl);
496 BUG_ON(!rbio->pick.has_ec);
498 buf = kzalloc(sizeof(*buf), GFP_NOFS);
500 return -BCH_ERR_ENOMEM_ec_read_extent;
502 ret = lockrestart_do(trans, get_stripe_key_trans(trans, rbio->pick.ec.idx, buf));
504 bch_err_ratelimited(c,
505 "error doing reconstruct read: error %i looking up stripe", ret);
510 v = &bkey_i_to_stripe(&buf->key)->v;
512 if (!bch2_ptr_matches_stripe(v, rbio->pick)) {
513 bch_err_ratelimited(c,
514 "error doing reconstruct read: pointer doesn't match stripe");
519 offset = rbio->bio.bi_iter.bi_sector - v->ptrs[rbio->pick.ec.block].offset;
520 if (offset + bio_sectors(&rbio->bio) > le16_to_cpu(v->sectors)) {
521 bch_err_ratelimited(c,
522 "error doing reconstruct read: read is bigger than stripe");
527 ret = ec_stripe_buf_init(buf, offset, bio_sectors(&rbio->bio));
531 for (i = 0; i < v->nr_blocks; i++)
532 ec_block_io(c, buf, REQ_OP_READ, i, &cl);
536 if (ec_nr_failed(buf) > v->nr_redundant) {
537 bch_err_ratelimited(c,
538 "error doing reconstruct read: unable to read enough blocks");
543 ec_validate_checksums(c, buf);
545 ret = ec_do_recov(c, buf);
549 memcpy_to_bio(&rbio->bio, rbio->bio.bi_iter,
550 buf->data[rbio->pick.ec.block] + ((offset - buf->offset) << 9));
552 ec_stripe_buf_exit(buf);
557 /* stripe bucket accounting: */
559 static int __ec_stripe_mem_alloc(struct bch_fs *c, size_t idx, gfp_t gfp)
561 ec_stripes_heap n, *h = &c->ec_stripes_heap;
563 if (idx >= h->size) {
564 if (!init_heap(&n, max(1024UL, roundup_pow_of_two(idx + 1)), gfp))
565 return -BCH_ERR_ENOMEM_ec_stripe_mem_alloc;
567 mutex_lock(&c->ec_stripes_heap_lock);
568 if (n.size > h->size) {
569 memcpy(n.data, h->data, h->used * sizeof(h->data[0]));
573 mutex_unlock(&c->ec_stripes_heap_lock);
578 if (!genradix_ptr_alloc(&c->stripes, idx, gfp))
579 return -BCH_ERR_ENOMEM_ec_stripe_mem_alloc;
581 if (c->gc_pos.phase != GC_PHASE_NOT_RUNNING &&
582 !genradix_ptr_alloc(&c->gc_stripes, idx, gfp))
583 return -BCH_ERR_ENOMEM_ec_stripe_mem_alloc;
588 static int ec_stripe_mem_alloc(struct btree_trans *trans,
589 struct btree_iter *iter)
591 return allocate_dropping_locks_errcode(trans,
592 __ec_stripe_mem_alloc(trans->c, iter->pos.offset, _gfp));
596 * Hash table of open stripes:
597 * Stripes that are being created or modified are kept in a hash table, so that
598 * stripe deletion can skip them.
601 static bool __bch2_stripe_is_open(struct bch_fs *c, u64 idx)
603 unsigned hash = hash_64(idx, ilog2(ARRAY_SIZE(c->ec_stripes_new)));
604 struct ec_stripe_new *s;
606 hlist_for_each_entry(s, &c->ec_stripes_new[hash], hash)
612 static bool bch2_stripe_is_open(struct bch_fs *c, u64 idx)
616 spin_lock(&c->ec_stripes_new_lock);
617 ret = __bch2_stripe_is_open(c, idx);
618 spin_unlock(&c->ec_stripes_new_lock);
623 static bool bch2_try_open_stripe(struct bch_fs *c,
624 struct ec_stripe_new *s,
629 spin_lock(&c->ec_stripes_new_lock);
630 ret = !__bch2_stripe_is_open(c, idx);
632 unsigned hash = hash_64(idx, ilog2(ARRAY_SIZE(c->ec_stripes_new)));
635 hlist_add_head(&s->hash, &c->ec_stripes_new[hash]);
637 spin_unlock(&c->ec_stripes_new_lock);
642 static void bch2_stripe_close(struct bch_fs *c, struct ec_stripe_new *s)
646 spin_lock(&c->ec_stripes_new_lock);
647 hlist_del_init(&s->hash);
648 spin_unlock(&c->ec_stripes_new_lock);
653 /* Heap of all existing stripes, ordered by blocks_nonempty */
655 static u64 stripe_idx_to_delete(struct bch_fs *c)
657 ec_stripes_heap *h = &c->ec_stripes_heap;
659 lockdep_assert_held(&c->ec_stripes_heap_lock);
662 h->data[0].blocks_nonempty == 0 &&
663 !bch2_stripe_is_open(c, h->data[0].idx))
664 return h->data[0].idx;
669 static inline int ec_stripes_heap_cmp(ec_stripes_heap *h,
670 struct ec_stripe_heap_entry l,
671 struct ec_stripe_heap_entry r)
673 return ((l.blocks_nonempty > r.blocks_nonempty) -
674 (l.blocks_nonempty < r.blocks_nonempty));
677 static inline void ec_stripes_heap_set_backpointer(ec_stripes_heap *h,
680 struct bch_fs *c = container_of(h, struct bch_fs, ec_stripes_heap);
682 genradix_ptr(&c->stripes, h->data[i].idx)->heap_idx = i;
685 static void heap_verify_backpointer(struct bch_fs *c, size_t idx)
687 ec_stripes_heap *h = &c->ec_stripes_heap;
688 struct stripe *m = genradix_ptr(&c->stripes, idx);
690 BUG_ON(m->heap_idx >= h->used);
691 BUG_ON(h->data[m->heap_idx].idx != idx);
694 void bch2_stripes_heap_del(struct bch_fs *c,
695 struct stripe *m, size_t idx)
697 mutex_lock(&c->ec_stripes_heap_lock);
698 heap_verify_backpointer(c, idx);
700 heap_del(&c->ec_stripes_heap, m->heap_idx,
702 ec_stripes_heap_set_backpointer);
703 mutex_unlock(&c->ec_stripes_heap_lock);
706 void bch2_stripes_heap_insert(struct bch_fs *c,
707 struct stripe *m, size_t idx)
709 mutex_lock(&c->ec_stripes_heap_lock);
710 BUG_ON(heap_full(&c->ec_stripes_heap));
712 heap_add(&c->ec_stripes_heap, ((struct ec_stripe_heap_entry) {
714 .blocks_nonempty = m->blocks_nonempty,
717 ec_stripes_heap_set_backpointer);
719 heap_verify_backpointer(c, idx);
720 mutex_unlock(&c->ec_stripes_heap_lock);
723 void bch2_stripes_heap_update(struct bch_fs *c,
724 struct stripe *m, size_t idx)
726 ec_stripes_heap *h = &c->ec_stripes_heap;
730 mutex_lock(&c->ec_stripes_heap_lock);
731 heap_verify_backpointer(c, idx);
733 h->data[m->heap_idx].blocks_nonempty = m->blocks_nonempty;
736 heap_sift_up(h, i, ec_stripes_heap_cmp,
737 ec_stripes_heap_set_backpointer);
738 heap_sift_down(h, i, ec_stripes_heap_cmp,
739 ec_stripes_heap_set_backpointer);
741 heap_verify_backpointer(c, idx);
743 do_deletes = stripe_idx_to_delete(c) != 0;
744 mutex_unlock(&c->ec_stripes_heap_lock);
747 bch2_do_stripe_deletes(c);
750 /* stripe deletion */
752 static int ec_stripe_delete(struct btree_trans *trans, u64 idx)
754 struct bch_fs *c = trans->c;
755 struct btree_iter iter;
757 struct bkey_s_c_stripe s;
760 k = bch2_bkey_get_iter(trans, &iter, BTREE_ID_stripes, POS(0, idx),
766 if (k.k->type != KEY_TYPE_stripe) {
767 bch2_fs_inconsistent(c, "attempting to delete nonexistent stripe %llu", idx);
772 s = bkey_s_c_to_stripe(k);
773 for (unsigned i = 0; i < s.v->nr_blocks; i++)
774 if (stripe_blockcount_get(s.v, i)) {
775 struct printbuf buf = PRINTBUF;
777 bch2_bkey_val_to_text(&buf, c, k);
778 bch2_fs_inconsistent(c, "attempting to delete nonempty stripe %s", buf.buf);
784 ret = bch2_btree_delete_at(trans, &iter, 0);
786 bch2_trans_iter_exit(trans, &iter);
790 static void ec_stripe_delete_work(struct work_struct *work)
793 container_of(work, struct bch_fs, ec_stripe_delete_work);
794 struct btree_trans *trans = bch2_trans_get(c);
799 mutex_lock(&c->ec_stripes_heap_lock);
800 idx = stripe_idx_to_delete(c);
801 mutex_unlock(&c->ec_stripes_heap_lock);
806 ret = commit_do(trans, NULL, NULL, BTREE_INSERT_NOFAIL,
807 ec_stripe_delete(trans, idx));
814 bch2_trans_put(trans);
816 bch2_write_ref_put(c, BCH_WRITE_REF_stripe_delete);
819 void bch2_do_stripe_deletes(struct bch_fs *c)
821 if (bch2_write_ref_tryget(c, BCH_WRITE_REF_stripe_delete) &&
822 !queue_work(c->write_ref_wq, &c->ec_stripe_delete_work))
823 bch2_write_ref_put(c, BCH_WRITE_REF_stripe_delete);
826 /* stripe creation: */
828 static int ec_stripe_key_update(struct btree_trans *trans,
829 struct bkey_i_stripe *new,
832 struct bch_fs *c = trans->c;
833 struct btree_iter iter;
837 k = bch2_bkey_get_iter(trans, &iter, BTREE_ID_stripes,
838 new->k.p, BTREE_ITER_INTENT);
843 if (k.k->type != (create ? KEY_TYPE_deleted : KEY_TYPE_stripe)) {
844 bch2_fs_inconsistent(c, "error %s stripe: got existing key type %s",
845 create ? "creating" : "updating",
846 bch2_bkey_types[k.k->type]);
851 if (k.k->type == KEY_TYPE_stripe) {
852 const struct bch_stripe *old = bkey_s_c_to_stripe(k).v;
855 if (old->nr_blocks != new->v.nr_blocks) {
856 bch_err(c, "error updating stripe: nr_blocks does not match");
861 for (i = 0; i < new->v.nr_blocks; i++) {
862 unsigned v = stripe_blockcount_get(old, i);
865 (old->ptrs[i].dev != new->v.ptrs[i].dev ||
866 old->ptrs[i].gen != new->v.ptrs[i].gen ||
867 old->ptrs[i].offset != new->v.ptrs[i].offset));
869 stripe_blockcount_set(&new->v, i, v);
873 ret = bch2_trans_update(trans, &iter, &new->k_i, 0);
875 bch2_trans_iter_exit(trans, &iter);
879 static int ec_stripe_update_extent(struct btree_trans *trans,
880 struct bpos bucket, u8 gen,
881 struct ec_stripe_buf *s,
884 struct bch_stripe *v = &bkey_i_to_stripe(&s->key)->v;
885 struct bch_fs *c = trans->c;
886 struct bch_backpointer bp;
887 struct btree_iter iter;
889 const struct bch_extent_ptr *ptr_c;
890 struct bch_extent_ptr *ptr, *ec_ptr = NULL;
891 struct bch_extent_stripe_ptr stripe_ptr;
895 ret = bch2_get_next_backpointer(trans, bucket, gen,
896 bp_pos, &bp, BTREE_ITER_CACHED);
899 if (bpos_eq(*bp_pos, SPOS_MAX))
903 struct printbuf buf = PRINTBUF;
904 struct btree_iter node_iter;
907 b = bch2_backpointer_get_node(trans, &node_iter, *bp_pos, bp);
908 bch2_trans_iter_exit(trans, &node_iter);
913 prt_printf(&buf, "found btree node in erasure coded bucket: b=%px\n", b);
914 bch2_backpointer_to_text(&buf, &bp);
916 bch2_fs_inconsistent(c, "%s", buf.buf);
921 k = bch2_backpointer_get_key(trans, &iter, *bp_pos, bp, BTREE_ITER_INTENT);
927 * extent no longer exists - we could flush the btree
928 * write buffer and retry to verify, but no need:
933 if (extent_has_stripe_ptr(k, s->key.k.p.offset))
936 ptr_c = bkey_matches_stripe(v, k, &block);
938 * It doesn't generally make sense to erasure code cached ptrs:
939 * XXX: should we be incrementing a counter?
941 if (!ptr_c || ptr_c->cached)
944 dev = v->ptrs[block].dev;
946 n = bch2_trans_kmalloc(trans, bkey_bytes(k.k) + sizeof(stripe_ptr));
947 ret = PTR_ERR_OR_ZERO(n);
951 bkey_reassemble(n, k);
953 bch2_bkey_drop_ptrs(bkey_i_to_s(n), ptr, ptr->dev != dev);
954 ec_ptr = bch2_bkey_has_device(bkey_i_to_s(n), dev);
957 stripe_ptr = (struct bch_extent_stripe_ptr) {
958 .type = 1 << BCH_EXTENT_ENTRY_stripe_ptr,
960 .redundancy = v->nr_redundant,
961 .idx = s->key.k.p.offset,
964 __extent_entry_insert(n,
965 (union bch_extent_entry *) ec_ptr,
966 (union bch_extent_entry *) &stripe_ptr);
968 ret = bch2_trans_update(trans, &iter, n, 0);
970 bch2_trans_iter_exit(trans, &iter);
974 static int ec_stripe_update_bucket(struct btree_trans *trans, struct ec_stripe_buf *s,
977 struct bch_fs *c = trans->c;
978 struct bch_stripe *v = &bkey_i_to_stripe(&s->key)->v;
979 struct bch_extent_ptr bucket = v->ptrs[block];
980 struct bpos bucket_pos = PTR_BUCKET_POS(c, &bucket);
981 struct bpos bp_pos = POS_MIN;
985 ret = commit_do(trans, NULL, NULL,
986 BTREE_INSERT_NOCHECK_RW|
988 ec_stripe_update_extent(trans, bucket_pos, bucket.gen,
992 if (bkey_eq(bp_pos, POS_MAX))
995 bp_pos = bpos_nosnap_successor(bp_pos);
1001 static int ec_stripe_update_extents(struct bch_fs *c, struct ec_stripe_buf *s)
1003 struct btree_trans *trans = bch2_trans_get(c);
1004 struct bch_stripe *v = &bkey_i_to_stripe(&s->key)->v;
1005 unsigned i, nr_data = v->nr_blocks - v->nr_redundant;
1008 ret = bch2_btree_write_buffer_flush(trans);
1012 for (i = 0; i < nr_data; i++) {
1013 ret = ec_stripe_update_bucket(trans, s, i);
1018 bch2_trans_put(trans);
1023 static void zero_out_rest_of_ec_bucket(struct bch_fs *c,
1024 struct ec_stripe_new *s,
1026 struct open_bucket *ob)
1028 struct bch_dev *ca = bch_dev_bkey_exists(c, ob->dev);
1029 unsigned offset = ca->mi.bucket_size - ob->sectors_free;
1032 if (!bch2_dev_get_ioref(ca, WRITE)) {
1033 s->err = -BCH_ERR_erofs_no_writes;
1037 memset(s->new_stripe.data[block] + (offset << 9),
1039 ob->sectors_free << 9);
1041 ret = blkdev_issue_zeroout(ca->disk_sb.bdev,
1042 ob->bucket * ca->mi.bucket_size + offset,
1046 percpu_ref_put(&ca->io_ref);
1052 void bch2_ec_stripe_new_free(struct bch_fs *c, struct ec_stripe_new *s)
1055 bch2_stripe_close(c, s);
1060 * data buckets of new stripe all written: create the stripe
1062 static void ec_stripe_create(struct ec_stripe_new *s)
1064 struct bch_fs *c = s->c;
1065 struct open_bucket *ob;
1066 struct bch_stripe *v = &bkey_i_to_stripe(&s->new_stripe.key)->v;
1067 unsigned i, nr_data = v->nr_blocks - v->nr_redundant;
1070 BUG_ON(s->h->s == s);
1072 closure_sync(&s->iodone);
1075 for (i = 0; i < nr_data; i++)
1077 ob = c->open_buckets + s->blocks[i];
1079 if (ob->sectors_free)
1080 zero_out_rest_of_ec_bucket(c, s, i, ob);
1085 if (!bch2_err_matches(s->err, EROFS))
1086 bch_err(c, "error creating stripe: error writing data buckets");
1090 if (s->have_existing_stripe) {
1091 ec_validate_checksums(c, &s->existing_stripe);
1093 if (ec_do_recov(c, &s->existing_stripe)) {
1094 bch_err(c, "error creating stripe: error reading existing stripe");
1098 for (i = 0; i < nr_data; i++)
1099 if (stripe_blockcount_get(&bkey_i_to_stripe(&s->existing_stripe.key)->v, i))
1100 swap(s->new_stripe.data[i],
1101 s->existing_stripe.data[i]);
1103 ec_stripe_buf_exit(&s->existing_stripe);
1106 BUG_ON(!s->allocated);
1109 ec_generate_ec(&s->new_stripe);
1111 ec_generate_checksums(&s->new_stripe);
1114 for (i = nr_data; i < v->nr_blocks; i++)
1115 ec_block_io(c, &s->new_stripe, REQ_OP_WRITE, i, &s->iodone);
1116 closure_sync(&s->iodone);
1118 if (ec_nr_failed(&s->new_stripe)) {
1119 bch_err(c, "error creating stripe: error writing redundancy buckets");
1123 ret = bch2_trans_do(c, &s->res, NULL,
1124 BTREE_INSERT_NOCHECK_RW|
1125 BTREE_INSERT_NOFAIL,
1126 ec_stripe_key_update(trans,
1127 bkey_i_to_stripe(&s->new_stripe.key),
1128 !s->have_existing_stripe));
1130 bch_err(c, "error creating stripe: error creating stripe key");
1134 ret = ec_stripe_update_extents(c, &s->new_stripe);
1136 bch_err_msg(c, ret, "creating stripe: error updating pointers");
1140 bch2_disk_reservation_put(c, &s->res);
1142 for (i = 0; i < v->nr_blocks; i++)
1144 ob = c->open_buckets + s->blocks[i];
1148 __bch2_open_bucket_put(c, ob);
1150 bch2_open_bucket_put(c, ob);
1154 mutex_lock(&c->ec_stripe_new_lock);
1156 mutex_unlock(&c->ec_stripe_new_lock);
1157 wake_up(&c->ec_stripe_new_wait);
1159 ec_stripe_buf_exit(&s->existing_stripe);
1160 ec_stripe_buf_exit(&s->new_stripe);
1161 closure_debug_destroy(&s->iodone);
1163 ec_stripe_new_put(c, s, STRIPE_REF_stripe);
1166 static struct ec_stripe_new *get_pending_stripe(struct bch_fs *c)
1168 struct ec_stripe_new *s;
1170 mutex_lock(&c->ec_stripe_new_lock);
1171 list_for_each_entry(s, &c->ec_stripe_new_list, list)
1172 if (!atomic_read(&s->ref[STRIPE_REF_io]))
1176 mutex_unlock(&c->ec_stripe_new_lock);
1181 static void ec_stripe_create_work(struct work_struct *work)
1183 struct bch_fs *c = container_of(work,
1184 struct bch_fs, ec_stripe_create_work);
1185 struct ec_stripe_new *s;
1187 while ((s = get_pending_stripe(c)))
1188 ec_stripe_create(s);
1190 bch2_write_ref_put(c, BCH_WRITE_REF_stripe_create);
1193 void bch2_ec_do_stripe_creates(struct bch_fs *c)
1195 bch2_write_ref_get(c, BCH_WRITE_REF_stripe_create);
1197 if (!queue_work(system_long_wq, &c->ec_stripe_create_work))
1198 bch2_write_ref_put(c, BCH_WRITE_REF_stripe_create);
1201 static void ec_stripe_set_pending(struct bch_fs *c, struct ec_stripe_head *h)
1203 struct ec_stripe_new *s = h->s;
1205 BUG_ON(!s->allocated && !s->err);
1210 mutex_lock(&c->ec_stripe_new_lock);
1211 list_add(&s->list, &c->ec_stripe_new_list);
1212 mutex_unlock(&c->ec_stripe_new_lock);
1214 ec_stripe_new_put(c, s, STRIPE_REF_io);
1217 void bch2_ec_bucket_cancel(struct bch_fs *c, struct open_bucket *ob)
1219 struct ec_stripe_new *s = ob->ec;
1224 void *bch2_writepoint_ec_buf(struct bch_fs *c, struct write_point *wp)
1226 struct open_bucket *ob = ec_open_bucket(c, &wp->ptrs);
1233 BUG_ON(!ob->ec->new_stripe.data[ob->ec_idx]);
1235 ca = bch_dev_bkey_exists(c, ob->dev);
1236 offset = ca->mi.bucket_size - ob->sectors_free;
1238 return ob->ec->new_stripe.data[ob->ec_idx] + (offset << 9);
1241 static int unsigned_cmp(const void *_l, const void *_r)
1243 unsigned l = *((const unsigned *) _l);
1244 unsigned r = *((const unsigned *) _r);
1246 return cmp_int(l, r);
1249 /* pick most common bucket size: */
1250 static unsigned pick_blocksize(struct bch_fs *c,
1251 struct bch_devs_mask *devs)
1254 unsigned i, nr = 0, sizes[BCH_SB_MEMBERS_MAX];
1257 } cur = { 0, 0 }, best = { 0, 0 };
1259 for_each_member_device_rcu(ca, c, i, devs)
1260 sizes[nr++] = ca->mi.bucket_size;
1262 sort(sizes, nr, sizeof(unsigned), unsigned_cmp, NULL);
1264 for (i = 0; i < nr; i++) {
1265 if (sizes[i] != cur.size) {
1266 if (cur.nr > best.nr)
1270 cur.size = sizes[i];
1276 if (cur.nr > best.nr)
1282 static bool may_create_new_stripe(struct bch_fs *c)
1287 static void ec_stripe_key_init(struct bch_fs *c,
1291 unsigned stripe_size)
1293 struct bkey_i_stripe *s = bkey_stripe_init(k);
1296 s->v.sectors = cpu_to_le16(stripe_size);
1298 s->v.nr_blocks = nr_data + nr_parity;
1299 s->v.nr_redundant = nr_parity;
1300 s->v.csum_granularity_bits = ilog2(c->opts.encoded_extent_max >> 9);
1301 s->v.csum_type = BCH_CSUM_crc32c;
1304 while ((u64s = stripe_val_u64s(&s->v)) > BKEY_VAL_U64s_MAX) {
1305 BUG_ON(1 << s->v.csum_granularity_bits >=
1306 le16_to_cpu(s->v.sectors) ||
1307 s->v.csum_granularity_bits == U8_MAX);
1308 s->v.csum_granularity_bits++;
1311 set_bkey_val_u64s(&s->k, u64s);
1314 static int ec_new_stripe_alloc(struct bch_fs *c, struct ec_stripe_head *h)
1316 struct ec_stripe_new *s;
1318 lockdep_assert_held(&h->lock);
1320 s = kzalloc(sizeof(*s), GFP_KERNEL);
1322 return -BCH_ERR_ENOMEM_ec_new_stripe_alloc;
1324 mutex_init(&s->lock);
1325 closure_init(&s->iodone, NULL);
1326 atomic_set(&s->ref[STRIPE_REF_stripe], 1);
1327 atomic_set(&s->ref[STRIPE_REF_io], 1);
1330 s->nr_data = min_t(unsigned, h->nr_active_devs,
1331 BCH_BKEY_PTRS_MAX) - h->redundancy;
1332 s->nr_parity = h->redundancy;
1334 ec_stripe_key_init(c, &s->new_stripe.key,
1335 s->nr_data, s->nr_parity, h->blocksize);
1341 static struct ec_stripe_head *
1342 ec_new_stripe_head_alloc(struct bch_fs *c, unsigned target,
1343 unsigned algo, unsigned redundancy,
1344 enum bch_watermark watermark)
1346 struct ec_stripe_head *h;
1350 h = kzalloc(sizeof(*h), GFP_KERNEL);
1354 mutex_init(&h->lock);
1355 BUG_ON(!mutex_trylock(&h->lock));
1359 h->redundancy = redundancy;
1360 h->watermark = watermark;
1363 h->devs = target_rw_devs(c, BCH_DATA_user, target);
1365 for_each_member_device_rcu(ca, c, i, &h->devs)
1366 if (!ca->mi.durability)
1367 __clear_bit(i, h->devs.d);
1369 h->blocksize = pick_blocksize(c, &h->devs);
1371 for_each_member_device_rcu(ca, c, i, &h->devs)
1372 if (ca->mi.bucket_size == h->blocksize)
1373 h->nr_active_devs++;
1378 * If we only have redundancy + 1 devices, we're better off with just
1381 if (h->nr_active_devs < h->redundancy + 2)
1382 bch_err(c, "insufficient devices available to create stripe (have %u, need %u) - mismatched bucket sizes?",
1383 h->nr_active_devs, h->redundancy + 2);
1385 list_add(&h->list, &c->ec_stripe_head_list);
1389 void bch2_ec_stripe_head_put(struct bch_fs *c, struct ec_stripe_head *h)
1393 bitmap_weight(h->s->blocks_allocated,
1394 h->s->nr_data) == h->s->nr_data)
1395 ec_stripe_set_pending(c, h);
1397 mutex_unlock(&h->lock);
1400 static struct ec_stripe_head *
1401 __bch2_ec_stripe_head_get(struct btree_trans *trans,
1404 unsigned redundancy,
1405 enum bch_watermark watermark)
1407 struct bch_fs *c = trans->c;
1408 struct ec_stripe_head *h;
1414 ret = bch2_trans_mutex_lock(trans, &c->ec_stripe_head_lock);
1416 return ERR_PTR(ret);
1418 if (test_bit(BCH_FS_GOING_RO, &c->flags)) {
1419 h = ERR_PTR(-BCH_ERR_erofs_no_writes);
1423 list_for_each_entry(h, &c->ec_stripe_head_list, list)
1424 if (h->target == target &&
1426 h->redundancy == redundancy &&
1427 h->watermark == watermark) {
1428 ret = bch2_trans_mutex_lock(trans, &h->lock);
1434 h = ec_new_stripe_head_alloc(c, target, algo, redundancy, watermark);
1436 if (!IS_ERR_OR_NULL(h) &&
1437 h->nr_active_devs < h->redundancy + 2) {
1438 mutex_unlock(&h->lock);
1441 mutex_unlock(&c->ec_stripe_head_lock);
1445 static int new_stripe_alloc_buckets(struct btree_trans *trans, struct ec_stripe_head *h,
1446 enum bch_watermark watermark, struct closure *cl)
1448 struct bch_fs *c = trans->c;
1449 struct bch_devs_mask devs = h->devs;
1450 struct open_bucket *ob;
1451 struct open_buckets buckets;
1452 struct bch_stripe *v = &bkey_i_to_stripe(&h->s->new_stripe.key)->v;
1453 unsigned i, j, nr_have_parity = 0, nr_have_data = 0;
1454 bool have_cache = true;
1457 BUG_ON(v->nr_blocks != h->s->nr_data + h->s->nr_parity);
1458 BUG_ON(v->nr_redundant != h->s->nr_parity);
1460 for_each_set_bit(i, h->s->blocks_gotten, v->nr_blocks) {
1461 __clear_bit(v->ptrs[i].dev, devs.d);
1462 if (i < h->s->nr_data)
1468 BUG_ON(nr_have_data > h->s->nr_data);
1469 BUG_ON(nr_have_parity > h->s->nr_parity);
1472 if (nr_have_parity < h->s->nr_parity) {
1473 ret = bch2_bucket_alloc_set_trans(trans, &buckets,
1483 open_bucket_for_each(c, &buckets, ob, i) {
1484 j = find_next_zero_bit(h->s->blocks_gotten,
1485 h->s->nr_data + h->s->nr_parity,
1487 BUG_ON(j >= h->s->nr_data + h->s->nr_parity);
1489 h->s->blocks[j] = buckets.v[i];
1490 v->ptrs[j] = bch2_ob_ptr(c, ob);
1491 __set_bit(j, h->s->blocks_gotten);
1499 if (nr_have_data < h->s->nr_data) {
1500 ret = bch2_bucket_alloc_set_trans(trans, &buckets,
1510 open_bucket_for_each(c, &buckets, ob, i) {
1511 j = find_next_zero_bit(h->s->blocks_gotten,
1513 BUG_ON(j >= h->s->nr_data);
1515 h->s->blocks[j] = buckets.v[i];
1516 v->ptrs[j] = bch2_ob_ptr(c, ob);
1517 __set_bit(j, h->s->blocks_gotten);
1527 /* XXX: doesn't obey target: */
1528 static s64 get_existing_stripe(struct bch_fs *c,
1529 struct ec_stripe_head *head)
1531 ec_stripes_heap *h = &c->ec_stripes_heap;
1537 if (may_create_new_stripe(c))
1540 mutex_lock(&c->ec_stripes_heap_lock);
1541 for (heap_idx = 0; heap_idx < h->used; heap_idx++) {
1542 /* No blocks worth reusing, stripe will just be deleted: */
1543 if (!h->data[heap_idx].blocks_nonempty)
1546 stripe_idx = h->data[heap_idx].idx;
1548 m = genradix_ptr(&c->stripes, stripe_idx);
1550 if (m->algorithm == head->algo &&
1551 m->nr_redundant == head->redundancy &&
1552 m->sectors == head->blocksize &&
1553 m->blocks_nonempty < m->nr_blocks - m->nr_redundant &&
1554 bch2_try_open_stripe(c, head->s, stripe_idx)) {
1559 mutex_unlock(&c->ec_stripes_heap_lock);
1563 static int __bch2_ec_stripe_head_reuse(struct btree_trans *trans, struct ec_stripe_head *h)
1565 struct bch_fs *c = trans->c;
1566 struct bch_stripe *new_v = &bkey_i_to_stripe(&h->s->new_stripe.key)->v;
1567 struct bch_stripe *existing_v;
1573 * If we can't allocate a new stripe, and there's no stripes with empty
1574 * blocks for us to reuse, that means we have to wait on copygc:
1576 idx = get_existing_stripe(c, h);
1578 return -BCH_ERR_stripe_alloc_blocked;
1580 ret = get_stripe_key_trans(trans, idx, &h->s->existing_stripe);
1582 bch2_stripe_close(c, h->s);
1583 if (!bch2_err_matches(ret, BCH_ERR_transaction_restart))
1584 bch2_fs_fatal_error(c, "error reading stripe key: %s", bch2_err_str(ret));
1588 existing_v = &bkey_i_to_stripe(&h->s->existing_stripe.key)->v;
1590 BUG_ON(existing_v->nr_redundant != h->s->nr_parity);
1591 h->s->nr_data = existing_v->nr_blocks -
1592 existing_v->nr_redundant;
1594 ret = ec_stripe_buf_init(&h->s->existing_stripe, 0, h->blocksize);
1596 bch2_stripe_close(c, h->s);
1600 BUG_ON(h->s->existing_stripe.size != h->blocksize);
1601 BUG_ON(h->s->existing_stripe.size != le16_to_cpu(existing_v->sectors));
1604 * Free buckets we initially allocated - they might conflict with
1605 * blocks from the stripe we're reusing:
1607 for_each_set_bit(i, h->s->blocks_gotten, new_v->nr_blocks) {
1608 bch2_open_bucket_put(c, c->open_buckets + h->s->blocks[i]);
1609 h->s->blocks[i] = 0;
1611 memset(h->s->blocks_gotten, 0, sizeof(h->s->blocks_gotten));
1612 memset(h->s->blocks_allocated, 0, sizeof(h->s->blocks_allocated));
1614 for (i = 0; i < existing_v->nr_blocks; i++) {
1615 if (stripe_blockcount_get(existing_v, i)) {
1616 __set_bit(i, h->s->blocks_gotten);
1617 __set_bit(i, h->s->blocks_allocated);
1620 ec_block_io(c, &h->s->existing_stripe, READ, i, &h->s->iodone);
1623 bkey_copy(&h->s->new_stripe.key, &h->s->existing_stripe.key);
1624 h->s->have_existing_stripe = true;
1629 static int __bch2_ec_stripe_head_reserve(struct btree_trans *trans, struct ec_stripe_head *h)
1631 struct bch_fs *c = trans->c;
1632 struct btree_iter iter;
1634 struct bpos min_pos = POS(0, 1);
1635 struct bpos start_pos = bpos_max(min_pos, POS(0, c->ec_stripe_hint));
1638 if (!h->s->res.sectors) {
1639 ret = bch2_disk_reservation_get(c, &h->s->res,
1642 BCH_DISK_RESERVATION_NOFAIL);
1647 for_each_btree_key_norestart(trans, iter, BTREE_ID_stripes, start_pos,
1648 BTREE_ITER_SLOTS|BTREE_ITER_INTENT, k, ret) {
1649 if (bkey_gt(k.k->p, POS(0, U32_MAX))) {
1650 if (start_pos.offset) {
1651 start_pos = min_pos;
1652 bch2_btree_iter_set_pos(&iter, start_pos);
1656 ret = -BCH_ERR_ENOSPC_stripe_create;
1660 if (bkey_deleted(k.k) &&
1661 bch2_try_open_stripe(c, h->s, k.k->p.offset))
1665 c->ec_stripe_hint = iter.pos.offset;
1670 ret = ec_stripe_mem_alloc(trans, &iter);
1672 bch2_stripe_close(c, h->s);
1676 h->s->new_stripe.key.k.p = iter.pos;
1678 bch2_trans_iter_exit(trans, &iter);
1681 bch2_disk_reservation_put(c, &h->s->res);
1685 struct ec_stripe_head *bch2_ec_stripe_head_get(struct btree_trans *trans,
1688 unsigned redundancy,
1689 enum bch_watermark watermark,
1692 struct bch_fs *c = trans->c;
1693 struct ec_stripe_head *h;
1694 bool waiting = false;
1697 h = __bch2_ec_stripe_head_get(trans, target, algo, redundancy, watermark);
1698 if (IS_ERR_OR_NULL(h))
1702 ret = ec_new_stripe_alloc(c, h);
1704 bch_err(c, "failed to allocate new stripe");
1709 if (h->s->allocated)
1712 if (h->s->have_existing_stripe)
1713 goto alloc_existing;
1715 /* First, try to allocate a full stripe: */
1716 ret = new_stripe_alloc_buckets(trans, h, BCH_WATERMARK_stripe, NULL) ?:
1717 __bch2_ec_stripe_head_reserve(trans, h);
1720 if (bch2_err_matches(ret, BCH_ERR_transaction_restart) ||
1721 bch2_err_matches(ret, ENOMEM))
1725 * Not enough buckets available for a full stripe: we must reuse an
1729 ret = __bch2_ec_stripe_head_reuse(trans, h);
1732 if (waiting || !cl || ret != -BCH_ERR_stripe_alloc_blocked)
1735 if (watermark == BCH_WATERMARK_copygc) {
1736 ret = new_stripe_alloc_buckets(trans, h, watermark, NULL) ?:
1737 __bch2_ec_stripe_head_reserve(trans, h);
1743 /* XXX freelist_wait? */
1744 closure_wait(&c->freelist_wait, cl);
1749 closure_wake_up(&c->freelist_wait);
1752 * Retry allocating buckets, with the watermark for this
1755 ret = new_stripe_alloc_buckets(trans, h, watermark, cl);
1760 ret = ec_stripe_buf_init(&h->s->new_stripe, 0, h->blocksize);
1764 h->s->allocated = true;
1767 BUG_ON(!h->s->new_stripe.data[0]);
1768 BUG_ON(trans->restarted);
1771 bch2_ec_stripe_head_put(c, h);
1772 return ERR_PTR(ret);
1775 static void __bch2_ec_stop(struct bch_fs *c, struct bch_dev *ca)
1777 struct ec_stripe_head *h;
1778 struct open_bucket *ob;
1781 mutex_lock(&c->ec_stripe_head_lock);
1782 list_for_each_entry(h, &c->ec_stripe_head_list, list) {
1783 mutex_lock(&h->lock);
1790 for (i = 0; i < bkey_i_to_stripe(&h->s->new_stripe.key)->v.nr_blocks; i++) {
1791 if (!h->s->blocks[i])
1794 ob = c->open_buckets + h->s->blocks[i];
1795 if (ob->dev == ca->dev_idx)
1800 h->s->err = -BCH_ERR_erofs_no_writes;
1801 ec_stripe_set_pending(c, h);
1803 mutex_unlock(&h->lock);
1805 mutex_unlock(&c->ec_stripe_head_lock);
1808 void bch2_ec_stop_dev(struct bch_fs *c, struct bch_dev *ca)
1810 __bch2_ec_stop(c, ca);
1813 void bch2_fs_ec_stop(struct bch_fs *c)
1815 __bch2_ec_stop(c, NULL);
1818 static bool bch2_fs_ec_flush_done(struct bch_fs *c)
1822 mutex_lock(&c->ec_stripe_new_lock);
1823 ret = list_empty(&c->ec_stripe_new_list);
1824 mutex_unlock(&c->ec_stripe_new_lock);
1829 void bch2_fs_ec_flush(struct bch_fs *c)
1831 wait_event(c->ec_stripe_new_wait, bch2_fs_ec_flush_done(c));
1834 int bch2_stripes_read(struct bch_fs *c)
1836 struct btree_trans *trans = bch2_trans_get(c);
1837 struct btree_iter iter;
1839 const struct bch_stripe *s;
1844 for_each_btree_key(trans, iter, BTREE_ID_stripes, POS_MIN,
1845 BTREE_ITER_PREFETCH, k, ret) {
1846 if (k.k->type != KEY_TYPE_stripe)
1849 ret = __ec_stripe_mem_alloc(c, k.k->p.offset, GFP_KERNEL);
1853 s = bkey_s_c_to_stripe(k).v;
1855 m = genradix_ptr(&c->stripes, k.k->p.offset);
1856 m->sectors = le16_to_cpu(s->sectors);
1857 m->algorithm = s->algorithm;
1858 m->nr_blocks = s->nr_blocks;
1859 m->nr_redundant = s->nr_redundant;
1860 m->blocks_nonempty = 0;
1862 for (i = 0; i < s->nr_blocks; i++)
1863 m->blocks_nonempty += !!stripe_blockcount_get(s, i);
1865 bch2_stripes_heap_insert(c, m, k.k->p.offset);
1867 bch2_trans_iter_exit(trans, &iter);
1869 bch2_trans_put(trans);
1877 void bch2_stripes_heap_to_text(struct printbuf *out, struct bch_fs *c)
1879 ec_stripes_heap *h = &c->ec_stripes_heap;
1883 mutex_lock(&c->ec_stripes_heap_lock);
1884 for (i = 0; i < min_t(size_t, h->used, 50); i++) {
1885 m = genradix_ptr(&c->stripes, h->data[i].idx);
1887 prt_printf(out, "%zu %u/%u+%u", h->data[i].idx,
1888 h->data[i].blocks_nonempty,
1889 m->nr_blocks - m->nr_redundant,
1891 if (bch2_stripe_is_open(c, h->data[i].idx))
1892 prt_str(out, " open");
1895 mutex_unlock(&c->ec_stripes_heap_lock);
1898 void bch2_new_stripes_to_text(struct printbuf *out, struct bch_fs *c)
1900 struct ec_stripe_head *h;
1901 struct ec_stripe_new *s;
1903 mutex_lock(&c->ec_stripe_head_lock);
1904 list_for_each_entry(h, &c->ec_stripe_head_list, list) {
1905 prt_printf(out, "target %u algo %u redundancy %u %s:\n",
1906 h->target, h->algo, h->redundancy,
1907 bch2_watermarks[h->watermark]);
1910 prt_printf(out, "\tidx %llu blocks %u+%u allocated %u\n",
1911 h->s->idx, h->s->nr_data, h->s->nr_parity,
1912 bitmap_weight(h->s->blocks_allocated,
1915 mutex_unlock(&c->ec_stripe_head_lock);
1917 prt_printf(out, "in flight:\n");
1919 mutex_lock(&c->ec_stripe_new_lock);
1920 list_for_each_entry(s, &c->ec_stripe_new_list, list) {
1921 prt_printf(out, "\tidx %llu blocks %u+%u ref %u %u %s\n",
1922 s->idx, s->nr_data, s->nr_parity,
1923 atomic_read(&s->ref[STRIPE_REF_io]),
1924 atomic_read(&s->ref[STRIPE_REF_stripe]),
1925 bch2_watermarks[s->h->watermark]);
1927 mutex_unlock(&c->ec_stripe_new_lock);
1930 void bch2_fs_ec_exit(struct bch_fs *c)
1932 struct ec_stripe_head *h;
1936 mutex_lock(&c->ec_stripe_head_lock);
1937 h = list_first_entry_or_null(&c->ec_stripe_head_list,
1938 struct ec_stripe_head, list);
1941 mutex_unlock(&c->ec_stripe_head_lock);
1946 for (i = 0; i < bkey_i_to_stripe(&h->s->new_stripe.key)->v.nr_blocks; i++)
1947 BUG_ON(h->s->blocks[i]);
1954 BUG_ON(!list_empty(&c->ec_stripe_new_list));
1956 free_heap(&c->ec_stripes_heap);
1957 genradix_free(&c->stripes);
1958 bioset_exit(&c->ec_bioset);
1961 void bch2_fs_ec_init_early(struct bch_fs *c)
1963 spin_lock_init(&c->ec_stripes_new_lock);
1964 mutex_init(&c->ec_stripes_heap_lock);
1966 INIT_LIST_HEAD(&c->ec_stripe_head_list);
1967 mutex_init(&c->ec_stripe_head_lock);
1969 INIT_LIST_HEAD(&c->ec_stripe_new_list);
1970 mutex_init(&c->ec_stripe_new_lock);
1971 init_waitqueue_head(&c->ec_stripe_new_wait);
1973 INIT_WORK(&c->ec_stripe_create_work, ec_stripe_create_work);
1974 INIT_WORK(&c->ec_stripe_delete_work, ec_stripe_delete_work);
1977 int bch2_fs_ec_init(struct bch_fs *c)
1979 return bioset_init(&c->ec_bioset, 1, offsetof(struct ec_bio, bio),