This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 1d18101a644e Merge tag 'kernel-6.19-rc1.cred' of git://git.kernel.org/p [...] new 0485a18d9141 fs: rename fs_types.h to fs_dirent.h new e0b62a4dee24 fs: add fs/super_types.h header new f7b3d1416522 fs: add fs/super.h header new 723cd9872dc1 Merge patch series "fs: start to split up fs.h" new 5b8ed52866e3 fs: inline current_umask() and move it to fs_struct.h new dca3aa666fbd fs: move inode fields used during fast path lookup closer [...] new afdf0fb34094 Merge tag 'vfs-6.19-rc1.fs_header' of git://git.kernel.org [...] new 8e4d576ed3ff fs: add super_write_guard new a5e3d0be9e40 btrfs: use super write guard in btrfs_reclaim_bgs_work() new e79a4512cc87 btrfs: use super write guard btrfs_run_defrag_inode() new 6e5b78cb17c2 btrfs: use super write guard in sb_start_write() new 2774bac21f26 ext4: use super write guard in write_mmp_block() new b7b8aca68e2e btrfs: use super write guard in relocating_repair_kthread() new 97f9d2d282c9 open: use super write guard in do_ftruncate() new ab5f296076f3 xfs: use super write guard in xfs_file_ioctl() new 73fd0dba0beb Merge patch series "fs: introduce super write guard" new 978d337c2ed6 Merge tag 'vfs-6.19-rc1.guards' of git://git.kernel.org/pu [...] new 21215ce7a95a Add error handling to minix filesystem for inode corruptio [...] new d3e0e8661ceb Fix a drop_nlink warning in minix_rmdir new 009a2ba40303 Fix a drop_nlink warning in minix_rename new 0d534518ce87 Merge patch series "Fix two syzbot corruption bugs in mini [...] new 4664fb427c8f Merge tag 'vfs-6.19-rc1.minix' of git://git.kernel.org/pub [...]
The 22 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: fs/9p/acl.c | 1 + fs/Makefile | 2 +- fs/btrfs/block-group.c | 10 +- fs/btrfs/defrag.c | 7 +- fs/btrfs/inode.c | 1 + fs/btrfs/volumes.c | 9 +- fs/ext4/mmp.c | 8 +- fs/f2fs/acl.c | 1 + fs/fat/inode.c | 1 + fs/{fs_types.c => fs_dirent.c} | 2 +- fs/fs_struct.c | 6 - fs/hfsplus/options.c | 1 + fs/hpfs/super.c | 1 + fs/minix/inode.c | 16 + fs/minix/minix.h | 9 + fs/minix/namei.c | 39 ++- fs/nilfs2/nilfs.h | 1 + fs/ntfs3/super.c | 1 + fs/ocfs2/acl.c | 1 + fs/omfs/inode.c | 1 + fs/open.c | 9 +- fs/smb/client/file.c | 1 + fs/smb/client/inode.c | 1 + fs/smb/client/smb1ops.c | 1 + fs/xfs/xfs_ioctl.c | 6 +- include/linux/fs.h | 534 +----------------------------- include/linux/fs/super.h | 238 +++++++++++++ include/linux/fs/super_types.h | 336 +++++++++++++++++++ include/linux/{fs_types.h => fs_dirent.h} | 11 +- include/linux/fs_struct.h | 6 + include/linux/namei.h | 1 + 31 files changed, 680 insertions(+), 582 deletions(-) rename fs/{fs_types.c => fs_dirent.c} (98%) create mode 100644 include/linux/fs/super.h create mode 100644 include/linux/fs/super_types.h rename include/linux/{fs_types.h => fs_dirent.h} (92%)