about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* * locales/dz_BT: Fix representation of data.Ulrich Drepper2007-11-063-17/+23
|
* * nscd/selinux.c (nscd_request_avc_has_perm): When compiled withUlrich Drepper2007-11-066-0/+286
| | | | | old headers, don't call avc_has_perm if we don't have the permission information.
* * elf/rtld.c (dl_main): Use the page size to find the map start.Ulrich Drepper2007-11-064-3/+12
|
* * time/tzfile.c (__tzfile_read): Fix check for version 0 data files.Ulrich Drepper2007-11-066-8/+18
| | | | Patch by Szymon Siwek <sls@poczta.wp.pl>.
* * nscd/aicache.c (addhstaiX): Check herrno after IPv4 lookup onlyUlrich Drepper2007-11-068-108/+182
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | when the lookup call failed. * nscd/nscd.h (struct database_dyn): Rename prunelock to prune_lock. Add prune_cond and wakeup_time. (CACHE_PRUNE_INTERNAL): Define. Update declarations of prune_cache and setup_thread. * nscd/connections.c (dbs): Update initializers. (CACHE_PRUNE_INTERNAL): Moved to nscd.h. (nscd_init): Default number of threads is now 4. (invalidate_cache): Take lock before calling prune_cache. (handle_request): If SELinux forbids the request, say so. (readylist_cond): Use static initializer. (nscd_run_prune): New function. Used only by pruning threads. (nscd_run_worder): Renamed from nscd_run. Remove support for pruning here. (fd_ready): Update nscd_run reference. (start_threads): No need to initialize readylist_cond. Start pruning threads separately. * nscd/nscd_setup_thread.c: Change return value type to int and always return 0. * sysdeps/unix/sysv/linux/nscd_setup_thread.c: Change return value type to int and return nonzero value if we can use the TID address hack. * nscd/cache.c (cache_add): If next wakeup time of cleanup thread for the database is later than the new entry's timeout, update the wakeup time and wake the cleanup thread. (prune_cache): Return seconds the next entry in the database is still valid. Remove locking for pruning here. * nscd/nscd.conf: Document default number of threads.
* * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Make sureUlrich Drepper2007-10-312-26/+31
| | | | | stack is properly aligned for the target function. Correct unwind info.
* * elf/rtld.c (dl_main): Initialize stack and pointer guard earlyUlrich Drepper2007-10-312-23/+44
| | | | when using auditing libraries.
* * resolv/Versions [libresolv] (GLIBC_PRIVATE): AddUlrich Drepper2007-10-303-4/+31
| | | | | | | | _nss_dns_getnetbyaddr2_r. * resolv/nss_dns/dns-host.c: Define _nss_dns_getnetbyaddr2_r. Pass extra parameter to getanswer_r. (_nss_dns_getnetbyaddr_r): Now a wrapper around _nss_dns_getnetbyaddr2_r.
* * nscd/Makefile (nscd-modules): Replace gethstbynm2_r withUlrich Drepper2007-10-3023-97/+252
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gethstbynm3_r. * nscd/gethstbynm2_r.c: Remove. * nscd/gethstbynm3_r.c: New file. * nscd/aicache.c (addhstaiX): Use __gethostbyaddr2_r instead of __gethostbyaddr_r. * nscd/gethstbyad_r.c: Generate __gethostbyaddr2_r function. Define __gethostbyaddr_r compatibility wrapper. * nscd/hstcache.c (cache_addhst): Add ttl parameter. Use it when determining timeout of entry. (lookup): Take new parameter and pass it to __gethostbyname3_r and __gethostbyaddr2_r. (addhstbyX): Pass reference to variable for TTL to lookup and cache_addhst. * nss/Versions [glibc] (GLIBC_PRIVATE): Export __nss_passwd_lookup2, __nss_group_lookup2, __nss_hosts_lookup2, __nss_services_lookup2, and __nss_next2. Remove __nss_services_lookup. * nss/XXX-lookup.c: Name function now *_lookup2. Add new parameter. Add compat wrapper. * nss/getXXbyYY_r.c: Changes to call new *_lookup2 functions and __nss_next2. * nss/getXXent_r.c: Likewise. * nss/getnssent_r.c: Likewise. * nss/nsswitch.c (__nss_lookup): Add new parameter. If first function does not exist in module, try the optional second name. (__nss_next2): New function. (__nss_next): Now wrapper around __nss_next2. * nss/nsswitch.h: Adjust __nss_lookup prototype. Declare __nss_next2. Adjust definition of db_lookup_function type. * nss/service-lookup.c: Define NO_COMPAT. * include/netdb.h: Declare __gethostbyaddr2_r and __gethostbyname3_r. * inet/ether_hton.c: Use __nss_next2 instead of __nss_next. * inet/ether_ntoh.c: Likewise. * sunrpc/netname.c: Likewise. * sunrpc/publickey.c: Likewise. * inet/getnetgrent.c: Likewise. Adjust calls to __nss_lookup. * inet/gethstbyad_r.c (DB_LOOKUP_FCT): Change to __nss_hosts_lookup2. * inet/gethstbynm2_r.c (DB_LOOKUP_FCT): Likewise. * inet/gethstbynm_r.c (DB_LOOKUP_FCT): Likewise. * inet/gethstent_r.c (DB_LOOKUP_FCT): Likewise. * nscd/aicache.c (addhstaiX): Fix default TTL handling. * inet/getnetgrent.c (setup): Encrypt static pointer.
* Declare __gethostbyaddr2_r and __gethostbyname3_r.Ulrich Drepper2007-10-301-0/+15
|
* Update to latest upstream versionAndreas Jaeger2007-10-291-271/+1712
|
* [BZ #5204]Ulrich Drepper2007-10-288-13/+94
| | | | | * crypt/sha256c-test.c: Define TIMEOUT to 6 for ancient hardware. * crypt/sha512c-test.c: Likewise.
* * stdio-common/Makefile (tests): Add bug20.Ulrich Drepper2007-10-283-1/+35
| | | | * stdio-common/bug20.c: New file.
* [BZ #5225]Ulrich Drepper2007-10-284-8/+24
| | | | | * stdio-common/vfscanf.c (_IO_vfwscanf): Don't misuse wp pointer to keep track of end of %[ format string element.
* [BZ #5222]Ulrich Drepper2007-10-2813-32/+35
| | | | | | | 2007-10-28 Ulrich Drepper <drepper@redhat.com> [BZ #5222] * elf/dl-load.c (_dl_rtld_di_serinfo): Correct handling of short path elements in counting mode.
* [BZ #5040]Ulrich Drepper2007-10-283-1/+16
| | | | * sysdeps/unix/sysv/linux/sys/epoll.h (EPOLLRDHUP): Add value.
* [BZ #3112]Ulrich Drepper2007-10-283-13/+55
| | | | | | | | | 2007-10-27 Andreas Jaeger <aj@suse.de> [BZ #3112] * sysdeps/ia64/backtrace.c (init): Free shared library if incorrect. (__cleanup): Free shared library when exiting. * sysdeps/i386/backtrace.c (init): Free shared library if incorrect. (__cleanup): Free shared library when exiting.
* [BZ #2549]Ulrich Drepper2007-10-282-5/+24
| | | | | | | 2006-04-14 H.J. Lu <hongjiu.lu@intel.com> [BZ #2549] * math/libm-test.inc (check_float_internal): Support denormalized return.
* [BZ #5208]Ulrich Drepper2007-10-286-8/+54
| | | | | | | | 2007-10-23 Andreas Jaeger <aj@suse.de> [BZ #5208] * sysdeps/unix/sysv/linux/readahead.c (__readahead): Use __LONG_LONG_PAIR to handle little endian byte order. Suggested by abhishekrai@google.com
* * malloc/arena.c [!NO_THREADS]: Use ATFORK_MEM if defined.Ulrich Drepper2007-10-282-0/+8
|
* * nscd/cache.c (prune_cache): Move test for modified file outsideUlrich Drepper2007-10-261-0/+5
| | | | of locking.
* (prune_cache): Move test for modified file outside of locking.Ulrich Drepper2007-10-261-16/+22
|
* * manual/texinfo.tex: Update to latest version.Andreas Jaeger2007-10-226-373/+817
| | | | | | | | | | | | | | | | | | | | | | | | | * manual/sysinfo.texi (System Parameters): Fix Formatting. * manual/arith.texi (Status bit operations): Fix formatting. * manual/errno.texi (Error Messages): Fix formatting. * manual/sysinfo.texi (System Parameters): Fix formatting. * manual/libc.texinfo: Update VERSION and UPDATED. 2007-10-21 Andreas Jaeger <aj@suse.de> * manual/texinfo.tex: Update to latest version. * manual/sysinfo.texi (System Parameters): Fix Formatting. * manual/arith.texi (Status bit operations): Fix formatting. * manual/errno.texi (Error Messages): Fix formatting. * manual/sysinfo.texi (System Parameters): Fix formatting. * manual/libc.texinfo: Update VERSION and UPDATED.
* * elf/Makefile ($(objpfx)ld.so): Use $(AWK).Roland McGrath2007-10-201-0/+4
|
* 2007-10-19 Roland McGrath <roland@redhat.com>Roland McGrath2007-10-201-1/+1
| | | | | * elf/Makefile ($(objpfx)ld.so): Use $(AWK). * scripts/check-errnos.sh: Likewise.
* 2007-10-06 David S. Miller <davem@davemloft.net>Jakub Jelinek2007-10-1911-9/+780
| | | | | | | | | | | | | | | | | | | | | | | | | | | * configure.in: Add sparcv9v2 and sparc64v2. * scripts/config.sub: Likewise. * configure: Regenerate. * elf/elf.h (HWCAP_SPARC_N2): New. * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Bump to 8. * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add 'v9v2'. (HWCAP_IMPORTANT): Add HWCAP_SPARC_N2. * sysdeps/sparc/sparc32/sparcv9/sparcv9v2/memcpy.S: New file. * sysdeps/sparc/sparc32/sparcv9/sparcv9v2/memset.S: New file. * sysdeps/sparc/sparc64/sparcv9v2/memcpy.S: New file. * sysdeps/sparc/sparc64/sparcv9v2/memset.S: New file. 2007-10-06 David S. Miller <davem@davemloft.net> * configure.in: Add sparcv9v2 and sparc64v2. * scripts/config.sub: Likewise. * configure: Regenerate. * elf/elf.h (HWCAP_SPARC_N2): New. * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Bump to 8. * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add 'v9v2'. (HWCAP_IMPORTANT): Add HWCAP_SPARC_N2. * sysdeps/sparc/sparc32/sparcv9/sparcv9v2/memcpy.S: New file. * sysdeps/sparc/sparc32/sparcv9/sparcv9v2/memset.S: New file. * sysdeps/sparc/sparc64/sparcv9v2/memcpy.S: New file. * sysdeps/sparc/sparc64/sparcv9v2/memset.S: New file.
* * sunrpc/clnt_udp.c (clntudp_call): Don't block in recvfrom callUlrich Drepper2007-10-181-0/+6
| | | | | even if the poll result indicates there is data to read. Patch by Jeff Moyer <jmoyer@redhat.com>.
* (clntudp_call): Don't block in recvfrom call even if the poll result ↵Ulrich Drepper2007-10-181-1/+1
| | | | indicates there is data to read.
* * elf/elf.h (NT_PPC_VMX): New macro.Roland McGrath2007-10-181-1/+4
| | | | 2007-10-17 Ulrich Drepper <drepper@redhat.com>
* 2007-10-18 Roland McGrath <roland@redhat.com>Roland McGrath2007-10-181-0/+1
| | | | * elf/elf.h (NT_PPC_VMX): New macro.
* Start 2.8 development.Ulrich Drepper2007-10-183-4/+12
| | | | | | | 2007-10-17 Ulrich Drepper <drepper@redhat.com> * version.h (VERSION): Set to 2.7.90.
* * sysdeps/x86_64/memset.S (bzero): Renamed to __bzero. Add glibc-2.7 cvs/glibc-2_7-base cvs/glibc-2_7Jakub Jelinek2007-10-182-2/+8
| | | | | | | | weak_alias. 2007-10-17 Jakub Jelinek <jakub@redhat.com> * sysdeps/x86_64/memset.S (bzero): Renamed to __bzero. Add weak_alias.
* * sysdeps/mach/hurd/bits/fcntl.h [__USE_GNU__] (F_DUPFD_CLOEXEC): New.Roland McGrath2007-10-171-0/+5
| | | | * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Implement it.
* 2007-10-17 Roland McGrath <roland@frob.com>Roland McGrath2007-10-172-3/+14
| | | | | * sysdeps/mach/hurd/bits/fcntl.h [__USE_GNU__] (F_DUPFD_CLOEXEC): New. * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Implement it.
* Remade for stable-2.7 cvs/fedora-glibc-20071017T2029Ulrich Drepper2007-10-171-2/+2
|
* * include/features.h (__GLIBC_MINOR__): Bump to 7.Ulrich Drepper2007-10-172-1/+2
|
* * version.h (VERSION): Bump to 2.7.Ulrich Drepper2007-10-172-2/+4
|
* [BZ #5186]Ulrich Drepper2007-10-172-4/+8
| | | | | | * time/tzset.c (__tz_convert): Don't force testing for a change of TZ if not called from localtime. But then also see whether the file changed, in case __use_tzfile is set.
* * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define F_DUPFD_CLOEXEC. cvs/fedora-glibc-20071017T2007Ulrich Drepper2007-10-179-0/+27
| | | | | | | | | | * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise. * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
* * sysdeps/posix/getaddrinfo.c (getaddrinfo): When sorting addressesUlrich Drepper2007-10-172-6/+27
| | | | | and admin selects to be able to replace the gai.conf file, lock data structures around the qsort call.
* * sysdeps/x86_64/cacheinfo.c: Comment out code added in support ofUlrich Drepper2007-10-173-21/+24
| | | | | | new memset. too high for the improvements. Implement bzero unconditionally for use in libc.
* * sysdeps/x86_64/memset.S: Revert to old version for now. The cost isUlrich Drepper2007-10-172-1231/+112
| | | | | | | too high for the improvements. 2007-10-17 Ulrich Drepper <drepper@redhat.com> Jakub Jelinek <jakub@redhat.com>
* * time/tzfile.c (__tzfile_read): Read POSIX TZ string if availableUlrich Drepper2007-10-171-1/+14
| | | | | | | | | | | | | even when time_t is 32-bit. (__tzfile_compute): Override POSIX TZ string STD/DST zone names if timezone data read by __tzfile_default. Ensure __tzname[0] is always set after the search. * time/tzfile.c (__tzfile_compute): For use_last case set i to num_transition rather than num_transitions - 1. 2007-10-16 Jakub Jelinek <jakub@redhat.com>
* (__tzfile_read): Read POSIX TZ string if available even when time_t is ↵Ulrich Drepper2007-10-171-6/+57
| | | | 32-bit. (__tzfile_compute): Override POSIX TZ string STD/DST zone names if timezone data read by __tzfile_default. Ensure __tzname[0] is always set after the search.
* * sysdeps/unix/sysv/linux/i386/i486/sem_post.S (__old_sem_post): New Jakub Jelinek2007-10-172-1/+25
| | | | | | | | routine instead of an alias to __new_sem_post. 2007-10-17 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/i386/i486/sem_post.S (__old_sem_post): New routine instead of an alias to __new_sem_post.
* Help the compiler recognize unreachable code on 32-bit machines.Ulrich Drepper2007-10-163-7/+12
| | | | | | | 2007-10-16 Ulrich Drepper <drepper@redhat.com> * time/tzfile.c (__tzfile_read): Help the compiler recognize unreachable code on 32-bit machines.
* [BZ #5184]Ulrich Drepper2007-10-162-30/+49
| | | | | | | | | | | | | Include stdbool.h. (my_strftime): New wrapper, old function renamed to... (__strftime_internal): ... new function. Add tzset_called argument, pass it down to recursive calls, don't call tzset () if already true, set to true after call to tzset (). 2007-10-16 Jakub Jelinek <jakub@redhat.com> [BZ #5184] * time/strftime_l.c: Include stdbool.h. (my_strftime): New wrapper, old function renamed to... (__strftime_internal): ... new function. Add tzset_called argument, pass it down to recursive calls, don't call tzset () if already true, set to true after call to tzset ().
* (__tzfile_read): Take extra memory requested by caller into account when ↵Ulrich Drepper2007-10-164-49/+48
| | | | | | | | | copying TZ string. 2007-10-16 Ulrich Drepper <drepper@redhat.com> * time/tzfile.c (__tzfile_read): Take extra memory requested by caller into account when copying TZ string.
* (__tzfile_compute): For use_last case set i to num_transition rather than ↵Ulrich Drepper2007-10-161-2/+3
| | | | num_transitions - 1.
* * sysdeps/x86_64/memset.S (memset): Fix sse2_nt_move Jakub Jelinek2007-10-162-1/+4
| | | | | | PIC indirect jump. * sysdeps/x86_64/memset.S (memset): Fix sse2_nt_move PIC indirect jump.