This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from d1e9a63dcd72 Merge tag 'vfs-6.11-rc1.fixes.2' of git://git.kernel.org/p [...] new 9651fcedf7b9 mm: add MAP_DROPPABLE for designating always lazily freeab [...] new 4ad10a5f5f78 random: introduce generic vDSO getrandom() implementation new 33385150ac45 x86: vdso: Wire up getrandom() vDSO implementation new 4920a2590e91 selftests/vDSO: add tests for vgetrandom new 13f75d9ecf3d random: note that RNDGETPOOL was removed in 2.6.9-rc2 new ad8070cb1b4b MAINTAINERS: add random.h headers to RNG subsection new 7a3fad30fd8b Merge tag 'random-6.11-rc1-for-linus' of git://git.kernel. [...]
The 7 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: MAINTAINERS | 6 + arch/x86/Kconfig | 1 + arch/x86/entry/vdso/Makefile | 3 +- arch/x86/entry/vdso/vdso.lds.S | 2 + arch/x86/entry/vdso/vgetrandom-chacha.S | 178 +++++++++++++ arch/x86/entry/vdso/vgetrandom.c | 17 ++ arch/x86/include/asm/vdso/getrandom.h | 55 ++++ arch/x86/include/asm/vdso/vsyscall.h | 2 + arch/x86/include/asm/vvar.h | 16 ++ drivers/char/random.c | 18 +- fs/proc/task_mmu.c | 1 + include/linux/mm.h | 7 + include/linux/userfaultfd_k.h | 3 + include/trace/events/mmflags.h | 7 + include/uapi/linux/mman.h | 1 + include/uapi/linux/random.h | 17 +- include/vdso/datapage.h | 11 + include/vdso/getrandom.h | 46 ++++ lib/vdso/Kconfig | 5 + lib/vdso/getrandom.c | 251 ++++++++++++++++++ mm/ksm.c | 2 +- mm/madvise.c | 5 +- mm/memory.c | 13 + mm/mempolicy.c | 3 + mm/mlock.c | 2 +- mm/mmap.c | 30 +++ mm/rmap.c | 21 +- mm/vmscan.c | 9 - .../s5p-mfc.txt => tools/include/asm/rwonce.h | 0 tools/include/uapi/linux/mman.h | 1 + tools/testing/selftests/mm/.gitignore | 1 + tools/testing/selftests/mm/Makefile | 1 + tools/testing/selftests/mm/droppable.c | 53 ++++ tools/testing/selftests/vDSO/.gitignore | 2 + tools/testing/selftests/vDSO/Makefile | 18 ++ tools/testing/selftests/vDSO/vdso_test_chacha.c | 43 +++ tools/testing/selftests/vDSO/vdso_test_getrandom.c | 288 +++++++++++++++++++++ 37 files changed, 1121 insertions(+), 18 deletions(-) create mode 100644 arch/x86/entry/vdso/vgetrandom-chacha.S create mode 100644 arch/x86/entry/vdso/vgetrandom.c create mode 100644 arch/x86/include/asm/vdso/getrandom.h create mode 100644 include/vdso/getrandom.h create mode 100644 lib/vdso/getrandom.c copy Documentation/devicetree/bindings/media/s5p-mfc.txt => tools/include/asm/rwon [...] create mode 100644 tools/testing/selftests/mm/droppable.c create mode 100644 tools/testing/selftests/vDSO/vdso_test_chacha.c create mode 100644 tools/testing/selftests/vDSO/vdso_test_getrandom.c