This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-arm-build_cross in repository toolchain/ci/glibc.
from 97e42bd482 nptl: Use <unwind-link.h> for accessing the libgcc_s unwinder adds e7b2a56192 elf: Build __dl_iterate_phdr with unwinding support [BZ #27498] adds e81402f246 nptl: __libc_cleanup_push/__libc_cleanup_pop require -fexceptions adds e0685bacd5 tst: Add test for futimens adds dec445d40d tst: Add test for utime adds 9871ae0ab4 tst: Add test for utimes adds 40d055a2dd powerpc: Update libm-test-ulps adds 851f32cf7b ld.so: Implement the --list-diagnostics option adds e4933c8a92 x86: Automate generation of PREFERRED_FEATURE_INDEX_1 bitfield adds 01a5746b6c x86: Add CPU-specific diagnostics to ld.so --list-diagnostics adds f01a61e138 i386: Regenerate ulps adds dd1776e327 tst: Fix tst-timerfd test adds dca565886b nscd: Fix double free in netgroupcache [BZ #27462] new 58673149f3 nss: Re-enable NSS module loading after chroot [BZ #27389] new 86b9d5a475 s390x: Regenerate ulps new 82215c1e25 powerpc: Regenerate ulps
The 3 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 | 4 + elf/Makefile | 7 +- elf/dl-diagnostics-cpu.c | 24 ++ elf/dl-diagnostics-kernel.c | 24 ++ elf/dl-diagnostics.c | 265 +++++++++++++++++++++ elf/dl-diagnostics.h | 46 ++++ elf/dl-main.h | 5 +- elf/dl-usage.c | 1 + elf/rtld.c | 18 +- nscd/netgroupcache.c | 4 +- nss/nss_database.c | 1 - nss/tst-reload2.c | 35 ++- nss/tst-reload2.root/etc/hosts | 1 + nss/tst-reload2.root/etc/nsswitch.conf | 1 + nss/tst-reload2.root/subdir/etc/hosts | 1 + nss/tst-reload2.root/subdir/etc/nsswitch.conf | 1 + sysdeps/i386/fpu/libm-test-ulps | 46 ++-- sysdeps/i386/i686/fpu/multiarch/libm-test-ulps | 46 ++-- sysdeps/nptl/libc-lockP.h | 9 +- sysdeps/powerpc/fpu/libm-test-ulps | 48 ++-- sysdeps/s390/fpu/libm-test-ulps | 32 +-- sysdeps/unix/sysv/linux/Makefile | 2 +- sysdeps/unix/sysv/linux/dl-diagnostics-kernel.c | 77 ++++++ sysdeps/unix/sysv/linux/tst-futimens.c | 84 +++++++ sysdeps/unix/sysv/linux/tst-timerfd.c | 15 +- sysdeps/unix/sysv/linux/tst-utime.c | 87 +++++++ sysdeps/unix/sysv/linux/tst-utimes.c | 88 +++++++ sysdeps/x86/dl-diagnostics-cpu.c | 118 +++++++++ .../cpu-features-preferred_feature_index_1.def | 34 +++ sysdeps/x86/include/cpu-features.h | 53 ++--- 30 files changed, 1025 insertions(+), 152 deletions(-) create mode 100644 elf/dl-diagnostics-cpu.c create mode 100644 elf/dl-diagnostics-kernel.c create mode 100644 elf/dl-diagnostics.c create mode 100644 elf/dl-diagnostics.h create mode 100644 nss/tst-reload2.root/etc/hosts create mode 100644 nss/tst-reload2.root/subdir/etc/hosts create mode 100644 sysdeps/unix/sysv/linux/dl-diagnostics-kernel.c create mode 100644 sysdeps/unix/sysv/linux/tst-futimens.c create mode 100644 sysdeps/unix/sysv/linux/tst-utime.c create mode 100644 sysdeps/unix/sysv/linux/tst-utimes.c create mode 100644 sysdeps/x86/dl-diagnostics-cpu.c create mode 100644 sysdeps/x86/include/cpu-features-preferred_feature_index_1.def