]> git.sesse.net Git - bcachefs-tools-debian/blobdiff - libbcachefs/ec.c
Update bcachefs sources to 31718a2: bcachefs: Don't spin in journal reclaim
[bcachefs-tools-debian] / libbcachefs / ec.c
index 328e0429b5d77329d04ed061ebade45536648fcd..6027a7d4298165dfdff85e9c83db006888ddd85b 100644 (file)
@@ -15,6 +15,7 @@
 #include "io.h"
 #include "keylist.h"
 #include "recovery.h"
+#include "replicas.h"
 #include "super-io.h"
 #include "util.h"
 
@@ -142,8 +143,8 @@ void bch2_stripe_to_text(struct printbuf *out, struct bch_fs *c,
 }
 
 /* returns blocknr in stripe that we matched: */
-static int bkey_matches_stripe(struct bch_stripe *s,
-                              struct bkey_s_c k)
+static const struct bch_extent_ptr *bkey_matches_stripe(struct bch_stripe *s,
+                                               struct bkey_s_c k, unsigned *block)
 {
        struct bkey_ptrs_c ptrs = bch2_bkey_ptrs_c(k);
        const struct bch_extent_ptr *ptr;
@@ -152,10 +153,12 @@ static int bkey_matches_stripe(struct bch_stripe *s,
        bkey_for_each_ptr(ptrs, ptr)
                for (i = 0; i < nr_data; i++)
                        if (__bch2_ptr_matches_stripe(&s->ptrs[i], ptr,
-                                                     le16_to_cpu(s->sectors)))
-                               return i;
+                                                     le16_to_cpu(s->sectors))) {
+                               *block = i;
+                               return ptr;
+                       }
 
-       return -1;
+       return NULL;
 }
 
 static bool extent_has_stripe_ptr(struct bkey_s_c k, u64 idx)
@@ -283,14 +286,15 @@ static void ec_validate_checksums(struct bch_fs *c, struct ec_stripe_buf *buf)
                        struct bch_csum got = ec_block_checksum(buf, i, offset);
 
                        if (bch2_crc_cmp(want, got)) {
-                               char buf2[200];
+                               struct printbuf buf2 = PRINTBUF;
 
-                               bch2_bkey_val_to_text(&PBUF(buf2), c, bkey_i_to_s_c(&buf->key.k_i));
+                               bch2_bkey_val_to_text(&buf2, c, bkey_i_to_s_c(&buf->key.k_i));
 
                                bch_err_ratelimited(c,
                                        "stripe checksum error for %ps at %u:%u: csum type %u, expected %llx got %llx\n%s",
                                        (void *) _RET_IP_, i, j, v->csum_type,
-                                       want.lo, got.lo, buf2);
+                                       want.lo, got.lo, buf2.buf);
+                               printbuf_exit(&buf2);
                                clear_bit(i, buf->valid);
                                break;
                        }
@@ -429,13 +433,14 @@ static void ec_block_io(struct bch_fs *c, struct ec_stripe_buf *buf,
 static int get_stripe_key(struct bch_fs *c, u64 idx, struct ec_stripe_buf *stripe)
 {
        struct btree_trans trans;
-       struct btree_iter *iter;
+       struct btree_iter iter;
        struct bkey_s_c k;
        int ret;
 
        bch2_trans_init(&trans, c, 0, 0);
-       iter = bch2_trans_get_iter(&trans, BTREE_ID_stripes, POS(0, idx), BTREE_ITER_SLOTS);
-       k = bch2_btree_iter_peek_slot(iter);
+       bch2_trans_iter_init(&trans, &iter, BTREE_ID_stripes,
+                            POS(0, idx), BTREE_ITER_SLOTS);
+       k = bch2_btree_iter_peek_slot(&iter);
        ret = bkey_err(k);
        if (ret)
                goto err;
@@ -445,6 +450,7 @@ static int get_stripe_key(struct bch_fs *c, u64 idx, struct ec_stripe_buf *strip
        }
        bkey_reassemble(&stripe->key.k_i, k);
 err:
+       bch2_trans_iter_exit(&trans, &iter);
        bch2_trans_exit(&trans);
        return ret;
 }
@@ -542,29 +548,29 @@ static int __ec_stripe_mem_alloc(struct bch_fs *c, size_t idx, gfp_t gfp)
                free_heap(&n);
        }
 
-       if (!genradix_ptr_alloc(&c->stripes[0], idx, gfp))
+       if (!genradix_ptr_alloc(&c->stripes, idx, gfp))
                return -ENOMEM;
 
        if (c->gc_pos.phase != GC_PHASE_NOT_RUNNING &&
-           !genradix_ptr_alloc(&c->stripes[1], idx, gfp))
+           !genradix_ptr_alloc(&c->gc_stripes, idx, gfp))
                return -ENOMEM;
 
        return 0;
 }
 
-static int ec_stripe_mem_alloc(struct bch_fs *c,
+static int ec_stripe_mem_alloc(struct btree_trans *trans,
                               struct btree_iter *iter)
 {
        size_t idx = iter->pos.offset;
        int ret = 0;
 
-       if (!__ec_stripe_mem_alloc(c, idx, GFP_NOWAIT|__GFP_NOWARN))
+       if (!__ec_stripe_mem_alloc(trans->c, idx, GFP_NOWAIT|__GFP_NOWARN))
                return ret;
 
-       bch2_trans_unlock(iter->trans);
+       bch2_trans_unlock(trans);
        ret = -EINTR;
 
-       if (!__ec_stripe_mem_alloc(c, idx, GFP_KERNEL))
+       if (!__ec_stripe_mem_alloc(trans->c, idx, GFP_KERNEL))
                return ret;
 
        return -ENOMEM;
@@ -591,13 +597,13 @@ static inline void ec_stripes_heap_set_backpointer(ec_stripes_heap *h,
 {
        struct bch_fs *c = container_of(h, struct bch_fs, ec_stripes_heap);
 
-       genradix_ptr(&c->stripes[0], h->data[i].idx)->heap_idx = i;
+       genradix_ptr(&c->stripes, h->data[i].idx)->heap_idx = i;
 }
 
 static void heap_verify_backpointer(struct bch_fs *c, size_t idx)
 {
        ec_stripes_heap *h = &c->ec_stripes_heap;
-       struct stripe *m = genradix_ptr(&c->stripes[0], idx);
+       struct stripe *m = genradix_ptr(&c->stripes, idx);
 
        BUG_ON(!m->alive);
        BUG_ON(m->heap_idx >= h->used);
@@ -672,7 +678,7 @@ static int ec_stripe_delete(struct bch_fs *c, size_t idx)
        return bch2_btree_delete_range(c, BTREE_ID_stripes,
                                       POS(0, idx),
                                       POS(0, idx + 1),
-                                      NULL);
+                                      0, NULL);
 }
 
 static void ec_stripe_delete_work(struct work_struct *work)
@@ -689,7 +695,7 @@ static void ec_stripe_delete_work(struct work_struct *work)
                        break;
                }
 
-               bch2_stripes_heap_del(c, genradix_ptr(&c->stripes[0], idx), idx);
+               bch2_stripes_heap_del(c, genradix_ptr(&c->stripes, idx), idx);
                spin_unlock(&c->ec_stripes_heap_lock);
 
                if (ec_stripe_delete(c, idx))
@@ -699,27 +705,23 @@ static void ec_stripe_delete_work(struct work_struct *work)
 
 /* stripe creation: */
 
-static int ec_stripe_bkey_insert(struct bch_fs *c,
+static int ec_stripe_bkey_insert(struct btree_trans *trans,
                                 struct bkey_i_stripe *stripe,
                                 struct disk_reservation *res)
 {
-       struct btree_trans trans;
-       struct btree_iter *iter;
+       struct bch_fs *c = trans->c;
+       struct btree_iter iter;
        struct bkey_s_c k;
        struct bpos min_pos = POS(0, 1);
        struct bpos start_pos = bpos_max(min_pos, POS(0, c->ec_stripe_hint));
        int ret;
 
-       bch2_trans_init(&trans, c, 0, 0);
-retry:
-       bch2_trans_begin(&trans);
-
-       for_each_btree_key(&trans, iter, BTREE_ID_stripes, start_pos,
+       for_each_btree_key(trans, iter, BTREE_ID_stripes, start_pos,
                           BTREE_ITER_SLOTS|BTREE_ITER_INTENT, k, ret) {
                if (bkey_cmp(k.k->p, POS(0, U32_MAX)) > 0) {
                        if (start_pos.offset) {
                                start_pos = min_pos;
-                               bch2_btree_iter_set_pos(iter, start_pos);
+                               bch2_btree_iter_set_pos(&iter, start_pos);
                                continue;
                        }
 
@@ -733,41 +735,36 @@ retry:
 
        goto err;
 found_slot:
-       start_pos = iter->pos;
+       start_pos = iter.pos;
 
-       ret = ec_stripe_mem_alloc(c, iter);
+       ret = ec_stripe_mem_alloc(trans, &iter);
        if (ret)
                goto err;
 
-       stripe->k.p = iter->pos;
+       stripe->k.p = iter.pos;
 
-       ret   = bch2_trans_update(&trans, iter, &stripe->k_i, 0) ?:
-               bch2_trans_commit(&trans, res, NULL,
-                               BTREE_INSERT_NOFAIL);
-err:
-       bch2_trans_iter_put(&trans, iter);
+       ret = bch2_trans_update(trans, &iter, &stripe->k_i, 0);
 
-       if (ret == -EINTR)
-               goto retry;
-
-       c->ec_stripe_hint = ret ? start_pos.offset : start_pos.offset + 1;
-       bch2_trans_exit(&trans);
+       c->ec_stripe_hint = start_pos.offset;
+err:
+       bch2_trans_iter_exit(trans, &iter);
 
        return ret;
 }
 
 static int ec_stripe_bkey_update(struct btree_trans *trans,
-                                struct bkey_i_stripe *new)
+                                struct bkey_i_stripe *new,
+                                struct disk_reservation *res)
 {
-       struct btree_iter *iter;
+       struct btree_iter iter;
        struct bkey_s_c k;
        const struct bch_stripe *existing;
        unsigned i;
        int ret;
 
-       iter = bch2_trans_get_iter(trans, BTREE_ID_stripes,
-                                  new->k.p, BTREE_ITER_INTENT);
-       k = bch2_btree_iter_peek_slot(iter);
+       bch2_trans_iter_init(trans, &iter, BTREE_ID_stripes,
+                            new->k.p, BTREE_ITER_INTENT);
+       k = bch2_btree_iter_peek_slot(&iter);
        ret = bkey_err(k);
        if (ret)
                goto err;
@@ -790,9 +787,9 @@ static int ec_stripe_bkey_update(struct btree_trans *trans,
                stripe_blockcount_set(&new->v, i,
                        stripe_blockcount_get(existing, i));
 
-       ret = bch2_trans_update(trans, iter, &new->k_i, 0);
+       ret = bch2_trans_update(trans, &iter, &new->k_i, 0);
 err:
-       bch2_trans_iter_put(trans, iter);
+       bch2_trans_iter_exit(trans, &iter);
        return ret;
 }
 
@@ -820,10 +817,11 @@ static int ec_stripe_update_ptrs(struct bch_fs *c,
                                 struct bkey *pos)
 {
        struct btree_trans trans;
-       struct btree_iter *iter;
+       struct btree_iter iter;
        struct bkey_s_c k;
        struct bkey_s_extent e;
        struct bkey_buf sk;
+       struct bpos next_pos;
        int ret = 0, dev, block;
 
        bch2_bkey_buf_init(&sk);
@@ -831,23 +829,29 @@ static int ec_stripe_update_ptrs(struct bch_fs *c,
 
        /* XXX this doesn't support the reflink btree */
 
-       iter = bch2_trans_get_iter(&trans, BTREE_ID_extents,
-                                  bkey_start_pos(pos),
-                                  BTREE_ITER_INTENT);
-
-       while ((k = bch2_btree_iter_peek(iter)).k &&
+       bch2_trans_iter_init(&trans, &iter, BTREE_ID_extents,
+                            bkey_start_pos(pos),
+                            BTREE_ITER_INTENT);
+retry:
+       while (bch2_trans_begin(&trans),
+              (k = bch2_btree_iter_peek(&iter)).k &&
               !(ret = bkey_err(k)) &&
               bkey_cmp(bkey_start_pos(k.k), pos->p) < 0) {
+               const struct bch_extent_ptr *ptr_c;
                struct bch_extent_ptr *ptr, *ec_ptr = NULL;
 
                if (extent_has_stripe_ptr(k, s->key.k.p.offset)) {
-                       bch2_btree_iter_advance(iter);
+                       bch2_btree_iter_advance(&iter);
                        continue;
                }
 
-               block = bkey_matches_stripe(&s->key.v, k);
-               if (block < 0) {
-                       bch2_btree_iter_advance(iter);
+               ptr_c = bkey_matches_stripe(&s->key.v, k, &block);
+               /*
+                * It doesn't generally make sense to erasure code cached ptrs:
+                * XXX: should we be incrementing a counter?
+                */
+               if (!ptr_c || ptr_c->cached) {
+                       bch2_btree_iter_advance(&iter);
                        continue;
                }
 
@@ -862,17 +866,21 @@ static int ec_stripe_update_ptrs(struct bch_fs *c,
 
                extent_stripe_ptr_add(e, s, ec_ptr, block);
 
-               bch2_btree_iter_set_pos(iter, bkey_start_pos(&sk.k->k));
-               ret   = bch2_btree_iter_traverse(iter) ?:
-                       bch2_trans_update(&trans, iter, sk.k, 0) ?:
+               bch2_btree_iter_set_pos(&iter, bkey_start_pos(&sk.k->k));
+               next_pos = sk.k->k.p;
+
+               ret   = bch2_btree_iter_traverse(&iter) ?:
+                       bch2_trans_update(&trans, &iter, sk.k, 0) ?:
                        bch2_trans_commit(&trans, NULL, NULL,
                                        BTREE_INSERT_NOFAIL);
-               if (ret == -EINTR)
-                       ret = 0;
+               if (!ret)
+                       bch2_btree_iter_set_pos(&iter, next_pos);
                if (ret)
                        break;
        }
-       bch2_trans_iter_put(&trans, iter);
+       if (ret == -EINTR)
+               goto retry;
+       bch2_trans_iter_exit(&trans, &iter);
 
        bch2_trans_exit(&trans);
        bch2_bkey_buf_exit(&sk, c);
@@ -938,10 +946,10 @@ static void ec_stripe_create(struct ec_stripe_new *s)
                goto err_put_writes;
        }
 
-       ret = s->have_existing_stripe
-               ? bch2_trans_do(c, &s->res, NULL, BTREE_INSERT_NOFAIL,
-                               ec_stripe_bkey_update(&trans, &s->new_stripe.key))
-               : ec_stripe_bkey_insert(c, &s->new_stripe.key, &s->res);
+       ret = bch2_trans_do(c, &s->res, NULL, BTREE_INSERT_NOFAIL,
+                           s->have_existing_stripe
+                           ? ec_stripe_bkey_update(&trans, &s->new_stripe.key, &s->res)
+                           : ec_stripe_bkey_insert(&trans, &s->new_stripe.key, &s->res));
        if (ret) {
                bch_err(c, "error creating stripe: error creating stripe key");
                goto err_put_writes;
@@ -956,7 +964,7 @@ static void ec_stripe_create(struct ec_stripe_new *s)
        }
 
        spin_lock(&c->ec_stripes_heap_lock);
-       m = genradix_ptr(&c->stripes[0], s->new_stripe.key.k.p.offset);
+       m = genradix_ptr(&c->stripes, s->new_stripe.key.k.p.offset);
 
        BUG_ON(m->on_heap);
        bch2_stripes_heap_insert(c, m, s->new_stripe.key.k.p.offset);
@@ -1056,22 +1064,20 @@ void *bch2_writepoint_ec_buf(struct bch_fs *c, struct write_point *wp)
        if (!ob)
                return NULL;
 
-       ca      = bch_dev_bkey_exists(c, ob->ptr.dev);
+       ca      = bch_dev_bkey_exists(c, ob->dev);
        offset  = ca->mi.bucket_size - ob->sectors_free;
 
        return ob->ec->new_stripe.data[ob->ec_idx] + (offset << 9);
 }
 
-void bch2_ec_add_backpointer(struct bch_fs *c, struct write_point *wp,
-                            struct bpos pos, unsigned sectors)
+void bch2_ob_add_backpointer(struct bch_fs *c, struct open_bucket *ob,
+                            struct bkey *k)
 {
-       struct open_bucket *ob = ec_open_bucket(c, &wp->ptrs);
-       struct ec_stripe_new *ec;
+       struct ec_stripe_new *ec = ob->ec;
 
-       if (!ob)
+       if (!ec)
                return;
 
-       ec = ob->ec;
        mutex_lock(&ec->lock);
 
        if (bch2_keylist_realloc(&ec->keys, ec->inline_keys,
@@ -1081,8 +1087,8 @@ void bch2_ec_add_backpointer(struct bch_fs *c, struct write_point *wp,
        }
 
        bkey_init(&ec->keys.top->k);
-       ec->keys.top->k.p       = pos;
-       bch2_key_resize(&ec->keys.top->k, sectors);
+       ec->keys.top->k.p       = k->p;
+       ec->keys.top->k.size    = k->size;
        bch2_keylist_push(&ec->keys);
 
        mutex_unlock(&ec->lock);
@@ -1147,8 +1153,8 @@ static void ec_stripe_key_init(struct bch_fs *c,
        s->v.algorithm                  = 0;
        s->v.nr_blocks                  = nr_data + nr_parity;
        s->v.nr_redundant               = nr_parity;
-       s->v.csum_granularity_bits      = ilog2(c->sb.encoded_extent_max);
-       s->v.csum_type                  = BCH_CSUM_CRC32C;
+       s->v.csum_granularity_bits      = ilog2(c->opts.encoded_extent_max >> 9);
+       s->v.csum_type                  = BCH_CSUM_crc32c;
        s->v.pad                        = 0;
 
        while ((u64s = stripe_val_u64s(&s->v)) > BKEY_VAL_U64s_MAX) {
@@ -1266,16 +1272,15 @@ found:
        return h;
 }
 
-static enum bucket_alloc_ret
-new_stripe_alloc_buckets(struct bch_fs *c, struct ec_stripe_head *h,
-                        struct closure *cl)
+static int new_stripe_alloc_buckets(struct bch_fs *c, struct ec_stripe_head *h,
+                                   struct closure *cl)
 {
        struct bch_devs_mask devs = h->devs;
        struct open_bucket *ob;
        struct open_buckets buckets;
        unsigned i, j, nr_have_parity = 0, nr_have_data = 0;
        bool have_cache = true;
-       enum bucket_alloc_ret ret = ALLOC_SUCCESS;
+       int ret = 0;
 
        for (i = 0; i < h->s->new_stripe.key.v.nr_blocks; i++) {
                if (test_bit(i, h->s->blocks_gotten)) {
@@ -1314,7 +1319,7 @@ new_stripe_alloc_buckets(struct bch_fs *c, struct ec_stripe_head *h,
                        BUG_ON(j >= h->s->nr_data + h->s->nr_parity);
 
                        h->s->blocks[j] = buckets.v[i];
-                       h->s->new_stripe.key.v.ptrs[j] = ob->ptr;
+                       h->s->new_stripe.key.v.ptrs[j] = bch2_ob_ptr(c, ob);
                        __set_bit(j, h->s->blocks_gotten);
                }
 
@@ -1342,7 +1347,7 @@ new_stripe_alloc_buckets(struct bch_fs *c, struct ec_stripe_head *h,
                        BUG_ON(j >= h->s->nr_data);
 
                        h->s->blocks[j] = buckets.v[i];
-                       h->s->new_stripe.key.v.ptrs[j] = ob->ptr;
+                       h->s->new_stripe.key.v.ptrs[j] = bch2_ob_ptr(c, ob);
                        __set_bit(j, h->s->blocks_gotten);
                }
 
@@ -1375,7 +1380,7 @@ static s64 get_existing_stripe(struct bch_fs *c,
                        continue;
 
                stripe_idx = h->data[heap_idx].idx;
-               m = genradix_ptr(&c->stripes[0], stripe_idx);
+               m = genradix_ptr(&c->stripes, stripe_idx);
 
                if (m->algorithm        == head->algo &&
                    m->nr_redundant     == head->redundancy &&
@@ -1510,7 +1515,7 @@ struct ec_stripe_head *bch2_ec_stripe_head_get(struct bch_fs *c,
 
 err:
        bch2_ec_stripe_head_put(c, h);
-       return ERR_PTR(-ret);
+       return ERR_PTR(ret);
 }
 
 void bch2_ec_stop_dev(struct bch_fs *c, struct bch_dev *ca)
@@ -1531,7 +1536,7 @@ void bch2_ec_stop_dev(struct bch_fs *c, struct bch_dev *ca)
                                continue;
 
                        ob = c->open_buckets + h->s->blocks[i];
-                       if (ob->ptr.dev == ca->dev_idx)
+                       if (ob->dev == ca->dev_idx)
                                goto found;
                }
                goto unlock;
@@ -1549,145 +1554,59 @@ void bch2_stripes_heap_start(struct bch_fs *c)
        struct genradix_iter iter;
        struct stripe *m;
 
-       genradix_for_each(&c->stripes[0], iter, m)
+       genradix_for_each(&c->stripes, iter, m)
                if (m->alive)
                        bch2_stripes_heap_insert(c, m, iter.pos);
 }
 
-static int __bch2_stripe_write_key(struct btree_trans *trans,
-                                  struct btree_iter *iter,
-                                  struct stripe *m,
-                                  size_t idx,
-                                  struct bkey_i_stripe *new_key)
+int bch2_stripes_read(struct bch_fs *c)
 {
-       const struct bch_stripe *v;
+       struct btree_trans trans;
+       struct btree_iter iter;
        struct bkey_s_c k;
+       const struct bch_stripe *s;
+       struct stripe *m;
        unsigned i;
        int ret;
 
-       bch2_btree_iter_set_pos(iter, POS(0, idx));
-
-       k = bch2_btree_iter_peek_slot(iter);
-       ret = bkey_err(k);
-       if (ret)
-               return ret;
-
-       if (k.k->type != KEY_TYPE_stripe)
-               return -EIO;
-
-       v = bkey_s_c_to_stripe(k).v;
-       for (i = 0; i < v->nr_blocks; i++)
-               if (m->block_sectors[i] != stripe_blockcount_get(v, i))
-                       goto write;
-       return 0;
-write:
-       bkey_reassemble(&new_key->k_i, k);
-
-       for (i = 0; i < new_key->v.nr_blocks; i++)
-               stripe_blockcount_set(&new_key->v, i,
-                                     m->block_sectors[i]);
-
-       return bch2_trans_update(trans, iter, &new_key->k_i, 0);
-}
-
-int bch2_stripes_write(struct bch_fs *c, unsigned flags)
-{
-       struct btree_trans trans;
-       struct btree_iter *iter;
-       struct genradix_iter giter;
-       struct bkey_i_stripe *new_key;
-       struct stripe *m;
-       int ret = 0;
-
-       new_key = kmalloc(255 * sizeof(u64), GFP_KERNEL);
-       BUG_ON(!new_key);
-
        bch2_trans_init(&trans, c, 0, 0);
 
-       iter = bch2_trans_get_iter(&trans, BTREE_ID_stripes, POS_MIN,
-                                  BTREE_ITER_SLOTS|BTREE_ITER_INTENT);
-
-       genradix_for_each(&c->stripes[0], giter, m) {
-               if (!m->alive)
+       for_each_btree_key(&trans, iter, BTREE_ID_stripes, POS_MIN,
+                          BTREE_ITER_PREFETCH, k, ret) {
+               if (k.k->type != KEY_TYPE_stripe)
                        continue;
 
-               ret = __bch2_trans_do(&trans, NULL, NULL,
-                                     BTREE_INSERT_NOFAIL|flags,
-                       __bch2_stripe_write_key(&trans, iter, m,
-                                       giter.pos, new_key));
-
+               ret = __ec_stripe_mem_alloc(c, k.k->p.offset, GFP_KERNEL);
                if (ret)
                        break;
-       }
-       bch2_trans_iter_put(&trans, iter);
 
-       bch2_trans_exit(&trans);
+               s = bkey_s_c_to_stripe(k).v;
 
-       kfree(new_key);
-
-       return ret;
-}
+               m = genradix_ptr(&c->stripes, k.k->p.offset);
+               m->alive        = true;
+               m->sectors      = le16_to_cpu(s->sectors);
+               m->algorithm    = s->algorithm;
+               m->nr_blocks    = s->nr_blocks;
+               m->nr_redundant = s->nr_redundant;
+               m->blocks_nonempty = 0;
 
-static int bch2_stripes_read_fn(struct bch_fs *c, struct bkey_s_c k)
-{
-       int ret = 0;
+               for (i = 0; i < s->nr_blocks; i++)
+                       m->blocks_nonempty += !!stripe_blockcount_get(s, i);
 
-       if (k.k->type == KEY_TYPE_stripe)
-               ret = __ec_stripe_mem_alloc(c, k.k->p.offset, GFP_KERNEL) ?:
-                       bch2_mark_key(c, k,
-                                     BTREE_TRIGGER_INSERT|
-                                     BTREE_TRIGGER_NOATOMIC);
+               spin_lock(&c->ec_stripes_heap_lock);
+               bch2_stripes_heap_update(c, m, k.k->p.offset);
+               spin_unlock(&c->ec_stripes_heap_lock);
+       }
+       bch2_trans_iter_exit(&trans, &iter);
 
-       return ret;
-}
+       bch2_trans_exit(&trans);
 
-int bch2_stripes_read(struct bch_fs *c)
-{
-       int ret = bch2_btree_and_journal_walk(c, BTREE_ID_stripes,
-                                             bch2_stripes_read_fn);
        if (ret)
                bch_err(c, "error reading stripes: %i", ret);
 
        return ret;
 }
 
-int bch2_ec_mem_alloc(struct bch_fs *c, bool gc)
-{
-       struct btree_trans trans;
-       struct btree_iter *iter;
-       struct bkey_s_c k;
-       size_t i, idx = 0;
-       int ret = 0;
-
-       bch2_trans_init(&trans, c, 0, 0);
-       iter = bch2_trans_get_iter(&trans, BTREE_ID_stripes, POS(0, U64_MAX), 0);
-
-       k = bch2_btree_iter_prev(iter);
-       if (!IS_ERR_OR_NULL(k.k))
-               idx = k.k->p.offset + 1;
-
-       bch2_trans_iter_put(&trans, iter);
-       ret = bch2_trans_exit(&trans);
-       if (ret)
-               return ret;
-
-       if (!idx)
-               return 0;
-
-       if (!gc &&
-           !init_heap(&c->ec_stripes_heap, roundup_pow_of_two(idx),
-                      GFP_KERNEL))
-               return -ENOMEM;
-#if 0
-       ret = genradix_prealloc(&c->stripes[gc], idx, GFP_KERNEL);
-#else
-       for (i = 0; i < idx; i++)
-               if (!genradix_ptr_alloc(&c->stripes[gc], i, GFP_KERNEL))
-                       return -ENOMEM;
-#endif
-       return 0;
-}
-
 void bch2_stripes_heap_to_text(struct printbuf *out, struct bch_fs *c)
 {
        ec_stripes_heap *h = &c->ec_stripes_heap;
@@ -1696,7 +1615,7 @@ void bch2_stripes_heap_to_text(struct printbuf *out, struct bch_fs *c)
 
        spin_lock(&c->ec_stripes_heap_lock);
        for (i = 0; i < min_t(size_t, h->used, 20); i++) {
-               m = genradix_ptr(&c->stripes[0], h->data[i].idx);
+               m = genradix_ptr(&c->stripes, h->data[i].idx);
 
                pr_buf(out, "%zu %u/%u+%u\n", h->data[i].idx,
                       h->data[i].blocks_nonempty,
@@ -1754,7 +1673,7 @@ void bch2_fs_ec_exit(struct bch_fs *c)
        BUG_ON(!list_empty(&c->ec_stripe_new_list));
 
        free_heap(&c->ec_stripes_heap);
-       genradix_free(&c->stripes[0]);
+       genradix_free(&c->stripes);
        bioset_exit(&c->ec_bioset);
 }