|
@@ -389,13 +389,11 @@ static int check_block_group_item(struct btrfs_fs_info *fs_info,
|
|
|
|
|
|
/*
|
|
/*
|
|
* Here we don't really care about alignment since extent allocator can
|
|
* Here we don't really care about alignment since extent allocator can
|
|
- * handle it. We care more about the size, as if one block group is
|
|
|
|
- * larger than maximum size, it's must be some obvious corruption.
|
|
|
|
|
|
+ * handle it. We care more about the size.
|
|
*/
|
|
*/
|
|
- if (key->offset > BTRFS_MAX_DATA_CHUNK_SIZE || key->offset == 0) {
|
|
|
|
|
|
+ if (key->offset == 0) {
|
|
block_group_err(fs_info, leaf, slot,
|
|
block_group_err(fs_info, leaf, slot,
|
|
- "invalid block group size, have %llu expect (0, %llu]",
|
|
|
|
- key->offset, BTRFS_MAX_DATA_CHUNK_SIZE);
|
|
|
|
|
|
+ "invalid block group size 0");
|
|
return -EUCLEAN;
|
|
return -EUCLEAN;
|
|
}
|
|
}
|
|
|
|
|