]> git.sesse.net Git - bcachefs-tools-debian/blobdiff - libbcachefs/ec.c
Update bcachefs sources to 90a9c61e2b bcachefs: Switch bch2_btree_delete_range()...
[bcachefs-tools-debian] / libbcachefs / ec.c
index 3cccd1faade5cbe0d0a08313dd3d6001fd6b4b58..f33acf1af1109ea091bbd171ce9fca51421a12f6 100644 (file)
@@ -102,24 +102,34 @@ struct ec_bio {
 
 /* Stripes btree keys: */
 
-const char *bch2_stripe_invalid(const struct bch_fs *c, struct bkey_s_c k)
+int bch2_stripe_invalid(const struct bch_fs *c, struct bkey_s_c k,
+                       int rw, struct printbuf *err)
 {
        const struct bch_stripe *s = bkey_s_c_to_stripe(k).v;
 
-       if (!bkey_cmp(k.k->p, POS_MIN))
-               return "stripe at pos 0";
+       if (!bkey_cmp(k.k->p, POS_MIN)) {
+               prt_printf(err, "stripe at POS_MIN");
+               return -EINVAL;
+       }
 
-       if (k.k->p.inode)
-               return "invalid stripe key";
+       if (k.k->p.inode) {
+               prt_printf(err, "nonzero inode field");
+               return -EINVAL;
+       }
 
-       if (bkey_val_bytes(k.k) < sizeof(*s))
-               return "incorrect value size";
+       if (bkey_val_bytes(k.k) < sizeof(*s)) {
+               prt_printf(err, "incorrect value size (%zu < %zu)",
+                      bkey_val_bytes(k.k), sizeof(*s));
+               return -EINVAL;
+       }
 
-       if (bkey_val_bytes(k.k) < sizeof(*s) ||
-           bkey_val_u64s(k.k) < stripe_val_u64s(s))
-               return "incorrect value size";
+       if (bkey_val_u64s(k.k) < stripe_val_u64s(s)) {
+               prt_printf(err, "incorrect value size (%zu < %u)",
+                      bkey_val_u64s(k.k), stripe_val_u64s(s));
+               return -EINVAL;
+       }
 
-       return bch2_bkey_ptrs_invalid(c, k);
+       return bch2_bkey_ptrs_invalid(c, k, rw, err);
 }
 
 void bch2_stripe_to_text(struct printbuf *out, struct bch_fs *c,
@@ -128,7 +138,7 @@ void bch2_stripe_to_text(struct printbuf *out, struct bch_fs *c,
        const struct bch_stripe *s = bkey_s_c_to_stripe(k).v;
        unsigned i;
 
-       pr_buf(out, "algo %u sectors %u blocks %u:%u csum %u gran %u",
+       prt_printf(out, "algo %u sectors %u blocks %u:%u csum %u gran %u",
               s->algorithm,
               le16_to_cpu(s->sectors),
               s->nr_blocks - s->nr_redundant,
@@ -137,7 +147,7 @@ void bch2_stripe_to_text(struct printbuf *out, struct bch_fs *c,
               1U << s->csum_granularity_bits);
 
        for (i = 0; i < s->nr_blocks; i++)
-               pr_buf(out, " %u:%llu:%u", s->ptrs[i].dev,
+               prt_printf(out, " %u:%llu:%u", s->ptrs[i].dev,
                       (u64) s->ptrs[i].offset,
                       stripe_blockcount_get(s, i));
 }
@@ -286,14 +296,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;
                        }
@@ -401,7 +412,10 @@ static void ec_block_io(struct bch_fs *c, struct ec_stripe_buf *buf,
                                   nr_iovecs << PAGE_SHIFT);
                struct ec_bio *ec_bio;
 
-               ec_bio = container_of(bio_alloc_bioset(GFP_KERNEL, nr_iovecs,
+               ec_bio = container_of(bio_alloc_bioset(ca->disk_sb.bdev,
+                                                      nr_iovecs,
+                                                      rw,
+                                                      GFP_KERNEL,
                                                       &c->ec_bioset),
                                      struct ec_bio, bio);
 
@@ -409,9 +423,6 @@ static void ec_block_io(struct bch_fs *c, struct ec_stripe_buf *buf,
                ec_bio->buf                     = buf;
                ec_bio->idx                     = idx;
 
-               bio_set_dev(&ec_bio->bio, ca->disk_sb.bdev);
-               bio_set_op_attrs(&ec_bio->bio, rw, 0);
-
                ec_bio->bio.bi_iter.bi_sector   = ptr->offset + buf->offset + (offset >> 9);
                ec_bio->bio.bi_end_io           = ec_block_endio;
                ec_bio->bio.bi_private          = cl;
@@ -561,18 +572,14 @@ 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(trans->c, idx, GFP_NOWAIT|__GFP_NOWARN))
-               return ret;
+               return 0;
 
        bch2_trans_unlock(trans);
-       ret = -EINTR;
-
-       if (!__ec_stripe_mem_alloc(trans->c, idx, GFP_KERNEL))
-               return ret;
 
-       return -ENOMEM;
+       return   __ec_stripe_mem_alloc(trans->c, idx, GFP_KERNEL) ?:
+               bch2_trans_relock(trans);
 }
 
 static ssize_t stripe_idx_to_delete(struct bch_fs *c)
@@ -677,7 +684,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)
@@ -715,7 +722,7 @@ static int ec_stripe_bkey_insert(struct btree_trans *trans,
        struct bpos start_pos = bpos_max(min_pos, POS(0, c->ec_stripe_hint));
        int ret;
 
-       for_each_btree_key(trans, iter, BTREE_ID_stripes, start_pos,
+       for_each_btree_key_norestart(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) {
@@ -729,12 +736,13 @@ static int ec_stripe_bkey_insert(struct btree_trans *trans,
                }
 
                if (bkey_deleted(k.k))
-                       goto found_slot;
+                       break;
        }
 
-       goto err;
-found_slot:
-       start_pos = iter.pos;
+       c->ec_stripe_hint = iter.pos.offset;
+
+       if (ret)
+               goto err;
 
        ret = ec_stripe_mem_alloc(trans, &iter);
        if (ret)
@@ -743,8 +751,6 @@ found_slot:
        stripe->k.p = iter.pos;
 
        ret = bch2_trans_update(trans, &iter, &stripe->k_i, 0);
-
-       c->ec_stripe_hint = start_pos.offset;
 err:
        bch2_trans_iter_exit(trans, &iter);
 
@@ -811,80 +817,62 @@ static void extent_stripe_ptr_add(struct bkey_s_extent e,
        };
 }
 
-static int ec_stripe_update_ptrs(struct bch_fs *c,
-                                struct ec_stripe_buf *s,
-                                struct bkey *pos)
+static int ec_stripe_update_extent(struct btree_trans *trans,
+                                  struct btree_iter *iter,
+                                  struct bkey_s_c k,
+                                  struct ec_stripe_buf *s,
+                                  struct bpos end)
 {
-       struct btree_trans trans;
-       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);
-       bch2_trans_init(&trans, c, BTREE_ITER_MAX, 0);
-
-       /* XXX this doesn't support the reflink btree */
-
-       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);
-                       continue;
-               }
+       const struct bch_extent_ptr *ptr_c;
+       struct bch_extent_ptr *ptr, *ec_ptr = NULL;
+       struct bkey_i *n;
+       int ret, dev, block;
 
-               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;
-               }
+       if (bkey_cmp(bkey_start_pos(k.k), end) >= 0)
+               return 1;
 
-               dev = s->key.v.ptrs[block].dev;
+       if (extent_has_stripe_ptr(k, s->key.k.p.offset))
+               return 0;
 
-               bch2_bkey_buf_reassemble(&sk, c, k);
-               e = bkey_i_to_s_extent(sk.k);
+       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)
+               return 0;
 
-               bch2_bkey_drop_ptrs(e.s, ptr, ptr->dev != dev);
-               ec_ptr = (void *) bch2_bkey_has_device(e.s_c, dev);
-               BUG_ON(!ec_ptr);
+       dev = s->key.v.ptrs[block].dev;
 
-               extent_stripe_ptr_add(e, s, ec_ptr, block);
+       n = bch2_trans_kmalloc(trans, bkey_bytes(k.k));
+       ret = PTR_ERR_OR_ZERO(n);
+       if (ret)
+               return ret;
 
-               bch2_btree_iter_set_pos(&iter, bkey_start_pos(&sk.k->k));
-               next_pos = sk.k->k.p;
+       bkey_reassemble(n, k);
 
-               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)
-                       bch2_btree_iter_set_pos(&iter, next_pos);
-               if (ret)
-                       break;
-       }
-       if (ret == -EINTR)
-               goto retry;
-       bch2_trans_iter_exit(&trans, &iter);
+       bch2_bkey_drop_ptrs(bkey_i_to_s(n), ptr, ptr->dev != dev);
+       ec_ptr = (void *) bch2_bkey_has_device(bkey_i_to_s_c(n), dev);
+       BUG_ON(!ec_ptr);
 
-       bch2_trans_exit(&trans);
-       bch2_bkey_buf_exit(&sk, c);
+       extent_stripe_ptr_add(bkey_i_to_s_extent(n), s, ec_ptr, block);
 
-       return ret;
+       return bch2_trans_update(trans, iter, n, 0);
+}
+
+static int ec_stripe_update_extents(struct bch_fs *c,
+                                struct ec_stripe_buf *s,
+                                struct bkey *pos)
+{
+       struct btree_iter iter;
+       struct bkey_s_c k;
+
+       return bch2_trans_run(c,
+               for_each_btree_key_commit(&trans, iter,
+                       BTREE_ID_extents, bkey_start_pos(pos),
+                       BTREE_ITER_NOT_EXTENTS|BTREE_ITER_INTENT, k,
+                       NULL, NULL, BTREE_INSERT_NOFAIL,
+               ec_stripe_update_extent(&trans, &iter, k, s, pos->p)));
 }
 
 /*
@@ -928,7 +916,7 @@ static void ec_stripe_create(struct ec_stripe_new *s)
 
        BUG_ON(!s->allocated);
 
-       if (!percpu_ref_tryget(&c->writes))
+       if (!percpu_ref_tryget_live(&c->writes))
                goto err;
 
        ec_generate_ec(&s->new_stripe);
@@ -955,9 +943,10 @@ static void ec_stripe_create(struct ec_stripe_new *s)
        }
 
        for_each_keylist_key(&s->keys, k) {
-               ret = ec_stripe_update_ptrs(c, &s->new_stripe, &k->k);
+               ret = ec_stripe_update_extents(c, &s->new_stripe, &k->k);
                if (ret) {
-                       bch_err(c, "error creating stripe: error %i updating pointers", ret);
+                       bch_err(c, "error creating stripe: error updating pointers: %s",
+                               bch2_err_str(ret));
                        break;
                }
        }
@@ -1294,9 +1283,6 @@ static int new_stripe_alloc_buckets(struct bch_fs *c, struct ec_stripe_head *h,
        BUG_ON(nr_have_data     > h->s->nr_data);
        BUG_ON(nr_have_parity   > h->s->nr_parity);
 
-       percpu_down_read(&c->mark_lock);
-       rcu_read_lock();
-
        buckets.nr = 0;
        if (nr_have_parity < h->s->nr_parity) {
                ret = bch2_bucket_alloc_set(c, &buckets,
@@ -1306,8 +1292,8 @@ static int new_stripe_alloc_buckets(struct bch_fs *c, struct ec_stripe_head *h,
                                            &nr_have_parity,
                                            &have_cache,
                                            h->copygc
-                                           ? RESERVE_MOVINGGC
-                                           : RESERVE_NONE,
+                                           ? RESERVE_movinggc
+                                           : RESERVE_none,
                                            0,
                                            cl);
 
@@ -1323,7 +1309,7 @@ static int new_stripe_alloc_buckets(struct bch_fs *c, struct ec_stripe_head *h,
                }
 
                if (ret)
-                       goto err;
+                       return ret;
        }
 
        buckets.nr = 0;
@@ -1335,8 +1321,8 @@ static int new_stripe_alloc_buckets(struct bch_fs *c, struct ec_stripe_head *h,
                                            &nr_have_data,
                                            &have_cache,
                                            h->copygc
-                                           ? RESERVE_MOVINGGC
-                                           : RESERVE_NONE,
+                                           ? RESERVE_movinggc
+                                           : RESERVE_none,
                                            0,
                                            cl);
 
@@ -1351,12 +1337,10 @@ static int new_stripe_alloc_buckets(struct bch_fs *c, struct ec_stripe_head *h,
                }
 
                if (ret)
-                       goto err;
+                       return ret;
        }
-err:
-       rcu_read_unlock();
-       percpu_up_read(&c->mark_lock);
-       return ret;
+
+       return 0;
 }
 
 /* XXX: doesn't obey target: */
@@ -1558,50 +1542,48 @@ void bch2_stripes_heap_start(struct bch_fs *c)
                        bch2_stripes_heap_insert(c, m, iter.pos);
 }
 
-static int bch2_stripes_read_fn(struct btree_trans *trans, struct bkey_s_c k)
+int bch2_stripes_read(struct bch_fs *c)
 {
+       struct btree_trans trans;
+       struct btree_iter iter;
+       struct bkey_s_c k;
        const struct bch_stripe *s;
-       struct bch_fs *c = trans->c;
        struct stripe *m;
        unsigned i;
-       int ret = 0;
-
-       if (k.k->type != KEY_TYPE_stripe)
-               return 0;
+       int ret;
 
-       ret = __ec_stripe_mem_alloc(c, k.k->p.offset, GFP_KERNEL);
-       if (ret)
-               return ret;
+       bch2_trans_init(&trans, c, 0, 0);
 
-       s = bkey_s_c_to_stripe(k).v;
+       for_each_btree_key(&trans, iter, BTREE_ID_stripes, POS_MIN,
+                          BTREE_ITER_PREFETCH, k, ret) {
+               if (k.k->type != KEY_TYPE_stripe)
+                       continue;
 
-       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;
+               ret = __ec_stripe_mem_alloc(c, k.k->p.offset, GFP_KERNEL);
+               if (ret)
+                       break;
 
-       for (i = 0; i < s->nr_blocks; i++)
-               m->blocks_nonempty += !!stripe_blockcount_get(s, i);
+               s = bkey_s_c_to_stripe(k).v;
 
-       spin_lock(&c->ec_stripes_heap_lock);
-       bch2_stripes_heap_update(c, m, k.k->p.offset);
-       spin_unlock(&c->ec_stripes_heap_lock);
+               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;
 
-       return ret;
-}
+               for (i = 0; i < s->nr_blocks; i++)
+                       m->blocks_nonempty += !!stripe_blockcount_get(s, i);
 
-int bch2_stripes_read(struct bch_fs *c)
-{
-       struct btree_trans trans;
-       int ret;
+               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);
 
-       bch2_trans_init(&trans, c, 0, 0);
-       ret = bch2_btree_and_journal_walk(&trans, BTREE_ID_stripes,
-                                         bch2_stripes_read_fn);
        bch2_trans_exit(&trans);
+
        if (ret)
                bch_err(c, "error reading stripes: %i", ret);
 
@@ -1618,7 +1600,7 @@ void bch2_stripes_heap_to_text(struct printbuf *out, struct bch_fs *c)
        for (i = 0; i < min_t(size_t, h->used, 20); i++) {
                m = genradix_ptr(&c->stripes, h->data[i].idx);
 
-               pr_buf(out, "%zu %u/%u+%u\n", h->data[i].idx,
+               prt_printf(out, "%zu %u/%u+%u\n", h->data[i].idx,
                       h->data[i].blocks_nonempty,
                       m->nr_blocks - m->nr_redundant,
                       m->nr_redundant);
@@ -1633,11 +1615,11 @@ void bch2_new_stripes_to_text(struct printbuf *out, struct bch_fs *c)
 
        mutex_lock(&c->ec_stripe_head_lock);
        list_for_each_entry(h, &c->ec_stripe_head_list, list) {
-               pr_buf(out, "target %u algo %u redundancy %u:\n",
+               prt_printf(out, "target %u algo %u redundancy %u:\n",
                       h->target, h->algo, h->redundancy);
 
                if (h->s)
-                       pr_buf(out, "\tpending: blocks %u+%u allocated %u\n",
+                       prt_printf(out, "\tpending: blocks %u+%u allocated %u\n",
                               h->s->nr_data, h->s->nr_parity,
                               bitmap_weight(h->s->blocks_allocated,
                                             h->s->nr_data));
@@ -1646,7 +1628,7 @@ void bch2_new_stripes_to_text(struct printbuf *out, struct bch_fs *c)
 
        mutex_lock(&c->ec_stripe_new_lock);
        list_for_each_entry(s, &c->ec_stripe_new_list, list) {
-               pr_buf(out, "\tin flight: blocks %u+%u pin %u\n",
+               prt_printf(out, "\tin flight: blocks %u+%u pin %u\n",
                       s->nr_data, s->nr_parity,
                       atomic_read(&s->pin));
        }
@@ -1678,11 +1660,14 @@ void bch2_fs_ec_exit(struct bch_fs *c)
        bioset_exit(&c->ec_bioset);
 }
 
-int bch2_fs_ec_init(struct bch_fs *c)
+void bch2_fs_ec_init_early(struct bch_fs *c)
 {
        INIT_WORK(&c->ec_stripe_create_work, ec_stripe_create_work);
        INIT_WORK(&c->ec_stripe_delete_work, ec_stripe_delete_work);
+}
 
+int bch2_fs_ec_init(struct bch_fs *c)
+{
        return bioset_init(&c->ec_bioset, 1, offsetof(struct ec_bio, bio),
                           BIOSET_NEED_BVECS);
 }