]> www.infradead.org Git - nvme.git/commitdiff
erofs: convert z_erofs_read_fragment() to folios
authorGao Xiang <hsiangkao@linux.alibaba.com>
Wed, 3 Jul 2024 12:00:49 +0000 (20:00 +0800)
committerGao Xiang <hsiangkao@linux.alibaba.com>
Mon, 8 Jul 2024 14:09:42 +0000 (22:09 +0800)
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
fs/erofs/zdata.c

index 14cf96fcefe40d4c8b186d7f96f5e3c3856e5753..4b1715d8c122189e9fc6a2cd8fec0db806fe8736 100644 (file)
@@ -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 @@ repeat:
        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;