erofs: Don't use certain unnecessary folio_*() functions
authorDavid Howells <dhowells@redhat.com>
Mon, 15 Jan 2024 14:46:35 +0000 (22:46 +0800)
committerGao Xiang <hsiangkao@linux.alibaba.com>
Mon, 15 Jan 2024 15:52:52 +0000 (23:52 +0800)
commit2b872b0f466d2acb4491da845c66b49246d5cdf9
tree0ec4c31c036754ed13c62b2a8de0bb9f2ed69f67
parent118a8cf504d7dfa519562d000f423ee3ca75d2c4
erofs: Don't use certain unnecessary folio_*() functions

Filesystems should use folio->index and folio->mapping, instead of
folio_index(folio), folio_mapping() and folio_file_mapping() since
they know that it's in the pagecache.

Change this automagically with:

perl -p -i -e 's/folio_mapping[(]([^)]*)[)]/\1->mapping/g' fs/erofs/*.c
perl -p -i -e 's/folio_file_mapping[(]([^)]*)[)]/\1->mapping/g' fs/erofs/*.c
perl -p -i -e 's/folio_index[(]([^)]*)[)]/\1->index/g' fs/erofs/*.c

Reported-by: Matthew Wilcox <willy@infradead.org>
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Cc: Chao Yu <chao@kernel.org>
Cc: Yue Hu <huyue2@coolpad.com>
Cc: Jeffle Xu <jefflexu@linux.alibaba.com>
Cc: linux-erofs@lists.ozlabs.org
Cc: linux-fsdevel@vger.kernel.org
Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
Link: https://lore.kernel.org/r/20240115144635.1931422-1-hsiangkao@linux.alibaba.com
fs/erofs/fscache.c