1 // SPDX-License-Identifier: GPL-2.0
4 #include "alloc_background.h"
5 #include "alloc_foreground.h"
6 #include "backpointers.h"
10 #include "btree_update.h"
11 #include "btree_update_interior.h"
12 #include "btree_write_buffer.h"
14 #include "disk_groups.h"
21 #include "journal_reclaim.h"
24 #include "rebalance.h"
31 #include <linux/ioprio.h>
32 #include <linux/kthread.h>
34 const char * const bch2_data_ops_strs[] = {
35 #define x(t, n, ...) [n] = #t,
41 static void trace_move_extent2(struct bch_fs *c, struct bkey_s_c k,
42 struct bch_io_opts *io_opts,
43 struct data_update_opts *data_opts)
45 if (trace_move_extent_enabled()) {
46 struct printbuf buf = PRINTBUF;
48 bch2_bkey_val_to_text(&buf, c, k);
50 bch2_data_update_opts_to_text(&buf, c, io_opts, data_opts);
51 trace_move_extent(c, buf.buf);
56 static void trace_move_extent_read2(struct bch_fs *c, struct bkey_s_c k)
58 if (trace_move_extent_read_enabled()) {
59 struct printbuf buf = PRINTBUF;
61 bch2_bkey_val_to_text(&buf, c, k);
62 trace_move_extent_read(c, buf.buf);
68 struct list_head read_list;
69 struct list_head io_list;
70 struct move_bucket_in_flight *b;
74 unsigned read_sectors;
75 unsigned write_sectors;
77 struct bch_read_bio rbio;
79 struct data_update write;
80 /* Must be last since it is variable size */
81 struct bio_vec bi_inline_vecs[];
84 static void move_free(struct moving_io *io)
86 struct moving_context *ctxt = io->write.ctxt;
89 atomic_dec(&io->b->count);
91 bch2_data_update_exit(&io->write);
93 mutex_lock(&ctxt->lock);
94 list_del(&io->io_list);
96 mutex_unlock(&ctxt->lock);
101 static void move_write_done(struct bch_write_op *op)
103 struct moving_io *io = container_of(op, struct moving_io, write.op);
104 struct moving_context *ctxt = io->write.ctxt;
106 if (io->write.op.error)
107 ctxt->write_error = true;
109 atomic_sub(io->write_sectors, &io->write.ctxt->write_sectors);
110 atomic_dec(&io->write.ctxt->write_ios);
112 closure_put(&ctxt->cl);
115 static void move_write(struct moving_io *io)
117 if (unlikely(io->rbio.bio.bi_status || io->rbio.hole)) {
122 if (trace_move_extent_write_enabled()) {
123 struct bch_fs *c = io->write.op.c;
124 struct printbuf buf = PRINTBUF;
126 bch2_bkey_val_to_text(&buf, c, bkey_i_to_s_c(io->write.k.k));
127 trace_move_extent_write(c, buf.buf);
131 closure_get(&io->write.ctxt->cl);
132 atomic_add(io->write_sectors, &io->write.ctxt->write_sectors);
133 atomic_inc(&io->write.ctxt->write_ios);
135 bch2_data_update_read_done(&io->write, io->rbio.pick.crc);
138 struct moving_io *bch2_moving_ctxt_next_pending_write(struct moving_context *ctxt)
140 struct moving_io *io =
141 list_first_entry_or_null(&ctxt->reads, struct moving_io, read_list);
143 return io && io->read_completed ? io : NULL;
146 static void move_read_endio(struct bio *bio)
148 struct moving_io *io = container_of(bio, struct moving_io, rbio.bio);
149 struct moving_context *ctxt = io->write.ctxt;
151 atomic_sub(io->read_sectors, &ctxt->read_sectors);
152 atomic_dec(&ctxt->read_ios);
153 io->read_completed = true;
155 wake_up(&ctxt->wait);
156 closure_put(&ctxt->cl);
159 void bch2_moving_ctxt_do_pending_writes(struct moving_context *ctxt)
161 struct moving_io *io;
163 while ((io = bch2_moving_ctxt_next_pending_write(ctxt))) {
164 bch2_trans_unlock_long(ctxt->trans);
165 list_del(&io->read_list);
170 void bch2_move_ctxt_wait_for_io(struct moving_context *ctxt)
172 unsigned sectors_pending = atomic_read(&ctxt->write_sectors);
174 move_ctxt_wait_event(ctxt,
175 !atomic_read(&ctxt->write_sectors) ||
176 atomic_read(&ctxt->write_sectors) != sectors_pending);
179 void bch2_moving_ctxt_flush_all(struct moving_context *ctxt)
181 move_ctxt_wait_event(ctxt, list_empty(&ctxt->reads));
182 bch2_trans_unlock_long(ctxt->trans);
183 closure_sync(&ctxt->cl);
186 void bch2_moving_ctxt_exit(struct moving_context *ctxt)
188 struct bch_fs *c = ctxt->trans->c;
190 bch2_moving_ctxt_flush_all(ctxt);
192 EBUG_ON(atomic_read(&ctxt->write_sectors));
193 EBUG_ON(atomic_read(&ctxt->write_ios));
194 EBUG_ON(atomic_read(&ctxt->read_sectors));
195 EBUG_ON(atomic_read(&ctxt->read_ios));
197 mutex_lock(&c->moving_context_lock);
198 list_del(&ctxt->list);
199 mutex_unlock(&c->moving_context_lock);
202 * Generally, releasing a transaction within a transaction restart means
203 * an unhandled transaction restart: but this can happen legitimately
204 * within the move code, e.g. when bch2_move_ratelimit() tells us to
205 * exit before we've retried
207 bch2_trans_begin(ctxt->trans);
208 bch2_trans_put(ctxt->trans);
209 memset(ctxt, 0, sizeof(*ctxt));
212 void bch2_moving_ctxt_init(struct moving_context *ctxt,
214 struct bch_ratelimit *rate,
215 struct bch_move_stats *stats,
216 struct write_point_specifier wp,
219 memset(ctxt, 0, sizeof(*ctxt));
221 ctxt->trans = bch2_trans_get(c);
222 ctxt->fn = (void *) _RET_IP_;
226 ctxt->wait_on_copygc = wait_on_copygc;
228 closure_init_stack(&ctxt->cl);
230 mutex_init(&ctxt->lock);
231 INIT_LIST_HEAD(&ctxt->reads);
232 INIT_LIST_HEAD(&ctxt->ios);
233 init_waitqueue_head(&ctxt->wait);
235 mutex_lock(&c->moving_context_lock);
236 list_add(&ctxt->list, &c->moving_context_list);
237 mutex_unlock(&c->moving_context_lock);
240 void bch2_move_stats_exit(struct bch_move_stats *stats, struct bch_fs *c)
242 trace_move_data(c, stats);
245 void bch2_move_stats_init(struct bch_move_stats *stats, const char *name)
247 memset(stats, 0, sizeof(*stats));
248 stats->data_type = BCH_DATA_user;
249 scnprintf(stats->name, sizeof(stats->name), "%s", name);
252 int bch2_move_extent(struct moving_context *ctxt,
253 struct move_bucket_in_flight *bucket_in_flight,
254 struct btree_iter *iter,
256 struct bch_io_opts io_opts,
257 struct data_update_opts data_opts)
259 struct btree_trans *trans = ctxt->trans;
260 struct bch_fs *c = trans->c;
261 struct bkey_ptrs_c ptrs = bch2_bkey_ptrs_c(k);
262 struct moving_io *io;
263 const union bch_extent_entry *entry;
264 struct extent_ptr_decoded p;
265 unsigned sectors = k.k->size, pages;
268 trace_move_extent2(c, k, &io_opts, &data_opts);
271 ctxt->stats->pos = BBPOS(iter->btree_id, iter->pos);
273 bch2_data_update_opts_normalize(k, &data_opts);
275 if (!data_opts.rewrite_ptrs &&
276 !data_opts.extra_replicas) {
277 if (data_opts.kill_ptrs)
278 return bch2_extent_drop_ptrs(trans, iter, k, &io_opts, &data_opts);
283 * Before memory allocations & taking nocow locks in
284 * bch2_data_update_init():
286 bch2_trans_unlock(trans);
288 /* write path might have to decompress data: */
289 bkey_for_each_ptr_decode(k.k, ptrs, p, entry)
290 sectors = max_t(unsigned, sectors, p.crc.uncompressed_size);
292 pages = DIV_ROUND_UP(sectors, PAGE_SECTORS);
293 io = kzalloc(sizeof(struct moving_io) +
294 sizeof(struct bio_vec) * pages, GFP_KERNEL);
298 INIT_LIST_HEAD(&io->io_list);
299 io->write.ctxt = ctxt;
300 io->read_sectors = k.k->size;
301 io->write_sectors = k.k->size;
303 bio_init(&io->write.op.wbio.bio, NULL, io->bi_inline_vecs, pages, 0);
304 io->write.op.wbio.bio.bi_ioprio =
305 IOPRIO_PRIO_VALUE(IOPRIO_CLASS_IDLE, 0);
307 if (bch2_bio_alloc_pages(&io->write.op.wbio.bio, sectors << 9,
312 io->rbio.opts = io_opts;
313 bio_init(&io->rbio.bio, NULL, io->bi_inline_vecs, pages, 0);
314 io->rbio.bio.bi_vcnt = pages;
315 io->rbio.bio.bi_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_IDLE, 0);
316 io->rbio.bio.bi_iter.bi_size = sectors << 9;
318 io->rbio.bio.bi_opf = REQ_OP_READ;
319 io->rbio.bio.bi_iter.bi_sector = bkey_start_offset(k.k);
320 io->rbio.bio.bi_end_io = move_read_endio;
322 ret = bch2_data_update_init(trans, iter, ctxt, &io->write, ctxt->wp,
323 io_opts, data_opts, iter->btree_id, k);
327 io->write.op.end_io = move_write_done;
330 bch2_ratelimit_increment(ctxt->rate, k.k->size);
333 atomic64_inc(&ctxt->stats->keys_moved);
334 atomic64_add(k.k->size, &ctxt->stats->sectors_moved);
337 if (bucket_in_flight) {
338 io->b = bucket_in_flight;
339 atomic_inc(&io->b->count);
342 this_cpu_add(c->counters[BCH_COUNTER_io_move], k.k->size);
343 this_cpu_add(c->counters[BCH_COUNTER_move_extent_read], k.k->size);
344 trace_move_extent_read2(c, k);
346 mutex_lock(&ctxt->lock);
347 atomic_add(io->read_sectors, &ctxt->read_sectors);
348 atomic_inc(&ctxt->read_ios);
350 list_add_tail(&io->read_list, &ctxt->reads);
351 list_add_tail(&io->io_list, &ctxt->ios);
352 mutex_unlock(&ctxt->lock);
355 * dropped by move_read_endio() - guards against use after free of
356 * ctxt when doing wakeup
358 closure_get(&ctxt->cl);
359 bch2_read_extent(trans, &io->rbio,
361 iter->btree_id, k, 0,
363 BCH_READ_LAST_FRAGMENT);
366 bio_free_pages(&io->write.op.wbio.bio);
370 if (ret == -BCH_ERR_data_update_done)
373 if (bch2_err_matches(ret, EROFS) ||
374 bch2_err_matches(ret, BCH_ERR_transaction_restart))
377 count_event(c, move_extent_start_fail);
379 if (trace_move_extent_start_fail_enabled()) {
380 struct printbuf buf = PRINTBUF;
382 bch2_bkey_val_to_text(&buf, c, k);
384 prt_str(&buf, bch2_err_str(ret));
385 trace_move_extent_start_fail(c, buf.buf);
391 static struct bch_io_opts *bch2_move_get_io_opts(struct btree_trans *trans,
392 struct per_snapshot_io_opts *io_opts,
393 struct bpos extent_pos, /* extent_iter, extent_k may be in reflink btree */
394 struct btree_iter *extent_iter,
395 struct bkey_s_c extent_k)
397 struct bch_fs *c = trans->c;
398 u32 restart_count = trans->restart_count;
399 struct bch_io_opts *opts_ret = &io_opts->fs_io_opts;
402 if (extent_k.k->type == KEY_TYPE_reflink_v)
405 if (io_opts->cur_inum != extent_pos.inode) {
408 ret = for_each_btree_key(trans, iter, BTREE_ID_inodes, POS(0, extent_pos.inode),
409 BTREE_ITER_all_snapshots, k, ({
410 if (k.k->p.offset != extent_pos.inode)
413 if (!bkey_is_inode(k.k))
416 struct bch_inode_unpacked inode;
417 _ret3 = bch2_inode_unpack(k, &inode);
421 struct snapshot_io_opts_entry e = { .snapshot = k.k->p.snapshot };
422 bch2_inode_opts_get(&e.io_opts, trans->c, &inode);
424 darray_push(&io_opts->d, e);
426 io_opts->cur_inum = extent_pos.inode;
429 ret = ret ?: trans_was_restarted(trans, restart_count);
433 if (extent_k.k->p.snapshot)
434 darray_for_each(io_opts->d, i)
435 if (bch2_snapshot_is_ancestor(c, extent_k.k->p.snapshot, i->snapshot)) {
436 opts_ret = &i->io_opts;
440 ret = bch2_get_update_rebalance_opts(trans, opts_ret, extent_iter, extent_k);
446 int bch2_move_get_io_opts_one(struct btree_trans *trans,
447 struct bch_io_opts *io_opts,
448 struct btree_iter *extent_iter,
449 struct bkey_s_c extent_k)
451 struct bch_fs *c = trans->c;
453 *io_opts = bch2_opts_to_inode_opts(c->opts);
456 if (!extent_k.k->p.inode)
459 struct btree_iter inode_iter;
460 struct bkey_s_c inode_k = bch2_bkey_get_iter(trans, &inode_iter, BTREE_ID_inodes,
461 SPOS(0, extent_k.k->p.inode, extent_k.k->p.snapshot),
463 int ret = bkey_err(inode_k);
464 if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
467 if (!ret && bkey_is_inode(inode_k.k)) {
468 struct bch_inode_unpacked inode;
469 bch2_inode_unpack(inode_k, &inode);
470 bch2_inode_opts_get(io_opts, c, &inode);
472 bch2_trans_iter_exit(trans, &inode_iter);
474 return bch2_get_update_rebalance_opts(trans, io_opts, extent_iter, extent_k);
477 int bch2_move_ratelimit(struct moving_context *ctxt)
479 struct bch_fs *c = ctxt->trans->c;
480 bool is_kthread = current->flags & PF_KTHREAD;
483 if (ctxt->wait_on_copygc && c->copygc_running) {
484 bch2_moving_ctxt_flush_all(ctxt);
485 wait_event_killable(c->copygc_running_wq,
486 !c->copygc_running ||
487 (is_kthread && kthread_should_stop()));
491 delay = ctxt->rate ? bch2_ratelimit_delay(ctxt->rate) : 0;
493 if (is_kthread && kthread_should_stop())
497 move_ctxt_wait_event_timeout(ctxt,
499 (is_kthread && kthread_should_stop()),
502 if (unlikely(freezing(current))) {
503 bch2_moving_ctxt_flush_all(ctxt);
509 * XXX: these limits really ought to be per device, SSDs and hard drives
510 * will want different limits
512 move_ctxt_wait_event(ctxt,
513 atomic_read(&ctxt->write_sectors) < c->opts.move_bytes_in_flight >> 9 &&
514 atomic_read(&ctxt->read_sectors) < c->opts.move_bytes_in_flight >> 9 &&
515 atomic_read(&ctxt->write_ios) < c->opts.move_ios_in_flight &&
516 atomic_read(&ctxt->read_ios) < c->opts.move_ios_in_flight);
521 static int bch2_move_data_btree(struct moving_context *ctxt,
524 move_pred_fn pred, void *arg,
525 enum btree_id btree_id)
527 struct btree_trans *trans = ctxt->trans;
528 struct bch_fs *c = trans->c;
529 struct per_snapshot_io_opts snapshot_io_opts;
530 struct bch_io_opts *io_opts;
532 struct btree_iter iter, reflink_iter = {};
534 struct data_update_opts data_opts;
536 * If we're moving a single file, also process reflinked data it points
537 * to (this includes propagating changed io_opts from the inode to the
540 bool walk_indirect = start.inode == end.inode;
543 per_snapshot_io_opts_init(&snapshot_io_opts, c);
544 bch2_bkey_buf_init(&sk);
547 ctxt->stats->data_type = BCH_DATA_user;
548 ctxt->stats->pos = BBPOS(btree_id, start);
551 bch2_trans_begin(trans);
552 bch2_trans_iter_init(trans, &iter, btree_id, start,
554 BTREE_ITER_all_snapshots);
557 bch2_ratelimit_reset(ctxt->rate);
559 while (!bch2_move_ratelimit(ctxt)) {
560 struct btree_iter *extent_iter = &iter;
562 bch2_trans_begin(trans);
564 k = bch2_btree_iter_peek(&iter);
569 if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
574 if (bkey_ge(bkey_start_pos(k.k), end))
578 ctxt->stats->pos = BBPOS(iter.btree_id, iter.pos);
581 k.k->type == KEY_TYPE_reflink_p &&
582 REFLINK_P_MAY_UPDATE_OPTIONS(bkey_s_c_to_reflink_p(k).v)) {
583 struct bkey_s_c_reflink_p p = bkey_s_c_to_reflink_p(k);
584 s64 offset_into_extent = iter.pos.offset - bkey_start_offset(k.k);
586 bch2_trans_iter_exit(trans, &reflink_iter);
587 k = bch2_lookup_indirect_extent(trans, &reflink_iter, &offset_into_extent, p, true, 0);
589 if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
594 if (bkey_deleted(k.k))
598 * XXX: reflink pointers may point to multiple indirect
599 * extents, so don't advance past the entire reflink
600 * pointer - need to fixup iter->k
602 extent_iter = &reflink_iter;
605 if (!bkey_extent_is_direct_data(k.k))
608 io_opts = bch2_move_get_io_opts(trans, &snapshot_io_opts,
609 iter.pos, extent_iter, k);
610 ret = PTR_ERR_OR_ZERO(io_opts);
614 memset(&data_opts, 0, sizeof(data_opts));
615 if (!pred(c, arg, k, io_opts, &data_opts))
619 * The iterator gets unlocked by __bch2_read_extent - need to
620 * save a copy of @k elsewhere:
622 bch2_bkey_buf_reassemble(&sk, c, k);
623 k = bkey_i_to_s_c(sk.k);
625 ret2 = bch2_move_extent(ctxt, NULL, extent_iter, k, *io_opts, data_opts);
627 if (bch2_err_matches(ret2, BCH_ERR_transaction_restart))
630 if (ret2 == -ENOMEM) {
631 /* memory allocation failure, wait for some IO to finish */
632 bch2_move_ctxt_wait_for_io(ctxt);
636 /* XXX signal failure */
641 atomic64_add(k.k->size, &ctxt->stats->sectors_seen);
643 bch2_btree_iter_advance(&iter);
646 bch2_trans_iter_exit(trans, &reflink_iter);
647 bch2_trans_iter_exit(trans, &iter);
648 bch2_bkey_buf_exit(&sk, c);
649 per_snapshot_io_opts_exit(&snapshot_io_opts);
654 int __bch2_move_data(struct moving_context *ctxt,
657 move_pred_fn pred, void *arg)
659 struct bch_fs *c = ctxt->trans->c;
663 for (id = start.btree;
664 id <= min_t(unsigned, end.btree, btree_id_nr_alive(c) - 1);
666 ctxt->stats->pos = BBPOS(id, POS_MIN);
668 if (!btree_type_has_ptrs(id) ||
669 !bch2_btree_id_root(c, id)->b)
672 ret = bch2_move_data_btree(ctxt,
673 id == start.btree ? start.pos : POS_MIN,
674 id == end.btree ? end.pos : POS_MAX,
683 int bch2_move_data(struct bch_fs *c,
686 struct bch_ratelimit *rate,
687 struct bch_move_stats *stats,
688 struct write_point_specifier wp,
690 move_pred_fn pred, void *arg)
693 struct moving_context ctxt;
696 bch2_moving_ctxt_init(&ctxt, c, rate, stats, wp, wait_on_copygc);
697 ret = __bch2_move_data(&ctxt, start, end, pred, arg);
698 bch2_moving_ctxt_exit(&ctxt);
703 int bch2_evacuate_bucket(struct moving_context *ctxt,
704 struct move_bucket_in_flight *bucket_in_flight,
705 struct bpos bucket, int gen,
706 struct data_update_opts _data_opts)
708 struct btree_trans *trans = ctxt->trans;
709 struct bch_fs *c = trans->c;
710 bool is_kthread = current->flags & PF_KTHREAD;
711 struct bch_io_opts io_opts = bch2_opts_to_inode_opts(c->opts);
712 struct btree_iter iter = {}, bp_iter = {};
715 struct data_update_opts data_opts;
716 unsigned sectors_moved = 0;
717 struct bkey_buf last_flushed;
720 struct bch_dev *ca = bch2_dev_tryget(c, bucket.inode);
724 trace_bucket_evacuate(c, &bucket);
726 bch2_bkey_buf_init(&last_flushed);
727 bkey_init(&last_flushed.k->k);
728 bch2_bkey_buf_init(&sk);
731 * We're not run in a context that handles transaction restarts:
733 bch2_trans_begin(trans);
735 bch2_trans_iter_init(trans, &bp_iter, BTREE_ID_backpointers,
736 bucket_pos_to_bp_start(ca, bucket), 0);
738 bch_err_msg(c, ret, "looking up alloc key");
742 ret = bch2_btree_write_buffer_tryflush(trans);
743 bch_err_msg(c, ret, "flushing btree write buffer");
747 while (!(ret = bch2_move_ratelimit(ctxt))) {
748 if (is_kthread && kthread_should_stop())
751 bch2_trans_begin(trans);
753 k = bch2_btree_iter_peek(&bp_iter);
755 if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
760 if (!k.k || bkey_gt(k.k->p, bucket_pos_to_bp_end(ca, bucket)))
763 if (k.k->type != KEY_TYPE_backpointer)
766 struct bkey_s_c_backpointer bp = bkey_s_c_to_backpointer(k);
769 k = bch2_backpointer_get_key(trans, bp, &iter, 0, &last_flushed);
771 if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
778 bch2_bkey_buf_reassemble(&sk, c, k);
779 k = bkey_i_to_s_c(sk.k);
781 ret = bch2_move_get_io_opts_one(trans, &io_opts, &iter, k);
783 bch2_trans_iter_exit(trans, &iter);
787 data_opts = _data_opts;
788 data_opts.target = io_opts.background_target;
789 data_opts.rewrite_ptrs = 0;
791 unsigned sectors = bp.v->bucket_len; /* move_extent will drop locks */
793 const union bch_extent_entry *entry;
794 struct extent_ptr_decoded p;
795 bkey_for_each_ptr_decode(k.k, bch2_bkey_ptrs_c(k), p, entry) {
796 if (p.ptr.dev == bucket.inode) {
798 bch2_trans_iter_exit(trans, &iter);
801 data_opts.rewrite_ptrs |= 1U << i;
807 ret = bch2_move_extent(ctxt, bucket_in_flight,
808 &iter, k, io_opts, data_opts);
809 bch2_trans_iter_exit(trans, &iter);
811 if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
813 if (ret == -ENOMEM) {
814 /* memory allocation failure, wait for some IO to finish */
815 bch2_move_ctxt_wait_for_io(ctxt);
822 atomic64_add(sectors, &ctxt->stats->sectors_seen);
823 sectors_moved += sectors;
827 b = bch2_backpointer_get_node(trans, bp, &iter, &last_flushed);
828 ret = PTR_ERR_OR_ZERO(b);
829 if (ret == -BCH_ERR_backpointer_to_overwritten_btree_node)
831 if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
838 unsigned sectors = btree_ptr_sectors_written(bkey_i_to_s_c(&b->key));
840 ret = bch2_btree_node_rewrite(trans, &iter, b, 0);
841 bch2_trans_iter_exit(trans, &iter);
843 if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
849 bch2_ratelimit_increment(ctxt->rate, sectors);
851 atomic64_add(sectors, &ctxt->stats->sectors_seen);
852 atomic64_add(sectors, &ctxt->stats->sectors_moved);
854 sectors_moved += btree_sectors(c);
857 bch2_btree_iter_advance(&bp_iter);
860 trace_evacuate_bucket(c, &bucket, sectors_moved, ca->mi.bucket_size, ret);
862 bch2_trans_iter_exit(trans, &bp_iter);
864 bch2_bkey_buf_exit(&sk, c);
865 bch2_bkey_buf_exit(&last_flushed, c);
869 typedef bool (*move_btree_pred)(struct bch_fs *, void *,
870 struct btree *, struct bch_io_opts *,
871 struct data_update_opts *);
873 static int bch2_move_btree(struct bch_fs *c,
876 move_btree_pred pred, void *arg,
877 struct bch_move_stats *stats)
879 bool kthread = (current->flags & PF_KTHREAD) != 0;
880 struct bch_io_opts io_opts = bch2_opts_to_inode_opts(c->opts);
881 struct moving_context ctxt;
882 struct btree_trans *trans;
883 struct btree_iter iter;
886 struct data_update_opts data_opts;
889 bch2_moving_ctxt_init(&ctxt, c, NULL, stats,
890 writepoint_ptr(&c->btree_write_point),
894 stats->data_type = BCH_DATA_btree;
896 for (btree = start.btree;
897 btree <= min_t(unsigned, end.btree, btree_id_nr_alive(c) - 1);
899 stats->pos = BBPOS(btree, POS_MIN);
901 if (!bch2_btree_id_root(c, btree)->b)
904 bch2_trans_node_iter_init(trans, &iter, btree, POS_MIN, 0, 0,
905 BTREE_ITER_prefetch);
908 while (bch2_trans_begin(trans),
909 (b = bch2_btree_iter_peek_node(&iter)) &&
910 !(ret = PTR_ERR_OR_ZERO(b))) {
911 if (kthread && kthread_should_stop())
914 if ((cmp_int(btree, end.btree) ?:
915 bpos_cmp(b->key.k.p, end.pos)) > 0)
918 stats->pos = BBPOS(iter.btree_id, iter.pos);
920 if (!pred(c, arg, b, &io_opts, &data_opts))
923 ret = bch2_btree_node_rewrite(trans, &iter, b, 0) ?: ret;
924 if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
929 bch2_btree_iter_next_node(&iter);
931 if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
934 bch2_trans_iter_exit(trans, &iter);
936 if (kthread && kthread_should_stop())
941 bch2_moving_ctxt_exit(&ctxt);
942 bch2_btree_interior_updates_flush(c);
947 static bool rereplicate_pred(struct bch_fs *c, void *arg,
949 struct bch_io_opts *io_opts,
950 struct data_update_opts *data_opts)
952 unsigned nr_good = bch2_bkey_durability(c, k);
953 unsigned replicas = bkey_is_btree_ptr(k.k)
954 ? c->opts.metadata_replicas
955 : io_opts->data_replicas;
958 struct bkey_ptrs_c ptrs = bch2_bkey_ptrs_c(k);
960 bkey_for_each_ptr(ptrs, ptr) {
961 struct bch_dev *ca = bch2_dev_rcu(c, ptr->dev);
963 (!ca || !ca->mi.durability))
964 data_opts->kill_ptrs |= BIT(i);
969 if (!data_opts->kill_ptrs &&
970 (!nr_good || nr_good >= replicas))
973 data_opts->target = 0;
974 data_opts->extra_replicas = replicas - nr_good;
975 data_opts->btree_insert_flags = 0;
979 static bool migrate_pred(struct bch_fs *c, void *arg,
981 struct bch_io_opts *io_opts,
982 struct data_update_opts *data_opts)
984 struct bkey_ptrs_c ptrs = bch2_bkey_ptrs_c(k);
985 struct bch_ioctl_data *op = arg;
988 data_opts->rewrite_ptrs = 0;
989 data_opts->target = 0;
990 data_opts->extra_replicas = 0;
991 data_opts->btree_insert_flags = 0;
993 bkey_for_each_ptr(ptrs, ptr) {
994 if (ptr->dev == op->migrate.dev)
995 data_opts->rewrite_ptrs |= 1U << i;
999 return data_opts->rewrite_ptrs != 0;
1002 static bool rereplicate_btree_pred(struct bch_fs *c, void *arg,
1004 struct bch_io_opts *io_opts,
1005 struct data_update_opts *data_opts)
1007 return rereplicate_pred(c, arg, bkey_i_to_s_c(&b->key), io_opts, data_opts);
1010 static bool migrate_btree_pred(struct bch_fs *c, void *arg,
1012 struct bch_io_opts *io_opts,
1013 struct data_update_opts *data_opts)
1015 return migrate_pred(c, arg, bkey_i_to_s_c(&b->key), io_opts, data_opts);
1019 * Ancient versions of bcachefs produced packed formats which could represent
1020 * keys that the in memory format cannot represent; this checks for those
1021 * formats so we can get rid of them.
1023 static bool bformat_needs_redo(struct bkey_format *f)
1025 for (unsigned i = 0; i < f->nr_fields; i++)
1026 if (bch2_bkey_format_field_overflows(f, i))
1032 static bool rewrite_old_nodes_pred(struct bch_fs *c, void *arg,
1034 struct bch_io_opts *io_opts,
1035 struct data_update_opts *data_opts)
1037 if (b->version_ondisk != c->sb.version ||
1038 btree_node_need_rewrite(b) ||
1039 bformat_needs_redo(&b->format)) {
1040 data_opts->target = 0;
1041 data_opts->extra_replicas = 0;
1042 data_opts->btree_insert_flags = 0;
1049 int bch2_scan_old_btree_nodes(struct bch_fs *c, struct bch_move_stats *stats)
1053 ret = bch2_move_btree(c,
1056 rewrite_old_nodes_pred, c, stats);
1058 mutex_lock(&c->sb_lock);
1059 c->disk_sb.sb->compat[0] |= cpu_to_le64(1ULL << BCH_COMPAT_extents_above_btree_updates_done);
1060 c->disk_sb.sb->compat[0] |= cpu_to_le64(1ULL << BCH_COMPAT_bformat_overflow_done);
1061 c->disk_sb.sb->version_min = c->disk_sb.sb->version;
1062 bch2_write_super(c);
1063 mutex_unlock(&c->sb_lock);
1070 static bool drop_extra_replicas_pred(struct bch_fs *c, void *arg,
1072 struct bch_io_opts *io_opts,
1073 struct data_update_opts *data_opts)
1075 unsigned durability = bch2_bkey_durability(c, k);
1076 unsigned replicas = bkey_is_btree_ptr(k.k)
1077 ? c->opts.metadata_replicas
1078 : io_opts->data_replicas;
1079 const union bch_extent_entry *entry;
1080 struct extent_ptr_decoded p;
1084 bkey_for_each_ptr_decode(k.k, bch2_bkey_ptrs_c(k), p, entry) {
1085 unsigned d = bch2_extent_ptr_durability(c, &p);
1087 if (d && durability - d >= replicas) {
1088 data_opts->kill_ptrs |= BIT(i);
1096 return data_opts->kill_ptrs != 0;
1099 static bool drop_extra_replicas_btree_pred(struct bch_fs *c, void *arg,
1101 struct bch_io_opts *io_opts,
1102 struct data_update_opts *data_opts)
1104 return drop_extra_replicas_pred(c, arg, bkey_i_to_s_c(&b->key), io_opts, data_opts);
1107 int bch2_data_job(struct bch_fs *c,
1108 struct bch_move_stats *stats,
1109 struct bch_ioctl_data op)
1111 struct bbpos start = BBPOS(op.start_btree, op.start_pos);
1112 struct bbpos end = BBPOS(op.end_btree, op.end_pos);
1115 if (op.op >= BCH_DATA_OP_NR)
1118 bch2_move_stats_init(stats, bch2_data_ops_strs[op.op]);
1121 case BCH_DATA_OP_rereplicate:
1122 stats->data_type = BCH_DATA_journal;
1123 ret = bch2_journal_flush_device_pins(&c->journal, -1);
1124 ret = bch2_move_btree(c, start, end,
1125 rereplicate_btree_pred, c, stats) ?: ret;
1126 ret = bch2_move_data(c, start, end,
1129 writepoint_hashed((unsigned long) current),
1131 rereplicate_pred, c) ?: ret;
1132 ret = bch2_replicas_gc2(c) ?: ret;
1134 case BCH_DATA_OP_migrate:
1135 if (op.migrate.dev >= c->sb.nr_devices)
1138 stats->data_type = BCH_DATA_journal;
1139 ret = bch2_journal_flush_device_pins(&c->journal, op.migrate.dev);
1140 ret = bch2_move_btree(c, start, end,
1141 migrate_btree_pred, &op, stats) ?: ret;
1142 ret = bch2_move_data(c, start, end,
1145 writepoint_hashed((unsigned long) current),
1147 migrate_pred, &op) ?: ret;
1148 ret = bch2_replicas_gc2(c) ?: ret;
1150 case BCH_DATA_OP_rewrite_old_nodes:
1151 ret = bch2_scan_old_btree_nodes(c, stats);
1153 case BCH_DATA_OP_drop_extra_replicas:
1154 ret = bch2_move_btree(c, start, end,
1155 drop_extra_replicas_btree_pred, c, stats) ?: ret;
1156 ret = bch2_move_data(c, start, end, NULL, stats,
1157 writepoint_hashed((unsigned long) current),
1159 drop_extra_replicas_pred, c) ?: ret;
1160 ret = bch2_replicas_gc2(c) ?: ret;
1166 bch2_move_stats_exit(stats, c);
1170 void bch2_move_stats_to_text(struct printbuf *out, struct bch_move_stats *stats)
1172 prt_printf(out, "%s: data type==", stats->name);
1173 bch2_prt_data_type(out, stats->data_type);
1174 prt_str(out, " pos=");
1175 bch2_bbpos_to_text(out, stats->pos);
1177 printbuf_indent_add(out, 2);
1179 prt_printf(out, "keys moved: %llu\n", atomic64_read(&stats->keys_moved));
1180 prt_printf(out, "keys raced: %llu\n", atomic64_read(&stats->keys_raced));
1181 prt_printf(out, "bytes seen: ");
1182 prt_human_readable_u64(out, atomic64_read(&stats->sectors_seen) << 9);
1185 prt_printf(out, "bytes moved: ");
1186 prt_human_readable_u64(out, atomic64_read(&stats->sectors_moved) << 9);
1189 prt_printf(out, "bytes raced: ");
1190 prt_human_readable_u64(out, atomic64_read(&stats->sectors_raced) << 9);
1193 printbuf_indent_sub(out, 2);
1196 static void bch2_moving_ctxt_to_text(struct printbuf *out, struct bch_fs *c, struct moving_context *ctxt)
1198 struct moving_io *io;
1200 bch2_move_stats_to_text(out, ctxt->stats);
1201 printbuf_indent_add(out, 2);
1203 prt_printf(out, "reads: ios %u/%u sectors %u/%u\n",
1204 atomic_read(&ctxt->read_ios),
1205 c->opts.move_ios_in_flight,
1206 atomic_read(&ctxt->read_sectors),
1207 c->opts.move_bytes_in_flight >> 9);
1209 prt_printf(out, "writes: ios %u/%u sectors %u/%u\n",
1210 atomic_read(&ctxt->write_ios),
1211 c->opts.move_ios_in_flight,
1212 atomic_read(&ctxt->write_sectors),
1213 c->opts.move_bytes_in_flight >> 9);
1215 printbuf_indent_add(out, 2);
1217 mutex_lock(&ctxt->lock);
1218 list_for_each_entry(io, &ctxt->ios, io_list)
1219 bch2_write_op_to_text(out, &io->write.op);
1220 mutex_unlock(&ctxt->lock);
1222 printbuf_indent_sub(out, 4);
1225 void bch2_fs_moving_ctxts_to_text(struct printbuf *out, struct bch_fs *c)
1227 struct moving_context *ctxt;
1229 mutex_lock(&c->moving_context_lock);
1230 list_for_each_entry(ctxt, &c->moving_context_list, list)
1231 bch2_moving_ctxt_to_text(out, c, ctxt);
1232 mutex_unlock(&c->moving_context_lock);
1235 void bch2_fs_move_init(struct bch_fs *c)
1237 INIT_LIST_HEAD(&c->moving_context_list);
1238 mutex_init(&c->moving_context_lock);