This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/cet/master in repository glibc.
discards e89eab5f41 x86: Support IBT and SHSTK in Intel CET [BZ #21598] discards 240dad35ea Linux/x86: Support shadow stack pointer in setjmp/longjmp adds 554e3d51ef sh: Fix clone exit return code (BZ #22605) adds 3bb1ef58b9 ia64: Fix memchr for large input sizes (BZ #22603) adds 6fd0a3c6a8 Improve __ieee754_exp() performance by greater than 5x on sp [...] adds 6f58c10ded Update x86_64 libm-test-ulps. adds d711a00f93 glob: pacify fuzzer for mempcpy adds e184ac3a10 glob: Silence warning about void pointer arithmetic adds f1e005022e Revert exp reimplementation (causes test failures). adds 648615e13f Avoid signed shift overflow in pow (bug 21309). adds 126adc89d8 Document that --enable-static-pie implies PIE adds ce16eb52c0 Replece LDFLAGS-* = $(no-pie-ldflag) with tst-*-no-pie = yes [...] new d8472608f0 x86: Support shadow stack pointer in setjmp/longjmp new 49d1131c61 x86: Support IBT and SHSTK in Intel CET [BZ #21598]
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 (e89eab5f41) \ N -- N -- N refs/heads/hjl/cet/master (49d1131c61)
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 2 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 | 126 ++++++++++++++++++ INSTALL | 4 +- Makeconfig | 3 +- nptl/libc-lowlevellock.c => bits/ucontext.h | 13 +- configure | 2 +- configure.ac | 2 +- elf/Makefile | 6 +- gmon/Makefile | 2 +- manual/install.texi | 3 +- posix/glob.c | 10 +- stdlib/Makefile | 2 +- stdlib/ucontext.h | 1 + sysdeps/i386/__longjmp.S | 69 ++++++++++ sysdeps/i386/bsd-_setjmp.S | 15 +++ sysdeps/i386/bsd-setjmp.S | 15 +++ sysdeps/i386/setjmp.S | 15 +++ sysdeps/ia64/memchr.S | 4 + sysdeps/ieee754/dbl-64/e_pow.c | 3 +- sysdeps/unix/sysv/linux/i386/____longjmp_chk.S | 3 +- sysdeps/unix/sysv/linux/i386/__longjmp.S | 141 --------------------- sysdeps/unix/sysv/linux/i386/bsd-_setjmp.S | 72 ----------- sysdeps/unix/sysv/linux/i386/bsd-setjmp.S | 82 ------------ sysdeps/unix/sysv/linux/i386/setjmp.S | 73 ----------- sysdeps/unix/sysv/linux/sh/clone.S | 1 + sysdeps/unix/sysv/linux/x86/Makefile | 1 - .../unix/sysv/linux/x86/bits/ucontext.h | 17 ++- sysdeps/unix/sysv/linux/x86/check-cet.awk | 18 +++ sysdeps/unix/sysv/linux/x86/configure | 2 +- sysdeps/unix/sysv/linux/x86/configure.ac | 2 +- sysdeps/unix/sysv/linux/x86/stdlib/ucontext.h | 1 - sysdeps/unix/sysv/linux/x86/ucontext.h | 56 -------- sysdeps/unix/sysv/linux/x86_64/__longjmp.S | 105 --------------- sysdeps/unix/sysv/linux/x86_64/setjmp.S | 82 ------------ sysdeps/x86/Makefile | 4 + sysdeps/x86/jmp_buf-ssp.sym | 1 + sysdeps/x86_64/__longjmp.S | 35 +++++ sysdeps/x86_64/setjmp.S | 15 +++ 37 files changed, 368 insertions(+), 638 deletions(-) copy nptl/libc-lowlevellock.c => bits/ucontext.h (74%) delete mode 100644 sysdeps/unix/sysv/linux/i386/__longjmp.S delete mode 100644 sysdeps/unix/sysv/linux/i386/bsd-_setjmp.S delete mode 100644 sysdeps/unix/sysv/linux/i386/bsd-setjmp.S delete mode 100644 sysdeps/unix/sysv/linux/i386/setjmp.S copy nptl/libc-lowlevellock.c => sysdeps/unix/sysv/linux/x86/bits/ucontext.h (67%) delete mode 100644 sysdeps/unix/sysv/linux/x86/stdlib/ucontext.h delete mode 100644 sysdeps/unix/sysv/linux/x86/ucontext.h delete mode 100644 sysdeps/unix/sysv/linux/x86_64/__longjmp.S delete mode 100644 sysdeps/unix/sysv/linux/x86_64/setjmp.S create mode 100644 sysdeps/x86/jmp_buf-ssp.sym