1 // SPDX-License-Identifier: GPL-2.0
5 #include "btree_update.h"
8 #include "logged_ops.h"
11 struct bch_logged_op_fn {
13 int (*resume)(struct btree_trans *, struct bkey_i *);
16 static const struct bch_logged_op_fn logged_op_fns[] = {
18 .type = KEY_TYPE_logged_op_##n, \
19 .resume = bch2_resume_logged_op_##n, \
25 static const struct bch_logged_op_fn *logged_op_fn(enum bch_bkey_type type)
27 for (unsigned i = 0; i < ARRAY_SIZE(logged_op_fns); i++)
28 if (logged_op_fns[i].type == type)
29 return logged_op_fns + i;
33 static int resume_logged_op(struct btree_trans *trans, struct btree_iter *iter,
36 struct bch_fs *c = trans->c;
37 u32 restart_count = trans->restart_count;
38 struct printbuf buf = PRINTBUF;
41 fsck_err_on(test_bit(BCH_FS_clean_recovery, &c->flags),
42 trans, logged_op_but_clean,
43 "filesystem marked as clean but have logged op\n%s",
44 (bch2_bkey_val_to_text(&buf, c, k),
48 bch2_bkey_buf_init(&sk);
49 bch2_bkey_buf_reassemble(&sk, c, k);
51 const struct bch_logged_op_fn *fn = logged_op_fn(sk.k->k.type);
53 fn->resume(trans, sk.k);
55 ret = bch2_logged_op_finish(trans, sk.k);
57 bch2_bkey_buf_exit(&sk, c);
60 return ret ?: trans_was_restarted(trans, restart_count);
63 int bch2_resume_logged_ops(struct bch_fs *c)
65 int ret = bch2_trans_run(c,
66 for_each_btree_key(trans, iter,
67 BTREE_ID_logged_ops, POS_MIN,
68 BTREE_ITER_prefetch, k,
69 resume_logged_op(trans, &iter, k)));
74 static int __bch2_logged_op_start(struct btree_trans *trans, struct bkey_i *k)
76 struct btree_iter iter;
79 ret = bch2_bkey_get_empty_slot(trans, &iter, BTREE_ID_logged_ops, POS_MAX);
85 ret = bch2_trans_update(trans, &iter, k, 0);
86 bch2_trans_iter_exit(trans, &iter);
90 int bch2_logged_op_start(struct btree_trans *trans, struct bkey_i *k)
92 return commit_do(trans, NULL, NULL, BCH_TRANS_COMMIT_no_enospc,
93 __bch2_logged_op_start(trans, k));
96 int bch2_logged_op_finish(struct btree_trans *trans, struct bkey_i *k)
98 int ret = commit_do(trans, NULL, NULL, BCH_TRANS_COMMIT_no_enospc,
99 bch2_btree_delete(trans, BTREE_ID_logged_ops, k->k.p, 0));
101 * This needs to be a fatal error because we've left an unfinished
102 * operation in the logged ops btree.
104 * We should only ever see an error here if the filesystem has already
105 * been shut down, but make sure of that here:
108 struct bch_fs *c = trans->c;
109 struct printbuf buf = PRINTBUF;
111 bch2_bkey_val_to_text(&buf, c, bkey_i_to_s_c(k));
112 bch2_fs_fatal_error(c, "deleting logged operation %s: %s",
113 buf.buf, bch2_err_str(ret));