mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 11:01:06 -04:00
bcachefs: Fix "multiple types of data in same bucket" with ec
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
@@ -687,6 +687,10 @@ static int check_bucket_ref(struct bch_fs *c,
|
||||
if (bucket_data_type == BCH_DATA_cached)
|
||||
bucket_data_type = BCH_DATA_user;
|
||||
|
||||
if ((bucket_data_type == BCH_DATA_stripe && ptr_data_type == BCH_DATA_user) ||
|
||||
(bucket_data_type == BCH_DATA_user && ptr_data_type == BCH_DATA_stripe))
|
||||
bucket_data_type = ptr_data_type = BCH_DATA_stripe;
|
||||
|
||||
if (gen_after(ptr->gen, b_gen)) {
|
||||
bch2_fsck_err(c, FSCK_CAN_IGNORE|FSCK_NEED_FSCK,
|
||||
"bucket %u:%zu gen %u data type %s: ptr gen %u newer than bucket gen\n"
|
||||
|
||||
Reference in New Issue
Block a user