This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_gnu_tx1/gnu-master-aarch64-spec2k6-O2 in repository toolchain/ci/glibc.
from fe8ca369ad stdio-common: Simplify printf_unknown interface in vfprintf- [...] adds 31ec883990 Use Linux 5.18 in build-many-glibcs.py adds 52a103e237 Fix deadlock when pthread_atfork handler calls pthread_atfor [...] adds 3d9926663c Update syscall-names.list for Linux 5.18 adds 7597b251d4 String: Improve overflow test coverage for strnlen adds 8d6c44ee7d Update kernel version to 5.18 in header constant tests adds 9c66efb86f x86_64: Implement evex512 version of strlen, strnlen, wcslen [...] adds f8587a6189 x86-64: Ignore r_addend for R_X86_64_GLOB_DAT/R_X86_64_JUMP_SLOT
No new revisions were added by this update.
Summary of changes: include/register-atfork.h | 26 +-- posix/fork.c | 7 +- posix/register-atfork.c | 140 ++++++++++--- scripts/build-many-glibcs.py | 2 +- string/test-strnlen.c | 2 + sysdeps/pthread/Makefile | 38 +++- sysdeps/pthread/tst-atfork3.c | 118 +++++++++++ sysdeps/pthread/tst-atfork3mod.c | 44 ++++ sysdeps/pthread/tst-atfork4.c | 128 ++++++++++++ sysdeps/pthread/tst-atfork4mod.c | 48 +++++ sysdeps/unix/sysv/linux/syscall-names.list | 4 +- sysdeps/unix/sysv/linux/tst-mman-consts.py | 2 +- sysdeps/unix/sysv/linux/tst-pidfd-consts.py | 2 +- sysdeps/x86_64/dl-machine.h | 6 +- sysdeps/x86_64/multiarch/Makefile | 4 + sysdeps/x86_64/multiarch/ifunc-impl-list.c | 20 ++ sysdeps/x86_64/multiarch/strlen-evex-base.S | 302 ++++++++++++++++++++++++++++ sysdeps/x86_64/multiarch/strlen-evex512.S | 7 + sysdeps/x86_64/multiarch/strnlen-evex512.S | 4 + sysdeps/x86_64/multiarch/wcslen-evex512.S | 4 + sysdeps/x86_64/multiarch/wcsnlen-evex512.S | 5 + 21 files changed, 856 insertions(+), 57 deletions(-) create mode 100644 sysdeps/pthread/tst-atfork3.c create mode 100644 sysdeps/pthread/tst-atfork3mod.c create mode 100644 sysdeps/pthread/tst-atfork4.c create mode 100644 sysdeps/pthread/tst-atfork4mod.c create mode 100644 sysdeps/x86_64/multiarch/strlen-evex-base.S create mode 100644 sysdeps/x86_64/multiarch/strlen-evex512.S create mode 100644 sysdeps/x86_64/multiarch/strnlen-evex512.S create mode 100644 sysdeps/x86_64/multiarch/wcslen-evex512.S create mode 100644 sysdeps/x86_64/multiarch/wcsnlen-evex512.S