2017-03-16 22:18:50 -08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
#include "bcachefs.h"
|
2022-03-18 00:42:09 -04:00
|
|
|
#include "alloc_background.h"
|
2018-10-06 00:46:55 -04:00
|
|
|
#include "alloc_foreground.h"
|
2022-03-18 00:42:09 -04:00
|
|
|
#include "backpointers.h"
|
2020-12-17 15:08:58 -05:00
|
|
|
#include "bkey_buf.h"
|
2017-03-16 22:18:50 -08:00
|
|
|
#include "btree_gc.h"
|
2024-01-16 13:29:59 -05:00
|
|
|
#include "btree_io.h"
|
2017-03-16 22:18:50 -08:00
|
|
|
#include "btree_update.h"
|
2019-01-21 15:32:13 -05:00
|
|
|
#include "btree_update_interior.h"
|
2022-03-18 00:42:09 -04:00
|
|
|
#include "btree_write_buffer.h"
|
2024-01-15 15:33:39 -05:00
|
|
|
#include "compress.h"
|
2018-11-04 23:10:09 -05:00
|
|
|
#include "disk_groups.h"
|
2021-10-29 16:29:13 -04:00
|
|
|
#include "ec.h"
|
2022-07-18 19:42:58 -04:00
|
|
|
#include "errcode.h"
|
2022-03-18 00:42:09 -04:00
|
|
|
#include "error.h"
|
2017-03-16 22:18:50 -08:00
|
|
|
#include "inode.h"
|
2023-09-10 18:05:17 -04:00
|
|
|
#include "io_read.h"
|
|
|
|
#include "io_write.h"
|
2017-03-16 22:18:50 -08:00
|
|
|
#include "journal_reclaim.h"
|
|
|
|
#include "keylist.h"
|
|
|
|
#include "move.h"
|
2024-10-28 23:23:18 -04:00
|
|
|
#include "rebalance.h"
|
2024-10-20 02:12:21 -04:00
|
|
|
#include "reflink.h"
|
2017-03-16 22:18:50 -08:00
|
|
|
#include "replicas.h"
|
2023-10-21 15:03:05 -04:00
|
|
|
#include "snapshot.h"
|
2017-03-16 22:18:50 -08:00
|
|
|
#include "super-io.h"
|
|
|
|
#include "trace.h"
|
|
|
|
|
|
|
|
#include <linux/ioprio.h>
|
|
|
|
#include <linux/kthread.h>
|
|
|
|
|
2023-11-20 18:43:48 -05:00
|
|
|
const char * const bch2_data_ops_strs[] = {
|
|
|
|
#define x(t, n, ...) [n] = #t,
|
|
|
|
BCH_DATA_OPS()
|
|
|
|
#undef x
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2025-05-26 23:00:21 -04:00
|
|
|
struct evacuate_bucket_arg {
|
|
|
|
struct bpos bucket;
|
|
|
|
int gen;
|
|
|
|
struct data_update_opts data_opts;
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool evacuate_bucket_pred(struct bch_fs *, void *,
|
|
|
|
enum btree_id, struct bkey_s_c,
|
|
|
|
struct bch_io_opts *,
|
|
|
|
struct data_update_opts *);
|
|
|
|
|
|
|
|
static noinline void
|
|
|
|
trace_io_move2(struct bch_fs *c, struct bkey_s_c k,
|
|
|
|
struct bch_io_opts *io_opts,
|
|
|
|
struct data_update_opts *data_opts)
|
2023-04-20 15:24:07 -04:00
|
|
|
{
|
2025-05-26 23:00:21 -04:00
|
|
|
struct printbuf buf = PRINTBUF;
|
2023-04-20 15:24:07 -04:00
|
|
|
|
2025-05-26 23:00:21 -04:00
|
|
|
bch2_bkey_val_to_text(&buf, c, k);
|
|
|
|
prt_newline(&buf);
|
|
|
|
bch2_data_update_opts_to_text(&buf, c, io_opts, data_opts);
|
|
|
|
trace_io_move(c, buf.buf);
|
|
|
|
printbuf_exit(&buf);
|
2023-04-20 15:24:07 -04:00
|
|
|
}
|
|
|
|
|
2025-05-26 23:00:21 -04:00
|
|
|
static noinline void trace_io_move_read2(struct bch_fs *c, struct bkey_s_c k)
|
2023-04-20 15:24:07 -04:00
|
|
|
{
|
2025-05-26 23:00:21 -04:00
|
|
|
struct printbuf buf = PRINTBUF;
|
2023-04-20 15:24:07 -04:00
|
|
|
|
2025-05-26 23:00:21 -04:00
|
|
|
bch2_bkey_val_to_text(&buf, c, k);
|
|
|
|
trace_io_move_read(c, buf.buf);
|
|
|
|
printbuf_exit(&buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static noinline void
|
|
|
|
trace_io_move_pred2(struct bch_fs *c, struct bkey_s_c k,
|
|
|
|
struct bch_io_opts *io_opts,
|
|
|
|
struct data_update_opts *data_opts,
|
|
|
|
move_pred_fn pred, void *_arg, bool p)
|
|
|
|
{
|
|
|
|
struct printbuf buf = PRINTBUF;
|
|
|
|
|
|
|
|
prt_printf(&buf, "%ps: %u", pred, p);
|
|
|
|
|
|
|
|
if (pred == evacuate_bucket_pred) {
|
|
|
|
struct evacuate_bucket_arg *arg = _arg;
|
|
|
|
prt_printf(&buf, " gen=%u", arg->gen);
|
2023-04-20 15:24:07 -04:00
|
|
|
}
|
2025-05-26 23:00:21 -04:00
|
|
|
|
|
|
|
prt_newline(&buf);
|
|
|
|
bch2_bkey_val_to_text(&buf, c, k);
|
|
|
|
prt_newline(&buf);
|
|
|
|
bch2_data_update_opts_to_text(&buf, c, io_opts, data_opts);
|
|
|
|
trace_io_move_pred(c, buf.buf);
|
|
|
|
printbuf_exit(&buf);
|
2023-04-20 15:24:07 -04:00
|
|
|
}
|
|
|
|
|
2025-05-27 21:54:22 -04:00
|
|
|
static noinline void
|
|
|
|
trace_io_move_evacuate_bucket2(struct bch_fs *c, struct bpos bucket, int gen)
|
|
|
|
{
|
|
|
|
struct printbuf buf = PRINTBUF;
|
|
|
|
|
|
|
|
prt_printf(&buf, "bucket: ");
|
|
|
|
bch2_bpos_to_text(&buf, bucket);
|
|
|
|
prt_printf(&buf, " gen: %i\n", gen);
|
|
|
|
|
|
|
|
trace_io_move_evacuate_bucket(c, buf.buf);
|
|
|
|
printbuf_exit(&buf);
|
|
|
|
}
|
|
|
|
|
2017-03-16 22:18:50 -08:00
|
|
|
struct moving_io {
|
2023-03-11 20:38:46 -05:00
|
|
|
struct list_head read_list;
|
|
|
|
struct list_head io_list;
|
2025-05-08 17:01:49 -04:00
|
|
|
struct move_bucket *b;
|
2023-02-27 22:58:01 -05:00
|
|
|
struct closure cl;
|
|
|
|
bool read_completed;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2023-02-27 22:58:01 -05:00
|
|
|
unsigned read_sectors;
|
|
|
|
unsigned write_sectors;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2023-02-27 22:58:01 -05:00
|
|
|
struct data_update write;
|
2017-03-16 22:18:50 -08:00
|
|
|
};
|
|
|
|
|
2022-10-29 02:47:33 -04:00
|
|
|
static void move_free(struct moving_io *io)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
|
|
|
struct moving_context *ctxt = io->write.ctxt;
|
|
|
|
|
2023-02-27 22:58:01 -05:00
|
|
|
if (io->b)
|
|
|
|
atomic_dec(&io->b->count);
|
|
|
|
|
2023-03-11 20:38:46 -05:00
|
|
|
mutex_lock(&ctxt->lock);
|
|
|
|
list_del(&io->io_list);
|
2017-03-16 22:18:50 -08:00
|
|
|
wake_up(&ctxt->wait);
|
2023-03-11 20:38:46 -05:00
|
|
|
mutex_unlock(&ctxt->lock);
|
|
|
|
|
2024-12-28 19:59:55 -05:00
|
|
|
if (!io->write.data_opts.scrub) {
|
|
|
|
bch2_data_update_exit(&io->write);
|
|
|
|
} else {
|
|
|
|
bch2_bio_free_pages_pool(io->write.op.c, &io->write.op.wbio.bio);
|
|
|
|
kfree(io->write.bvecs);
|
|
|
|
}
|
2017-03-16 22:18:50 -08:00
|
|
|
kfree(io);
|
|
|
|
}
|
|
|
|
|
2022-10-29 02:47:33 -04:00
|
|
|
static void move_write_done(struct bch_write_op *op)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
2022-10-29 02:47:33 -04:00
|
|
|
struct moving_io *io = container_of(op, struct moving_io, write.op);
|
2025-03-15 19:24:44 -04:00
|
|
|
struct bch_fs *c = op->c;
|
2022-10-29 02:47:33 -04:00
|
|
|
struct moving_context *ctxt = io->write.ctxt;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2025-03-15 19:24:44 -04:00
|
|
|
if (op->error) {
|
|
|
|
if (trace_io_move_write_fail_enabled()) {
|
|
|
|
struct printbuf buf = PRINTBUF;
|
|
|
|
|
|
|
|
bch2_write_op_to_text(&buf, op);
|
|
|
|
trace_io_move_write_fail(c, buf.buf);
|
|
|
|
printbuf_exit(&buf);
|
|
|
|
}
|
|
|
|
this_cpu_inc(c->counters[BCH_COUNTER_io_move_write_fail]);
|
|
|
|
|
2022-03-18 00:42:09 -04:00
|
|
|
ctxt->write_error = true;
|
2025-03-15 19:24:44 -04:00
|
|
|
}
|
2022-03-18 00:42:09 -04:00
|
|
|
|
2025-03-15 19:24:44 -04:00
|
|
|
atomic_sub(io->write_sectors, &ctxt->write_sectors);
|
|
|
|
atomic_dec(&ctxt->write_ios);
|
2022-10-29 02:47:33 -04:00
|
|
|
move_free(io);
|
|
|
|
closure_put(&ctxt->cl);
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
|
2022-10-29 02:47:33 -04:00
|
|
|
static void move_write(struct moving_io *io)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
2025-03-11 10:02:40 -04:00
|
|
|
struct bch_fs *c = io->write.op.c;
|
2024-12-28 19:59:55 -05:00
|
|
|
struct moving_context *ctxt = io->write.ctxt;
|
2025-03-11 10:02:40 -04:00
|
|
|
struct bch_read_bio *rbio = &io->write.rbio;
|
2024-12-28 19:59:55 -05:00
|
|
|
|
|
|
|
if (ctxt->stats) {
|
2025-03-11 10:02:40 -04:00
|
|
|
if (rbio->bio.bi_status)
|
2024-12-28 19:59:55 -05:00
|
|
|
atomic64_add(io->write.rbio.bvec_iter.bi_size >> 9,
|
|
|
|
&ctxt->stats->sectors_error_uncorrected);
|
2025-03-11 10:02:40 -04:00
|
|
|
else if (rbio->saw_error)
|
2024-12-28 19:59:55 -05:00
|
|
|
atomic64_add(io->write.rbio.bvec_iter.bi_size >> 9,
|
|
|
|
&ctxt->stats->sectors_error_corrected);
|
|
|
|
}
|
|
|
|
|
2025-03-11 10:02:40 -04:00
|
|
|
/*
|
|
|
|
* If the extent has been bitrotted, we're going to have to give it a
|
|
|
|
* new checksum in order to move it - but the poison bit will ensure
|
|
|
|
* that userspace still gets the appropriate error.
|
|
|
|
*/
|
|
|
|
if (unlikely(rbio->ret == -BCH_ERR_data_read_csum_err &&
|
|
|
|
(bch2_bkey_extent_flags(bkey_i_to_s_c(io->write.k.k)) & BIT_ULL(BCH_EXTENT_FLAG_poisoned)))) {
|
|
|
|
struct bch_extent_crc_unpacked crc = rbio->pick.crc;
|
|
|
|
struct nonce nonce = extent_nonce(rbio->version, crc);
|
|
|
|
|
|
|
|
rbio->pick.crc.csum = bch2_checksum_bio(c, rbio->pick.crc.csum_type,
|
|
|
|
nonce, &rbio->bio);
|
|
|
|
rbio->ret = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unlikely(rbio->ret || io->write.data_opts.scrub)) {
|
2022-10-29 02:47:33 -04:00
|
|
|
move_free(io);
|
2017-03-16 22:18:50 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2025-02-03 20:15:52 -05:00
|
|
|
if (trace_io_move_write_enabled()) {
|
2024-01-15 15:04:40 -05:00
|
|
|
struct printbuf buf = PRINTBUF;
|
|
|
|
|
|
|
|
bch2_bkey_val_to_text(&buf, c, bkey_i_to_s_c(io->write.k.k));
|
2025-02-03 20:15:52 -05:00
|
|
|
trace_io_move_write(c, buf.buf);
|
2024-01-15 15:04:40 -05:00
|
|
|
printbuf_exit(&buf);
|
|
|
|
}
|
|
|
|
|
2022-10-29 02:47:33 -04:00
|
|
|
closure_get(&io->write.ctxt->cl);
|
2017-03-16 22:18:50 -08:00
|
|
|
atomic_add(io->write_sectors, &io->write.ctxt->write_sectors);
|
2023-01-09 01:45:18 -05:00
|
|
|
atomic_inc(&io->write.ctxt->write_ios);
|
2022-10-29 02:47:33 -04:00
|
|
|
|
2025-01-16 00:40:43 -05:00
|
|
|
bch2_data_update_read_done(&io->write);
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
|
2023-01-02 17:53:02 -05:00
|
|
|
struct moving_io *bch2_moving_ctxt_next_pending_write(struct moving_context *ctxt)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
|
|
|
struct moving_io *io =
|
2023-03-11 20:38:46 -05:00
|
|
|
list_first_entry_or_null(&ctxt->reads, struct moving_io, read_list);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
|
|
|
return io && io->read_completed ? io : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void move_read_endio(struct bio *bio)
|
|
|
|
{
|
2025-01-15 18:53:55 -05:00
|
|
|
struct moving_io *io = container_of(bio, struct moving_io, write.rbio.bio);
|
2017-03-16 22:18:50 -08:00
|
|
|
struct moving_context *ctxt = io->write.ctxt;
|
|
|
|
|
|
|
|
atomic_sub(io->read_sectors, &ctxt->read_sectors);
|
2023-01-09 01:45:18 -05:00
|
|
|
atomic_dec(&ctxt->read_ios);
|
2017-03-16 22:18:50 -08:00
|
|
|
io->read_completed = true;
|
|
|
|
|
2022-02-21 13:22:11 -05:00
|
|
|
wake_up(&ctxt->wait);
|
2017-03-16 22:18:50 -08:00
|
|
|
closure_put(&ctxt->cl);
|
|
|
|
}
|
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
void bch2_moving_ctxt_do_pending_writes(struct moving_context *ctxt)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
|
|
|
struct moving_io *io;
|
|
|
|
|
2023-01-02 17:53:02 -05:00
|
|
|
while ((io = bch2_moving_ctxt_next_pending_write(ctxt))) {
|
2023-10-30 15:13:09 -04:00
|
|
|
bch2_trans_unlock_long(ctxt->trans);
|
2023-03-11 20:38:46 -05:00
|
|
|
list_del(&io->read_list);
|
2022-10-29 02:47:33 -04:00
|
|
|
move_write(io);
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
void bch2_move_ctxt_wait_for_io(struct moving_context *ctxt)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
|
|
|
unsigned sectors_pending = atomic_read(&ctxt->write_sectors);
|
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
move_ctxt_wait_event(ctxt,
|
2017-03-16 22:18:50 -08:00
|
|
|
!atomic_read(&ctxt->write_sectors) ||
|
|
|
|
atomic_read(&ctxt->write_sectors) != sectors_pending);
|
|
|
|
}
|
|
|
|
|
2023-11-26 19:33:31 +13:00
|
|
|
void bch2_moving_ctxt_flush_all(struct moving_context *ctxt)
|
2023-11-20 17:24:32 -05:00
|
|
|
{
|
|
|
|
move_ctxt_wait_event(ctxt, list_empty(&ctxt->reads));
|
|
|
|
bch2_trans_unlock_long(ctxt->trans);
|
|
|
|
closure_sync(&ctxt->cl);
|
|
|
|
}
|
|
|
|
|
2022-06-20 15:40:26 -04:00
|
|
|
void bch2_moving_ctxt_exit(struct moving_context *ctxt)
|
|
|
|
{
|
2023-10-20 13:32:42 -04:00
|
|
|
struct bch_fs *c = ctxt->trans->c;
|
2023-03-11 20:38:46 -05:00
|
|
|
|
2023-11-20 17:24:32 -05:00
|
|
|
bch2_moving_ctxt_flush_all(ctxt);
|
2023-01-09 01:45:18 -05:00
|
|
|
|
2022-06-20 15:40:26 -04:00
|
|
|
EBUG_ON(atomic_read(&ctxt->write_sectors));
|
2023-01-09 01:45:18 -05:00
|
|
|
EBUG_ON(atomic_read(&ctxt->write_ios));
|
|
|
|
EBUG_ON(atomic_read(&ctxt->read_sectors));
|
|
|
|
EBUG_ON(atomic_read(&ctxt->read_ios));
|
2022-06-20 15:40:26 -04:00
|
|
|
|
2023-03-11 20:38:46 -05:00
|
|
|
mutex_lock(&c->moving_context_lock);
|
|
|
|
list_del(&ctxt->list);
|
|
|
|
mutex_unlock(&c->moving_context_lock);
|
2023-10-20 13:32:42 -04:00
|
|
|
|
2024-11-07 22:00:05 -05:00
|
|
|
/*
|
|
|
|
* Generally, releasing a transaction within a transaction restart means
|
|
|
|
* an unhandled transaction restart: but this can happen legitimately
|
|
|
|
* within the move code, e.g. when bch2_move_ratelimit() tells us to
|
|
|
|
* exit before we've retried
|
|
|
|
*/
|
|
|
|
bch2_trans_begin(ctxt->trans);
|
2023-10-20 13:32:42 -04:00
|
|
|
bch2_trans_put(ctxt->trans);
|
|
|
|
memset(ctxt, 0, sizeof(*ctxt));
|
2022-06-20 15:40:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void bch2_moving_ctxt_init(struct moving_context *ctxt,
|
|
|
|
struct bch_fs *c,
|
|
|
|
struct bch_ratelimit *rate,
|
|
|
|
struct bch_move_stats *stats,
|
|
|
|
struct write_point_specifier wp,
|
|
|
|
bool wait_on_copygc)
|
|
|
|
{
|
|
|
|
memset(ctxt, 0, sizeof(*ctxt));
|
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
ctxt->trans = bch2_trans_get(c);
|
2023-03-11 20:38:46 -05:00
|
|
|
ctxt->fn = (void *) _RET_IP_;
|
2022-06-20 15:40:26 -04:00
|
|
|
ctxt->rate = rate;
|
|
|
|
ctxt->stats = stats;
|
|
|
|
ctxt->wp = wp;
|
|
|
|
ctxt->wait_on_copygc = wait_on_copygc;
|
|
|
|
|
|
|
|
closure_init_stack(&ctxt->cl);
|
2023-03-11 20:38:46 -05:00
|
|
|
|
|
|
|
mutex_init(&ctxt->lock);
|
2022-06-20 15:40:26 -04:00
|
|
|
INIT_LIST_HEAD(&ctxt->reads);
|
2023-03-11 20:38:46 -05:00
|
|
|
INIT_LIST_HEAD(&ctxt->ios);
|
2022-06-20 15:40:26 -04:00
|
|
|
init_waitqueue_head(&ctxt->wait);
|
|
|
|
|
2023-03-11 20:38:46 -05:00
|
|
|
mutex_lock(&c->moving_context_lock);
|
|
|
|
list_add(&ctxt->list, &c->moving_context_list);
|
|
|
|
mutex_unlock(&c->moving_context_lock);
|
2023-10-23 16:21:54 -04:00
|
|
|
}
|
2023-03-11 20:38:46 -05:00
|
|
|
|
2023-10-23 16:21:54 -04:00
|
|
|
void bch2_move_stats_exit(struct bch_move_stats *stats, struct bch_fs *c)
|
|
|
|
{
|
|
|
|
trace_move_data(c, stats);
|
2022-06-20 15:40:26 -04:00
|
|
|
}
|
|
|
|
|
2023-11-20 18:43:48 -05:00
|
|
|
void bch2_move_stats_init(struct bch_move_stats *stats, const char *name)
|
2022-06-20 15:40:26 -04:00
|
|
|
{
|
|
|
|
memset(stats, 0, sizeof(*stats));
|
2023-10-23 16:21:54 -04:00
|
|
|
stats->data_type = BCH_DATA_user;
|
2022-06-20 15:40:26 -04:00
|
|
|
scnprintf(stats->name, sizeof(stats->name), "%s", name);
|
|
|
|
}
|
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
int bch2_move_extent(struct moving_context *ctxt,
|
2025-05-08 17:01:49 -04:00
|
|
|
struct move_bucket *bucket_in_flight,
|
2023-10-20 13:32:42 -04:00
|
|
|
struct btree_iter *iter,
|
2023-10-20 13:32:42 -04:00
|
|
|
struct bkey_s_c k,
|
2023-10-20 13:32:42 -04:00
|
|
|
struct bch_io_opts io_opts,
|
2023-10-20 13:32:42 -04:00
|
|
|
struct data_update_opts data_opts)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
2023-10-20 13:32:42 -04:00
|
|
|
struct btree_trans *trans = ctxt->trans;
|
2020-10-16 21:39:16 -04:00
|
|
|
struct bch_fs *c = trans->c;
|
2017-03-16 22:18:50 -08:00
|
|
|
int ret = -ENOMEM;
|
|
|
|
|
2025-05-26 23:00:21 -04:00
|
|
|
if (trace_io_move_enabled())
|
|
|
|
trace_io_move2(c, k, &io_opts, &data_opts);
|
2025-02-03 20:15:52 -05:00
|
|
|
this_cpu_add(c->counters[BCH_COUNTER_io_move], k.k->size);
|
2024-01-15 15:33:39 -05:00
|
|
|
|
2023-10-23 16:21:54 -04:00
|
|
|
if (ctxt->stats)
|
|
|
|
ctxt->stats->pos = BBPOS(iter->btree_id, iter->pos);
|
2023-04-20 15:24:07 -04:00
|
|
|
|
2022-10-09 03:32:17 -04:00
|
|
|
bch2_data_update_opts_normalize(k, &data_opts);
|
|
|
|
|
|
|
|
if (!data_opts.rewrite_ptrs &&
|
2024-12-28 19:59:55 -05:00
|
|
|
!data_opts.extra_replicas &&
|
|
|
|
!data_opts.scrub) {
|
2022-10-09 03:32:17 -04:00
|
|
|
if (data_opts.kill_ptrs)
|
2024-10-20 20:02:09 -04:00
|
|
|
return bch2_extent_drop_ptrs(trans, iter, k, &io_opts, &data_opts);
|
2022-10-09 03:32:17 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2025-05-28 16:06:07 -04:00
|
|
|
struct moving_io *io = allocate_dropping_locks(trans, ret,
|
|
|
|
kzalloc(sizeof(struct moving_io), _gfp));
|
2017-03-16 22:18:50 -08:00
|
|
|
if (!io)
|
|
|
|
goto err;
|
|
|
|
|
2025-05-28 16:06:07 -04:00
|
|
|
if (ret)
|
|
|
|
goto err_free;
|
|
|
|
|
2023-03-11 20:38:46 -05:00
|
|
|
INIT_LIST_HEAD(&io->io_list);
|
2017-03-16 22:18:50 -08:00
|
|
|
io->write.ctxt = ctxt;
|
2019-07-25 13:52:14 -04:00
|
|
|
io->read_sectors = k.k->size;
|
|
|
|
io->write_sectors = k.k->size;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2024-12-28 19:59:55 -05:00
|
|
|
if (!data_opts.scrub) {
|
|
|
|
ret = bch2_data_update_init(trans, iter, ctxt, &io->write, ctxt->wp,
|
|
|
|
&io_opts, data_opts, iter->btree_id, k);
|
|
|
|
if (ret)
|
|
|
|
goto err_free;
|
|
|
|
|
|
|
|
io->write.op.end_io = move_write_done;
|
|
|
|
} else {
|
|
|
|
bch2_bkey_buf_init(&io->write.k);
|
|
|
|
bch2_bkey_buf_reassemble(&io->write.k, c, k);
|
|
|
|
|
|
|
|
io->write.op.c = c;
|
|
|
|
io->write.data_opts = data_opts;
|
|
|
|
|
2025-05-28 16:06:07 -04:00
|
|
|
bch2_trans_unlock(trans);
|
|
|
|
|
2024-12-28 19:59:55 -05:00
|
|
|
ret = bch2_data_update_bios_init(&io->write, c, &io_opts);
|
|
|
|
if (ret)
|
|
|
|
goto err_free;
|
|
|
|
}
|
2025-01-16 00:40:43 -05:00
|
|
|
|
|
|
|
io->write.rbio.bio.bi_end_io = move_read_endio;
|
|
|
|
io->write.rbio.bio.bi_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_IDLE, 0);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
if (ctxt->rate)
|
|
|
|
bch2_ratelimit_increment(ctxt->rate, k.k->size);
|
|
|
|
|
2023-03-04 02:51:12 -05:00
|
|
|
if (ctxt->stats) {
|
|
|
|
atomic64_inc(&ctxt->stats->keys_moved);
|
|
|
|
atomic64_add(k.k->size, &ctxt->stats->sectors_moved);
|
|
|
|
}
|
|
|
|
|
2023-02-27 22:58:01 -05:00
|
|
|
if (bucket_in_flight) {
|
|
|
|
io->b = bucket_in_flight;
|
|
|
|
atomic_inc(&io->b->count);
|
|
|
|
}
|
|
|
|
|
2025-05-26 23:00:21 -04:00
|
|
|
if (trace_io_move_read_enabled())
|
|
|
|
trace_io_move_read2(c, k);
|
2023-03-11 20:38:46 -05:00
|
|
|
|
|
|
|
mutex_lock(&ctxt->lock);
|
2017-03-16 22:18:50 -08:00
|
|
|
atomic_add(io->read_sectors, &ctxt->read_sectors);
|
2023-01-09 01:45:18 -05:00
|
|
|
atomic_inc(&ctxt->read_ios);
|
2023-03-11 20:38:46 -05:00
|
|
|
|
|
|
|
list_add_tail(&io->read_list, &ctxt->reads);
|
|
|
|
list_add_tail(&io->io_list, &ctxt->ios);
|
|
|
|
mutex_unlock(&ctxt->lock);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* dropped by move_read_endio() - guards against use after free of
|
|
|
|
* ctxt when doing wakeup
|
|
|
|
*/
|
|
|
|
closure_get(&ctxt->cl);
|
2024-12-28 19:59:55 -05:00
|
|
|
__bch2_read_extent(trans, &io->write.rbio,
|
|
|
|
io->write.rbio.bio.bi_iter,
|
|
|
|
bkey_start_pos(k.k),
|
|
|
|
iter->btree_id, k, 0,
|
|
|
|
NULL,
|
|
|
|
BCH_READ_last_fragment,
|
|
|
|
data_opts.scrub ? data_opts.read_dev : -1);
|
2017-03-16 22:18:50 -08:00
|
|
|
return 0;
|
|
|
|
err_free:
|
|
|
|
kfree(io);
|
|
|
|
err:
|
2023-11-26 23:11:18 -05:00
|
|
|
if (bch2_err_matches(ret, EROFS) ||
|
|
|
|
bch2_err_matches(ret, BCH_ERR_transaction_restart))
|
|
|
|
return ret;
|
|
|
|
|
2025-02-03 20:15:52 -05:00
|
|
|
count_event(c, io_move_start_fail);
|
2023-11-27 22:37:27 -05:00
|
|
|
|
2025-02-03 20:15:52 -05:00
|
|
|
if (trace_io_move_start_fail_enabled()) {
|
2023-11-26 21:13:54 -05:00
|
|
|
struct printbuf buf = PRINTBUF;
|
|
|
|
|
|
|
|
bch2_bkey_val_to_text(&buf, c, k);
|
|
|
|
prt_str(&buf, ": ");
|
|
|
|
prt_str(&buf, bch2_err_str(ret));
|
2025-02-03 20:15:52 -05:00
|
|
|
trace_io_move_start_fail(c, buf.buf);
|
2023-11-26 21:13:54 -05:00
|
|
|
printbuf_exit(&buf);
|
|
|
|
}
|
2025-05-27 21:45:56 -04:00
|
|
|
|
|
|
|
if (bch2_err_matches(ret, BCH_ERR_data_update_done))
|
|
|
|
return 0;
|
2017-03-16 22:18:50 -08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2025-05-15 10:08:06 -04:00
|
|
|
struct bch_io_opts *bch2_move_get_io_opts(struct btree_trans *trans,
|
2023-10-21 15:03:05 -04:00
|
|
|
struct per_snapshot_io_opts *io_opts,
|
2024-10-20 02:12:21 -04:00
|
|
|
struct bpos extent_pos, /* extent_iter, extent_k may be in reflink btree */
|
2024-10-19 21:41:20 -04:00
|
|
|
struct btree_iter *extent_iter,
|
2023-10-21 15:03:05 -04:00
|
|
|
struct bkey_s_c extent_k)
|
|
|
|
{
|
|
|
|
struct bch_fs *c = trans->c;
|
|
|
|
u32 restart_count = trans->restart_count;
|
2024-10-19 21:41:20 -04:00
|
|
|
struct bch_io_opts *opts_ret = &io_opts->fs_io_opts;
|
2023-10-21 15:03:05 -04:00
|
|
|
int ret = 0;
|
|
|
|
|
2025-04-13 16:31:34 -04:00
|
|
|
if (extent_iter->min_depth)
|
|
|
|
return opts_ret;
|
|
|
|
|
2024-10-19 21:41:20 -04:00
|
|
|
if (extent_k.k->type == KEY_TYPE_reflink_v)
|
|
|
|
goto out;
|
|
|
|
|
2024-10-20 02:12:21 -04:00
|
|
|
if (io_opts->cur_inum != extent_pos.inode) {
|
2023-10-21 15:03:05 -04:00
|
|
|
io_opts->d.nr = 0;
|
|
|
|
|
2024-10-20 02:12:21 -04:00
|
|
|
ret = for_each_btree_key(trans, iter, BTREE_ID_inodes, POS(0, extent_pos.inode),
|
2024-04-07 18:05:34 -04:00
|
|
|
BTREE_ITER_all_snapshots, k, ({
|
2024-10-20 02:12:21 -04:00
|
|
|
if (k.k->p.offset != extent_pos.inode)
|
2023-10-21 15:03:05 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
if (!bkey_is_inode(k.k))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
struct bch_inode_unpacked inode;
|
2024-12-08 22:00:36 -05:00
|
|
|
_ret3 = bch2_inode_unpack(k, &inode);
|
|
|
|
if (_ret3)
|
|
|
|
break;
|
2023-10-21 15:03:05 -04:00
|
|
|
|
|
|
|
struct snapshot_io_opts_entry e = { .snapshot = k.k->p.snapshot };
|
|
|
|
bch2_inode_opts_get(&e.io_opts, trans->c, &inode);
|
|
|
|
|
2023-12-07 23:28:26 -05:00
|
|
|
darray_push(&io_opts->d, e);
|
|
|
|
}));
|
2024-10-20 02:12:21 -04:00
|
|
|
io_opts->cur_inum = extent_pos.inode;
|
2023-10-21 15:03:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = ret ?: trans_was_restarted(trans, restart_count);
|
|
|
|
if (ret)
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
|
2023-12-16 21:40:26 -05:00
|
|
|
if (extent_k.k->p.snapshot)
|
2023-10-21 15:03:05 -04:00
|
|
|
darray_for_each(io_opts->d, i)
|
2024-10-19 21:41:20 -04:00
|
|
|
if (bch2_snapshot_is_ancestor(c, extent_k.k->p.snapshot, i->snapshot)) {
|
|
|
|
opts_ret = &i->io_opts;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
out:
|
2024-10-28 23:23:18 -04:00
|
|
|
ret = bch2_get_update_rebalance_opts(trans, opts_ret, extent_iter, extent_k);
|
2024-10-19 21:41:20 -04:00
|
|
|
if (ret)
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
return opts_ret;
|
2023-10-21 15:03:05 -04:00
|
|
|
}
|
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
int bch2_move_get_io_opts_one(struct btree_trans *trans,
|
|
|
|
struct bch_io_opts *io_opts,
|
2024-10-19 21:41:20 -04:00
|
|
|
struct btree_iter *extent_iter,
|
2023-10-20 13:32:42 -04:00
|
|
|
struct bkey_s_c extent_k)
|
2021-03-16 18:08:10 -04:00
|
|
|
{
|
2024-10-19 21:41:20 -04:00
|
|
|
struct bch_fs *c = trans->c;
|
|
|
|
|
|
|
|
*io_opts = bch2_opts_to_inode_opts(c->opts);
|
2021-03-16 18:08:10 -04:00
|
|
|
|
2023-10-21 15:03:05 -04:00
|
|
|
/* reflink btree? */
|
2024-10-19 21:41:20 -04:00
|
|
|
if (!extent_k.k->p.inode)
|
|
|
|
goto out;
|
2023-10-21 15:03:05 -04:00
|
|
|
|
2024-10-19 21:41:20 -04:00
|
|
|
struct btree_iter inode_iter;
|
|
|
|
struct bkey_s_c inode_k = bch2_bkey_get_iter(trans, &inode_iter, BTREE_ID_inodes,
|
2023-10-21 15:03:05 -04:00
|
|
|
SPOS(0, extent_k.k->p.inode, extent_k.k->p.snapshot),
|
2024-04-07 18:05:34 -04:00
|
|
|
BTREE_ITER_cached);
|
2024-10-19 21:41:20 -04:00
|
|
|
int ret = bkey_err(inode_k);
|
2023-10-21 15:03:05 -04:00
|
|
|
if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
|
|
|
|
return ret;
|
2021-03-16 18:08:10 -04:00
|
|
|
|
2024-10-19 21:41:20 -04:00
|
|
|
if (!ret && bkey_is_inode(inode_k.k)) {
|
2023-10-21 15:03:05 -04:00
|
|
|
struct bch_inode_unpacked inode;
|
2024-10-19 21:41:20 -04:00
|
|
|
bch2_inode_unpack(inode_k, &inode);
|
|
|
|
bch2_inode_opts_get(io_opts, c, &inode);
|
2021-05-23 18:42:51 -04:00
|
|
|
}
|
2024-10-19 21:41:20 -04:00
|
|
|
bch2_trans_iter_exit(trans, &inode_iter);
|
2025-05-26 23:00:21 -04:00
|
|
|
/* seem to be spinning here? */
|
2024-10-19 21:41:20 -04:00
|
|
|
out:
|
2024-10-28 23:23:18 -04:00
|
|
|
return bch2_get_update_rebalance_opts(trans, io_opts, extent_iter, extent_k);
|
2021-03-16 18:08:10 -04:00
|
|
|
}
|
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
int bch2_move_ratelimit(struct moving_context *ctxt)
|
2022-06-16 02:06:43 +12:00
|
|
|
{
|
2023-10-20 13:32:42 -04:00
|
|
|
struct bch_fs *c = ctxt->trans->c;
|
2023-11-28 16:33:52 -05:00
|
|
|
bool is_kthread = current->flags & PF_KTHREAD;
|
2022-06-16 02:06:43 +12:00
|
|
|
u64 delay;
|
|
|
|
|
2023-11-20 17:24:32 -05:00
|
|
|
if (ctxt->wait_on_copygc && c->copygc_running) {
|
|
|
|
bch2_moving_ctxt_flush_all(ctxt);
|
2022-06-16 02:06:43 +12:00
|
|
|
wait_event_killable(c->copygc_running_wq,
|
|
|
|
!c->copygc_running ||
|
2023-11-28 16:33:52 -05:00
|
|
|
(is_kthread && kthread_should_stop()));
|
2022-06-16 02:06:43 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
2022-06-20 15:40:26 -04:00
|
|
|
delay = ctxt->rate ? bch2_ratelimit_delay(ctxt->rate) : 0;
|
2022-06-16 02:06:43 +12:00
|
|
|
|
2023-11-28 16:33:52 -05:00
|
|
|
if (is_kthread && kthread_should_stop())
|
2022-06-16 02:06:43 +12:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (delay)
|
2023-11-22 23:44:47 -05:00
|
|
|
move_ctxt_wait_event_timeout(ctxt,
|
2023-11-28 16:33:52 -05:00
|
|
|
freezing(current) ||
|
|
|
|
(is_kthread && kthread_should_stop()),
|
2023-11-22 23:44:47 -05:00
|
|
|
delay);
|
2022-06-16 02:06:43 +12:00
|
|
|
|
|
|
|
if (unlikely(freezing(current))) {
|
2023-11-20 17:24:32 -05:00
|
|
|
bch2_moving_ctxt_flush_all(ctxt);
|
2022-06-16 02:06:43 +12:00
|
|
|
try_to_freeze();
|
|
|
|
}
|
|
|
|
} while (delay);
|
|
|
|
|
2023-01-09 01:45:18 -05:00
|
|
|
/*
|
|
|
|
* XXX: these limits really ought to be per device, SSDs and hard drives
|
|
|
|
* will want different limits
|
|
|
|
*/
|
2023-10-20 13:32:42 -04:00
|
|
|
move_ctxt_wait_event(ctxt,
|
2023-01-09 01:45:18 -05:00
|
|
|
atomic_read(&ctxt->write_sectors) < c->opts.move_bytes_in_flight >> 9 &&
|
|
|
|
atomic_read(&ctxt->read_sectors) < c->opts.move_bytes_in_flight >> 9 &&
|
|
|
|
atomic_read(&ctxt->write_ios) < c->opts.move_ios_in_flight &&
|
|
|
|
atomic_read(&ctxt->read_ios) < c->opts.move_ios_in_flight);
|
2022-06-16 02:06:43 +12:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2025-03-17 15:07:06 -04:00
|
|
|
/*
|
|
|
|
* Move requires non extents iterators, and there's also no need for it to
|
|
|
|
* signal indirect_extent_missing_error:
|
|
|
|
*/
|
|
|
|
static struct bkey_s_c bch2_lookup_indirect_extent_for_move(struct btree_trans *trans,
|
|
|
|
struct btree_iter *iter,
|
|
|
|
struct bkey_s_c_reflink_p p)
|
|
|
|
{
|
|
|
|
if (unlikely(REFLINK_P_ERROR(p.v)))
|
|
|
|
return bkey_s_c_null;
|
|
|
|
|
|
|
|
struct bpos reflink_pos = POS(0, REFLINK_P_IDX(p.v));
|
|
|
|
|
|
|
|
bch2_trans_iter_init(trans, iter,
|
|
|
|
BTREE_ID_reflink, reflink_pos,
|
|
|
|
BTREE_ITER_not_extents);
|
|
|
|
|
2025-03-21 15:18:51 -04:00
|
|
|
struct bkey_s_c k = bch2_btree_iter_peek(trans, iter);
|
2025-03-17 15:07:06 -04:00
|
|
|
if (!k.k || bkey_err(k)) {
|
|
|
|
bch2_trans_iter_exit(trans, iter);
|
|
|
|
return k;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bkey_lt(reflink_pos, bkey_start_pos(k.k))) {
|
|
|
|
bch2_trans_iter_exit(trans, iter);
|
|
|
|
return bkey_s_c_null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return k;
|
|
|
|
}
|
|
|
|
|
2025-04-13 16:31:34 -04:00
|
|
|
int bch2_move_data_btree(struct moving_context *ctxt,
|
|
|
|
struct bpos start,
|
|
|
|
struct bpos end,
|
|
|
|
move_pred_fn pred, void *arg,
|
|
|
|
enum btree_id btree_id, unsigned level)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
2023-10-20 13:32:42 -04:00
|
|
|
struct btree_trans *trans = ctxt->trans;
|
|
|
|
struct bch_fs *c = trans->c;
|
2023-10-21 15:03:05 -04:00
|
|
|
struct per_snapshot_io_opts snapshot_io_opts;
|
|
|
|
struct bch_io_opts *io_opts;
|
2020-12-17 15:08:58 -05:00
|
|
|
struct bkey_buf sk;
|
2024-10-20 02:12:21 -04:00
|
|
|
struct btree_iter iter, reflink_iter = {};
|
2017-03-16 22:18:50 -08:00
|
|
|
struct bkey_s_c k;
|
2022-06-13 19:17:45 -04:00
|
|
|
struct data_update_opts data_opts;
|
2024-10-20 02:12:21 -04:00
|
|
|
/*
|
|
|
|
* If we're moving a single file, also process reflinked data it points
|
|
|
|
* to (this includes propagating changed io_opts from the inode to the
|
|
|
|
* extent):
|
|
|
|
*/
|
|
|
|
bool walk_indirect = start.inode == end.inode;
|
2017-03-16 22:18:50 -08:00
|
|
|
int ret = 0, ret2;
|
|
|
|
|
2023-10-21 15:03:05 -04:00
|
|
|
per_snapshot_io_opts_init(&snapshot_io_opts, c);
|
2020-12-17 15:08:58 -05:00
|
|
|
bch2_bkey_buf_init(&sk);
|
2019-03-25 15:10:15 -04:00
|
|
|
|
2023-03-04 02:51:12 -05:00
|
|
|
if (ctxt->stats) {
|
|
|
|
ctxt->stats->data_type = BCH_DATA_user;
|
2023-10-23 15:36:45 -04:00
|
|
|
ctxt->stats->pos = BBPOS(btree_id, start);
|
2023-03-04 02:51:12 -05:00
|
|
|
}
|
2019-03-25 15:10:15 -04:00
|
|
|
|
2025-04-15 21:35:28 -04:00
|
|
|
retry_root:
|
2024-06-03 18:00:48 -04:00
|
|
|
bch2_trans_begin(trans);
|
2025-04-15 21:35:28 -04:00
|
|
|
|
|
|
|
if (level == bch2_btree_id_root(c, btree_id)->level + 1) {
|
|
|
|
bch2_trans_node_iter_init(trans, &iter, btree_id, start, 0, level - 1,
|
|
|
|
BTREE_ITER_prefetch|
|
|
|
|
BTREE_ITER_not_extents|
|
|
|
|
BTREE_ITER_all_snapshots);
|
|
|
|
struct btree *b = bch2_btree_iter_peek_node(trans, &iter);
|
|
|
|
ret = PTR_ERR_OR_ZERO(b);
|
|
|
|
if (ret)
|
|
|
|
goto root_err;
|
|
|
|
|
|
|
|
if (b != btree_node_root(c, b)) {
|
|
|
|
bch2_trans_iter_exit(trans, &iter);
|
|
|
|
goto retry_root;
|
|
|
|
}
|
|
|
|
|
|
|
|
k = bkey_i_to_s_c(&b->key);
|
|
|
|
|
|
|
|
io_opts = bch2_move_get_io_opts(trans, &snapshot_io_opts,
|
|
|
|
iter.pos, &iter, k);
|
|
|
|
ret = PTR_ERR_OR_ZERO(io_opts);
|
|
|
|
if (ret)
|
|
|
|
goto root_err;
|
|
|
|
|
|
|
|
memset(&data_opts, 0, sizeof(data_opts));
|
|
|
|
if (!pred(c, arg, iter.btree_id, k, io_opts, &data_opts))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
|
|
if (!data_opts.scrub)
|
|
|
|
ret = bch2_btree_node_rewrite_pos(trans, btree_id, level,
|
|
|
|
k.k->p, data_opts.target, 0);
|
|
|
|
else
|
|
|
|
ret = bch2_btree_node_scrub(trans, btree_id, level, k, data_opts.read_dev);
|
|
|
|
|
|
|
|
root_err:
|
|
|
|
if (bch2_err_matches(ret, BCH_ERR_transaction_restart)) {
|
|
|
|
bch2_trans_iter_exit(trans, &iter);
|
|
|
|
goto retry_root;
|
|
|
|
}
|
|
|
|
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2025-04-13 16:31:34 -04:00
|
|
|
bch2_trans_node_iter_init(trans, &iter, btree_id, start, 0, level,
|
|
|
|
BTREE_ITER_prefetch|
|
|
|
|
BTREE_ITER_not_extents|
|
|
|
|
BTREE_ITER_all_snapshots);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2022-06-20 15:40:26 -04:00
|
|
|
if (ctxt->rate)
|
|
|
|
bch2_ratelimit_reset(ctxt->rate);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
while (!bch2_move_ratelimit(ctxt)) {
|
2024-10-20 02:12:21 -04:00
|
|
|
struct btree_iter *extent_iter = &iter;
|
|
|
|
|
2023-09-12 17:16:02 -04:00
|
|
|
bch2_trans_begin(trans);
|
2021-07-24 20:24:10 -04:00
|
|
|
|
2025-03-21 15:18:51 -04:00
|
|
|
k = bch2_btree_iter_peek(trans, &iter);
|
2017-03-16 22:18:50 -08:00
|
|
|
if (!k.k)
|
|
|
|
break;
|
2022-01-09 20:52:10 -05:00
|
|
|
|
2019-03-27 22:03:30 -04:00
|
|
|
ret = bkey_err(k);
|
2022-07-17 23:06:38 -04:00
|
|
|
if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
|
2022-01-09 20:52:10 -05:00
|
|
|
continue;
|
2017-03-16 22:18:50 -08:00
|
|
|
if (ret)
|
|
|
|
break;
|
2022-01-09 20:52:10 -05:00
|
|
|
|
2025-04-13 16:31:34 -04:00
|
|
|
if (bkey_gt(bkey_start_pos(k.k), end))
|
2017-03-16 22:18:50 -08:00
|
|
|
break;
|
|
|
|
|
2023-03-04 02:51:12 -05:00
|
|
|
if (ctxt->stats)
|
2023-10-23 15:36:45 -04:00
|
|
|
ctxt->stats->pos = BBPOS(iter.btree_id, iter.pos);
|
2022-01-09 20:52:10 -05:00
|
|
|
|
2024-10-20 02:12:21 -04:00
|
|
|
if (walk_indirect &&
|
|
|
|
k.k->type == KEY_TYPE_reflink_p &&
|
|
|
|
REFLINK_P_MAY_UPDATE_OPTIONS(bkey_s_c_to_reflink_p(k).v)) {
|
|
|
|
struct bkey_s_c_reflink_p p = bkey_s_c_to_reflink_p(k);
|
|
|
|
|
|
|
|
bch2_trans_iter_exit(trans, &reflink_iter);
|
2025-03-17 15:07:06 -04:00
|
|
|
k = bch2_lookup_indirect_extent_for_move(trans, &reflink_iter, p);
|
2024-10-20 02:12:21 -04:00
|
|
|
ret = bkey_err(k);
|
|
|
|
if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
|
|
|
|
continue;
|
|
|
|
if (ret)
|
|
|
|
break;
|
|
|
|
|
2025-03-17 15:07:06 -04:00
|
|
|
if (!k.k)
|
2024-10-20 02:12:21 -04:00
|
|
|
goto next_nondata;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX: reflink pointers may point to multiple indirect
|
|
|
|
* extents, so don't advance past the entire reflink
|
|
|
|
* pointer - need to fixup iter->k
|
|
|
|
*/
|
|
|
|
extent_iter = &reflink_iter;
|
|
|
|
}
|
|
|
|
|
2019-09-07 16:13:20 -04:00
|
|
|
if (!bkey_extent_is_direct_data(k.k))
|
2017-03-16 22:18:50 -08:00
|
|
|
goto next_nondata;
|
|
|
|
|
2024-10-20 02:12:21 -04:00
|
|
|
io_opts = bch2_move_get_io_opts(trans, &snapshot_io_opts,
|
|
|
|
iter.pos, extent_iter, k);
|
2023-10-21 15:03:05 -04:00
|
|
|
ret = PTR_ERR_OR_ZERO(io_opts);
|
2022-03-18 00:42:09 -04:00
|
|
|
if (ret)
|
|
|
|
continue;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2022-06-13 19:17:45 -04:00
|
|
|
memset(&data_opts, 0, sizeof(data_opts));
|
2025-04-03 19:51:05 -04:00
|
|
|
if (!pred(c, arg, extent_iter->btree_id, k, io_opts, &data_opts))
|
2017-03-16 22:18:50 -08:00
|
|
|
goto next;
|
|
|
|
|
2022-02-15 00:06:59 -05:00
|
|
|
/*
|
|
|
|
* The iterator gets unlocked by __bch2_read_extent - need to
|
|
|
|
* save a copy of @k elsewhere:
|
2022-10-19 18:31:33 -04:00
|
|
|
*/
|
2020-12-17 15:08:58 -05:00
|
|
|
bch2_bkey_buf_reassemble(&sk, c, k);
|
2019-11-09 16:01:15 -05:00
|
|
|
k = bkey_i_to_s_c(sk.k);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2025-04-13 16:31:34 -04:00
|
|
|
if (!level)
|
|
|
|
ret2 = bch2_move_extent(ctxt, NULL, extent_iter, k, *io_opts, data_opts);
|
|
|
|
else if (!data_opts.scrub)
|
|
|
|
ret2 = bch2_btree_node_rewrite_pos(trans, btree_id, level,
|
|
|
|
k.k->p, data_opts.target, 0);
|
|
|
|
else
|
|
|
|
ret2 = bch2_btree_node_scrub(trans, btree_id, level, k, data_opts.read_dev);
|
|
|
|
|
2017-03-16 22:18:50 -08:00
|
|
|
if (ret2) {
|
2022-07-17 23:06:38 -04:00
|
|
|
if (bch2_err_matches(ret2, BCH_ERR_transaction_restart))
|
2020-12-20 21:42:19 -05:00
|
|
|
continue;
|
|
|
|
|
2025-01-16 00:40:43 -05:00
|
|
|
if (bch2_err_matches(ret2, ENOMEM)) {
|
2017-03-16 22:18:50 -08:00
|
|
|
/* memory allocation failure, wait for some IO to finish */
|
2023-10-20 13:32:42 -04:00
|
|
|
bch2_move_ctxt_wait_for_io(ctxt);
|
2017-03-16 22:18:50 -08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX signal failure */
|
|
|
|
goto next;
|
|
|
|
}
|
|
|
|
next:
|
2023-03-04 02:51:12 -05:00
|
|
|
if (ctxt->stats)
|
|
|
|
atomic64_add(k.k->size, &ctxt->stats->sectors_seen);
|
2017-03-16 22:18:50 -08:00
|
|
|
next_nondata:
|
2025-04-13 16:31:34 -04:00
|
|
|
if (!bch2_btree_iter_advance(trans, &iter))
|
|
|
|
break;
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
2025-04-15 21:35:28 -04:00
|
|
|
out:
|
2024-10-20 02:12:21 -04:00
|
|
|
bch2_trans_iter_exit(trans, &reflink_iter);
|
2023-09-12 17:16:02 -04:00
|
|
|
bch2_trans_iter_exit(trans, &iter);
|
2020-12-17 15:08:58 -05:00
|
|
|
bch2_bkey_buf_exit(&sk, c);
|
2023-10-21 15:03:05 -04:00
|
|
|
per_snapshot_io_opts_exit(&snapshot_io_opts);
|
2019-08-16 09:59:56 -04:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
int __bch2_move_data(struct moving_context *ctxt,
|
2023-10-20 13:32:42 -04:00
|
|
|
struct bbpos start,
|
|
|
|
struct bbpos end,
|
|
|
|
move_pred_fn pred, void *arg)
|
2019-08-16 09:59:56 -04:00
|
|
|
{
|
2023-10-20 13:32:42 -04:00
|
|
|
struct bch_fs *c = ctxt->trans->c;
|
2021-03-14 19:01:14 -04:00
|
|
|
enum btree_id id;
|
2023-09-20 01:32:20 -04:00
|
|
|
int ret = 0;
|
2019-08-16 09:59:56 -04:00
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
for (id = start.btree;
|
|
|
|
id <= min_t(unsigned, end.btree, btree_id_nr_alive(c) - 1);
|
2021-03-14 19:01:14 -04:00
|
|
|
id++) {
|
2023-10-23 15:36:45 -04:00
|
|
|
ctxt->stats->pos = BBPOS(id, POS_MIN);
|
2021-03-14 19:01:14 -04:00
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
if (!btree_type_has_ptrs(id) ||
|
|
|
|
!bch2_btree_id_root(c, id)->b)
|
2021-03-14 19:01:14 -04:00
|
|
|
continue;
|
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
ret = bch2_move_data_btree(ctxt,
|
2023-10-20 13:32:42 -04:00
|
|
|
id == start.btree ? start.pos : POS_MIN,
|
|
|
|
id == end.btree ? end.pos : POS_MAX,
|
2025-04-13 16:31:34 -04:00
|
|
|
pred, arg, id, 0);
|
2021-03-14 19:01:14 -04:00
|
|
|
if (ret)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bch2_move_data(struct bch_fs *c,
|
|
|
|
struct bbpos start,
|
|
|
|
struct bbpos end,
|
|
|
|
struct bch_ratelimit *rate,
|
|
|
|
struct bch_move_stats *stats,
|
|
|
|
struct write_point_specifier wp,
|
|
|
|
bool wait_on_copygc,
|
|
|
|
move_pred_fn pred, void *arg)
|
|
|
|
{
|
|
|
|
struct moving_context ctxt;
|
|
|
|
|
|
|
|
bch2_moving_ctxt_init(&ctxt, c, rate, stats, wp, wait_on_copygc);
|
2024-12-28 10:40:11 -05:00
|
|
|
int ret = __bch2_move_data(&ctxt, start, end, pred, arg);
|
2022-06-20 15:40:26 -04:00
|
|
|
bch2_moving_ctxt_exit(&ctxt);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2024-12-28 10:40:11 -05:00
|
|
|
static int __bch2_move_data_phys(struct moving_context *ctxt,
|
2025-05-08 17:01:49 -04:00
|
|
|
struct move_bucket *bucket_in_flight,
|
2024-12-28 10:40:11 -05:00
|
|
|
unsigned dev,
|
|
|
|
u64 bucket_start,
|
|
|
|
u64 bucket_end,
|
2024-12-28 19:59:55 -05:00
|
|
|
unsigned data_types,
|
2025-05-09 17:01:05 -04:00
|
|
|
bool copygc,
|
2024-12-28 10:40:11 -05:00
|
|
|
move_pred_fn pred, void *arg)
|
2022-03-18 00:42:09 -04:00
|
|
|
{
|
2023-10-20 13:32:42 -04:00
|
|
|
struct btree_trans *trans = ctxt->trans;
|
|
|
|
struct bch_fs *c = trans->c;
|
2023-11-28 16:33:52 -05:00
|
|
|
bool is_kthread = current->flags & PF_KTHREAD;
|
2022-03-18 00:42:09 -04:00
|
|
|
struct bch_io_opts io_opts = bch2_opts_to_inode_opts(c->opts);
|
2024-11-14 21:53:38 -05:00
|
|
|
struct btree_iter iter = {}, bp_iter = {};
|
2022-03-18 00:42:09 -04:00
|
|
|
struct bkey_buf sk;
|
|
|
|
struct bkey_s_c k;
|
2024-11-14 22:13:29 -05:00
|
|
|
struct bkey_buf last_flushed;
|
2025-05-09 17:01:05 -04:00
|
|
|
u64 check_mismatch_done = bucket_start;
|
2022-03-18 00:42:09 -04:00
|
|
|
int ret = 0;
|
|
|
|
|
2024-12-28 10:40:11 -05:00
|
|
|
struct bch_dev *ca = bch2_dev_tryget(c, dev);
|
2024-04-30 15:46:45 -04:00
|
|
|
if (!ca)
|
|
|
|
return 0;
|
|
|
|
|
2024-12-28 10:40:11 -05:00
|
|
|
bucket_end = min(bucket_end, ca->mi.nbuckets);
|
|
|
|
|
|
|
|
struct bpos bp_start = bucket_pos_to_bp_start(ca, POS(dev, bucket_start));
|
|
|
|
struct bpos bp_end = bucket_pos_to_bp_end(ca, POS(dev, bucket_end));
|
2023-04-20 15:24:07 -04:00
|
|
|
|
2024-11-14 22:13:29 -05:00
|
|
|
bch2_bkey_buf_init(&last_flushed);
|
|
|
|
bkey_init(&last_flushed.k->k);
|
2022-03-18 00:42:09 -04:00
|
|
|
bch2_bkey_buf_init(&sk);
|
|
|
|
|
2023-03-19 14:13:17 -04:00
|
|
|
/*
|
|
|
|
* We're not run in a context that handles transaction restarts:
|
|
|
|
*/
|
|
|
|
bch2_trans_begin(trans);
|
|
|
|
|
2024-12-28 10:40:11 -05:00
|
|
|
bch2_trans_iter_init(trans, &bp_iter, BTREE_ID_backpointers, bp_start, 0);
|
2022-03-18 00:42:09 -04:00
|
|
|
|
2023-11-02 20:36:00 -04:00
|
|
|
ret = bch2_btree_write_buffer_tryflush(trans);
|
2025-05-07 13:50:00 -04:00
|
|
|
if (!bch2_err_matches(ret, EROFS))
|
|
|
|
bch_err_msg(c, ret, "flushing btree write buffer");
|
2023-11-02 20:36:00 -04:00
|
|
|
if (ret)
|
2022-03-18 00:42:09 -04:00
|
|
|
goto err;
|
|
|
|
|
2023-10-20 13:32:42 -04:00
|
|
|
while (!(ret = bch2_move_ratelimit(ctxt))) {
|
2023-11-28 16:33:52 -05:00
|
|
|
if (is_kthread && kthread_should_stop())
|
|
|
|
break;
|
|
|
|
|
2022-12-05 10:24:19 -05:00
|
|
|
bch2_trans_begin(trans);
|
2022-03-18 00:42:09 -04:00
|
|
|
|
2025-03-21 15:18:51 -04:00
|
|
|
k = bch2_btree_iter_peek(trans, &bp_iter);
|
2024-11-14 21:53:38 -05:00
|
|
|
ret = bkey_err(k);
|
2022-03-18 00:42:09 -04:00
|
|
|
if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
|
|
|
|
continue;
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
2024-11-14 21:53:38 -05:00
|
|
|
|
2024-12-28 10:40:11 -05:00
|
|
|
if (!k.k || bkey_gt(k.k->p, bp_end))
|
2022-03-18 00:42:09 -04:00
|
|
|
break;
|
|
|
|
|
2025-05-09 17:01:05 -04:00
|
|
|
if (check_mismatch_done < bp_pos_to_bucket(ca, k.k->p).offset) {
|
|
|
|
while (check_mismatch_done < bp_pos_to_bucket(ca, k.k->p).offset) {
|
|
|
|
bch2_check_bucket_backpointer_mismatch(trans, ca, check_mismatch_done++,
|
|
|
|
copygc, &last_flushed);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2024-11-14 21:53:38 -05:00
|
|
|
if (k.k->type != KEY_TYPE_backpointer)
|
|
|
|
goto next;
|
|
|
|
|
|
|
|
struct bkey_s_c_backpointer bp = bkey_s_c_to_backpointer(k);
|
|
|
|
|
2024-12-28 10:40:11 -05:00
|
|
|
if (ctxt->stats)
|
2024-12-28 21:04:36 -05:00
|
|
|
ctxt->stats->offset = bp.k->p.offset >> MAX_EXTENT_COMPRESS_RATIO_SHIFT;
|
2024-12-28 10:40:11 -05:00
|
|
|
|
2024-12-28 19:59:55 -05:00
|
|
|
if (!(data_types & BIT(bp.v->data_type)))
|
|
|
|
goto next;
|
|
|
|
|
2025-02-07 01:34:00 -05:00
|
|
|
if (!bp.v->level && bp.v->btree_id == BTREE_ID_stripes)
|
|
|
|
goto next;
|
|
|
|
|
2024-12-28 21:04:36 -05:00
|
|
|
k = bch2_backpointer_get_key(trans, bp, &iter, 0, &last_flushed);
|
|
|
|
ret = bkey_err(k);
|
|
|
|
if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
|
|
|
|
continue;
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
if (!k.k)
|
|
|
|
goto next;
|
2022-03-18 00:42:09 -04:00
|
|
|
|
2024-12-28 21:04:36 -05:00
|
|
|
if (!bp.v->level) {
|
2024-10-19 21:41:20 -04:00
|
|
|
ret = bch2_move_get_io_opts_one(trans, &io_opts, &iter, k);
|
2022-03-18 00:42:09 -04:00
|
|
|
if (ret) {
|
2022-12-05 10:24:19 -05:00
|
|
|
bch2_trans_iter_exit(trans, &iter);
|
2022-03-18 00:42:09 -04:00
|
|
|
continue;
|
|
|
|
}
|
2024-12-28 21:04:36 -05:00
|
|
|
}
|
2022-03-18 00:42:09 -04:00
|
|
|
|
2024-12-28 21:04:36 -05:00
|
|
|
struct data_update_opts data_opts = {};
|
2025-05-26 23:00:21 -04:00
|
|
|
bool p = pred(c, arg, bp.v->btree_id, k, &io_opts, &data_opts);
|
|
|
|
|
|
|
|
if (trace_io_move_pred_enabled())
|
|
|
|
trace_io_move_pred2(c, k, &io_opts, &data_opts,
|
|
|
|
pred, arg, p);
|
|
|
|
|
|
|
|
if (!p) {
|
2022-12-05 10:24:19 -05:00
|
|
|
bch2_trans_iter_exit(trans, &iter);
|
2024-12-28 21:04:36 -05:00
|
|
|
goto next;
|
|
|
|
}
|
2022-03-18 00:42:09 -04:00
|
|
|
|
2024-12-28 19:59:55 -05:00
|
|
|
if (data_opts.scrub &&
|
|
|
|
!bch2_dev_idx_is_online(c, data_opts.read_dev)) {
|
|
|
|
bch2_trans_iter_exit(trans, &iter);
|
2025-05-28 11:57:50 -04:00
|
|
|
ret = bch_err_throw(c, device_offline);
|
2024-12-28 19:59:55 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2024-12-28 21:04:36 -05:00
|
|
|
bch2_bkey_buf_reassemble(&sk, c, k);
|
|
|
|
k = bkey_i_to_s_c(sk.k);
|
2024-12-28 10:40:11 -05:00
|
|
|
|
2024-12-28 21:04:36 -05:00
|
|
|
/* move_extent will drop locks */
|
2024-12-28 19:59:55 -05:00
|
|
|
unsigned sectors = bp.v->bucket_len;
|
2024-01-16 13:29:59 -05:00
|
|
|
|
2024-12-28 19:59:55 -05:00
|
|
|
if (!bp.v->level)
|
|
|
|
ret = bch2_move_extent(ctxt, bucket_in_flight, &iter, k, io_opts, data_opts);
|
|
|
|
else if (!data_opts.scrub)
|
2025-04-03 19:42:02 -04:00
|
|
|
ret = bch2_btree_node_rewrite_pos(trans, bp.v->btree_id, bp.v->level,
|
|
|
|
k.k->p, data_opts.target, 0);
|
2024-12-28 19:59:55 -05:00
|
|
|
else
|
|
|
|
ret = bch2_btree_node_scrub(trans, bp.v->btree_id, bp.v->level, k, data_opts.read_dev);
|
2022-03-18 00:42:09 -04:00
|
|
|
|
2024-12-28 21:04:36 -05:00
|
|
|
bch2_trans_iter_exit(trans, &iter);
|
2022-03-18 00:42:09 -04:00
|
|
|
|
2024-12-28 21:04:36 -05:00
|
|
|
if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
|
|
|
|
continue;
|
|
|
|
if (ret == -ENOMEM) {
|
|
|
|
/* memory allocation failure, wait for some IO to finish */
|
|
|
|
bch2_move_ctxt_wait_for_io(ctxt);
|
|
|
|
continue;
|
2022-03-18 00:42:09 -04:00
|
|
|
}
|
2024-12-28 21:04:36 -05:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (ctxt->stats)
|
|
|
|
atomic64_add(sectors, &ctxt->stats->sectors_seen);
|
2022-03-18 00:42:09 -04:00
|
|
|
next:
|
2025-03-21 15:18:51 -04:00
|
|
|
bch2_btree_iter_advance(trans, &bp_iter);
|
2022-03-18 00:42:09 -04:00
|
|
|
}
|
2025-05-09 17:01:05 -04:00
|
|
|
|
|
|
|
while (check_mismatch_done < bucket_end)
|
|
|
|
bch2_check_bucket_backpointer_mismatch(trans, ca, check_mismatch_done++,
|
|
|
|
copygc, &last_flushed);
|
2022-03-18 00:42:09 -04:00
|
|
|
err:
|
2024-11-14 21:53:38 -05:00
|
|
|
bch2_trans_iter_exit(trans, &bp_iter);
|
2022-03-18 00:42:09 -04:00
|
|
|
bch2_bkey_buf_exit(&sk, c);
|
2024-11-14 22:13:29 -05:00
|
|
|
bch2_bkey_buf_exit(&last_flushed, c);
|
2025-05-09 17:01:05 -04:00
|
|
|
bch2_dev_put(ca);
|
2022-03-18 00:42:09 -04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2025-04-03 19:33:54 -04:00
|
|
|
int bch2_move_data_phys(struct bch_fs *c,
|
|
|
|
unsigned dev,
|
|
|
|
u64 start,
|
|
|
|
u64 end,
|
|
|
|
unsigned data_types,
|
|
|
|
struct bch_ratelimit *rate,
|
|
|
|
struct bch_move_stats *stats,
|
|
|
|
struct write_point_specifier wp,
|
|
|
|
bool wait_on_copygc,
|
|
|
|
move_pred_fn pred, void *arg)
|
2024-12-28 19:59:55 -05:00
|
|
|
{
|
|
|
|
struct moving_context ctxt;
|
|
|
|
|
|
|
|
bch2_trans_run(c, bch2_btree_write_buffer_flush_sync(trans));
|
|
|
|
|
|
|
|
bch2_moving_ctxt_init(&ctxt, c, rate, stats, wp, wait_on_copygc);
|
2025-04-03 20:56:09 -04:00
|
|
|
if (ctxt.stats) {
|
|
|
|
ctxt.stats->phys = true;
|
|
|
|
ctxt.stats->data_type = (int) DATA_PROGRESS_DATA_TYPE_phys;
|
|
|
|
}
|
2024-12-28 19:59:55 -05:00
|
|
|
|
2025-05-09 17:01:05 -04:00
|
|
|
int ret = __bch2_move_data_phys(&ctxt, NULL, dev, start, end,
|
|
|
|
data_types, false, pred, arg);
|
2024-12-28 19:59:55 -05:00
|
|
|
bch2_moving_ctxt_exit(&ctxt);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2025-04-03 19:51:05 -04:00
|
|
|
static bool evacuate_bucket_pred(struct bch_fs *c, void *_arg,
|
|
|
|
enum btree_id btree, struct bkey_s_c k,
|
2024-12-28 10:40:11 -05:00
|
|
|
struct bch_io_opts *io_opts,
|
|
|
|
struct data_update_opts *data_opts)
|
|
|
|
{
|
|
|
|
struct evacuate_bucket_arg *arg = _arg;
|
|
|
|
|
|
|
|
*data_opts = arg->data_opts;
|
|
|
|
|
|
|
|
unsigned i = 0;
|
|
|
|
bkey_for_each_ptr(bch2_bkey_ptrs_c(k), ptr) {
|
|
|
|
if (ptr->dev == arg->bucket.inode &&
|
|
|
|
(arg->gen < 0 || arg->gen == ptr->gen) &&
|
|
|
|
!ptr->cached)
|
|
|
|
data_opts->rewrite_ptrs |= BIT(i);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return data_opts->rewrite_ptrs != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bch2_evacuate_bucket(struct moving_context *ctxt,
|
2025-05-08 17:01:49 -04:00
|
|
|
struct move_bucket *bucket_in_flight,
|
|
|
|
struct bpos bucket, int gen,
|
|
|
|
struct data_update_opts data_opts)
|
2024-12-28 10:40:11 -05:00
|
|
|
{
|
2025-05-27 21:54:22 -04:00
|
|
|
struct bch_fs *c = ctxt->trans->c;
|
2024-12-28 10:40:11 -05:00
|
|
|
struct evacuate_bucket_arg arg = { bucket, gen, data_opts, };
|
|
|
|
|
2025-05-27 21:54:22 -04:00
|
|
|
count_event(c, io_move_evacuate_bucket);
|
|
|
|
if (trace_io_move_evacuate_bucket_enabled())
|
|
|
|
trace_io_move_evacuate_bucket2(c, bucket, gen);
|
|
|
|
|
2024-12-28 10:40:11 -05:00
|
|
|
return __bch2_move_data_phys(ctxt, bucket_in_flight,
|
|
|
|
bucket.inode,
|
|
|
|
bucket.offset,
|
|
|
|
bucket.offset + 1,
|
2024-12-28 19:59:55 -05:00
|
|
|
~0,
|
2025-05-09 17:01:05 -04:00
|
|
|
true,
|
2024-12-28 10:40:11 -05:00
|
|
|
evacuate_bucket_pred, &arg);
|
|
|
|
}
|
|
|
|
|
2022-06-13 19:17:45 -04:00
|
|
|
typedef bool (*move_btree_pred)(struct bch_fs *, void *,
|
|
|
|
struct btree *, struct bch_io_opts *,
|
|
|
|
struct data_update_opts *);
|
2021-03-14 19:01:14 -04:00
|
|
|
|
2017-03-16 22:18:50 -08:00
|
|
|
static int bch2_move_btree(struct bch_fs *c,
|
2023-11-20 18:52:33 -05:00
|
|
|
struct bbpos start,
|
|
|
|
struct bbpos end,
|
2021-03-14 19:01:14 -04:00
|
|
|
move_btree_pred pred, void *arg,
|
2017-03-16 22:18:50 -08:00
|
|
|
struct bch_move_stats *stats)
|
|
|
|
{
|
2021-03-14 19:01:14 -04:00
|
|
|
bool kthread = (current->flags & PF_KTHREAD) != 0;
|
2017-03-16 22:18:50 -08:00
|
|
|
struct bch_io_opts io_opts = bch2_opts_to_inode_opts(c->opts);
|
2023-10-23 16:21:54 -04:00
|
|
|
struct moving_context ctxt;
|
|
|
|
struct btree_trans *trans;
|
2021-08-30 15:18:31 -04:00
|
|
|
struct btree_iter iter;
|
2017-03-16 22:18:50 -08:00
|
|
|
struct btree *b;
|
2023-11-20 18:52:33 -05:00
|
|
|
enum btree_id btree;
|
2022-06-13 19:17:45 -04:00
|
|
|
struct data_update_opts data_opts;
|
2017-03-16 22:18:50 -08:00
|
|
|
int ret = 0;
|
|
|
|
|
2023-10-23 16:21:54 -04:00
|
|
|
bch2_moving_ctxt_init(&ctxt, c, NULL, stats,
|
|
|
|
writepoint_ptr(&c->btree_write_point),
|
|
|
|
true);
|
|
|
|
trans = ctxt.trans;
|
2019-03-25 15:10:15 -04:00
|
|
|
|
2020-07-09 18:28:11 -04:00
|
|
|
stats->data_type = BCH_DATA_btree;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2023-11-20 18:52:33 -05:00
|
|
|
for (btree = start.btree;
|
|
|
|
btree <= min_t(unsigned, end.btree, btree_id_nr_alive(c) - 1);
|
|
|
|
btree ++) {
|
|
|
|
stats->pos = BBPOS(btree, POS_MIN);
|
2019-03-25 15:10:15 -04:00
|
|
|
|
2023-11-20 18:52:33 -05:00
|
|
|
if (!bch2_btree_id_root(c, btree)->b)
|
2023-06-28 22:09:13 -04:00
|
|
|
continue;
|
|
|
|
|
2023-11-20 18:52:33 -05:00
|
|
|
bch2_trans_node_iter_init(trans, &iter, btree, POS_MIN, 0, 0,
|
2024-04-07 18:05:34 -04:00
|
|
|
BTREE_ITER_prefetch);
|
2021-10-19 14:20:50 -04:00
|
|
|
retry:
|
2021-10-19 15:11:45 -04:00
|
|
|
ret = 0;
|
2023-09-12 17:16:02 -04:00
|
|
|
while (bch2_trans_begin(trans),
|
2025-03-21 15:18:51 -04:00
|
|
|
(b = bch2_btree_iter_peek_node(trans, &iter)) &&
|
2021-10-19 14:20:50 -04:00
|
|
|
!(ret = PTR_ERR_OR_ZERO(b))) {
|
2021-03-14 19:01:14 -04:00
|
|
|
if (kthread && kthread_should_stop())
|
2021-04-20 20:21:39 -04:00
|
|
|
break;
|
2021-03-14 19:01:14 -04:00
|
|
|
|
2023-11-20 18:52:33 -05:00
|
|
|
if ((cmp_int(btree, end.btree) ?:
|
|
|
|
bpos_cmp(b->key.k.p, end.pos)) > 0)
|
2021-03-14 19:01:14 -04:00
|
|
|
break;
|
|
|
|
|
2023-10-23 15:36:45 -04:00
|
|
|
stats->pos = BBPOS(iter.btree_id, iter.pos);
|
2019-03-25 15:10:15 -04:00
|
|
|
|
2022-06-13 19:17:45 -04:00
|
|
|
if (!pred(c, arg, b, &io_opts, &data_opts))
|
2017-03-16 22:18:50 -08:00
|
|
|
goto next;
|
|
|
|
|
2025-04-03 19:42:02 -04:00
|
|
|
ret = bch2_btree_node_rewrite(trans, &iter, b, 0, 0) ?: ret;
|
2022-07-17 23:06:38 -04:00
|
|
|
if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
|
2021-10-24 16:59:33 -04:00
|
|
|
continue;
|
|
|
|
if (ret)
|
|
|
|
break;
|
2017-03-16 22:18:50 -08:00
|
|
|
next:
|
2025-03-21 15:18:51 -04:00
|
|
|
bch2_btree_iter_next_node(trans, &iter);
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
2022-07-17 23:06:38 -04:00
|
|
|
if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
|
2021-10-19 14:20:50 -04:00
|
|
|
goto retry;
|
|
|
|
|
2023-09-12 17:16:02 -04:00
|
|
|
bch2_trans_iter_exit(trans, &iter);
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2021-04-20 20:21:39 -04:00
|
|
|
if (kthread && kthread_should_stop())
|
|
|
|
break;
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
2021-04-20 20:21:39 -04:00
|
|
|
|
2023-10-23 16:21:54 -04:00
|
|
|
bch_err_fn(c, ret);
|
|
|
|
bch2_moving_ctxt_exit(&ctxt);
|
2022-04-17 17:30:49 -04:00
|
|
|
bch2_btree_interior_updates_flush(c);
|
2021-10-24 17:00:33 -04:00
|
|
|
|
2017-03-16 22:18:50 -08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2022-06-13 19:17:45 -04:00
|
|
|
static bool rereplicate_pred(struct bch_fs *c, void *arg,
|
2025-04-03 19:51:05 -04:00
|
|
|
enum btree_id btree, struct bkey_s_c k,
|
2022-06-13 19:17:45 -04:00
|
|
|
struct bch_io_opts *io_opts,
|
|
|
|
struct data_update_opts *data_opts)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
2018-11-01 15:10:01 -04:00
|
|
|
unsigned nr_good = bch2_bkey_durability(c, k);
|
2021-10-12 14:15:45 -04:00
|
|
|
unsigned replicas = bkey_is_btree_ptr(k.k)
|
|
|
|
? c->opts.metadata_replicas
|
|
|
|
: io_opts->data_replicas;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2025-05-24 16:33:39 -04:00
|
|
|
guard(rcu)();
|
2024-06-02 22:25:18 -04:00
|
|
|
struct bkey_ptrs_c ptrs = bch2_bkey_ptrs_c(k);
|
|
|
|
unsigned i = 0;
|
|
|
|
bkey_for_each_ptr(ptrs, ptr) {
|
|
|
|
struct bch_dev *ca = bch2_dev_rcu(c, ptr->dev);
|
|
|
|
if (!ptr->cached &&
|
|
|
|
(!ca || !ca->mi.durability))
|
|
|
|
data_opts->kill_ptrs |= BIT(i);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!data_opts->kill_ptrs &&
|
|
|
|
(!nr_good || nr_good >= replicas))
|
2022-06-13 19:17:45 -04:00
|
|
|
return false;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
|
|
|
data_opts->target = 0;
|
2022-06-13 19:17:45 -04:00
|
|
|
data_opts->extra_replicas = replicas - nr_good;
|
2018-11-01 15:10:01 -04:00
|
|
|
data_opts->btree_insert_flags = 0;
|
2022-06-13 19:17:45 -04:00
|
|
|
return true;
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
|
2022-06-13 19:17:45 -04:00
|
|
|
static bool migrate_pred(struct bch_fs *c, void *arg,
|
2025-04-03 19:51:05 -04:00
|
|
|
enum btree_id btree, struct bkey_s_c k,
|
2022-06-13 19:17:45 -04:00
|
|
|
struct bch_io_opts *io_opts,
|
|
|
|
struct data_update_opts *data_opts)
|
2017-03-16 22:18:50 -08:00
|
|
|
{
|
2022-06-13 19:17:45 -04:00
|
|
|
struct bkey_ptrs_c ptrs = bch2_bkey_ptrs_c(k);
|
2017-03-16 22:18:50 -08:00
|
|
|
struct bch_ioctl_data *op = arg;
|
2022-06-13 19:17:45 -04:00
|
|
|
unsigned i = 0;
|
2017-03-16 22:18:50 -08:00
|
|
|
|
2022-06-13 19:17:45 -04:00
|
|
|
data_opts->rewrite_ptrs = 0;
|
2017-03-16 22:18:50 -08:00
|
|
|
data_opts->target = 0;
|
2022-06-13 19:17:45 -04:00
|
|
|
data_opts->extra_replicas = 0;
|
2017-03-16 22:18:50 -08:00
|
|
|
data_opts->btree_insert_flags = 0;
|
2022-06-13 19:17:45 -04:00
|
|
|
|
|
|
|
bkey_for_each_ptr(ptrs, ptr) {
|
|
|
|
if (ptr->dev == op->migrate.dev)
|
|
|
|
data_opts->rewrite_ptrs |= 1U << i;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2022-10-19 18:31:33 -04:00
|
|
|
return data_opts->rewrite_ptrs != 0;
|
2017-03-16 22:18:50 -08:00
|
|
|
}
|
|
|
|
|
2022-06-13 19:17:45 -04:00
|
|
|
static bool rereplicate_btree_pred(struct bch_fs *c, void *arg,
|
|
|
|
struct btree *b,
|
|
|
|
struct bch_io_opts *io_opts,
|
|
|
|
struct data_update_opts *data_opts)
|
2021-03-14 19:01:14 -04:00
|
|
|
{
|
2025-04-03 19:51:05 -04:00
|
|
|
return rereplicate_pred(c, arg, b->c.btree_id, bkey_i_to_s_c(&b->key), io_opts, data_opts);
|
2021-03-14 19:01:14 -04:00
|
|
|
}
|
|
|
|
|
2024-05-05 22:44:27 -04:00
|
|
|
/*
|
|
|
|
* Ancient versions of bcachefs produced packed formats which could represent
|
|
|
|
* keys that the in memory format cannot represent; this checks for those
|
|
|
|
* formats so we can get rid of them.
|
|
|
|
*/
|
2021-03-20 23:55:36 -04:00
|
|
|
static bool bformat_needs_redo(struct bkey_format *f)
|
|
|
|
{
|
2024-05-08 10:58:26 -04:00
|
|
|
for (unsigned i = 0; i < f->nr_fields; i++)
|
|
|
|
if (bch2_bkey_format_field_overflows(f, i))
|
2021-03-20 23:55:36 -04:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-06-13 19:17:45 -04:00
|
|
|
static bool rewrite_old_nodes_pred(struct bch_fs *c, void *arg,
|
|
|
|
struct btree *b,
|
|
|
|
struct bch_io_opts *io_opts,
|
|
|
|
struct data_update_opts *data_opts)
|
2021-03-14 19:01:14 -04:00
|
|
|
{
|
|
|
|
if (b->version_ondisk != c->sb.version ||
|
2021-03-20 23:55:36 -04:00
|
|
|
btree_node_need_rewrite(b) ||
|
|
|
|
bformat_needs_redo(&b->format)) {
|
2021-03-14 19:01:14 -04:00
|
|
|
data_opts->target = 0;
|
2022-06-13 19:17:45 -04:00
|
|
|
data_opts->extra_replicas = 0;
|
2021-03-14 19:01:14 -04:00
|
|
|
data_opts->btree_insert_flags = 0;
|
2022-06-13 19:17:45 -04:00
|
|
|
return true;
|
2021-03-14 19:01:14 -04:00
|
|
|
}
|
|
|
|
|
2022-06-13 19:17:45 -04:00
|
|
|
return false;
|
2021-03-14 19:01:14 -04:00
|
|
|
}
|
|
|
|
|
2021-03-22 18:39:16 -04:00
|
|
|
int bch2_scan_old_btree_nodes(struct bch_fs *c, struct bch_move_stats *stats)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = bch2_move_btree(c,
|
2023-11-20 18:52:33 -05:00
|
|
|
BBPOS_MIN,
|
|
|
|
BBPOS_MAX,
|
2021-03-22 18:39:16 -04:00
|
|
|
rewrite_old_nodes_pred, c, stats);
|
|
|
|
if (!ret) {
|
|
|
|
mutex_lock(&c->sb_lock);
|
2021-05-23 17:04:13 -04:00
|
|
|
c->disk_sb.sb->compat[0] |= cpu_to_le64(1ULL << BCH_COMPAT_extents_above_btree_updates_done);
|
|
|
|
c->disk_sb.sb->compat[0] |= cpu_to_le64(1ULL << BCH_COMPAT_bformat_overflow_done);
|
2021-03-22 18:39:16 -04:00
|
|
|
c->disk_sb.sb->version_min = c->disk_sb.sb->version;
|
|
|
|
bch2_write_super(c);
|
|
|
|
mutex_unlock(&c->sb_lock);
|
|
|
|
}
|
|
|
|
|
2023-10-23 16:21:54 -04:00
|
|
|
bch_err_fn(c, ret);
|
2021-03-22 18:39:16 -04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-11-20 19:12:40 -05:00
|
|
|
static bool drop_extra_replicas_pred(struct bch_fs *c, void *arg,
|
2025-04-03 19:51:05 -04:00
|
|
|
enum btree_id btree, struct bkey_s_c k,
|
2023-11-20 19:12:40 -05:00
|
|
|
struct bch_io_opts *io_opts,
|
|
|
|
struct data_update_opts *data_opts)
|
|
|
|
{
|
|
|
|
unsigned durability = bch2_bkey_durability(c, k);
|
|
|
|
unsigned replicas = bkey_is_btree_ptr(k.k)
|
|
|
|
? c->opts.metadata_replicas
|
|
|
|
: io_opts->data_replicas;
|
|
|
|
const union bch_extent_entry *entry;
|
|
|
|
struct extent_ptr_decoded p;
|
|
|
|
unsigned i = 0;
|
|
|
|
|
2025-05-24 16:33:39 -04:00
|
|
|
guard(rcu)();
|
2023-11-20 19:12:40 -05:00
|
|
|
bkey_for_each_ptr_decode(k.k, bch2_bkey_ptrs_c(k), p, entry) {
|
|
|
|
unsigned d = bch2_extent_ptr_durability(c, &p);
|
|
|
|
|
|
|
|
if (d && durability - d >= replicas) {
|
|
|
|
data_opts->kill_ptrs |= BIT(i);
|
|
|
|
durability -= d;
|
|
|
|
}
|
|
|
|
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return data_opts->kill_ptrs != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool drop_extra_replicas_btree_pred(struct bch_fs *c, void *arg,
|
|
|
|
struct btree *b,
|
|
|
|
struct bch_io_opts *io_opts,
|
|
|
|
struct data_update_opts *data_opts)
|
|
|
|
{
|
2025-04-03 19:51:05 -04:00
|
|
|
return drop_extra_replicas_pred(c, arg, b->c.btree_id, bkey_i_to_s_c(&b->key),
|
|
|
|
io_opts, data_opts);
|
2023-11-20 19:12:40 -05:00
|
|
|
}
|
|
|
|
|
2024-12-28 19:59:55 -05:00
|
|
|
static bool scrub_pred(struct bch_fs *c, void *_arg,
|
2025-04-03 19:51:05 -04:00
|
|
|
enum btree_id btree, struct bkey_s_c k,
|
2024-12-28 19:59:55 -05:00
|
|
|
struct bch_io_opts *io_opts,
|
|
|
|
struct data_update_opts *data_opts)
|
|
|
|
{
|
|
|
|
struct bch_ioctl_data *arg = _arg;
|
|
|
|
|
|
|
|
if (k.k->type != KEY_TYPE_btree_ptr_v2) {
|
|
|
|
struct bkey_ptrs_c ptrs = bch2_bkey_ptrs_c(k);
|
|
|
|
const union bch_extent_entry *entry;
|
|
|
|
struct extent_ptr_decoded p;
|
|
|
|
bkey_for_each_ptr_decode(k.k, ptrs, p, entry)
|
|
|
|
if (p.ptr.dev == arg->migrate.dev) {
|
|
|
|
if (!p.crc.csum_type)
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
data_opts->scrub = true;
|
|
|
|
data_opts->read_dev = arg->migrate.dev;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-03-16 22:18:50 -08:00
|
|
|
int bch2_data_job(struct bch_fs *c,
|
|
|
|
struct bch_move_stats *stats,
|
|
|
|
struct bch_ioctl_data op)
|
|
|
|
{
|
2023-11-20 18:52:33 -05:00
|
|
|
struct bbpos start = BBPOS(op.start_btree, op.start_pos);
|
|
|
|
struct bbpos end = BBPOS(op.end_btree, op.end_pos);
|
2017-03-16 22:18:50 -08:00
|
|
|
int ret = 0;
|
|
|
|
|
2023-11-20 18:43:48 -05:00
|
|
|
if (op.op >= BCH_DATA_OP_NR)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
bch2_move_stats_init(stats, bch2_data_ops_strs[op.op]);
|
|
|
|
|
2017-03-16 22:18:50 -08:00
|
|
|
switch (op.op) {
|
2024-12-28 19:59:55 -05:00
|
|
|
case BCH_DATA_OP_scrub:
|
|
|
|
/*
|
|
|
|
* prevent tests from spuriously failing, make sure we see all
|
|
|
|
* btree nodes that need to be repaired
|
|
|
|
*/
|
|
|
|
bch2_btree_interior_updates_flush(c);
|
|
|
|
|
|
|
|
ret = bch2_move_data_phys(c, op.scrub.dev, 0, U64_MAX,
|
|
|
|
op.scrub.data_types,
|
|
|
|
NULL,
|
|
|
|
stats,
|
|
|
|
writepoint_hashed((unsigned long) current),
|
|
|
|
false,
|
|
|
|
scrub_pred, &op) ?: ret;
|
|
|
|
break;
|
|
|
|
|
2023-11-20 18:43:48 -05:00
|
|
|
case BCH_DATA_OP_rereplicate:
|
2020-07-09 18:28:11 -04:00
|
|
|
stats->data_type = BCH_DATA_journal;
|
2017-03-16 22:18:50 -08:00
|
|
|
ret = bch2_journal_flush_device_pins(&c->journal, -1);
|
2023-11-20 18:52:33 -05:00
|
|
|
ret = bch2_move_btree(c, start, end,
|
2021-03-14 19:01:14 -04:00
|
|
|
rereplicate_btree_pred, c, stats) ?: ret;
|
2023-11-20 18:52:33 -05:00
|
|
|
ret = bch2_move_data(c, start, end,
|
2022-06-20 15:40:26 -04:00
|
|
|
NULL,
|
|
|
|
stats,
|
|
|
|
writepoint_hashed((unsigned long) current),
|
|
|
|
true,
|
|
|
|
rereplicate_pred, c) ?: ret;
|
2019-04-30 17:15:39 -04:00
|
|
|
ret = bch2_replicas_gc2(c) ?: ret;
|
2017-03-16 22:18:50 -08:00
|
|
|
break;
|
2023-11-20 18:43:48 -05:00
|
|
|
case BCH_DATA_OP_migrate:
|
2017-03-16 22:18:50 -08:00
|
|
|
if (op.migrate.dev >= c->sb.nr_devices)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2020-07-09 18:28:11 -04:00
|
|
|
stats->data_type = BCH_DATA_journal;
|
2017-03-16 22:18:50 -08:00
|
|
|
ret = bch2_journal_flush_device_pins(&c->journal, op.migrate.dev);
|
2025-01-23 11:45:22 -05:00
|
|
|
ret = bch2_move_data_phys(c, op.migrate.dev, 0, U64_MAX,
|
|
|
|
~0,
|
|
|
|
NULL,
|
|
|
|
stats,
|
|
|
|
writepoint_hashed((unsigned long) current),
|
|
|
|
true,
|
|
|
|
migrate_pred, &op) ?: ret;
|
|
|
|
bch2_btree_interior_updates_flush(c);
|
2019-04-30 17:15:39 -04:00
|
|
|
ret = bch2_replicas_gc2(c) ?: ret;
|
2017-03-16 22:18:50 -08:00
|
|
|
break;
|
2023-11-20 18:43:48 -05:00
|
|
|
case BCH_DATA_OP_rewrite_old_nodes:
|
2021-03-22 18:39:16 -04:00
|
|
|
ret = bch2_scan_old_btree_nodes(c, stats);
|
2021-03-14 19:01:14 -04:00
|
|
|
break;
|
2023-11-20 19:12:40 -05:00
|
|
|
case BCH_DATA_OP_drop_extra_replicas:
|
|
|
|
ret = bch2_move_btree(c, start, end,
|
|
|
|
drop_extra_replicas_btree_pred, c, stats) ?: ret;
|
|
|
|
ret = bch2_move_data(c, start, end, NULL, stats,
|
|
|
|
writepoint_hashed((unsigned long) current),
|
|
|
|
true,
|
|
|
|
drop_extra_replicas_pred, c) ?: ret;
|
|
|
|
ret = bch2_replicas_gc2(c) ?: ret;
|
|
|
|
break;
|
2017-03-16 22:18:50 -08:00
|
|
|
default:
|
|
|
|
ret = -EINVAL;
|
|
|
|
}
|
|
|
|
|
2023-11-20 18:43:48 -05:00
|
|
|
bch2_move_stats_exit(stats, c);
|
2017-03-16 22:18:50 -08:00
|
|
|
return ret;
|
|
|
|
}
|
2023-03-11 20:38:46 -05:00
|
|
|
|
2023-10-23 16:21:54 -04:00
|
|
|
void bch2_move_stats_to_text(struct printbuf *out, struct bch_move_stats *stats)
|
2023-03-11 20:38:46 -05:00
|
|
|
{
|
2024-01-06 20:57:43 -05:00
|
|
|
prt_printf(out, "%s: data type==", stats->name);
|
|
|
|
bch2_prt_data_type(out, stats->data_type);
|
|
|
|
prt_str(out, " pos=");
|
2023-10-23 16:21:54 -04:00
|
|
|
bch2_bbpos_to_text(out, stats->pos);
|
|
|
|
prt_newline(out);
|
|
|
|
printbuf_indent_add(out, 2);
|
2023-03-11 20:38:46 -05:00
|
|
|
|
2025-03-13 15:21:13 -04:00
|
|
|
prt_printf(out, "keys moved:\t%llu\n", atomic64_read(&stats->keys_moved));
|
|
|
|
prt_printf(out, "keys raced:\t%llu\n", atomic64_read(&stats->keys_raced));
|
|
|
|
prt_printf(out, "bytes seen:\t");
|
2023-10-23 16:21:54 -04:00
|
|
|
prt_human_readable_u64(out, atomic64_read(&stats->sectors_seen) << 9);
|
|
|
|
prt_newline(out);
|
|
|
|
|
2025-03-13 15:21:13 -04:00
|
|
|
prt_printf(out, "bytes moved:\t");
|
2023-10-23 16:21:54 -04:00
|
|
|
prt_human_readable_u64(out, atomic64_read(&stats->sectors_moved) << 9);
|
2023-03-11 20:38:46 -05:00
|
|
|
prt_newline(out);
|
2023-10-23 16:21:54 -04:00
|
|
|
|
2025-03-13 15:21:13 -04:00
|
|
|
prt_printf(out, "bytes raced:\t");
|
2023-10-23 16:21:54 -04:00
|
|
|
prt_human_readable_u64(out, atomic64_read(&stats->sectors_raced) << 9);
|
|
|
|
prt_newline(out);
|
|
|
|
|
|
|
|
printbuf_indent_sub(out, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void bch2_moving_ctxt_to_text(struct printbuf *out, struct bch_fs *c, struct moving_context *ctxt)
|
|
|
|
{
|
2025-03-13 15:21:13 -04:00
|
|
|
if (!out->nr_tabstops)
|
|
|
|
printbuf_tabstop_push(out, 32);
|
2023-10-23 16:21:54 -04:00
|
|
|
|
|
|
|
bch2_move_stats_to_text(out, ctxt->stats);
|
2023-03-11 20:38:46 -05:00
|
|
|
printbuf_indent_add(out, 2);
|
|
|
|
|
2024-04-10 16:08:24 -04:00
|
|
|
prt_printf(out, "reads: ios %u/%u sectors %u/%u\n",
|
2023-03-11 20:38:46 -05:00
|
|
|
atomic_read(&ctxt->read_ios),
|
2023-08-23 21:20:42 -04:00
|
|
|
c->opts.move_ios_in_flight,
|
|
|
|
atomic_read(&ctxt->read_sectors),
|
|
|
|
c->opts.move_bytes_in_flight >> 9);
|
2023-03-11 20:38:46 -05:00
|
|
|
|
2024-04-10 16:08:24 -04:00
|
|
|
prt_printf(out, "writes: ios %u/%u sectors %u/%u\n",
|
2023-03-11 20:38:46 -05:00
|
|
|
atomic_read(&ctxt->write_ios),
|
2023-08-23 21:20:42 -04:00
|
|
|
c->opts.move_ios_in_flight,
|
|
|
|
atomic_read(&ctxt->write_sectors),
|
|
|
|
c->opts.move_bytes_in_flight >> 9);
|
2023-03-11 20:38:46 -05:00
|
|
|
|
|
|
|
printbuf_indent_add(out, 2);
|
|
|
|
|
|
|
|
mutex_lock(&ctxt->lock);
|
2025-03-13 15:21:13 -04:00
|
|
|
struct moving_io *io;
|
2023-08-23 21:20:42 -04:00
|
|
|
list_for_each_entry(io, &ctxt->ios, io_list)
|
2024-12-31 18:16:17 -05:00
|
|
|
bch2_data_update_inflight_to_text(out, &io->write);
|
2023-03-11 20:38:46 -05:00
|
|
|
mutex_unlock(&ctxt->lock);
|
|
|
|
|
|
|
|
printbuf_indent_sub(out, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bch2_fs_moving_ctxts_to_text(struct printbuf *out, struct bch_fs *c)
|
|
|
|
{
|
|
|
|
struct moving_context *ctxt;
|
|
|
|
|
|
|
|
mutex_lock(&c->moving_context_lock);
|
|
|
|
list_for_each_entry(ctxt, &c->moving_context_list, list)
|
2023-08-23 21:20:42 -04:00
|
|
|
bch2_moving_ctxt_to_text(out, c, ctxt);
|
2023-03-11 20:38:46 -05:00
|
|
|
mutex_unlock(&c->moving_context_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bch2_fs_move_init(struct bch_fs *c)
|
|
|
|
{
|
|
|
|
INIT_LIST_HEAD(&c->moving_context_list);
|
|
|
|
mutex_init(&c->moving_context_lock);
|
|
|
|
}
|