|
@@ -4406,10 +4406,16 @@ static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int rw,
|
|
|
btrfs_crit(fs_info, "unable to find logical %llu len %llu",
|
|
|
(unsigned long long)logical,
|
|
|
(unsigned long long)*length);
|
|
|
- BUG();
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (em->start > logical || em->start + em->len < logical) {
|
|
|
+ btrfs_crit(fs_info, "found a bad mapping, wanted %Lu, "
|
|
|
+ "found %Lu-%Lu\n", logical, em->start,
|
|
|
+ em->start + em->len);
|
|
|
+ return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- BUG_ON(em->start > logical || em->start + em->len < logical);
|
|
|
map = (struct map_lookup *)em->bdev;
|
|
|
offset = logical - em->start;
|
|
|
|