aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-07-17ARM: Fix compiler warnings from atomic.hWill Newton2-3/+8
__arch_compare_and_exchange_bool_*_int return a boolean so in the dummy implementations for 8, 16 and 64 bits return zero rather than oldval. Zero is used rather than TRUE or FALSE to avoid needing to including any headers for these dummy functions. ChangeLog: 2014-07-17 Will Newton <will.newton@linaro.org> * sysdeps/arm/bits/atomic.h (__arch_compare_and_exchange_bool_8_int): Evaluate to zero. (__arch_compare_and_exchange_bool_16_int): Likewise. (__arch_compare_and_exchange_bool_64_int): Likewise.
2014-07-17iconv/loop.c: Fix -Wundef warning with !_STRING_ARCH_unalignedWill Newton2-30/+34
If code is required to handle the unaligned case then loop.c includes itself and relies on the #undefs at the end of the file to avoid outputting two copies of LOOPFCT and gconv_btowc. However MAX_NEEDED_INPUT is tested with #if so this causes a warning. Reorder the code so that the function definitions are in an #else block to make the behaviour clearer and fix the warning. Verified that code is unchanged on x86_64 and arm. ChangeLog: 2014-07-17 Will Newton <will.newton@linaro.org> * iconv/loop.c: Move definition of LOOPFCT and gconv_btowc into an #else block.
2014-07-16ARM: Clean up EABI-related configuryRoland McGrath7-53/+74
2014-07-15Add generic/stub implementations of pthread_{kill,sigmask,sigqueue}.Roland McGrath4-0/+111
2014-07-15Separate Linuxisms from lowlevellock.h, make a generic oneRoland McGrath4-0/+414
2014-07-15Remove declarations of two nonexistent variables from nptl/pthreadP.h.Roland McGrath2-5/+5
2014-07-14Enable AVX2 optimized memset only if -mavx2 worksH.J. Lu10-14/+111
* config.h.in (HAVE_AVX2_SUPPORT): New #undef. * sysdeps/i386/configure.ac: Set HAVE_AVX2_SUPPORT and config-cflags-avx2. * sysdeps/x86_64/configure.ac: Likewise. * sysdeps/i386/configure: Regenerated. * sysdeps/x86_64/configure: Likewise. * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add memset-avx2 only if config-cflags-avx2 is yes. * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list): Tests for memset_chk and memset only if HAVE_AVX2_SUPPORT is defined. * sysdeps/x86_64/multiarch/memset.S: Define multiple versions only if HAVE_AVX2_SUPPORT is defined. * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
2014-07-14Correct DT_PPC64_NUMAlan Modra3-2/+8
[BZ #17153] * elf/elf.h (DT_PPC64_NUM): Correct value. * NEWS: Add to fixed bug list.
2014-07-14ChangeLog fixAndreas Schwab1-1/+0
2014-07-13regex: don't deref NULL upon heap allocation failureJim Meyering2-0/+12
* posix/regcomp.c: (parse_dup_op): Handle duplicate_tree failure in one more place. To trigger the segfault, configure grep -with-included-regex, build it, and run these commands: ( ulimit -v 300000; echo a|src/grep -E a+++++++++++++++++++++ )
2014-07-13m68k: update libm test ULPsAndreas Schwab2-16/+92
2014-07-11aarch64: Update libm-test-ulpsRichard Henderson2-6/+124
2014-07-11nptl: Fix abort in case of set*id failure [BZ #17135]Florian Weimer8-6/+149
If a call to the set*id functions fails in a multi-threaded program, the abort introduced in commit 13f7fe35ae2b0ea55dc4b9628763aafdc8bdc30c was triggered. We address by checking that all calls to set*id on all threads give the same result, and only abort if we see success followed by failure (or vice versa).
2014-07-10PowerPC: Fix build due missing lll_robust_trylockAdhemerval Zanella2-2/+24
Commit 887865f remove the lll_robust_trylock definition on all architectures, however for powerpc both __lll_trylock and __lll_cond_trylock were based on lll_robust_trylock definition. This patch restore it with a different name.
2014-07-10ChangeLog fixup for last commit.Roland McGrath1-0/+1
2014-07-10Get rid of lll_robust_dead.Roland McGrath17-158/+21
2014-07-10Get rid of lll_robust_trylock.Roland McGrath17-139/+25
2014-07-10manual: Update the locale documentationFlorian Weimer2-32/+127
2014-07-10_nl_find_locale: Improve handling of crafted locale names [BZ #17137]Florian Weimer6-15/+292
Prevent directory traversal in locale-related environment variables (CVE-2014-0475).
2014-07-10setlocale: Use the heap for the copy of the locale argumentFlorian Weimer2-2/+17
This avoids alloca calls with potentially large arguments.
2014-07-10Sync up error.c with gnulibSiddhesh Poyarekar2-10/+103
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
2014-07-10Fix -Wundef warning for HAVE_LOCALTIME_RSiddhesh Poyarekar2-0/+3
Define it to 0. There is a gnulib copy for this, but it is out of sync with our copy.
2014-07-10Fix Wundef warning for HAVE_STRFTIMESiddhesh Poyarekar2-0/+3
Define it to 0
2014-07-10Fix -Wundef warning for HAVE_SYS_PARAM_HSiddhesh Poyarekar2-3/+3
Include sys/param.h unconditionally
2014-07-10Fix -Wundef warning for HAVE_OBSTACKSiddhesh Poyarekar2-5/+3
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.
2014-07-10Fix crash when system has no ipv6 address [BZ #17125]Siddhesh Poyarekar3-2/+13
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.
2014-07-09Get rid of sparc specific NPTL internaltypes.h header.David S. Miller13-8/+26
* 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.
2014-07-10Add comment about SIZE initialization in xdr.cSiddhesh Poyarekar2-0/+7
2014-07-09Update sparc ULPS.David S. Miller2-6/+100
* sysdeps/sparc/fpu/libm-test-ulps: Update.
2014-07-09Fix missing newline in test outputAndreas Schwab3-2/+7
2014-07-09Update i386 libm test ULPsAndreas Schwab2-8/+36
2014-07-09Fix -Wundef warnings for SHAREDWill Newton6-5/+13
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.
2014-07-09Fix -Wmaybe-uninitialized warning in xdr.cSiddhesh Poyarekar2-1/+3
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.
2014-07-09Fix Wundef warning for __cplusplusSiddhesh Poyarekar2-1/+6
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.
2014-07-08Check value at resplen2 if it is not NULLSiddhesh Poyarekar2-4/+8
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.
2014-07-08Fix Wundef warning for ELF_MACHINE_NO_REL on i386Siddhesh Poyarekar2-0/+5
2014-07-08PowerPC: Cleanup powerpc memmoveAdhemerval Zanella6-25/+15
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.
2014-07-08PowerPC: Fix compiler warningsAdhemerval Zanella4-3/+12
This patch fixes some compiler due trailing data in #undef directives and due missing prototypes.
2014-07-08PowerPC: Add ifunc tests for memmoveAdhemerval Zanella2-0/+11
This patch add the missing ifunc tests definition for memmove ppc32 optimization patch (commit 07aedd7).
2014-07-08Fix Wundef warning with SHOJI_IS_RIGHTSiddhesh Poyarekar18-468/+37
The macro is not defined anywhere, so it looks like we're convinced that Shoji is wrong :)
2014-07-07PowerPC: Align power7 memcpy using VSX to quadwordAdhemerval Zanella3-20/+10
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).
2014-07-07PowerPC: optimized memmove for POWER7/PPC32Adhemerval Zanella5-1/+109
This patch adds a optimized memmove for power7 by using the optimized power7 memcpy for forward copying.
2014-07-07PowerPC: optimized memmove for POWER7/PPC64Adhemerval Zanella11-2/+1037
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.
2014-07-07PowerPC: memmove default implementation cleanupAdhemerval Zanella2-97/+5
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.
2014-07-07PowerPC: Guard CALL_ELF check for ppc64 only in link.hAdhemerval Zanella2-2/+9
This patch fixes powerpc32 undef compiler warnings for _CALL_ELF, since it is defined only for powerpc64.
2014-07-07Remove old stub lowlevellock.h file. It is not even useful as documentation.Roland McGrath2-83/+2
2014-07-07NPTL is no longer an add-on!Roland McGrath31-165/+62
2014-07-07Get rid of nptl/sysdeps/ entirely!Roland McGrath84-664/+528
2014-07-05Add comment for MEMCPY_OK_FOR_FWD_MEMMOVESiddhesh Poyarekar2-0/+8
2014-07-04string/memchr.c: Merge from gnulibWill Newton2-139/+101
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.