This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch ibm/2.32/master in repository glibc.
from 44c7513a5f Let ld.so have flags DT_RPATH and DT_RUNPATH adds fe62c4d173 intl: Handle translation output codesets with suffixes [BZ #26383] adds 69beb5cbf8 string: Fix strerrorname_np return value [BZ #26555] adds 23482f7886 Set version.h RELEASE to "stable" (Bug 26700) adds 0f8f0ed25c AArch64: Improve backwards memmove performance adds 81c5484d93 AArch64: Use __memcpy_simd on Neoverse N2/V1 adds 9b139b6b81 sysvipc: Fix SEM_STAT_ANY kernel argument pass [BZ #26637] adds c4aeedea59 sysvipc: Fix IPC_INFO and MSG_INFO handling [BZ #26639] adds 0b9460d22e sysvipc: Fix IPC_INFO and SHM_INFO handling [BZ #26636] adds e61a8fd8fa Reversing calculation of __x86_shared_non_temporal_threshold adds 8813b2682e x86: Optimizing memcpy for AMD Zen architecture. adds 70ee5e8b57 aarch64: Fix DT_AARCH64_VARIANT_PCS handling [BZ #26798] adds c6e794640c aarch64: Add unwind information to _start (bug 26853) adds 5337b2af4b Remove __warn_memset_zero_len [BZ #25399] adds eba0ce6058 Remove __warndecl adds f688bcd83d support: Provide a way to reorder responses within the DNS t [...] adds 05c025abca support: Provide a way to clear the RA bit in DNS server responses adds 2dfa659a66 resolv: Handle transaction ID collisions in parallel queries [...] adds 5c36293f06 resolv: Serialize processing in resolv/tst-resolv-txnid-collision adds 3ea24955bf struct _Unwind_Exception alignment should not depend on comp [...] adds ac0a6929c5 sh: Add sh4 fpu Implies folder adds 050022910b iconv: Accept redundant shift sequences in IBM1364 [BZ #26224] adds 1d49bede4d tests-mcheck: New variable to run tests with MALLOC_CHECK_=3 adds 0d9793e82a Fix buffer overrun in EUC-KR conversion module (bz #24973) new c542253f49 Merge branch release/2.32/master into ibm/2.32/master
The 1 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: NEWS | 15 + Rules | 19 +- debug/Makefile | 2 +- debug/warning-nop.c | 70 --- iconv/Versions | 4 +- iconv/gconv_charset.c | 10 + iconv/gconv_charset.h | 27 - iconv/gconv_int.h | 21 + iconv/iconv_open.c | 2 +- iconv/iconv_prog.c | 2 +- iconv/tst-iconv_prog.sh | 16 +- iconvdata/Makefile | 3 +- iconvdata/bug-iconv13.c | 53 ++ iconvdata/euc-kr.c | 6 +- iconvdata/ibm1364.c | 14 +- iconvdata/ksc5601.h | 6 +- intl/dcigettext.c | 17 +- intl/tst-codeset.c | 34 +- malloc/Makefile | 20 + manual/tunables.texi | 6 +- misc/sys/cdefs.h | 3 - resolv/Makefile | 7 + resolv/res_send.c | 40 +- resolv/tst-resolv-txnid-collision.c | 334 ++++++++++++ stdio-common/Makefile | 3 +- stdio-common/errlist.c | 13 +- stdio-common/test-strerr.c | 690 +++++++++++++++++++++++-- string/bits/string_fortified.h | 15 - support/Makefile | 2 + support/resolv_response_context_duplicate.c | 37 ++ support/resolv_response_context_free.c | 28 + support/resolv_test.c | 63 ++- support/resolv_test.h | 41 +- sysdeps/aarch64/dl-machine.h | 12 +- sysdeps/aarch64/multiarch/memcpy.c | 3 +- sysdeps/aarch64/multiarch/memcpy_advsimd.S | 7 +- sysdeps/aarch64/multiarch/memmove.c | 3 +- sysdeps/aarch64/start.S | 7 +- sysdeps/generic/unwind.h | 24 +- sysdeps/gnu/errlist.h | 301 ++++++----- sysdeps/sh/be/sh4/fpu/Implies | 1 + sysdeps/sh/le/sh4/fpu/Implies | 1 + sysdeps/unix/sysv/linux/Makefile | 2 +- sysdeps/unix/sysv/linux/aarch64/cpu-features.h | 4 + sysdeps/unix/sysv/linux/msgctl.c | 22 +- sysdeps/unix/sysv/linux/semctl.c | 6 + sysdeps/unix/sysv/linux/sh/be/sh4/fpu/Implies | 1 + sysdeps/unix/sysv/linux/sh/le/sh4/fpu/Implies | 1 + sysdeps/unix/sysv/linux/shmctl.c | 24 +- sysdeps/unix/sysv/linux/tst-sysvmsg-linux.c | 177 +++++++ sysdeps/unix/sysv/linux/tst-sysvsem-linux.c | 184 +++++++ sysdeps/unix/sysv/linux/tst-sysvshm-linux.c | 185 +++++++ sysdeps/x86/cacheinfo.c | 36 +- sysvipc/test-sysvsem.c | 1 + version.h | 2 +- 55 files changed, 2168 insertions(+), 459 deletions(-) delete mode 100644 debug/warning-nop.c create mode 100644 iconvdata/bug-iconv13.c create mode 100644 resolv/tst-resolv-txnid-collision.c create mode 100644 support/resolv_response_context_duplicate.c create mode 100644 support/resolv_response_context_free.c create mode 100644 sysdeps/sh/be/sh4/fpu/Implies create mode 100644 sysdeps/sh/le/sh4/fpu/Implies create mode 100644 sysdeps/unix/sysv/linux/sh/be/sh4/fpu/Implies create mode 100644 sysdeps/unix/sysv/linux/sh/le/sh4/fpu/Implies create mode 100644 sysdeps/unix/sysv/linux/tst-sysvmsg-linux.c create mode 100644 sysdeps/unix/sysv/linux/tst-sysvsem-linux.c create mode 100644 sysdeps/unix/sysv/linux/tst-sysvshm-linux.c