1 // SPDX-License-Identifier: GPL-2.0
3 * Code for moving data off a device.
8 #include "btree_update.h"
9 #include "btree_update_interior.h"
21 static int drop_dev_ptrs(struct bch_fs *c, struct bkey_s k,
22 unsigned dev_idx, int flags, bool metadata)
24 unsigned replicas = metadata ? c->opts.metadata_replicas : c->opts.data_replicas;
25 unsigned lost = metadata ? BCH_FORCE_IF_METADATA_LOST : BCH_FORCE_IF_DATA_LOST;
26 unsigned degraded = metadata ? BCH_FORCE_IF_METADATA_DEGRADED : BCH_FORCE_IF_DATA_DEGRADED;
29 bch2_bkey_drop_device(k, dev_idx);
31 nr_good = bch2_bkey_durability(c, k.s_c);
32 if ((!nr_good && !(flags & lost)) ||
33 (nr_good < replicas && !(flags & degraded)))
34 return -BCH_ERR_remove_would_lose_data;
39 static int bch2_dev_usrdata_drop_key(struct btree_trans *trans,
40 struct btree_iter *iter,
45 struct bch_fs *c = trans->c;
49 if (!bch2_bkey_has_device_c(k, dev_idx))
52 n = bch2_bkey_make_mut(trans, iter, &k, BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE);
53 ret = PTR_ERR_OR_ZERO(n);
57 ret = drop_dev_ptrs(c, bkey_i_to_s(n), dev_idx, flags, false);
62 * If the new extent no longer has any pointers, bch2_extent_normalize()
63 * will do the appropriate thing with it (turning it into a
64 * KEY_TYPE_error key, or just a discard if it was a cached extent)
66 bch2_extent_normalize(c, bkey_i_to_s(n));
69 * Since we're not inserting through an extent iterator
70 * (BTREE_ITER_ALL_SNAPSHOTS iterators aren't extent iterators),
71 * we aren't using the extent overwrite path to delete, we're
72 * just using the normal key deletion path:
74 if (bkey_deleted(&n->k))
79 static int bch2_dev_usrdata_drop(struct bch_fs *c, unsigned dev_idx, int flags)
81 struct btree_trans *trans = bch2_trans_get(c);
85 for (id = 0; id < BTREE_ID_NR; id++) {
86 if (!btree_type_has_ptrs(id))
89 ret = for_each_btree_key_commit(trans, iter, id, POS_MIN,
90 BTREE_ITER_PREFETCH|BTREE_ITER_ALL_SNAPSHOTS, k,
91 NULL, NULL, BCH_TRANS_COMMIT_no_enospc,
92 bch2_dev_usrdata_drop_key(trans, &iter, k, dev_idx, flags));
97 bch2_trans_put(trans);
102 static int bch2_dev_metadata_drop(struct bch_fs *c, unsigned dev_idx, int flags)
104 struct btree_trans *trans;
105 struct btree_iter iter;
112 /* don't handle this yet: */
113 if (flags & BCH_FORCE_IF_METADATA_LOST)
114 return -BCH_ERR_remove_with_metadata_missing_unimplemented;
116 trans = bch2_trans_get(c);
117 bch2_bkey_buf_init(&k);
118 closure_init_stack(&cl);
120 for (id = 0; id < BTREE_ID_NR; id++) {
121 bch2_trans_node_iter_init(trans, &iter, id, POS_MIN, 0, 0,
122 BTREE_ITER_PREFETCH);
125 while (bch2_trans_begin(trans),
126 (b = bch2_btree_iter_peek_node(&iter)) &&
127 !(ret = PTR_ERR_OR_ZERO(b))) {
128 if (!bch2_bkey_has_device_c(bkey_i_to_s_c(&b->key), dev_idx))
131 bch2_bkey_buf_copy(&k, c, &b->key);
133 ret = drop_dev_ptrs(c, bkey_i_to_s(k.k),
134 dev_idx, flags, true);
138 ret = bch2_btree_node_update_key(trans, &iter, b, k.k, 0, false);
139 if (bch2_err_matches(ret, BCH_ERR_transaction_restart)) {
144 bch_err_msg(c, ret, "updating btree node key");
148 bch2_btree_iter_next_node(&iter);
150 if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
153 bch2_trans_iter_exit(trans, &iter);
159 bch2_btree_interior_updates_flush(c);
162 bch2_bkey_buf_exit(&k, c);
163 bch2_trans_put(trans);
165 BUG_ON(bch2_err_matches(ret, BCH_ERR_transaction_restart));
170 int bch2_dev_data_drop(struct bch_fs *c, unsigned dev_idx, int flags)
172 return bch2_dev_usrdata_drop(c, dev_idx, flags) ?:
173 bch2_dev_metadata_drop(c, dev_idx, flags);