This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 0ee7c3e25d8c Merge tag 'iomap-5.15-merge-4' of git://git.kernel.org/pub [...] new 9ffb14ef61ba move_mount: allow to add a mount into an existing group new 8374f43123a5 tests: add move_mount(MOVE_MOUNT_SET_GROUP) selftest new 1dd5915a5cbd Merge tag 'fs.move_mount.move_mount_set_group.v5.15' of gi [...] new f49fd6d3c070 file: let pick_file() tell caller it's done new 03ba0fe4d09f file: simplify logic in __close_range() new 927bc120a248 Merge tag 'fs.close_range.v5.15' of git://git.kernel.org/p [...] new ad19607a90b2 doc: give a more thorough id handling explanation new 67b03f93a30f Merge tag 'fs.idmapped.v5.15' of git://git.kernel.org/pub/ [...] new 2863643fb8b9 set_user: add capability check when rlimit(RLIMIT_NPROC) exceeds new e55f0c439a26 Merge tag 'kernel.sys.v5.15' of git://git.kernel.org/pub/s [...]
The 10 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: Documentation/filesystems/idmappings.rst | 1026 ++++++++++++++++++++ Documentation/filesystems/index.rst | 1 + fs/file.c | 64 +- fs/namespace.c | 77 +- include/uapi/linux/mount.h | 3 +- kernel/sys.c | 3 +- tools/testing/selftests/Makefile | 1 + .../selftests/move_mount_set_group/.gitignore | 1 + .../selftests/move_mount_set_group/Makefile | 7 + .../{mount => move_mount_set_group}/config | 0 .../move_mount_set_group_test.c | 375 +++++++ 11 files changed, 1531 insertions(+), 27 deletions(-) create mode 100644 Documentation/filesystems/idmappings.rst create mode 100644 tools/testing/selftests/move_mount_set_group/.gitignore create mode 100644 tools/testing/selftests/move_mount_set_group/Makefile copy tools/testing/selftests/{mount => move_mount_set_group}/config (100%) create mode 100644 tools/testing/selftests/move_mount_set_group/move_mount_set_gro [...]