From: "Matthew Wilcox (Oracle)" <willy@infradead.org>
To: linux-fsdevel@vger.kernel.org
Cc: "Matthew Wilcox (Oracle)" <willy@infradead.org>
Subject: [PATCH 00/23] Convert write_begin / write_end to take a folio
Date: Wed, 17 Jul 2024 16:46:50 +0100 [thread overview]
Message-ID: <20240717154716.237943-1-willy@infradead.org> (raw)
You can find the full branch at
http://git.infradead.org/?p=users/willy/pagecache.git;a=shortlog;h=refs/heads/write-end
aka
git://git.infradead.org/users/willy/pagecache.git write-end
On top of the ufs, minix, sysv and qnx6 directory handling patches, this
patch series converts us to using folios for write_begin and write_end.
That's the last mention of 'struct page' in several filesystems.
I'd like to get some version of these patches into the 6.12 merge
window.
Matthew Wilcox (Oracle) (23):
reiserfs: Convert grab_tail_page() to use a folio
reiserfs: Convert reiserfs_write_begin() to use a folio
block: Use a folio in blkdev_write_end()
buffer: Use a folio in generic_write_end()
nilfs2: Use a folio in nilfs_recover_dsync_blocks()
ntfs3: Remove reset_log_file()
buffer: Convert block_write_end() to take a folio
ecryptfs: Convert ecryptfs_write_end() to use a folio
ecryptfs: Use a folio in ecryptfs_write_begin()
f2fs: Convert f2fs_write_end() to use a folio
f2fs: Convert f2fs_write_begin() to use a folio
fuse: Convert fuse_write_end() to use a folio
fuse: Convert fuse_write_begin() to use a folio
hostfs: Convert hostfs_write_end() to use a folio
jffs2: Convert jffs2_write_end() to use a folio
jffs2: Convert jffs2_write_begin() to use a folio
orangefs: Convert orangefs_write_end() to use a folio
orangefs: Convert orangefs_write_begin() to use a folio
vboxsf: Use a folio in vboxsf_write_end()
fs: Convert aops->write_end to take a folio
fs: Convert aops->write_begin to take a folio
ocfs2: Convert ocfs2_write_zero_page to use a folio
buffer: Convert __block_write_begin() to take a folio
Documentation/filesystems/locking.rst | 6 +-
Documentation/filesystems/vfs.rst | 12 ++--
block/fops.c | 12 ++--
drivers/gpu/drm/i915/gem/i915_gem_shmem.c | 47 ++++++------
fs/adfs/inode.c | 5 +-
fs/affs/file.c | 22 +++---
fs/bcachefs/fs-io-buffered.c | 8 +--
fs/bcachefs/fs-io-buffered.h | 6 +-
fs/bfs/file.c | 4 +-
fs/buffer.c | 46 ++++++------
fs/ceph/addr.c | 13 ++--
fs/ecryptfs/mmap.c | 86 +++++++++++-----------
fs/exfat/file.c | 8 +--
fs/exfat/inode.c | 9 ++-
fs/ext2/dir.c | 4 +-
fs/ext2/inode.c | 8 +--
fs/ext4/ext4.h | 4 +-
fs/ext4/inline.c | 14 ++--
fs/ext4/inode.c | 37 +++++-----
fs/ext4/verity.c | 8 +--
fs/f2fs/data.c | 87 ++++++++++++-----------
fs/f2fs/super.c | 8 +--
fs/f2fs/verity.c | 8 +--
fs/fat/inode.c | 9 ++-
fs/fuse/file.c | 47 ++++++------
fs/hfs/extent.c | 6 +-
fs/hfs/hfs_fs.h | 2 +-
fs/hfs/inode.c | 5 +-
fs/hfsplus/extents.c | 6 +-
fs/hfsplus/hfsplus_fs.h | 2 +-
fs/hfsplus/inode.c | 5 +-
fs/hostfs/hostfs_kern.c | 23 +++---
fs/hpfs/file.c | 9 ++-
fs/hugetlbfs/inode.c | 4 +-
fs/iomap/buffered-io.c | 2 +-
fs/jffs2/file.c | 66 +++++++++--------
fs/jfs/inode.c | 8 +--
fs/libfs.c | 13 ++--
fs/minix/dir.c | 2 +-
fs/minix/inode.c | 6 +-
fs/namei.c | 10 +--
fs/nfs/file.c | 7 +-
fs/nilfs2/dir.c | 4 +-
fs/nilfs2/inode.c | 10 +--
fs/nilfs2/recovery.c | 16 ++---
fs/ntfs3/file.c | 9 ++-
fs/ntfs3/inode.c | 51 ++-----------
fs/ntfs3/ntfs_fs.h | 5 +-
fs/ocfs2/aops.c | 12 ++--
fs/ocfs2/aops.h | 2 +-
fs/ocfs2/file.c | 17 ++---
fs/ocfs2/mmap.c | 6 +-
fs/omfs/file.c | 4 +-
fs/orangefs/inode.c | 39 +++++-----
fs/reiserfs/inode.c | 57 ++++++++-------
fs/sysv/dir.c | 2 +-
fs/sysv/itree.c | 6 +-
fs/ubifs/file.c | 13 ++--
fs/udf/file.c | 2 +-
fs/udf/inode.c | 12 ++--
fs/ufs/dir.c | 2 +-
fs/ufs/inode.c | 10 +--
fs/vboxsf/file.c | 24 +++----
include/linux/buffer_head.h | 14 ++--
include/linux/fs.h | 6 +-
mm/filemap.c | 6 +-
mm/shmem.c | 10 ++-
67 files changed, 482 insertions(+), 551 deletions(-)
--
2.43.0
next reply other threads:[~2024-07-17 15:47 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-17 15:46 Matthew Wilcox (Oracle) [this message]
2024-07-17 15:46 ` [PATCH 01/23] reiserfs: Convert grab_tail_page() to use a folio Matthew Wilcox (Oracle)
2024-07-17 15:46 ` [PATCH 02/23] reiserfs: Convert reiserfs_write_begin() " Matthew Wilcox (Oracle)
2024-07-17 15:46 ` [PATCH 03/23] block: Use a folio in blkdev_write_end() Matthew Wilcox (Oracle)
2024-07-17 15:46 ` [PATCH 04/23] buffer: Use a folio in generic_write_end() Matthew Wilcox (Oracle)
2024-07-17 15:46 ` [PATCH 05/23] nilfs2: Use a folio in nilfs_recover_dsync_blocks() Matthew Wilcox (Oracle)
2024-07-18 17:14 ` Ryusuke Konishi
2024-07-17 15:46 ` [PATCH 06/23] ntfs3: Remove reset_log_file() Matthew Wilcox (Oracle)
2024-07-17 15:46 ` [PATCH 07/23] buffer: Convert block_write_end() to take a folio Matthew Wilcox (Oracle)
2024-07-17 15:46 ` [PATCH 08/23] ecryptfs: Convert ecryptfs_write_end() to use " Matthew Wilcox (Oracle)
2024-07-17 15:46 ` [PATCH 09/23] ecryptfs: Use a folio in ecryptfs_write_begin() Matthew Wilcox (Oracle)
2024-07-17 15:47 ` [PATCH 10/23] f2fs: Convert f2fs_write_end() to use a folio Matthew Wilcox (Oracle)
2024-07-17 15:47 ` [PATCH 11/23] f2fs: Convert f2fs_write_begin() " Matthew Wilcox (Oracle)
2024-07-17 15:47 ` [PATCH 12/23] fuse: Convert fuse_write_end() " Matthew Wilcox (Oracle)
2024-07-17 15:47 ` [PATCH 13/23] fuse: Convert fuse_write_begin() " Matthew Wilcox (Oracle)
2024-07-17 15:47 ` [PATCH 14/23] hostfs: Convert hostfs_write_end() " Matthew Wilcox (Oracle)
2024-07-17 15:47 ` [PATCH 15/23] jffs2: Convert jffs2_write_end() " Matthew Wilcox (Oracle)
2024-07-17 15:47 ` [PATCH 16/23] jffs2: Convert jffs2_write_begin() " Matthew Wilcox (Oracle)
2024-07-17 15:47 ` [PATCH 17/23] orangefs: Convert orangefs_write_end() " Matthew Wilcox (Oracle)
2024-07-17 15:47 ` [PATCH 18/23] orangefs: Convert orangefs_write_begin() " Matthew Wilcox (Oracle)
2024-07-17 15:47 ` [PATCH 19/23] vboxsf: Use a folio in vboxsf_write_end() Matthew Wilcox (Oracle)
2024-07-17 15:47 ` [PATCH 20/23] fs: Convert aops->write_end to take a folio Matthew Wilcox (Oracle)
2024-07-17 15:47 ` [PATCH 21/23] fs: Convert aops->write_begin " Matthew Wilcox (Oracle)
2024-07-17 15:47 ` [PATCH 22/23] ocfs2: Convert ocfs2_write_zero_page to use " Matthew Wilcox (Oracle)
2024-07-17 15:47 ` [PATCH 23/23] buffer: Convert __block_write_begin() to take " Matthew Wilcox (Oracle)
2024-07-18 15:24 ` [PATCH 00/23] Convert write_begin / write_end " Josef Bacik
2024-07-23 7:49 ` Christian Brauner
2024-07-23 13:20 ` Matthew Wilcox
2024-07-23 13:41 ` Christian Brauner
2024-07-23 22:54 ` Matthew Wilcox
2024-07-30 14:23 ` Christian Brauner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240717154716.237943-1-willy@infradead.org \
--to=willy@infradead.org \
--cc=linux-fsdevel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).