mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
btrfs: convert extent_write_locked_range() to take a folio
This mostly uses folios, convert it to take a folio instead and update the callers to pass in the folio. Signed-off-by: Josef Bacik <josef@toxicpanda.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
a67f540582
commit
01e11841f0
3 changed files with 5 additions and 4 deletions
|
@ -2274,7 +2274,7 @@ retry:
|
|||
* already been ran (aka, ordered extent inserted) and all pages are still
|
||||
* locked.
|
||||
*/
|
||||
void extent_write_locked_range(struct inode *inode, const struct page *locked_page,
|
||||
void extent_write_locked_range(struct inode *inode, const struct folio *locked_folio,
|
||||
u64 start, u64 end, struct writeback_control *wbc,
|
||||
bool pages_dirty)
|
||||
{
|
||||
|
@ -2316,7 +2316,7 @@ void extent_write_locked_range(struct inode *inode, const struct page *locked_pa
|
|||
}
|
||||
|
||||
ASSERT(folio_test_locked(folio));
|
||||
if (pages_dirty && &folio->page != locked_page)
|
||||
if (pages_dirty && folio != locked_folio)
|
||||
ASSERT(folio_test_dirty(folio));
|
||||
|
||||
ret = __extent_writepage_io(BTRFS_I(inode), folio, cur, cur_len,
|
||||
|
|
|
@ -240,7 +240,7 @@ bool try_release_extent_mapping(struct page *page, gfp_t mask);
|
|||
int try_release_extent_buffer(struct page *page);
|
||||
|
||||
int btrfs_read_folio(struct file *file, struct folio *folio);
|
||||
void extent_write_locked_range(struct inode *inode, const struct page *locked_page,
|
||||
void extent_write_locked_range(struct inode *inode, const struct folio *locked_folio,
|
||||
u64 start, u64 end, struct writeback_control *wbc,
|
||||
bool pages_dirty);
|
||||
int btrfs_writepages(struct address_space *mapping, struct writeback_control *wbc);
|
||||
|
|
|
@ -1758,7 +1758,8 @@ static noinline int run_delalloc_cow(struct btrfs_inode *inode,
|
|||
true, false);
|
||||
if (ret)
|
||||
return ret;
|
||||
extent_write_locked_range(&inode->vfs_inode, locked_page, start,
|
||||
extent_write_locked_range(&inode->vfs_inode,
|
||||
page_folio(locked_page), start,
|
||||
done_offset, wbc, pages_dirty);
|
||||
start = done_offset + 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue