This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch ibm/2.20/master in repository glibc.
from c69c361 Merge branch 'release/2.20/master' into ibm/2.20/master adds adba20c S390: Do not use direct socket syscalls if build on kernels > [...] adds 7af8c37 S390: Add hwcaps value for vector facility. adds 66cdb5b S390: Add new s390 platform. adds 3058f74 S390: configure check for vector instruction support in assembler. adds 4b7ba5b S390: Save and restore fprs/vrs while resolving symbols. adds 4cf2b4e S390: Extend structs La_s390_regs / La_s390_retval with vecto [...] adds 57d1664 configure: fix `test ==` usage adds ee35f1c S/390: Fix setcontext/swapcontext which are not restoring sigmask. adds edbab24 S390: Fix "backtrace() returns infinitely deep stack frames w [...] adds 1029487 CVE-2016-3706: getaddrinfo: stack overflow in hostent convers [...] adds 75cf90e glob: Simplify the interface for the GLOB_ALTDIRFUNC callback [...] adds 3822125 CVE-2016-1234: glob: Do not copy d_name field of struct diren [...] adds 03e3ee4 Handle overflow in __hcreate_r adds 902072e Improve check against integer wraparound in hcreate_r [BZ #18240] adds c5bbc09 hsearch_r: Apply VM size limit in test case adds afc4daa Fix BZ #17905 adds 916ef0f CVE-2016-3075: Stack overflow in _nss_dns_getnetbyname_r [BZ #19879] new 2feb372 Merge release/2.20/master into ibm/2.20/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: ChangeLog | 179 +++++++++++++++ NEWS | 16 +- catgets/Makefile | 9 +- catgets/catgets.c | 19 +- catgets/open_catalog.c | 23 +- catgets/tst-catgets.c | 31 +++ config.h.in | 3 + manual/examples/mkdirent.c | 42 ++++ manual/pattern.texi | 39 +++- misc/Makefile | 3 +- misc/bug18240.c | 97 ++++++++ misc/hsearch_r.c | 30 ++- posix/bug-glob2.c | 16 +- posix/glob.c | 243 +++++++++++---------- posix/tst-gnuglob.c | 2 +- resolv/nss_dns/dns-network.c | 5 +- stdlib/Makefile | 12 +- stdlib/tst-makecontext.c | 41 +++- stdlib/tst-setcontext2.c | 230 +++++++++++++++++++ sysdeps/posix/getaddrinfo.c | 130 +++++------ sysdeps/s390/bits/link.h | 29 +++ sysdeps/s390/configure | 41 ++++ sysdeps/s390/configure.ac | 29 +++ sysdeps/s390/dl-procinfo.c | 8 +- sysdeps/s390/dl-procinfo.h | 5 +- sysdeps/s390/s390-32/dl-machine.h | 27 ++- sysdeps/s390/s390-32/dl-trampoline.S | 134 +----------- sysdeps/s390/s390-32/dl-trampoline.h | 231 ++++++++++++++++++++ sysdeps/s390/s390-64/dl-machine.h | 27 ++- sysdeps/s390/s390-64/dl-trampoline.S | 130 +---------- sysdeps/s390/s390-64/dl-trampoline.h | 225 +++++++++++++++++++ sysdeps/unix/sysv/linux/i386/glob64.c | 22 ++ sysdeps/unix/sysv/linux/s390/bits/hwcap.h | 1 + .../sysv/linux/s390/s390-32/__makecontext_ret.S | 8 + sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S | 16 +- .../sysv/linux/s390/s390-64/__makecontext_ret.S | 8 + sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S | 16 +- sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list | 19 -- sysdeps/x86_64/configure | 4 +- sysdeps/x86_64/configure.ac | 4 +- 42 files changed, 1633 insertions(+), 525 deletions(-) create mode 100644 manual/examples/mkdirent.c create mode 100644 misc/bug18240.c create mode 100644 stdlib/tst-setcontext2.c create mode 100644 sysdeps/s390/s390-32/dl-trampoline.h create mode 100644 sysdeps/s390/s390-64/dl-trampoline.h