summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv
AgeCommit message (Collapse)Author
2010-04-062.11.1-5fedora/glibc-2.11.1-5Tom "spot" Callaway
2009-11-30Merge branch 'release/2.11/master' into fedora/2.11/masterAndreas Schwab
2009-11-25Re-install F_[GS]ETOWN_EX changesAndreas Schwab
2009-11-25Avoid local PLTs.Ulrich Drepper
(cherry picked from commit 0f622686af3ae5a8f03dae886b08c260b38bda16)
2009-11-25Prevent unintended file desriptor leak in grantpt.Andreas Schwab
The pt_chown program is completely transparently called. It might not be able to live with the various file descriptors the program has open at the time of the call (e.g., under SELinux). Close all but the needed descriptor and connect stdin, stdout, and stderr with /dev/null. pt_chown shouldn't print anything when called to do real work. (cherry picked from commit 139ee080b6b428240bf49f3e6361f3ac729f891a)
2009-11-19Fix sync_file_range on ppc/ppc64.Jakub Jelinek
I've noticed that sync_file_range is a stub on ppc/ppc64. The kernel on these arches provides sync_file_range2 syscall with swapped parameters. The following completely untested patch ought to fix this. (cherry picked from commit 8ad81b316bc158746aee18aa7d7df44d3eb61871)
2009-11-19Avoid warnings in CPU_* macros when using const bitsets.Ulrich Drepper
(cherry picked from commit 03ebadd9eaa4663f58bd3fa6fe8283f255925632)
2009-11-18Add missing Linux MADV_* definitions.Ulrich Drepper
(cherry picked from commit 2866eeb1b70c989591293d37ae292e71def16775)
2009-11-18Fix building on x86 with older kernel headers.Mike Frsyinger
Fix building on x86 when older linux headers lack __NR_fallocate define. (cherry picked from commit f9a7bd536e0b1693db32e1330bbd96108ca63c42)
2009-11-14Fix F_SETOWN_EX and F_GETOWN_EX definitions.Ulrich Drepper
(cherry picked from commit 8964681064db9f13ee4ec7f46c53f04d66a04b99)
2009-11-06Correct readahead syscall wrapper on powerpc32.Andreas Schwab
Due to alignment of 64bit parameters there is a dummy second argument. But other than that the syscall arguments are directly mapped to the function arguments.
2009-11-06Fix preadv, pwritev and fallocate for -D_FILE_OFFSET_BITS=64.Jakub Jelinek
As reported in http://bugzilla.redhat.com/533063 , preadv/pwritev prototypes are wrong on 32-bit arches with -D_FILE_OFFSET_BITS=64 and as I've just found, fallocate is wrong too. The problem is that only off_t is remapped to the 64-bit type transparently, __off_t is not.
2009-11-05Fix preadv, pwritev and fallocate for -D_FILE_OFFSET_BITS=64Jakub Jelinek
2009-11-05Correct readahead syscall wrapper on powerpc32Andreas Schwab
Due to alignment of 64bit parameters there is a dummy second argument. But other than that the syscall arguments are directly mapped to the function arguments.
2009-10-30Revert "Fix F_GETOWN on some Linux archs." and "Define F_OWNER_* and ↵Andreas Schwab
f_owner_ex for Linux targets." They depend on F_GETOWN_EX/F_SETOWN_EX.
2009-10-30Merge remote branch 'origin/master' into fedora/masterAndreas Schwab
2009-10-30Fix typo in readlinkatAndreas Schwab
2009-10-29Fix IA-64 and S390 sigevent definitions.Ulrich Drepper
2009-10-29Fix compat handling in *at functions.Ulrich Drepper
When passed an empty string for the filename, the compat code using /proc in all *at functions did the wrong thing.
2009-10-29Fix errno handling in posix_openpt.Andreas Schwab
The implementation of posix_openpt on Linux can fail in a few extra ways if the appropriate pseudo filesystems are not mounted etc. In some of these cases we have to explicitly set errno.
2009-10-29Fix getttyname on Linux when called for different devices.Ulrich Drepper
If a second call to ttyname is not for the same type of device (e.g., serial vs ptty) the prefix of the buffer was wrong. Don't rely on the previous content, always reinitialize it.
2009-10-29Fix F_GETOWN on some Linux archs.Ulrich Drepper
The syscall conventions on some Linux archs prevented F_GETOWN from working correctly in some situations. This can be rectified when using the new F_GETOWN_EX command.
2009-10-29Define F_OWNER_* and f_owner_ex for Linux targets.Ulrich Drepper
2009-10-19Merge remote branch 'origin/master' into fedora/masterAndreas Schwab
2009-10-14Add ____longjmp_chk for sparcDavid S. Miller
tst-longjmp_chk passes, tst-longjmp_chk2 fails but that is because of some limitations of kernel signal delivery on sparc that I need to fix, it has nothing to do with the longjmp_chk implementation. (The problem with tst-longjmp_chk2 is that it tries to do a stack fault SIGSEGV within a stack fault SIGSEGV , and the Linux kernel will refuse to setup the signal stack and deliver the signal if the register windows can't be written out to the stack first)
2009-10-12Revert "Define F_SETOWN_EX and F_GETOWN_EX in Linux headers."Andreas Schwab
The values of F_SETOWN_EX and F_GETOWN_EX conflict with F_GETLK64 and F_SETLK64 and are not finalized yet.
2009-10-12Merge remote branch 'origin/master' into fedora/masterAndreas Schwab
2009-10-01Define F_SETOWN_EX and F_GETOWN_EX in Linux headers.Ulrich Drepper
2009-09-21Merge remote branch 'origin/master' into fedora/masterAndreas Schwab
2009-09-15configure tweaks, support $libc_add_on_config_subdirsRoland McGrath
2009-09-14Merge remote branch 'origin/master' into fedora/masterAndreas Schwab
2009-09-08Fix __longjmp_chk on s390/s390x.Jakub Jelinek
s390/s390x hasn't been updated to handle alternate stacks properly.
2009-08-24Merge commit 'origin/master' into fedora/masterAndreas Schwab
Conflicts: sysdeps/powerpc/powerpc64/____longjmp_chk.S sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S
2009-08-22Add sigstack handling to Linux ____longjmp_chk on powerpc.Andreas Schwab
2009-08-03Merge commit 'origin/master' into fedora/masterAndreas Schwab
2009-08-02Remove leftover code from Linux/x86 ____longjmp_chk.Ulrich Drepper
2009-08-01Remove last trace of bounded pointer handling from ____longjmp_chk on x86-64.Ulrich Drepper
2009-07-31Optimize x86 and x86-64 ____longjmp_chk for Linux.Ulrich Drepper
2009-07-31Fix ____longjmp_chk on x86-64.Ulrich Drepper
After a recent change to fix CFI in ____longjmp_chk the test of the ss_flags used the wrong memory location.
2009-07-31Support multiarch for i686.H.J. Lu
This patch adds multiarch support when configured for i686. I modified some x86-64 functions to support 32bit. I will contribute 32bit SSE string and memory functions later.
2009-07-30Whitespace cleanup.Ulrich Drepper
2009-07-30Add sigstack handling to Linux ____longjmp_chk on i386.Ulrich Drepper
All other i386 ports need to provide their own versions.
2009-07-30____longjmp_chk is now OS-specific.Ulrich Drepper
We use sigaltstack internally which on some systems is a syscall and should be used as such. Move the x86-64 version to the Linux specific directory and create in its place a file which always causes compile errors.
2009-07-27Merge commit 'origin/master' into fedora/masterAndreas Schwab
2009-07-26Compatibility of signalfd/eventfd with older kernels.Ulrich Drepper
2009-07-24Don't automatically use /lib/modules/* headers.Ulrich Drepper
Ever since the /usr/include/linux headers got cleaned up this isn't necessary. Meanwhile everybody should have these cleanups.
2009-07-23Add more cache descriptors for L3 caches on x86 and x86-64.Ulrich Drepper
The most recent AP 485 describes a few more cache descriptors for L3 caches with 24-way associativity.
2009-07-23Merge commit 'origin/master' into fedora/masterAndreas Schwab
Conflicts: ChangeLog
2009-07-23Preserve stack alignment in i386 makecontext.Ulrich Drepper
2009-07-20Merge commit 'origin/master' into fedora/masterAndreas Schwab