btrfs: subpage: make alloc_extent_buffer() handle previously uptodate range efficiently
Currently alloc_extent_buffer() would make the extent buffer uptodate if the corresponding pages are also uptodate. But this check is only checking PageUptodate, which is fine for regular cases, but not for subpage cases, as we can have multiple extent buffers in the same page. So here we go btrfs_page_test_uptodate() instead. The old code doesn't cause any problem, but is not efficient, as it would cause extra metadata read even if the range is already uptodate. Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Qu Wenruo <wqu@suse.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
Родитель
b831306b3b
Коммит
5a96341927
|
@ -3712,7 +3712,7 @@ struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
|
|||
|
||||
WARN_ON(btrfs_page_test_dirty(fs_info, p, eb->start, eb->len));
|
||||
eb->pages[i] = p;
|
||||
if (!PageUptodate(p))
|
||||
if (!btrfs_page_test_uptodate(fs_info, p, eb->start, eb->len))
|
||||
uptodate = 0;
|
||||
|
||||
/*
|
||||
|
|
Загрузка…
Ссылка в новой задаче