Skip to content

Commit 0bfd4c1

Browse files
boryasSasha Levin
authored andcommitted
btrfs: handle empty eb->folios in num_extent_folios()
[ Upstream commit d6fe0c6 ] num_extent_folios() unconditionally calls folio_order() on eb->folios[0]. If that is NULL this will be a segfault. It is reasonable for it to return 0 as the number of folios in the eb when the first entry is NULL, so do that instead. Reviewed-by: Qu Wenruo <wqu@suse.com> Signed-off-by: Boris Burkov <boris@bur.io> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent 20facaa commit 0bfd4c1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

fs/btrfs/extent_io.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,8 @@ static inline int num_extent_pages(const struct extent_buffer *eb)
297297
*/
298298
static inline int num_extent_folios(const struct extent_buffer *eb)
299299
{
300+
if (!eb->folios[0])
301+
return 0;
300302
if (folio_order(eb->folios[0]))
301303
return 1;
302304
return num_extent_pages(eb);

0 commit comments

Comments
 (0)