This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 74f1456c4a5f Merge tag 'linux-kselftest-fixes-6.5-rc3' of git://git.ker [...] new f13be0ad5344 selftests/mm: give scripts execute permission new 636e348353a7 prctl: move PR_GET_AUXV out of PR_MCE_KILL new 2658f94d6792 mm/mlock: fix vma iterator conversion of apply_vma_lock_flags() new 3c769fd88b97 maple_tree: set the node limit when creating a new root node new 25b5949c3093 selftests/mm: mkdirty: fix incorrect position of #endif new 7a93c71a6714 maple_tree: fix 32 bit mas_next testing new ef5c3de5211b maple_tree: fix node allocation testing on 32 bit new 4806364acf77 Merge tag 'mm-hotfixes-stable-2023-07-18-12-28' of git://g [...] new 56cbeacf1435 perf probe: Add test for regression introduced by switch t [...] new c66e1c68c13b perf probe: Read DWARF files from the correct CU new 142256d2f41a tools headers UAPI: Sync drm/i915_drm.h with the kernel sources new 9350a9179133 tools headers UAPI: Sync files changed by new cachestat sy [...] new 1feece2780ac perf build: Fix library not found error when using CSLIBS new 8d40f74ebf21 perf vendor events amd: Fix large metrics new 48fa42c94547 tools headers uapi: Sync linux/fcntl.h with the kernel sources new 225bbf44bffd tools headers UAPI: Sync linux/kvm.h with the kernel sources new 920b91d92702 tools include UAPI: Sync linux/mount.h copy with the kerne [...] new a87834d19aa2 perf build: Fix broken feature check for libtracefs due to [...] new ad07149f34db tools headers UAPI: Sync linux/prctl.h with the kernel sources new 4b96679170c6 libsubcmd: Avoid SEGV/use-after-free when commands aren't [...] new 5b10c18d1bf9 perf parse-events: Avoid SEGV if PMU lookup fails for lega [...] new 0e022f5bf72f perf beauty: Update copy of linux/socket.h with the kernel [...] new 7b8615935560 tools include UAPI: Sync linux/vhost.h with the kernel sources new 28e898ffa0c6 tools include UAPI: Sync the sound/asound.h copy with the [...] new 963293ff058c tools headers arm64: Sync arm64's cputype.h with the kerne [...] new 2480232c61b8 perf test task_exit: No need for a cycles event to check i [...] new ccff6d117d8d Merge tag 'perf-tools-fixes-for-v6.5-1-2023-07-18' of git: [...]
The 27 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: kernel/sys.c | 10 +-- lib/maple_tree.c | 3 +- lib/test_maple_tree.c | 5 +- mm/mlock.c | 9 +- tools/arch/arm64/include/asm/cputype.h | 8 ++ tools/build/feature/Makefile | 2 +- tools/include/uapi/asm-generic/unistd.h | 5 +- tools/include/uapi/drm/i915_drm.h | 95 +++++++++++++++++++++- tools/include/uapi/linux/fcntl.h | 5 ++ tools/include/uapi/linux/kvm.h | 6 +- tools/include/uapi/linux/mman.h | 14 ++++ tools/include/uapi/linux/mount.h | 3 +- tools/include/uapi/linux/prctl.h | 11 +++ tools/include/uapi/linux/vhost.h | 31 +++++++ tools/include/uapi/sound/asound.h | 81 +++++++++++++++++- tools/lib/subcmd/help.c | 18 ++-- tools/perf/Makefile.config | 4 +- .../perf/arch/mips/entry/syscalls/syscall_n64.tbl | 1 + tools/perf/arch/powerpc/entry/syscalls/syscall.tbl | 1 + tools/perf/arch/s390/entry/syscalls/syscall.tbl | 1 + tools/perf/arch/x86/entry/syscalls/syscall_64.tbl | 1 + .../pmu-events/arch/x86/amdzen1/recommended.json | 3 +- .../pmu-events/arch/x86/amdzen2/recommended.json | 3 +- .../pmu-events/arch/x86/amdzen3/recommended.json | 3 +- .../tests/shell/test_uprobe_from_different_cu.sh | 77 ++++++++++++++++++ tools/perf/tests/task-exit.c | 4 +- tools/perf/trace/beauty/include/linux/socket.h | 5 ++ tools/perf/trace/beauty/move_mount_flags.sh | 2 +- tools/perf/trace/beauty/msg_flags.c | 8 ++ tools/perf/util/dwarf-aux.c | 4 +- tools/perf/util/parse-events.c | 8 ++ tools/testing/radix-tree/maple.c | 6 +- .../selftests/mm/charge_reserved_hugetlb.sh | 0 tools/testing/selftests/mm/check_config.sh | 0 .../selftests/mm/hugetlb_reparenting_test.sh | 0 tools/testing/selftests/mm/mkdirty.c | 2 +- tools/testing/selftests/mm/run_vmtests.sh | 0 tools/testing/selftests/mm/test_hmm.sh | 0 tools/testing/selftests/mm/test_vmalloc.sh | 0 tools/testing/selftests/mm/va_high_addr_switch.sh | 0 tools/testing/selftests/mm/write_hugetlb_memory.sh | 0 41 files changed, 401 insertions(+), 38 deletions(-) create mode 100755 tools/perf/tests/shell/test_uprobe_from_different_cu.sh mode change 100644 => 100755 tools/testing/selftests/mm/charge_reserved_hugetlb.sh mode change 100644 => 100755 tools/testing/selftests/mm/check_config.sh mode change 100644 => 100755 tools/testing/selftests/mm/hugetlb_reparenting_test.sh mode change 100644 => 100755 tools/testing/selftests/mm/run_vmtests.sh mode change 100644 => 100755 tools/testing/selftests/mm/test_hmm.sh mode change 100644 => 100755 tools/testing/selftests/mm/test_vmalloc.sh mode change 100644 => 100755 tools/testing/selftests/mm/va_high_addr_switch.sh mode change 100644 => 100755 tools/testing/selftests/mm/write_hugetlb_memory.sh