This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from ae7a94e5e3 Remove --enable-obsolete-nsl configure flag new 0c7b002fac rtld: Add rtld.nns tunable for the number of supported namespaces new 17796419b5 rtld: Account static TLS surplus for audit modules new ffb17e7ba3 rtld: Avoid using up static TLS surplus for optimizations [B [...]
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: csu/libc-tls.c | 31 +++++++------ elf/Makefile | 29 +++++++++++- elf/dl-reloc.c | 37 +++++++++++---- elf/dl-tls.c | 67 +++++++++++++++++++++++++-- elf/dl-tunables.list | 14 ++++++ elf/dynamic-link.h | 5 +- elf/rtld.c | 32 +++++++++++-- elf/tst-tls-ie-dlmopen.c | 112 +++++++++++++++++++++++++++++++++++++++++++++ elf/tst-tls-ie-mod.h | 40 ++++++++++++++++ elf/tst-tls-ie-mod0.c | 4 ++ elf/tst-tls-ie-mod1.c | 4 ++ elf/tst-tls-ie-mod2.c | 4 ++ elf/tst-tls-ie-mod3.c | 4 ++ elf/tst-tls-ie-mod4.c | 4 ++ elf/tst-tls-ie-mod5.c | 4 ++ elf/tst-tls-ie-mod6.c | 4 ++ elf/tst-tls-ie.c | 111 ++++++++++++++++++++++++++++++++++++++++++++ manual/tunables.texi | 41 +++++++++++++++++ sysdeps/generic/ldsodefs.h | 12 +++++ 19 files changed, 524 insertions(+), 35 deletions(-) create mode 100644 elf/tst-tls-ie-dlmopen.c create mode 100644 elf/tst-tls-ie-mod.h create mode 100644 elf/tst-tls-ie-mod0.c create mode 100644 elf/tst-tls-ie-mod1.c create mode 100644 elf/tst-tls-ie-mod2.c create mode 100644 elf/tst-tls-ie-mod3.c create mode 100644 elf/tst-tls-ie-mod4.c create mode 100644 elf/tst-tls-ie-mod5.c create mode 100644 elf/tst-tls-ie-mod6.c create mode 100644 elf/tst-tls-ie.c