about summary refs log tree commit diff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of lll_robust_trylock.Roland McGrath2014-07-101-0/+22
|
* manual: Update the locale documentationFlorian Weimer2014-07-101-0/+13
|
* _nl_find_locale: Improve handling of crafted locale names [BZ #17137]Florian Weimer2014-07-101-0/+9
| | | | | Prevent directory traversal in locale-related environment variables (CVE-2014-0475).
* setlocale: Use the heap for the copy of the locale argumentFlorian Weimer2014-07-101-0/+5
| | | | This avoids alloca calls with potentially large arguments.
* Sync up error.c with gnulibSiddhesh Poyarekar2014-07-101-0/+17
| | | | | | | | | | | | | Summary of changes: - Use of !_LIBC instead of HAVE_CONFIG_H - Code changes in [!_LIBC] that don't affect us - Minor formatting changes - Use __builtin_expect in shared code - Define some macros in [_LIBC] that are used in gnulib but never defined in glibc - Flip macro check for STRERROR_R_CHAR_P so that it does not throw a warning
* Fix -Wundef warning for HAVE_LOCALTIME_RSiddhesh Poyarekar2014-07-101-0/+2
| | | | | Define it to 0. There is a gnulib copy for this, but it is out of sync with our copy.
* Fix Wundef warning for HAVE_STRFTIMESiddhesh Poyarekar2014-07-101-0/+2
| | | | Define it to 0
* Fix -Wundef warning for HAVE_SYS_PARAM_HSiddhesh Poyarekar2014-07-101-0/+2
| | | | Include sys/param.h unconditionally
* Fix -Wundef warning for HAVE_OBSTACKSiddhesh Poyarekar2014-07-101-0/+2
| | | | | | Remove the HAVE_OBSTACK macro check and include obstack check in include path order since we don't have a copy of obstack.h in the current directory.
* Fix crash when system has no ipv6 address [BZ #17125]Siddhesh Poyarekar2014-07-101-0/+5
| | | | | | | | | | | Here's an updated patch to fix the crash in bug-ga2 when the system has no configured ipv6 address. I have taken a different approach of using libc_freeres_fn instead of the libc_freeres_ptr since the former gives better control over what is freed; we need that since cache may or may not be allocated using malloc. Verified that bug-ga2 works correctly in both cases and does not have memory leaks in either of them.
* Get rid of sparc specific NPTL internaltypes.h header.David S. Miller2014-07-091-0/+14
| | | | | | | | | | | | | | | | * sysdeps/sparc/nptl/internaltypes.h: Delete. * sysdeps/sparc/nptl/sparc-nptl.h: New file. * sysdeps/sparc/nptl/pthread_barrier_destroy.c: Include it. * sysdeps/sparc/nptl/pthread_barrier_init.c: Likewise. * sysdeps/sparc/nptl/pthread_barrier_wait.c: Likewise. * sysdeps/sparc/nptl/sem_init.c: Likewise. * sysdeps/sparc/nptl/sem_post.c: Likewise. * sysdeps/sparc/nptl/sem_timedwait.c: Likewise. * sysdeps/sparc/nptl/sem_wait.c: Likewise. * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Likewise. * sysdeps/sparc/sparc32/nptl/sem_post.c: Likewise. * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Likewise. * sysdeps/sparc/sparc32/nptl/sem_wait.c: Likewise.
* Add comment about SIZE initialization in xdr.cSiddhesh Poyarekar2014-07-101-0/+5
|
* Update sparc ULPS.David S. Miller2014-07-091-0/+4
| | | | * sysdeps/sparc/fpu/libm-test-ulps: Update.
* Fix missing newline in test outputAndreas Schwab2014-07-091-0/+5
|
* Update i386 libm test ULPsAndreas Schwab2014-07-091-0/+4
|
* Fix -Wundef warnings for SHAREDWill Newton2014-07-091-0/+8
| | | | | | | | | | | | | | | | | The definition of SHARED is tested with #ifdef pretty much everywhere apart from these few places. The tlsdesc.c code seems to be copy and pasted to a few architectures and there is one instance in the hppa startup code. ChangeLog: 2014-07-09 Will Newton <will.newton@linaro.org> * sysdeps/aarch64/tlsdesc.c (_dl_unmap): Test SHARED with #ifdef. * sysdeps/arm/tlsdesc.c (_dl_unmap): Likewise. * sysdeps/i386/tlsdesc.c (_dl_unmap): Likewise. * sysdeps/x86_64/tlsdesc.c (_dl_unmap): Likewise. * sysdeps/hppa/start.S (_start): Likewise.
* Fix -Wmaybe-uninitialized warning in xdr.cSiddhesh Poyarekar2014-07-091-0/+2
| | | | | | | | | | While we're at fixing build warnings, here's one unnecessary warning that can be fixed fairly easily. The SIZE variable is never actually use uninitialized, but the compiler cannot make that out and thinks (correctly) that there is a potential for accessing SIZE without initializing it. Make this safe by initializing SIZE to 0. Tested on x86_64.
* Fix Wundef warning for __cplusplusSiddhesh Poyarekar2014-07-091-0/+5
| | | | | All current uses of the __cplusplus macro only check if it is defined or not. Fix this #if to use $ifdef like the rest of the code.
* Check value at resplen2 if it is not NULLSiddhesh Poyarekar2014-07-081-0/+3
| | | | | | | There was a typo in the previous patch due to which resplen2 was checked for non-zero instead of the value at resplen2. Fix that and improve the condition by checking resplen2 for non-NULL (instead of answerp2) and also adding the check in a third place.
* Fix Wundef warning for ELF_MACHINE_NO_REL on i386Siddhesh Poyarekar2014-07-081-0/+4
|
* PowerPC: Cleanup powerpc memmoveAdhemerval Zanella2014-07-081-0/+10
| | | | | | | Now that MEMCPY_OK_FOR_FWD_MEMMOVE should be define on memcopy.h there is no need to specialized powerpc memmove implementation. This patch moves the define set to powerpc memcopy and cleanup its definition on powerpc code.
* PowerPC: Fix compiler warningsAdhemerval Zanella2014-07-081-0/+7
| | | | | This patch fixes some compiler due trailing data in #undef directives and due missing prototypes.
* PowerPC: Add ifunc tests for memmoveAdhemerval Zanella2014-07-081-0/+5
| | | | | This patch add the missing ifunc tests definition for memmove ppc32 optimization patch (commit 07aedd7).
* Fix Wundef warning with SHOJI_IS_RIGHTSiddhesh Poyarekar2014-07-081-0/+37
| | | | | The macro is not defined anywhere, so it looks like we're convinced that Shoji is wrong :)
* PowerPC: Align power7 memcpy using VSX to quadwordAdhemerval Zanella2014-07-071-0/+4
| | | | | | This patch changes power7 memcpy to use VSX instructions only when memory is aligned to quardword. It is to avoid unaligned kernel traps on non-cacheable memory (for instance, memory-mapped I/O).
* PowerPC: optimized memmove for POWER7/PPC32Adhemerval Zanella2014-07-071-0/+9
| | | | | This patch adds a optimized memmove for power7 by using the optimized power7 memcpy for forward copying.
* PowerPC: optimized memmove for POWER7/PPC64Adhemerval Zanella2014-07-071-0/+20
| | | | | | | | | | | This patch adds an optimized memmove optimization for POWER7/powerpc64. Basically the idea is to use the memcpy for POWER7 on non-overlapped memory regions and a optimized backward memcpy for memory regions that overlap (similar to the idea of string/memmove.c). The backward memcpy algorithm used is similar the one use for memcpy for POWER7, with adjustments done for alignment. The difference is memory is always aligned to 16 bytes before using VSX/altivec instructions.
* PowerPC: memmove default implementation cleanupAdhemerval Zanella2014-07-071-0/+3
| | | | | | | | This patch removes the powerpc specific logic in memmove and instead include default implementation with MEMCPY_OK_FOR_FWD_MEMMOVE defined. This lead in a increase performance, since the constraints to use memcpy in powerpc code are too restrictive and memcpy can be used for any forward memmove.
* PowerPC: Guard CALL_ELF check for ppc64 only in link.hAdhemerval Zanella2014-07-071-0/+5
| | | | | This patch fixes powerpc32 undef compiler warnings for _CALL_ELF, since it is defined only for powerpc64.
* Remove old stub lowlevellock.h file. It is not even useful as documentation.Roland McGrath2014-07-071-0/+2
|
* NPTL is no longer an add-on!Roland McGrath2014-07-071-0/+33
|
* Get rid of nptl/sysdeps/ entirely!Roland McGrath2014-07-071-0/+147
|
* Add comment for MEMCPY_OK_FOR_FWD_MEMMOVESiddhesh Poyarekar2014-07-051-0/+5
|
* string/memchr.c: Merge from gnulibWill Newton2014-07-041-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge most of the gnulib implementation of memchr. The changes that remain are: - copyright header - bp-sym.h removed - reg_char removed - allow MEMCHR to be redefined - non-conforming whitespace changes The merged code fixes a number of -Wundef warnings and also introduces an optimized algorithm. I haven't detected any performance difference in the new code which I believe is down to the quite specific circumstances required to hit it. However the new code is approximately half the size of the old code on AArch64 (which uses generic memchr). ChangeLog: 2014-07-04 Will Newton <will.newton@linaro.org> * string/memchr.c: Merge from gnulib. [_LIBC]: Remove conditionals. (__ptr_t): Remove define. (LONG_MAX_32_BITS): Likewise. (LONG_MAX): Likewise. (MEMCHR): Use ANSI prototype and optimize algorithm.
* ARM: Define ELF_MACHINE_NO_RELWill Newton2014-07-041-0/+4
| | | | | | | | | | Fix a -Wundef warning on ARM. ChangeLog: 2014-07-04 Will Newton <will.newton@linaro.org> * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_REL): Define.
* Fix ia64 build error in lll_futex_timed_wait_bitsetRoland McGrath2014-07-031-0/+3
|
* Fix unwind.h configure check for bare environment.Roland McGrath2014-07-031-0/+5
|
* Add missing #include in sysdeps/alpha/fpu/s_nearbyint.cRoland McGrath2014-07-031-0/+2
|
* Robustify Linux kernel headers configure checksRoland McGrath2014-07-031-0/+5
|
* S390: Quash unused variable warning due to no-op THREAD_SET_POINTER_GUARD.Roland McGrath2014-07-031-0/+3
|
* Restore subdir conditional for tst-timer dependency.Siddhesh Poyarekar2014-07-031-0/+5
|
* alpha: Remove nearbyint and nearbyintf implementationsRichard Henderson2014-07-031-0/+4
| | | | | | | | | | The original implementation was written for EV5, which does not record inexact in the status register for /SU (but no /I) insns. But EV6 does record the inexact status; the lack of /I simply means that the exception is suppressed. Adding feholdexcept becomes the bulk of the overhead, so we might as well use the default implementation.
* alpha: Implement math_opt_barrier and math_force_evalRichard Henderson2014-07-031-0/+3
|
* alpha: Fix lround implementationsRichard Henderson2014-07-031-0/+3
| | | | Use chopped rounding to add 0.5.
* alpha: Remove round and roundf implementationsRichard Henderson2014-07-031-0/+3
| | | | | | | Two bugs in these implementations: First is that the add of 0.5 was not done in chopped rounding mode (easily fixable). Second is that the method generates incorrect inexact exceptions for small integral values (not easily fixable).
* Changelog for last 8 patchesRichard Henderson2014-07-031-0/+82
|
* stdlib/tst-strtod-overflow: Bump timeout up yetMaciej W. Rozycki2014-07-031-0/+4
| | | | | | | | | This test case is very, especially on targets using soft-float or QEMU (where soft-float is used internally), and appears to be the only such outlier. Therefore rather than requiring to have TIMEOUTFACTOR set large enough globally, bump up the local scaling factor instead. * stdlib/tst-strtod-overflow.c (TIMEOUT): Bump up to 30.
* Sync up loadmsgcat.c with gettextSiddhesh Poyarekar2014-07-031-0/+12
|
* Fix Wundef warning for __STDC_VERSION__Siddhesh Poyarekar2014-07-031-0/+5
| | | | | | | | c4c4124473c187b5c4642611390897666c3d3970 added the _Noreturn macro for pre-C11 compilers, but it now throws a new Wundef warning during `make check` for __STDC_VERSION__ which gcc does not define by default. The following patch fixes this in line with other uses of __STDC_VERSION__ in the file.
* Don't use __glibc_unlikely in shared codeSiddhesh Poyarekar2014-07-031-0/+2
|