mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-06 05:02:31 +00:00
erofs: convert z_erofs_read_fragment() to folios
Just a straight-forward conversion. No logic changes. Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com> Link: https://lore.kernel.org/r/20240703120051.3653452-2-hsiangkao@linux.alibaba.com
This commit is contained in:
parent
1a4821a0a0
commit
90cd33d793
@ -925,7 +925,7 @@ static void z_erofs_pcluster_end(struct z_erofs_decompress_frontend *fe)
|
||||
fe->pcl = NULL;
|
||||
}
|
||||
|
||||
static int z_erofs_read_fragment(struct super_block *sb, struct page *page,
|
||||
static int z_erofs_read_fragment(struct super_block *sb, struct folio *folio,
|
||||
unsigned int cur, unsigned int end, erofs_off_t pos)
|
||||
{
|
||||
struct inode *packed_inode = EROFS_SB(sb)->packed_inode;
|
||||
@ -938,14 +938,13 @@ static int z_erofs_read_fragment(struct super_block *sb, struct page *page,
|
||||
|
||||
buf.mapping = packed_inode->i_mapping;
|
||||
for (; cur < end; cur += cnt, pos += cnt) {
|
||||
cnt = min_t(unsigned int, end - cur,
|
||||
sb->s_blocksize - erofs_blkoff(sb, pos));
|
||||
cnt = min(end - cur, sb->s_blocksize - erofs_blkoff(sb, pos));
|
||||
src = erofs_bread(&buf, pos, EROFS_KMAP);
|
||||
if (IS_ERR(src)) {
|
||||
erofs_put_metabuf(&buf);
|
||||
return PTR_ERR(src);
|
||||
}
|
||||
memcpy_to_page(page, cur, src, cnt);
|
||||
memcpy_to_folio(folio, cur, src, cnt);
|
||||
}
|
||||
erofs_put_metabuf(&buf);
|
||||
return 0;
|
||||
@ -959,7 +958,7 @@ static int z_erofs_scan_folio(struct z_erofs_decompress_frontend *fe,
|
||||
const loff_t offset = folio_pos(folio);
|
||||
const unsigned int bs = i_blocksize(inode), fs = folio_size(folio);
|
||||
bool tight = true, exclusive;
|
||||
unsigned int cur, end, len, split;
|
||||
unsigned int cur, end, split;
|
||||
int err = 0;
|
||||
|
||||
z_erofs_onlinefolio_init(folio);
|
||||
@ -989,9 +988,9 @@ static int z_erofs_scan_folio(struct z_erofs_decompress_frontend *fe,
|
||||
if (map->m_flags & EROFS_MAP_FRAGMENT) {
|
||||
erofs_off_t fpos = offset + cur - map->m_la;
|
||||
|
||||
len = min_t(unsigned int, map->m_llen - fpos, end - cur);
|
||||
err = z_erofs_read_fragment(inode->i_sb, &folio->page, cur,
|
||||
cur + len, EROFS_I(inode)->z_fragmentoff + fpos);
|
||||
err = z_erofs_read_fragment(inode->i_sb, folio, cur,
|
||||
cur + min(map->m_llen - fpos, end - cur),
|
||||
EROFS_I(inode)->z_fragmentoff + fpos);
|
||||
if (err)
|
||||
goto out;
|
||||
tight = false;
|
||||
|
Loading…
Reference in New Issue
Block a user