mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00: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:
parent
22f5162133
commit
6c22eb7085
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user