This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_llvm_tx1/llvm-master-aarch64-spec2k6-O3_LTO in repository toolchain/ci/glibc.
from efeb2bd1ab math: Add math-use-builtins-fabs (BZ#29027) adds a01a13601c benchtests: Improve bench-strnlen.c adds 36c1dbaedd elf/dl-reloc.c: Copyright The GNU Toolchain Authors adds 800d535504 stdio-common: Add printf specifier registry to <printf.h> adds 46db978347 stdio-common: Move union printf_arg int <printf.h> adds 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 [...]
No new revisions were added by this update.
Summary of changes: benchtests/bench-strnlen.c | 77 ++++--- elf/dl-reloc.c | 1 + include/printf.h | 29 +++ include/register-atfork.h | 26 +-- posix/fork.c | 7 +- posix/register-atfork.c | 140 ++++++++++--- scripts/build-many-glibcs.py | 2 +- stdio-common/printf-parse.h | 29 --- stdio-common/printf-prs.c | 1 + stdio-common/reg-printf.c | 7 - stdio-common/vfprintf-internal.c | 22 +- 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/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 + 27 files changed, 938 insertions(+), 135 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