This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/pr21740 in repository glibc.
discards b13306f7e0 Add __stack_chk_fail_local alias only to libc.so [BZ #21740] discards 6660ede768 Don't all __access_noerrno with stack protector from __tunab [...] adds 2759a2c1d8 Fix failing sNaN tests on hppa. adds 075385f98a Fix guard alignment in allocate_stack when stack grows up. adds 32d9b0e7a6 Fix [BZ locale/19838]. adds 66cd050f26 Regenerate libc.pot adds df3d455b23 Fix [BZ 20098]. adds 4d42d18029 Remove extra braces from sysdeps/hppa/__longjmp.c. adds a363f70336 Remove _exit entry from sysdeps/unix/sysv/linux/hppa/localplt.data. adds d71400dca6 Fix syscall cancellation on hppa. adds 07f94b7a96 Fix __setcontext return value on hppa. adds cc407f4e81 Fix stack offset for r19 load in __getcontext. adds ce1917d0bf Add CFI annotation. adds 1903b38c65 Return to caller if dl_fixup fails to resolve callee on hppa. adds 512d245bc3 Add HWCAP_ macros from Linux 4.12 to AArch64 bits/hwcap.h. adds 3261ddfc14 Write "Latin" in title case in "title" in hif_FJ locale adds 7317a97020 Fix yesexpr in new agr_PE locale adds 6eb5f3b7c7 Use U+02BB MODIFIER LETTER TURNED COMMA instead of U+0027 AP [...] adds 204b3d4d20 Fix country_name in li_NL adds 48145e1c7d hppa: Fix clone exit syscall argument passing (BZ#21512) adds ae5c498d93 Extend NSS test suite adds 91ac3a7d84 powerpc: Fix float128 IFUNC relocations [BZ #21707] adds 00d7a37773 [AArch64] Fix out of bound array access regression new 47d95763a3 Don't add stack_chk_fail_local.o to libc.a [BZ #21740]
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (b13306f7e0) \ N -- N -- N refs/heads/hjl/pr21740 (47d95763a3)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
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: ChangeLog | 120 +++ config.h.in | 4 - configure | 6 - configure.ac | 3 - csu/libc-start.c | 11 +- debug/Makefile | 4 + debug/stack_chk_fail.c | 4 - elf/dl-support.c | 8 +- elf/dl-tunables.c | 3 +- elf/dl-tunables.h | 14 - elf/rtld.c | 4 +- io/access.c | 2 - localedata/ChangeLog | 17 + localedata/locales/agr_PE | 4 +- localedata/locales/hif_FJ | 2 +- localedata/locales/li_NL | 3 +- localedata/locales/to_TO | 8 +- nptl/allocatestack.c | 10 +- nss/Makefile | 27 +- nss/nss_test.h | 308 ++++++ nss/nss_test.ver | 4 + nss/nss_test1.c | 311 ++++-- debug/stack_chk_fail.c => nss/nss_test2.c | 24 +- nss/tst-nss-test1.c | 76 +- nss/tst-nss-test2.c | 136 +++ nss/tst-nss-test3.c | 150 +++ nss/tst-nss-test4.c | 137 +++ nss/tst-nss-test5.c | 108 ++ po/libc.pot | 1095 ++++++++++---------- shlib-versions | 1 + .../generic/libc-start.h | 30 +- sysdeps/hppa/__longjmp.c | 2 - sysdeps/hppa/dl-fptr.c | 64 +- sysdeps/hppa/dl-trampoline.S | 12 + .../stack_chk_fail.c => sysdeps/hppa/math-tests.h | 24 +- sysdeps/mach/hurd/access.c | 2 - sysdeps/powerpc/Makefile | 10 +- sysdeps/powerpc/powerpc64le/Makefile | 10 + .../powerpc/tst-tlsifunc-static.c | 23 +- sysdeps/powerpc/tst-tlsifunc.c | 129 +++ sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h | 3 + sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h | 38 +- sysdeps/unix/sysv/linux/access.c | 2 - sysdeps/unix/sysv/linux/hppa/bits/shm.h | 2 +- sysdeps/unix/sysv/linux/hppa/clone.S | 5 +- sysdeps/unix/sysv/linux/hppa/getcontext.S | 5 +- sysdeps/unix/sysv/linux/hppa/localplt.data | 1 - sysdeps/unix/sysv/linux/hppa/pt-vfork.S | 3 + sysdeps/unix/sysv/linux/hppa/setcontext.S | 5 +- sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h | 47 +- sysdeps/unix/sysv/linux/hppa/sysdep.h | 15 +- .../unix/sysv/linux/powerpc/libc-start.h | 29 +- 52 files changed, 2173 insertions(+), 892 deletions(-) create mode 100644 nss/nss_test.h create mode 100644 nss/nss_test.ver copy debug/stack_chk_fail.c => nss/nss_test2.c (61%) create mode 100644 nss/tst-nss-test2.c create mode 100644 nss/tst-nss-test3.c create mode 100644 nss/tst-nss-test4.c create mode 100644 nss/tst-nss-test5.c copy debug/stack_chk_fail.c => sysdeps/generic/libc-start.h (61%) copy debug/stack_chk_fail.c => sysdeps/hppa/math-tests.h (61%) copy debug/stack_chk_fail.c => sysdeps/powerpc/tst-tlsifunc-static.c (61%) create mode 100644 sysdeps/powerpc/tst-tlsifunc.c copy debug/stack_chk_fail.c => sysdeps/unix/sysv/linux/powerpc/libc-start.h (62%)