summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)Author
2009-06-16Fix permission of slave device on devpts if necessary.Ulrich Drepper
If devptr is misconfigured the slave device permission after grantpt might not be 0620. BZ #10166 (cherry picked from commit 292e3abebff9f94ca47c1a725a691cb6ed6cff5f)
2009-06-16When iterating over CPU bitmask, don't try more than CPU_SETSIZE.Ulrich Drepper
(cherry picked from commit 395a37e379bf900b2b6a25e17c44cde2d1c46c44)
2009-06-16Fix type of nd_opt_home_agent_info_preference.Arnaud Ebalard
(cherry picked from commit 7ed520bd8504700cf4aaf3b06deb10575bfc546a)
2009-06-16Fix memory leak when batch-reading large NIS password maps.Joe Landers
Not the whole was traversed in the function to free all buffers. BZ #10203 (cherry picked from commit 233a182b9ee2a48eddbb15f70af8bc24add24af3)
2009-06-16(do_test): Use de_DE.UTF-8 as locale name.Bruce Dubbs
(cherry picked from commit 4155d926336ba38428a98359bf0908453ff83625)
2009-06-16Fix computation of tzspec_len.Ulrich Drepper
Without this it should never have worked that we can use the embedded envvar in the timezone data files for dates after the last matching rule. (cherry picked from commit 6355c99740c91ed5a7fa14e378f74950e09f5f48)
2009-06-16Handle leap seconds even if no DST rule exists.Akinori Hattori
This fixes BZ #10211. (cherry picked from commit 29143408ae6d474a115768e809691635f507b1fd)
2009-06-12Remember we switched to single-request mode.Ulrich Drepper
This change prevents repetition in most later calls of the resolver in case the DNS server or the network connection is broken. (cherry picked from commit 310647e9809986986650994d036af18ca9b17fb2)
2009-06-12Remove comma at end of enum.J.H.M. Dassen
(cherry picked from commit 88ea382fda5af7717f85bb19837c9c99094f3df4)
2009-06-09(_IO_new_file_fopen): Don't prematurely stop parsing mode string.Ulrich Drepper
(cherry picked from commits 0d74e0436195a051d69e78bef10d23879788cb7e, d360a0da2b42b2b79e9ce9c2d7984c234e840b7a)
2009-06-06Terminate correct buffer.Ulrich Drepper
Little typo could cause additional characters to be printed. (cherry picked from commit fbb04b35e7997070feec74e0fd46953faef71f9e)
2009-06-05Move AC_CANONICAL_HOST before first use of $host and $build.Andreas Schwab
(cherry picked from commit c16a054d5e20e4da6ccc528b690910a777d69a8b)
2009-06-05Fix errno for boundary conditions in 128-bit long double.Ulrich Drepper
Similar to the changes which went already in for the other formats, follow POSIX rules for errno. (cherry picked from commit 7f3394bdf34e28b374e5569a7a74ddac734fb172)
2009-05-22Fix errno for IBM long double.Andreas Schwab
After the last addition to the math test suite PPC routines haven't been adjusted so far. (cherry picked from commit 38ae768d88c47dd06030104eb3376212b0d8d164)
2009-05-22Fix IA-64 memchr read-ahead.Ulrich Drepper
The latest stratcliff extension exposed a bug in the IA-64 memchr which uses non-speculative loads to prefetch data. Change the code to use speculative loads with appropriate fixup. Fixes BZ 10162. (cherry picked from commit fa64b7f76b97930cd2aaf7bfd305cac3d925cd8f)
2009-05-22Don't define __ASSUME_ACCEPT4 for IA-64.Ulrich Drepper
(cherry picked from commit 3533b1a6a6a6b7e350b7a9459f8152b1f9f0364a)
2009-05-22Remove __NR_accept4 definition.Jakub Jelinek
This definition was meant to be removed before the checkin. It was used in the development. (cherry picked from commit d14eda9310125ddf8fe66df01bbe46ab7d226a5e)
2009-05-22Correct socketcall argument for accept4.Jakub Jelinek
The header had the old name (paccept). (cherry picked from commit a2292378d0d629c26edfae6b197efbdb362a7094)
2009-05-22Fix forced loop termination in nscd database lookup.Jakub Jelinek
There are two issues with the forced loop exit in the nscd lookup: 1. the estimate of the entry size isn't pessimistic enough for all databases, resulting potentially is too early exits 2. the combination of 64-bit process and 32-bit nscd would lead to rejecting valid records in the database. (cherry picked from commit 5078fff6c4bc1c71c5d558ff7ec4775aa48b0c11)
2009-05-22Unify __WAIT_INT definition in stdlib.h and sys/wait.h.Ulrich Drepper
This fixes BZ #10159. The stdlib.h definition was out of date. (cherry picked from commit a64039b084ae3faca3336b7d95f2e40c497d20e1)
2009-05-22Move BLOCK_ALIGN* macros back.Ulrich Drepper
The move to nscd-client.h was only needed for some interim version of the patch. The final version doesn't need it. Undo the change. (cherry picked from commit fa546abe9d0346d5d87b8fe19884993408476d77)
2009-05-22Fix exit condition.Ulrich Drepper
The patch to bound the search in the nscd caches used a wrong exit condition. Fixed now. (cherry picked from commit 95410b7ba23c44f6a038285d9c38ee84129e4cd6)
2009-05-22Further robustify nscd database lookup.Ulrich Drepper
We can compute an absolute maximum for the number of elements which can fit into the currently mapped database. Stop after that many iterations. (cherry picked from commit 831a40494d44045c0caaf8085ab1d35c0da23140)
2009-05-22Robustify libc-side nscd database reader.Jakub Jelinek
The nscd database mapped in processes can change at any time. We have to be more vigilant when it comes to using that memory. Test the data entries are valid in their entire size, don't read data again from memory once we verified it, and make sure the trailing pointer is not going off the deep end. (cherry picked from commit cfe1fc1013d0e7e4863c974fa0e78891cc0a2ed2)
2009-05-22Avoid double definition of catomic_compare_and_exchange_val_acq.Jakub Jelinek
(cherry picked from commit 3b1b533bc3239ef6df1e40e0088e7270ac060be6)
2009-05-22Don't try to cleanup libselinux and libaudit.Jakub Jelinek
Because we are not shutting down the other threads first another thread might work on a query before the process shuts down. In this case the now uninitialized libselinux and libaudit might be used. Just don't free the resources. It's not necessary anyway because the process is about to terminate. (cherry picked from commit 9e471dad8e173806cbbfb704875d5ae40e36fa34) (fixed ChangeLog entry by pasky)
2009-05-10Update from trunk.Ulrich Drepper
2009-05-10Updated to fedora-glibc-20090510T1842cvs/fedora-glibc-2_10_1-1Jakub Jelinek
2009-05-09Updated to fedora-glibc-20090509T2200cvs/fedora-glibc-2_10-2Jakub Jelinek
2009-05-09* Makeconfig: Undo last change. Add asflags-cpu to ASFLAGS in theglibc-2.10cvs/glibc-2_10-basecvs/glibc-2_10cvs/fedora-glibc-20090509T2200Ulrich Drepper
same place we add ASFLAGS-config.
2009-05-09Updated to fedora-glibc-20090509T1828cvs/fedora-glibc-2_10-1Jakub Jelinek
2009-05-09* version.h (VERSION): Bump for 2.10 release.cvs/fedora-glibc-20090509T1828Ulrich Drepper
* include/features.h (__GLIBC_MINOR__): Bump to 10.
2009-05-09[BZ #10128]Ulrich Drepper
2009-05-05 Aurelien Jarno <aurelien@aurel32.net> [BZ #10128] * resolv/res_query.c (__libc_res_nquery): If one query returns NOTIMP or FORMERR and the other NOERROR, don't raise an error.
2009-05-09[BZ #10118]Ulrich Drepper
2009-05-06 Ryan S. Arnold <rsa@us.ibm.com> [BZ #10118] * Makeconfig (+asflags): New variable based upon ASFLAG or asflags-cpu. (ASFLAGS): Add override to set ASFLAGS to +asflags. * config.make.in (asflags-cpu): Add variable based upon @libc_cv_cc_submachine@ to propagate -mcpu=CPU from --with-cpu=CPU to the assembler. * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/setcontext.S: Remove unneeded file now that the assembler emits _ARCH_PWR6 and recognizes power6 instruction set due to passing -mcpu=power6 from --with-cpu=power6 when compiling .S files. * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/swapcontext.S: Likewise. * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/setcontext.S: Likewise. * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/swapcontext.S: Likewise.
2009-05-09* string/stratcliff.c (do_test): Test for zero lengthUlrich Drepper
STRNLEN, MEMCHR, STRNCPY, STPNCPY, MEMCPY, MEMPCPY and memccpy at the end of the page.
2009-05-09* sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_AT_RANDOM.Ulrich Drepper
2009-05-09* sysdeps/x86_64/memchr.S: Handle invalid buffer pointers whenUlrich Drepper
count is zero.
2009-05-08* po/da.po: Update from translation team.Ulrich Drepper
2009-05-05 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/sys/personality.h: Add ADDR_COMPAT_LAYOUT and READ_IMPLIES_EXEC. 2009-05-04 Ulrich Drepper <drepper@redhat.com> * po/da.po: Update from translation team.
2009-05-07* io/sys/stat.h (fstatat64): Guard prototype with __USE_LARGEFILE64,Ulrich Drepper
guard __extern_inline wrapper with __USE_ATFILE instead of __USE_GNU.
2009-04-29* sysdeps/unix/sysv/linux/ifaddrs.c: Revert unintended 2008-08-12 comment ↵Jakub Jelinek
change. 2009-04-29 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/ifaddrs.c: Revert unintended 2008-08-12 comment change.
2009-04-27Updated to fedora-glibc-20090427T1419cvs/fedora-glibc-2_9_90-22Jakub Jelinek
2009-04-27* locale/programs/locarchive.c (create_archive): Add MAP_PRIVATEcvs/fedora-glibc-20090427T1419Ulrich Drepper
to MAP_ANON in PROT_NONE mmap64 call. (open_archive): Likewise. (file_data_available_p): Use mmap64 instead of mremap. (enlarge_archive): Likewise. Update head if ah->addr changed. Attempt to reserve address space after mmap64 region.
2009-04-27* sysdeps/ieee754/dbl-64/s_expm1.c: Set errno for overflow.Ulrich Drepper
* sysdeps/ieee754/flt-32/s_expm1f.c: Likewise. * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
2009-04-27* sysdeps/ieee754/k_standard.c (__kernel_standard): Pole errors inUlrich Drepper
atanh should set ERANGE.
2009-04-27* inet/inet6_option.c (option_alloc): Add temporary variable toUlrich Drepper
2009-04-27[BZ #10087]Ulrich Drepper
* elf/dl-runtime.c (_dl_fixup): Use DL_FIXUP_VALUE_ADDR to access result of lookup to make call to implement STT_GNU_IFUNC. (_dl_profile_fixup): Likewise. Patch by H.J. Lu <hjl.tools@gmail.com>.
2009-04-26* nscd/connections.c (send_ro_fd): Define temporary variable to avoidUlrich Drepper
warning. * elf/sprof.c: Likewise.
2009-04-26* sysdeps/unix/sysv/linux/dl-osinfo.h (dl_fatal): Remove inlineUlrich Drepper
from definition. * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Don't define label if it is not used. * elf/dl-profile.c (_dl_start_profile): Define real-type variant of gmon_hist_hdr and gmon_hdr structures and use them. * elf/dl-load.c (open_verify): Add temporary variable to avoid warning. * nscd/nscd_helper.c (get_mapping): Avoid casts to avoid warnings. * sunrpc/clnt_raw.c (clntraw_private_s): Use union in definition to avoid cast. * inet/rexec.c (rexec_af): Make sa2 a union to avoid warnings. * inet/rcmd.c (rcmd_af): Make from a union of the various needed types to avoid warnings. (iruserok_af): Use ss_family instead of casts. * gmon/gmon.c (write_hist): Define real-type variant of gmon_hist_hdr structure and use it. (write_gmon): Likewise for gmon_hdr. * sysdeps/unix/sysv/linux/readv.c: Avoid declaration of replacement function if we are not going to define it. * sysdeps/unix/sysv/linux/writev.c: Likewise. * inet/inet6_option.c (optin_alloc): Add temporary variable to avoid warning. * libio/strfile.h (struct _IO_streambuf): Use correct type and name of VTable element. * libio/iovsprintf.c: Avoid casts to avoid warnings. * libio/iovsscanf.c: Likewise. * libio/vasprintf.c: Likewise. * libio/vsnprintf.c: Likewise. * stdio-common/isoc99_vsscanf.c: Likewise. * stdlib/strfmon_l.c: Likewise. * debug/vasprintf_chk.c: Likewise. * debug/vsnprintf_chk.c: Likewise. * debug/vsprintf_chk.c: Likewise.
2009-04-26* nss/nsswitch.c (__nss_lookup_function): En/Decrypt cachedUlrich Drepper
function pointers.
2009-04-26* sysdeps/ieee754/dbl-64/s_tan.c (tan): Fix -Wsequence-point warnings.Ulrich Drepper