mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-27 12:21:22 -05:00
ufs: Convert ufs_extend_tail() to take a folio
Pass bh->b_folio instead of bh->b_page. They're in a union, so no code change expected. Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
committed by
Al Viro
parent
d9036c488c
commit
b6250a013d
@@ -220,7 +220,7 @@ static u64 ufs_frag_map(struct inode *inode, unsigned offsets[4], int depth)
|
||||
*/
|
||||
static bool
|
||||
ufs_extend_tail(struct inode *inode, u64 writes_to,
|
||||
int *err, struct page *locked_page)
|
||||
int *err, struct folio *locked_folio)
|
||||
{
|
||||
struct ufs_inode_info *ufsi = UFS_I(inode);
|
||||
struct super_block *sb = inode->i_sb;
|
||||
@@ -239,7 +239,7 @@ ufs_extend_tail(struct inode *inode, u64 writes_to,
|
||||
p = ufs_get_direct_data_ptr(uspi, ufsi, block);
|
||||
tmp = ufs_new_fragments(inode, p, lastfrag, ufs_data_ptr_to_cpu(sb, p),
|
||||
new_size - (lastfrag & uspi->s_fpbmask), err,
|
||||
locked_page);
|
||||
&locked_folio->page);
|
||||
return tmp != 0;
|
||||
}
|
||||
|
||||
@@ -413,7 +413,7 @@ static int ufs_getfrag_block(struct inode *inode, sector_t fragment, struct buff
|
||||
unsigned tailfrags = lastfrag & uspi->s_fpbmask;
|
||||
if (tailfrags && fragment >= lastfrag) {
|
||||
if (!ufs_extend_tail(inode, fragment,
|
||||
&err, bh_result->b_page))
|
||||
&err, bh_result->b_folio))
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user