From c824bbe69db5d7ff5722033af1dcd01f41348206 Mon Sep 17 00:00:00 2001 From: Kent Overstreet <kent.overstreet@linux.dev> Date: Wed, 17 Apr 2024 01:44:12 -0400 Subject: [PATCH] Update bcachefs sources to 10ca1f99f8c9 bcachefs: Fix bch2_dev_btree_bitmap_marked_sectors() shift Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev> --- .bcachefs_revision | 2 +- libbcachefs/btree_io.c | 2 +- libbcachefs/btree_node_scan.c | 2 ++ libbcachefs/chardev.c | 4 +++- libbcachefs/recovery.c | 5 ++++- libbcachefs/sb-members.h | 2 +- libbcachefs/thread_with_file.c | 15 +++++++++++++-- libbcachefs/thread_with_file.h | 3 +++ 8 files changed, 28 insertions(+), 7 deletions(-) diff --git a/.bcachefs_revision b/.bcachefs_revision index cd9472dd..e5650893 100644 --- a/.bcachefs_revision +++ b/.bcachefs_revision @@ -1 +1 @@ -ad29cf999a9161e7849aa229d2028854f90728c2 +10ca1f99f8c99a3d992b686cdc29d427807070e5 diff --git a/libbcachefs/btree_io.c b/libbcachefs/btree_io.c index 9678b237..debb0edc 100644 --- a/libbcachefs/btree_io.c +++ b/libbcachefs/btree_io.c @@ -888,7 +888,7 @@ static int validate_bset_keys(struct bch_fs *c, struct btree *b, -BCH_ERR_btree_node_read_err_fixable, c, NULL, b, i, btree_node_bkey_bad_u64s, - "bad k->u64s %u (min %u max %lu)", k->u64s, + "bad k->u64s %u (min %u max %zu)", k->u64s, bkeyp_key_u64s(&b->format, k), U8_MAX - BKEY_U64s + bkeyp_key_u64s(&b->format, k))) goto drop_this_key; diff --git a/libbcachefs/btree_node_scan.c b/libbcachefs/btree_node_scan.c index 866bd278..c6079426 100644 --- a/libbcachefs/btree_node_scan.c +++ b/libbcachefs/btree_node_scan.c @@ -302,6 +302,8 @@ again: start->max_key = bpos_predecessor(n->min_key); start->range_updated = true; + } else if (n->level) { + n->overwritten = true; } else { struct printbuf buf = PRINTBUF; diff --git a/libbcachefs/chardev.c b/libbcachefs/chardev.c index 72781aad..4d14f19f 100644 --- a/libbcachefs/chardev.c +++ b/libbcachefs/chardev.c @@ -232,13 +232,15 @@ static long bch2_ioctl_fsck_offline(struct bch_ioctl_fsck_offline __user *user_a /* We need request_key() to be called before we punt to kthread: */ opt_set(thr->opts, nostart, true); + bch2_thread_with_stdio_init(&thr->thr, &bch2_offline_fsck_ops); + thr->c = bch2_fs_open(devs.data, arg.nr_devs, thr->opts); if (!IS_ERR(thr->c) && thr->c->opts.errors == BCH_ON_ERROR_panic) thr->c->opts.errors = BCH_ON_ERROR_ro; - ret = bch2_run_thread_with_stdio(&thr->thr, &bch2_offline_fsck_ops); + ret = __bch2_run_thread_with_stdio(&thr->thr); out: darray_for_each(devs, i) kfree(*i); diff --git a/libbcachefs/recovery.c b/libbcachefs/recovery.c index 0f328aba..be5b4761 100644 --- a/libbcachefs/recovery.c +++ b/libbcachefs/recovery.c @@ -249,7 +249,10 @@ int bch2_journal_replay(struct bch_fs *c) struct journal_key *k = *kp; - replay_now_at(j, k->journal_seq); + if (k->journal_seq) + replay_now_at(j, k->journal_seq); + else + replay_now_at(j, j->replay_journal_seq_end); ret = commit_do(trans, NULL, NULL, BCH_TRANS_COMMIT_no_enospc| diff --git a/libbcachefs/sb-members.h b/libbcachefs/sb-members.h index b27c3e44..10e801d4 100644 --- a/libbcachefs/sb-members.h +++ b/libbcachefs/sb-members.h @@ -235,7 +235,7 @@ static inline bool bch2_dev_btree_bitmap_marked_sectors(struct bch_dev *ca, u64 { u64 end = start + sectors; - if (end > 64 << ca->mi.btree_bitmap_shift) + if (end > 64ULL << ca->mi.btree_bitmap_shift) return false; for (unsigned bit = sectors >> ca->mi.btree_bitmap_shift; diff --git a/libbcachefs/thread_with_file.c b/libbcachefs/thread_with_file.c index 940db15d..b1af7ac4 100644 --- a/libbcachefs/thread_with_file.c +++ b/libbcachefs/thread_with_file.c @@ -294,16 +294,27 @@ static int thread_with_stdio_fn(void *arg) return 0; } -int bch2_run_thread_with_stdio(struct thread_with_stdio *thr, - const struct thread_with_stdio_ops *ops) +void bch2_thread_with_stdio_init(struct thread_with_stdio *thr, + const struct thread_with_stdio_ops *ops) { stdio_buf_init(&thr->stdio.input); stdio_buf_init(&thr->stdio.output); thr->ops = ops; +} +int __bch2_run_thread_with_stdio(struct thread_with_stdio *thr) +{ return bch2_run_thread_with_file(&thr->thr, &thread_with_stdio_fops, thread_with_stdio_fn); } +int bch2_run_thread_with_stdio(struct thread_with_stdio *thr, + const struct thread_with_stdio_ops *ops) +{ + bch2_thread_with_stdio_init(thr, ops); + + return __bch2_run_thread_with_stdio(thr); +} + int bch2_run_thread_with_stdout(struct thread_with_stdio *thr, const struct thread_with_stdio_ops *ops) { diff --git a/libbcachefs/thread_with_file.h b/libbcachefs/thread_with_file.h index af54ea8f..1d63d14d 100644 --- a/libbcachefs/thread_with_file.h +++ b/libbcachefs/thread_with_file.h @@ -63,6 +63,9 @@ struct thread_with_stdio { const struct thread_with_stdio_ops *ops; }; +void bch2_thread_with_stdio_init(struct thread_with_stdio *, + const struct thread_with_stdio_ops *); +int __bch2_run_thread_with_stdio(struct thread_with_stdio *); int bch2_run_thread_with_stdio(struct thread_with_stdio *, const struct thread_with_stdio_ops *); int bch2_run_thread_with_stdout(struct thread_with_stdio *,