mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-05 07:48:01 +07:00
Btrfs: don't bug on enomem in readpage
Get rid of the BUG_ON(ret == -ENOMEM) in __extent_read_full_page. Thanks, Reported-by: Jérôme Poulin <jeromepoulin@gmail.com> Signed-off-by: Josef Bacik <jbacik@fusionio.com>
This commit is contained in:
parent
15e3004a0e
commit
edd33c99c4
@ -2751,12 +2751,15 @@ static int __extent_read_full_page(struct extent_io_tree *tree,
|
|||||||
end_bio_extent_readpage, mirror_num,
|
end_bio_extent_readpage, mirror_num,
|
||||||
*bio_flags,
|
*bio_flags,
|
||||||
this_bio_flag);
|
this_bio_flag);
|
||||||
BUG_ON(ret == -ENOMEM);
|
if (!ret) {
|
||||||
nr++;
|
nr++;
|
||||||
*bio_flags = this_bio_flag;
|
*bio_flags = this_bio_flag;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (ret)
|
if (ret) {
|
||||||
SetPageError(page);
|
SetPageError(page);
|
||||||
|
unlock_extent(tree, cur, cur + iosize - 1);
|
||||||
|
}
|
||||||
cur = cur + iosize;
|
cur = cur + iosize;
|
||||||
pg_offset += iosize;
|
pg_offset += iosize;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user