Skip to content

Commit 2aec704

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 ced5ca8 commit 2aec704

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
@@ -293,6 +293,8 @@ static inline int num_extent_pages(const struct extent_buffer *eb)
293293
*/
294294
static inline int num_extent_folios(const struct extent_buffer *eb)
295295
{
296+
if (!eb->folios[0])
297+
return 0;
296298
if (folio_order(eb->folios[0]))
297299
return 1;
298300
return num_extent_pages(eb);

0 commit comments

Comments
 (0)