* Makeconfig: Undo last change. Add asflags-cpu to ASFLAGS in the
[glibc/pb-stable.git] / ChangeLog
blob2eb3c61f2a0d22d615143d0bc4e15d74f09ece74
1 2009-05-09  Ulrich Drepper  <drepper@redhat.com>
3         * version.h (VERSION): Bump for 2.10 release.
4         * include/features.h (__GLIBC_MINOR__): Bump to 10.
6         * Makeconfig: Undo last change.  Add asflags-cpu to ASFLAGS in the
7         same place we add ASFLAGS-config.
9 2009-05-05  Aurelien Jarno  <aurelien@aurel32.net>
11         [BZ #10128]
12         * resolv/res_query.c (__libc_res_nquery): If one query returns NOTIMP
13         or FORMERR and the other NOERROR, don't raise an error.
15 2009-05-06  Ryan S. Arnold  <rsa@us.ibm.com>
17         [BZ #10118]
18         * Makeconfig (+asflags): New variable based upon ASFLAG or
19         asflags-cpu.
20         (ASFLAGS): Add override to set ASFLAGS to +asflags.
21         * config.make.in (asflags-cpu): Add variable based upon
22         @libc_cv_cc_submachine@ to propagate -mcpu=CPU from --with-cpu=CPU to
23         the assembler.
24         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/setcontext.S:
25         Remove unneeded file now that the assembler emits _ARCH_PWR6 and
26         recognizes power6 instruction set due to passing -mcpu=power6 from
27         --with-cpu=power6 when compiling .S files.
28         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/swapcontext.S:
29         Likewise.
30         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/setcontext.S:
31         Likewise.
32         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/swapcontext.S:
33         Likewise.
35 2009-05-09  Jakub Jelinek  <jakub@redhat.com>
37         * string/stratcliff.c (do_test): Test for zero length
38         STRNLEN, MEMCHR, STRNCPY, STPNCPY, MEMCPY, MEMPCPY and memccpy
39         at the end of the page.
41 2009-05-08  Ulrich Drepper  <drepper@redhat.com>
43         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_AT_RANDOM.
45         * sysdeps/x86_64/memchr.S: Handle invalid buffer pointers when
46         count is zero.
48         * po/da.po: Update from translation team.
50 2009-05-05  Jakub Jelinek  <jakub@redhat.com>
52         * io/sys/stat.h (fstatat64): Guard prototype with __USE_LARGEFILE64,
53         guard __extern_inline wrapper with __USE_ATFILE instead of __USE_GNU.
55 2009-05-05  Ulrich Drepper  <drepper@redhat.com>
57         * sysdeps/unix/sysv/linux/sys/personality.h: Add ADDR_COMPAT_LAYOUT
58         and READ_IMPLIES_EXEC.
60 2009-05-04  Ulrich Drepper  <drepper@redhat.com>
62         * po/da.po: Update from translation team.
64 2009-04-29  Jakub Jelinek  <jakub@redhat.com>
66         * sysdeps/unix/sysv/linux/ifaddrs.c: Revert unintended 2008-08-12
67         comment change.
69 2009-04-27  Jakub Jelinek  <jakub@redhat.com>
71         * locale/programs/locarchive.c (create_archive): Add MAP_PRIVATE
72         to MAP_ANON in PROT_NONE mmap64 call.
73         (open_archive): Likewise.
74         (file_data_available_p): Use mmap64 instead of mremap.
75         (enlarge_archive): Likewise.  Update head if ah->addr changed.
76         Attempt to reserve address space after mmap64 region.
78 2009-04-26  Ulrich Drepper  <drepper@redhat.com>
80         * sysdeps/ieee754/dbl-64/s_expm1.c: Set errno for overflow.
81         * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
82         * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
84         * sysdeps/ieee754/k_standard.c (__kernel_standard): Pole errors in
85         atanh should set ERANGE.
87         [BZ #10087]
88         * elf/dl-runtime.c (_dl_fixup): Use DL_FIXUP_VALUE_ADDR to access
89         result of lookup to make call to implement STT_GNU_IFUNC.
90         (_dl_profile_fixup): Likewise.
91         Patch by H.J. Lu <hjl.tools@gmail.com>.
93         * nscd/connections.c (send_ro_fd): Define temporary variable to avoid
94         warning.
96         * sysdeps/unix/sysv/linux/dl-osinfo.h (dl_fatal): Remove inline
97         from definition.
99         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Don't define
100         label if it is not used.
102         * elf/dl-profile.c (_dl_start_profile): Define real-type variant
103         of gmon_hist_hdr and gmon_hdr structures and use them.
104         * elf/sprof.c: Likewise.
106         * elf/dl-load.c (open_verify): Add temporary variable to avoid
107         warning.
109         * nscd/nscd_helper.c (get_mapping): Avoid casts to avoid warnings.
111         * sunrpc/clnt_raw.c (clntraw_private_s): Use union in definition
112         to avoid cast.
114         * inet/rexec.c (rexec_af): Make sa2 a union to avoid warnings.
115         * inet/rcmd.c (rcmd_af): Make from a union of the various needed types
116         to avoid warnings.
117         (iruserok_af): Use ss_family instead of casts.
119         * gmon/gmon.c (write_hist): Define real-type variant of
120         gmon_hist_hdr structure and use it.
121         (write_gmon): Likewise for gmon_hdr.
123         * sysdeps/unix/sysv/linux/readv.c: Avoid declaration of replacement
124         function if we are not going to define it.
125         * sysdeps/unix/sysv/linux/writev.c: Likewise.
127         * inet/inet6_option.c (option_alloc): Add temporary variable to
128         avoid warning.
130         * libio/strfile.h (struct _IO_streambuf): Use correct type and
131         name of VTable element.
132         * libio/iovsprintf.c: Avoid casts to avoid warnings.
133         * libio/iovsscanf.c: Likewise.
134         * libio/vasprintf.c: Likewise.
135         * libio/vsnprintf.c: Likewise.
136         * stdio-common/isoc99_vsscanf.c: Likewise.
137         * stdlib/strfmon_l.c: Likewise.
138         * debug/vasprintf_chk.c: Likewise.
139         * debug/vsnprintf_chk.c: Likewise.
140         * debug/vsprintf_chk.c: Likewise.
142         * nss/nsswitch.c (__nss_lookup_function): En/Decrypt cached
143         function pointers.
145 2009-04-26  Jakub Jelinek  <jakub@redhat.com>
147         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Fix -Wsequence-point warnings.
149 2009-04-25  Ulrich Drepper  <drepper@redhat.com>
151         * posix/bits/posix1_lim.h: Cleanup namespace a bit.
153         * sysdeps/i386/fpu/s_tan.S: Set errno for ±Inf.
154         * sysdeps/i386/fpu/s_tanf.S: Likewise.
155         * sysdeps/i386/fpu/s_tanl.S: Likewise.
156         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
157         * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
158         * sysdeps/x86_64/fpu/s_tanl.S: Likewise.
159         * math/libm-test.inc: Add tests for errno after tan calls with
160         ±Inf.
162         * sysdeps/ieee754/k_standard.c (__kernel_standard): Use correct
163         errno value vor pow(+-0,neg).
164         * math/libm-test.inc (pow_test): Add tests for errno value for
165         pole errors.
167         * math/w_fmod.c: Also handle x=±Inf as error.
168         * math/w_fmodf.c: Likewise.
169         * math/w_fmodl.c: Likewise.
170         * math/libm-test.inc (fmod_test): Add tests for errno after calls for
171         x=±Inf or y=0.
173         * sysdeps/i386/fpu/s_cos.S: Set errno for ±Inf.
174         * sysdeps/i386/fpu/s_cosf.S: Likewise.
175         * sysdeps/i386/fpu/s_cosl.S: Likewise.
176         * sysdeps/i386/fpu/s_sin.S: Likewise.
177         * sysdeps/i386/fpu/s_sinf.S: Likewise.
178         * sysdeps/i386/fpu/s_sinl.S: Likewise.
179         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
180         * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
181         * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
182         * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
183         * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
184         * sysdeps/x86_64/fpu/s_cosl.S: Likewise.
185         * sysdeps/x86_64/fpu/s_sinl.S: Likewise.
186         * math/libm-test.inc: Add tests for errno after sin/cos calls with
187         ±Inf.
189         * stdlib/strtod_l.c (round_and_return): We have to set errno to
190         ERANGE for underflows.
191         * stdlib/tst-strtod.c (tests): Two tests should set errno to ERANGE.
193         * stdio-common/stdio_lim.h.in (L_cuserid): Not part of POSIX since
194         the 2001 revision.
196         * libio/tst-widetext.input: Remove surrogates.
198         * include/features.h: _POSIX_C_SOURCE >= 200112L implies C99.
200         * sysdeps/ieee754/k_standard.c (__kernel_standard): Pole errors
201         for lgamma should set errno to ERANGE, not EDOM.
202         * math/libm-test.inc (lgamma_test): Check errno for pole errors.
204 2009-04-24  Ulrich Drepper  <drepper@redhat.com>
206         [BZ #10093]
207         * iconv/gconv_simple.c (BODY for UTF-8 to INTERNAL): Don't accept
208         UTF-16 surrogates.
210         * locale/programs/locarchive.c (enlarge_archive): Conserve address
211         space when temporarily mapping the whole content of the old file.
213         [BZ #10100]
214         * misc/hsearch_r.c (hsearch_r): Add back ensurance that hval is
215         not zero.
217 2009-04-24  Jakub Jelinek  <jakub@redhat.com>
219         * iconvdata/sjis.c (BODY): Don't advance inptr before
220         STANDARD_FROM_LOOP_ERR_HANDLER (2) for 2 byte invalid input.
221         Use STANDARD_FROM_LOOP_ERR_HANDLER with 2 instead of 1 for
222         two byte chars.
224 2009-04-24  Ulrich Drepper  <drepper@redhat.com>
226         * locale/locarchive.h (struct locarhandle): Rename len field to
227         mmaped and add new reserved field.
228         * locale/programs/locarchive.c (RESERVE_MMAP_SIZE): Define.
229         (create_archive): Reserve address space and then map file into it.
230         (open_archive): Likewise.
231         (file_data_available_p): New function.
232         (compare_from_file): New function.
233         (close_archive): Adjust to member name changes.
234         (add_locale): Before comparing locale data, check it is mapped.
235         Otherwise fall back to reading from the file.
237 2009-04-23  H.J. Lu  <hongjiu.lu@intel.com>
239         * stdio-common/psiginfo.c: Include <errno.h>.
241 2009-04-23  Ulrich Drepper  <drepper@redhat.com>
243         [BZ #9920]
244         * stdlib/random_r.c (__srandom_r): Change type of word to int32_t
245         to get consistency between 32 and 64 bit architectures.
247         [BZ #10052]
248         * sysdeps/unix/make-syscalls.sh: Add rule to create target
249         directory for dummy syscall rules.
250         Patch by Chris Steinbroner <hesh@pobox.com>.
252 2009-04-23  Aurelien Jarno  <aurelien@aurel32.net>
254         [BZ #10092]
255         * sysdeps/unix/sysv/linux/sys/mount.h: Define MNT_DETACH and
256         MNT_EXPIRE.
258 2009-04-23  Ulrich Drepper  <drepper@redhat.com>
260         * sysdeps/unix/sysv/linux/preadv.c: The kernel API changed.  Adjust.
261         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
263 2009-04-23  Jakub Jelinek  <jakub@redhat.com>
265         * sysdeps/posix/pwritev.c (PWRITEV): Fix up comment.  Copy
266         data from vector to temporary buffer and call PWRITEV after it
267         instead of vice versa.
268         * sysdeps/posix/preadv.c: Fix up comment.
269         * misc/preadv.c: Likewise.
270         * misc/preadv64.c: Likewise.
271         * misc/pwritev.c: Likewise.
272         * misc/pwritev64.c: Likewise.
273         * misc/sys/uio.h (preadv, pwritev, preadv64, pwritev64): Likewise.
275 2009-04-23  Ulrich Drepper  <drepper@redhat.com>
277         * shadow/sgetspent_r.c (__sgetspent_r): Recognize too small buffers.
279         * shadow/Makefile (tests): Add tst-shadow.
280         * shadow/tst-shadow.c: New file.
282         [BZ #9955]
283         * gshadow/Makefile: New file.
284         * gshadow/Versions: New file.
285         * gshadow/fgetsgent.c: New file.
286         * gshadow/fgetsgent_r.c: New file.
287         * gshadow/getsgent.c: New file.
288         * gshadow/getsgent_r.c: New file.
289         * gshadow/getsgnam.c: New file.
290         * gshadow/getsgnam_r.c: New file.
291         * gshadow/gshadow.h: New file.
292         * gshadow/putsgent.c: New file.
293         * gshadow/sgetsgent.c: New file.
294         * gshadow/sgetsgent_r.c: New file.
295         * gshadow/tst-gshadow.c: New file.
296         * include/gshadow.h: New file.
297         * Makeconfig (all-subdirs): Add gshadow.
298         * Makefile (installed-headers): Add gshadow/gshadow.h.
299         * nss/Makefile (databases): Add sgrp.
300         * nss/Versions: Add gshadow functions as private exports.
301         * nss/nsswitch.conf: Add gshadow entry.
302         * nss/sgrp-lookup.c: New file.
303         * nss/nss_files/files-parse.c: Add STRING_LIST macro.  Rewrite
304         parse_list to handle STRING_LIST and TRAILING_LIST_PARSER.
305         * nss/nss_files/files-sgrp.c: New file.
306         * sysdeps/generic/paths.h: Add _PATH_GSHADOW.
307         * sysdeps/unix/sysv/linux/paths.h: Likewise.
309 2009-04-22  Ulrich Drepper  <drepper@redhat.com>
311         * stdio-common/printf.h: Add missing const to register_printf_modifier.
312         * stdio-common/reg-modifier.c: Likewise.
314 2009-04-22  Andrew Stubbs  <ams@codesourcery.com>
316         * sysdeps/sh/sh4/setjmp.S (__sigsetjmp): Adjust JB_SIZE when there
317         is no FPU.
319 2009-04-20  Ulrich Drepper  <drepper@redhat.com>
321         [BZ #10086]
322         * sysdeps/unix/sysv/linux/sys/timex.h: Add definitions from kernel
323         headers up to 2.6.30.
325         * po/ca.po: Update from translation team.
327 2009-04-19  Ulrich Drepper  <drepper@redhat.com>
329         [BZ #10069]
330         * elf/dl-open.c (dl_open_worker): We cannot guarantee that we can load
331         an object that uses static TLS if the TLS modid is higher than the
332         reserve we always allocate.  At least for multi-threaded code.
334 2009-04-18  Ulrich Drepper  <drepper@redhat.com>
336         * stdlib/strfmon_l.c (__vstrfmon_l): Don't wrap when computing width.
337         Numerically stable check for valid width.
339         * locale/programs/locarchive.c (open_archive): Map the entire file
340         and not just the administrative data.
341         (add_locale): When we find a hash sum match compare the content
342         to be sure.
344         * malloc/malloc.c (malloc_info): Output address space information.
346 2009-04-17  Ulrich Drepper  <drepper@redhat.com>
348         * malloc/malloc.c (malloc_info): Also output system memory information.
350         * sysdeps/unix/sysv/linux/kernel-features.h: All supported
351         architectures have preadv/pwritev in 2.6.30.
353         * sysdeps/posix/preadv.c: Reading of zero bytes is no error.
354         * sysdeps/posix/readv.c: Likewise.
355         Reported by Markus Armbruster <armbru@redhat.com>.
357         * malloc/hooks.c (top_check): Force hook value into register.
359 2009-04-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
361         * elf/rtld.c (dl_main): Really call _dl_sysdep_start_cleanup after all
362         calls to _dl_relocate_object.
364 2009-04-16  Ulrich Drepper  <drepper@redhat.com>
366         [BZ #9957]
367         * malloc/malloc.c (force_reg): Define.
368         (sYSMALLOc): Load hook variable into variable
369         before test and force into register.
370         (sYSTRIm): Likewise.
371         (public_mALLOc): Force hook value into register.
372         (public_fREe): Likewise.
373         (public_rEALLOc): Likewise.
374         (public_mEMALIGn): Likewise.
375         (public_vALLOc): Likewise.
376         (public_pVALLOc): Likewise.
377         (public_cALLOc): Likewise.
378         (__posix_memalign): Likewise.
379         * malloc/arena.c (ptmalloc_init): Load hook variable into variable
380         before test and force into register.
381         * malloc/hooks.c (top_check): Likewise.
382         (public_sET_STATe): Pretty printing.
384         * resolv/res_send.c (send_dg): Don't just ignore the result we got
385         in case we only receive one reply in single-request mode.
387 2009-04-16  Jakub Jelinek  <jakub@redhat.com>
389         * elf/dl-open.c (_dl_open): Bump GL(dl_nns) to 1 if no libraries
390         are dlopened in statically linked program even for __LM_ID_CALLER.
392 2009-04-16  Ulrich Drepper  <drepper@redhat.com>
394         * resolv/res_send.c (send_dg): Don't switch into single-request
395         mode if we already are in it.
397 2009-04-15  Ulrich Drepper  <drepper@redhat.com>
399         * sysdeps/unix/sysv/linux/getsysstats.c (next_line): Make sure there
400         are always at least 4 bytes in the returned line.
402 2009-04-15  Jakub Jelinek  <jakub@redhat.com>
404         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Check
405         __libc_use_alloca (8192), if the stack is too small use 512 bytes
406         instead of 8K.  Stop searching in /proc/stat after hitting first
407         line not starting with cpu.
408         (next_line): Truncate too long
409         lines at buffer size * 3/4 instead of pretending there were line
410         breaks inside of large lines.
412 2009-04-14  Ulrich Drepper  <drepper@redhat.com>
414         * sysdeps/x86_64/mp_clz_tab.c: New file.
416 2009-03-17  Ryan S. Arnold  <rsa@us.ibm.com>
417             Ulrich Drepper  <drepper@redhat.com>
419         * sysdeps/unix/sysv/linux/fallocate.c: Handle old kernel headers.
420         * sysdeps/unix/sysv/linux/fallocate64.c: Likewise.
421         * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.
423 2009-03-25  Andrew Stubbs  <ams@codesourcery.com>
425         * sysdeps/sh/libc-tls.c: New file.
427         * sysdeps/sh/bits/setjmp.h (__jmp_buf): Give name to structure type.
429 2009-04-14  Roland McGrath  <roland@redhat.com>
431         * elf/elf.h: Add various missing ARM constants, to match binutils.
433 2009-04-14  Ulrich Drepper  <drepper@redhat.com>
435         Optimizations from GMP.
436         * sysdeps/x86_64/add_n.S: New file.
437         * sysdeps/x86_64/addmul_1.S: New file.
438         * sysdeps/x86_64/lshift.S: New file.
439         * sysdeps/x86_64/mul_1.S: New file.
440         * sysdeps/x86_64/rshift.S: New file.
441         * sysdeps/x86_64/sub_n.S: New file.
442         * sysdeps/x86_64/submul_1.S: New file.
444 2009-04-14  Jakub Jelinek  <jakub@redhat.com>
446         * sysdeps/powerpc/powerpc32/elf/start.S: Ensure .data is non-empty.
447         * sysdeps/powerpc/powerpc64/elf/start.S: Likewise.
448         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
449         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
451 2009-04-14  Ulrich Drepper  <drepper@redhat.com>
453         * sysdeps/unix/sysv/linux/kernel-features.h: SH also has
454         preadv/pwritev.
456 2009-04-13  Ulrich Drepper  <drepper@redhat.com>
458         * sysdeps/x86-64/strrchr.S: New file.
460 2009-04-10  Ulrich Drepper  <drepper@redhat.com>
462         * stdio-common/printf.h (struct printf_info): Add user element.
463         New types printf_arginfo_size_function, printf_va_arg_function.
464         Declare register_printf_specifier, register_printf_modifier,
465         register_printf_type.
466         * stdio-common/printf-parse.h (struct printf_spec): Add size element.
467         (union printf_arg): Add pa_user element.
468         Adjust __printf_arginfo_table type.
469         Add __printf_va_arg_table, __printf_modifier_table,
470         __handle_registered_modifier_mb, and __handle_registered_modifier_wc
471         declarations.
472         * stdio-common/printf-parsemb.c: Recognize registered modifiers.
473         If registered arginfo call failed try normal specifier.
474         * stdio-common/printf-prs.c: Pass additional parameter to arginfo
475         function.
476         * stdio-common/Makefile (routines): Add reg-modifier and reg-type.
477         * stdio-common/Versions: Export register_printf_modifier,
478         register_printf_type, and register_printf_specifier for GLIBC_2.10.
479         * stdio-common/reg-modifier.c: New file.
480         * stdio-common/reg-type.c: New file.
481         * stdio-common/reg-printf.c (__register_printf_specifier): New
482         function.  Mostly the old __register_printf_function function but
483         uses locking and type of third parameter changed.
484         (__register_printf_function): Implement using
485         __register_printf_specifier.
486         * stdio-common/vfprintf.c (vfprintf): Collect argument sizes in
487         calls to arginfo functions.  Allocate enough memory for user-defined
488         types.  Call new va_arg functions to get user-defined types.
489         Try installed handlers even for existing format specifiers first.
491 2009-04-09  Ulrich Drepper  <drepper@redhat.com>
493         * sysdeps/x86_64/rawmemchr.S: New file.
495         * stdio-common/vfprintf.c (vfprintf): Slightly more compact code.
496         Simplified code and possible copy problem fixed.
498         * sysdeps/unix/sysv/linux/preadv.c: Avoid prototype for static
499         function if it is not defined.  Add some necessary casts.
500         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
502         * sysdeps/unix/sysv/linux/kernel-features.h: SPARC and IA64 also
503         have preadv/pwritev in 2.6.30.
505 2009-04-08  Ulrich Drepper  <drepper@redhat.com>
507         * malloc/malloc.c (malloc_info): New function.
508         * malloc/malloc.h: Declare it.
509         * malloc/Versions: Export malloc_info for GLIBC_2.10.
511         * sysdeps/unix/sysv/linux/preadv64.c (PREAD): Use __libc_pread64
512         to avoid PLT slot.
514         * malloc/malloc.c (_int_realloc): Add parameter with old block
515         size.  Remove duplicated test.  Don't handle mmap'ed blocks here.
516         Adjust all callers.
517         * malloc/hooks.c (realloc_check): Adjust _int_realloc call.
519 2009-04-07  Ulrich Drepper  <drepper@redhat.com>
521         * sysdeps/x86_64/strchrnul.S: New file.
523         * crypt/Makefile (LDLIBS-crypt.so): Use this variable instead of
524         depending libcrypt on -lfreebl3.
526         * sysdeps/unix/sysv/linux/kernel-features.h: Power also has
527         preadv/pwritev in 2.6.30.
529         * resolv/nss_dns/dns-host.c (getanswer_r): Use strcasecmp
530         instead of __strcasecmp.
532         * string/stratcliff.c (do_test): Add memchr tests..
533         * wcsmbs/wcsatcliff.c (MEMCHR): Define.
534         * sysdeps/x86_64/memchr.S: Fix handling of end of buffer after
535         first read quad word.
537 2009-04-06  Ulrich Drepper  <drepper@redhat.com>
539         * string/strverscmp.c (__strverscmp): Fix last cleanups.
540         * string/tst-svc.input: Add new test case.
541         * string/tst-svc.expect: Adjust.
542         * string/Makefile: Don't ignore tst-svc error.
544         * sysdeps/x86_64/memchr.S: New file.
546         * resolv/resolv.h (RES_SNGLKUP): Define.
547         * resolv/res_init.c (res_setoptions): Recognize single-request option.
548         * resolv/res_send.c (send_dg): If we sent two requests at once and
549         only get one reply before timeout switch to mode where we send the
550         second request only after the first answer has been received.
552 2009-04-05  Ulrich Drepper  <drepper@redhat.com>
554         * sysdeps/x86_64/strlen.S: Optimize by using SSE2 instructions.
555         * sysdeps/x86_64/strchr.S: Likewise.
557 2009-04-03  Ulrich Drepper  <drepper@redhat.com>
559         * configure.in: We need to test for the compiler earlier.
561         * misc/Makefile (routines): Add preadv, preadv64, pwritev, pwritev64.
562         * misc/Versions: Export preadv, preadv64, pwritev, pwritev64 for
563         GLIBC_2.10.
564         * misc/sys/uio.h: Declare preadv, preadv64, pwritev, pwritev64.
565         * sysdeps/unix/sysv/linux/kernel-features.h: Add entries for preadv
566         and pwritev.
567         * misc/preadv.c: New file.
568         * misc/preadv64.c: New file.
569         * misc/pwritev.c: New file.
570         * misc/pwritev64.c: New file.
571         * sysdeps/posx/preadv.c: New file.
572         * sysdeps/posx/preadv64.c: New file.
573         * sysdeps/posx/pwritev.c: New file.
574         * sysdeps/posx/pwritev64.c: New file.
575         * sysdeps/unix/sysv/linux/preadv.c: New file.
576         * sysdeps/unix/sysv/linux/preadv64.c: New file.
577         * sysdeps/unix/sysv/linux/pwritev.c: New file.
578         * sysdeps/unix/sysv/linux/pwritev64.c: New file.
579         * sysdeps/unix/sysv/linux/wordsize-64/preadv64.c: New file.
580         * sysdeps/unix/sysv/linux/wordsize-64/pwritev64.c: New file.
582         * sysdeps/unix/sysv/linux/readv.c (__libc_readv): Fix calling of
583         compatibility code.
584         * sysdeps/unix/sysv/linux/writev.c (__libc_writev): Likewise.
586         * sysdeps/unix/sysv/linux/kernel-features.h: Define
587         __ASSUME_COMPLETE_READV_WRITEV.
588         * sysdeps/unix/sysv/linux/readv.c: No need for userlevel fallback
589         with modern kernels.
590         * sysdeps/unix/sysv/linux/writev.c: Likewise.
592         * sysdeps/posix/readv.c: Since read is a cancellation point we have
593         to free a possible malloced buffer in case of cancellation.
594         * sysdeps/posix/writev.c: Likewise for write.
596 2009-04-02  Ulrich Drepper  <drepper@redhat.com>
598         * sysdeps/unix/sysv/linux/bits/socket.h: Add missing protocol numbers.
600         * configure.in: Recognize --enable-nss-crypt.
601         * config.make.in: Add nss-crypt entry.
602         * crypt/Makefile: If nss-crypt==yes, don't build md5.c, sha256.c,
603         sha512.c.  Don't run md5test, sha256test, sha512test.  Pass -DUSE_NSS
604         and include path for NSS directory to compiler for md5-crypt,
605         sha256-crypt, sha512-crypt.  Link libcrypt.so with -lfreebl3.
606         * crypt/md5-crypt.c: If USE_NSS is defined, don't use local hash
607         function implementation, use NSS.  Introduce wrappers around the
608         hash function calls.  Little code size optimization.
609         * crypt/sha256-crypt.c: Likewise.
610         * crypt/sha512-crypt.c: Likewise.
611         * scripts/check-local-headers.sh: Ignore nss3 directory.
613         * configure.in: Rename pic_default to libc_cv_pic_default.
614         * config.make.in: Likewise.
616 2009-04-01  Roland McGrath  <roland@redhat.com>
618         * elf/elf.h (R_SPARC_GLOB_JMP): New macro.
619         (R_SPARC_GOTDATA_HIX22, R_SPARC_GOTDATA_LOX10): New macros.
620         (R_SPARC_GOTDATA_OP_HIX22, R_SPARC_GOTDATA_OP_LOX10): Likewise.
621         (R_SPARC_GOTDATA_OP, R_SPARC_H34): Likewise.
622         (R_SPARC_SIZE32, R_SPARC_SIZE64): Likewise.
623         (R_SPARC_GNU_VTINHERIT, R_SPARC_GNU_VTENTRY, R_SPARC_REV32): Likewise.
624         (R_SPARC_NUM): Update.
625         From Dave Miller <davem@davemloft.net>.
627 2009-04-01  Ulrich Drepper  <drepper@redhat.com>
629         * sysdeps/unix/sysv/linux/sys/eventfd.h (EFD_SEMAPHORE): Define.
631 2009-03-31  Ulrich Drepper  <drepper@redhat.com>
633         * elf/dl-open.c: Keep track of used name spaces and only iterate over
634         those which are used.
635         * elf/dl-addr.c: Likewise.
636         * elf/dl-caller.c: Likewise.
637         * elf/dl-fini.c: Likewise.
638         * elf/dl-iteratephdr.c: Likewise.
639         * elf/dl-libc.c: Likewise.
640         * elf/dl-load.c: Likewise.
641         * elf/dl-support.c: Likewise.
642         * elf/dl-sym.c: Likewise.
643         * elf/rtld.c: Likewise.
644         * sysdeps/generic/ldsodefs.h: Likewise.
646         * elf/dl-load.c: Remove support for systems without MAP_ANON.
647         * elf/dl-minimal.c: Likewise.
648         * elf/dl-misc.c: Likewise.
649         * elf/rtld.c: Likewise.
650         * sysdeps/generic/ldsodefs.h: Likewise.
652 2009-03-30  Ulrich Drepper  <drepper@redhat.com>
654         * elf/do-lookup.h (do_lookup_x): Minor optimization and cleanup.
655         Avoid reuse of complex expression.
657         * po/fr.po: Update from translation team.
659 2009-03-16  Ulrich Drepper  <drepper@redhat.com>
661         * include/dirent.h: Yet more changes to match sort function type
662         change.
663         * sysdeps/unix/sysv/linux/i386/alphasort64.c: Likewise.
664         * sysdeps/unix/sysv/linux/i386/olddirent.h: Likewise.
665         * sysdeps/unix/sysv/linux/i386/versionsort64.c: Likewise.
667 2009-03-16  Thomas Schwinge  <tschwinge@gnu.org>
669         * dirent/scandir64.c (scandir64): Adjust declaration to type change.
671 2009-03-16  Ulrich Drepper  <drepper@redhat.com>
673         * nscd/connections.c (restart): Try to preserve the process name
674         by reading the /proc/self/exe symlink and using the return name.
675         Patch by Jeff Bastian <jbastian@redhat.com>.
677 2009-03-15  Ulrich Drepper  <drepper@redhat.com>
679         [BZ #9733]
680         * elf/dl-load.c (_dl_map_object_from_fd): Only call audit hooks
681         if we are not loading a new audit library.
682         * elf/dl-reloc (_dl_relocate_object): Third parameter is now a bitmask.
683         Only use profiling trampoline for auditing if we are not relocating
684         an audit library.
685         * elf/dl-open.c (dl_open_worker): Adjust _dl_relocate_object call.
686         * elf/rtld.c: Likewise.
687         * sysdeps/generic/ldsodefs.h: Adjust _dl_relocate_object prototype.
689         * elf/rtld.c (dl_main): Extend help message for --audit option.
691         [BZ #9759]
692         * dirent/dirent.h: Adjust prototypes of scandir, scandir64, alphasort,
693         alphasort64, versionsort, and versionsort64 to POSIX 2008.
694         * dirent/alphasort.c: Adjust implementation to type change.
695         * dirent/alphasort64.c: Likewise.
696         * dirent/scandir.c: Likewise.
697         * dirent/versionsort.c: Likewise.
698         * dirent/versionsort64.c: Likewise.
699         * sysdeps/wordsize-64/alphasort.c: Add hack to hide alphasort64
700         declaration.
701         * sysdeps/wordsize-64/versionsort.c: Add hack to hide versionsort64
702         declaration.
704         [BZ #9880]
705         * inet/inet6_rth.c (inet6_rth_reverse): Compute number of segments
706         correctly.  Set segleft member in output as required.
707         Patch partly by Yang Hongyang <yanghy@cn.fujitsu.com>.
708         * inet/tst-inet6_rth.c (do_test): Add tests for inet6_rth_reverse.
710         [BZ #9881]
711         * inet/inet6_rth.c (inet6_rth_add): Add some error checking.
712         Patch mostly by Yang Hongyang <yanghy@cn.fujitsu.com>.
713         * inet/Makefile (tests): Add tst-inet6_rth.
714         * inet/tst-inet6_rth.c: New file.
716         [BZ #5807]
717         * string/strlen.c (strlen): Fix omission in the expression to test
718         for NUL bytes.
720 2009-03-14  Ulrich Drepper  <drepper@redhat.com>
722         * crypt/sha256test.c (main): Perform 100,000 'a' test in a second way.
724         * elf/dl-runtime.c (reloc_offset): Define.
725         (reloc_index): Define.
726         (_dl_fixup): Rename reloc_offset parameter to reloc_arg.
727         (_dl_fixup_profile): Likewise.  Use reloc_index instead of
728         computing index from reloc_offset.
729         (_dl_call_pltexit): Likewise.
730         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_resolve): Just pass
731         the relocation index to _dl_fixup.
732         (_dl_runtime_profile): Likewise for _dl_fixup_profile and
733         _dl_call_pltexit.
734         * sysdeps/x86_64/dl-runtime.c: New file.
736         [BZ #9893]
737         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix
738         alignment of La_x86_64_regs.  Store xmm parameters.
739         Patch mostly by Jiri Olsa <olsajiri@gmail.com>.
741         [BZ #9913]
742         * string/strverscmp.c (__strverscmp): Fix case of different digits
743         in fractional part of string.
744         Patch by Jingyu Liu <jyliu@fortinet.com>.
745         * string/Makefile (tests): Add tst-svc2.
746         * string/tst-svc2.c: New file.
748         * string/strverscmp.c (__strverscmp): Optimize size of tables.
750         * locale/iso-639.def: Add Min Nan.
752 2009-03-11  Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
754         [BZ #9948]
755         * elf/dl-sysdep.c (_dl_show_auxv): Add support for AT_BASE_PLATFORM.
757 2009-03-14  Ulrich Drepper  <drepper@redhat.com>
759         * elf/dl-sysdep.c (auxvars): Compress data structure.
761         * sysdeps/i386/dl-machine.h (elf_machine_rel): Implement
762         STT_GNU_IFUNC handling.
763         (elf_machine_rela): Likewise.
765 2009-03-13  Ulrich Drepper  <drepper@redhat.com>
767         * config.h.in (USE_MULTIARCH): Define.
768         * configure.in: Handle --enable-multi-arch.
769         * elf/dl-runtime.c (_dl_fixup): Handle STT_GNU_IFUNC.
770         (_dl_fixup_profile): Likewise.
771         * elf/do-lookup.c (dl_lookup_x): Likewise.
772         * sysdeps/x86_64/dl-machine.h: Handle STT_GNU_IFUNC.
773         * elf/elf.h (STT_GNU_IFUNC): Define.
774         * include/libc-symbols.h (libc_ifunc): Define.
775         * sysdeps/x86_64/cacheinfo.c: If USE_MULTIARCH is defined, use the
776         framework in init-arch.h to get CPUID values.
777         * sysdeps/x86_64/multiarch/Makefile: New file.
778         * sysdeps/x86_64/multiarch/init-arch.c: New file.
779         * sysdeps/x86_64/multiarch/init-arch.h: New file.
780         * sysdeps/x86_64/multiarch/sched_cpucount.c: New file.
782         * config.make.in (experimental-malloc): Define.
783         * configure.in: Handle --enable-experimental-malloc.
784         * malloc/Makefile: Handle experimental-malloc flag.
785         * malloc/malloc.c: Implement PER_THREAD and ATOMIC_FASTBINS features.
786         * malloc/arena.c: Likewise.
787         * malloc/hooks.c: Likewise.
788         * malloc/malloc.h: Define M_ARENA_TEST and M_ARENA_MAX.
790 2009-03-11  Ulrich Drepper  <drepper@redhat.com>
792         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Add branch
793         prediction.  A few size optimizations.
795 2009-03-10  Ulrich Drepper  <drepper@redhat.com>
797         * time/tzset.c: Optimize a bit for size.
799 2009-03-10  Jakub Jelinek  <jakub@redhat.com>
801         * include/stdio.h (fmemopen): Add libc_hidden_proto.
802         * libio/fmemopen.c (fmemopen): Add libc_hidden_def.
804         * elf/sprof.c: Avoid warning about multi-line comment.
806 2009-03-10  Ulrich Drepper  <drepper@redhat.com>
808         * time/tzset.c (__tzset_parse_tz): Use correct string when parsing
809         DST name.
810         * time/tst-posixtz.c: Add tests for quoted timezone names.
812 2009-03-10  Jakub Jelinek  <jakub@redhat.com>
814         * posix/unistd.h (_POSIX_VERSION, _POSIX2_VERSION, _POSIX2_C_BIND,
815         _POSIX2_C_DEV, _POSIX2_SW_DEV, _POSIX2_LOCALEDEF): Define to
816         200809L instead of 200112L.
817         (_XOPEN_VERSION): For __USE_XOPEN2K8 define to 700.
818         * posix/tst-sysconf.c (STDVER): Define to 200809L instead of 200112L.
820         * stdlib/quick_exit.c (quick_exit): Pass &__quick_exit_funcs
821         instead of __quick_exit_funcs to __run_exit_handlers.
822         * stdlib/at_quick_exit.c (at_quick_exit): Add attribute_hidden.
823         * stdlib/exit.h (__run_exit_handlers): Add noreturn attribute.
824         (__cxa_at_quick_exit): Remove attribute_hidden.
825         * stdlib/exit.c (exit): Pass &__exit_funcs instead of __exit_funcs
826         to __run_exit_handlers.
827         * stdlib/cxa_at_quick_exit.c (__cxa_at_quick_exit): Remove
828         attribute_hidden.
830 2009-03-10  Ulrich Drepper  <drepper@redhat.com>
832         * po/id.po: Update from translation team.
834 2009-02-18  Jakub Jelinek  <jakub@redhat.com>
836         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Use
837         .machine push; .machine "power6" and .machine pop around mtfsf
838         insns outside of _ARCH_PWR6 define.
839         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
840         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
841         Likewise.
842         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
843         Likewise.
844         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_SET_DI_FPSCR): Likewise.
845         * sysdeps/powerpc/fpu/fenv_libc.h (fesetenv_register,
846         relax_fenv_state): Likewise.
848 2009-03-08  Ulrich Drepper  <drepper@redhat.com>
850         * stdlib/Makefile (routines): Add quick_exit, at_quick_exit, and
851         cxa_at_quick_exit.
852         (static-only-routines): Add at_quick_exit.
853         * stdlib/Versions: Export quick_exit and __cxa_at_quick_exit for
854         GLIBC_2.10.
855         * stdlib/quick_exit.c: New file.
856         * stdlib/at_quick_exit.c: New file.
857         * stdlib/cxa_at_quick_exit.c: New file.
858         * stdlib/cxa_atexit.c (__cxa_atexit): Move body to new function.  Call
859         it appropriately.
860         (__internal_atexit): New function.
861         (__new_exitfn): Now takes parameter to point to the list to use.
862         * stdlib/cxa_finalize.c: Remove quick_exit handlers, don't call them.
863         * stdlib/exit.c (__run_exit_handlers): New function.  Split from...
864         (exit): ...here.  Just call __run_exit_handlers appropriately.
865         * stdlib/exit.h: Declare __quick_exit_funcs, __run_exit_handlers,
866         __internal_atexit, __cxa_at_quick_exit.  Adjust __new_exitfn.
867         * stdlib/on_exit.c: Adjust call to __new_exitfn.
868         * stdlib/stdlib.h: Declare at_quick_exit and quick_exit.
870         * po/id.po: Update from translation team.
872 2009-03-07  Ulrich Drepper  <drepper@redhat.com>
874         * po/ru.po: Update from translation team.
876 2009-03-04  Ulrich Drepper  <drepper@redhat.com>
878         * po/nl.po: Update from translation team.
880 2009-03-03  Ulrich Drepper  <drepper@redhat.com>
882         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Declare fallocate{,64}.
883         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
884         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
885         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
886         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
887         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
888         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
890         * po/pl.po: Update from translation team.
892 2009-03-02  Ulrich Drepper  <drepper@redhat.com>
894         [BZ #7083]
895         * sysdeps/unix/sysv/linux/fallocate.c: New file.
896         * sysdeps/unix/sysv/linux/fallocate64.c: New file.
897         * sysdeps/unix/sysv/linux/wordsize-64/fallocate64.c: New file.
898         * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: New file.
899         * sysdeps/unix/sysv/linux/i386/fallocate64.c: New file.
900         * sysdeps/unix/sysv/linux/i386/fallocate.c: New file.
901         * sysdeps/unix/sysv/linux/Versions: Export fallocate and fallocate64
902         for GLIBC_2.10.
903         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
904         Add fallocate and fallocate64.
906         * io/fcntl.h: Pretty printing.
908 2009-03-02  Richard Guenther  <rguenther@suse.de>
910         * misc/sys/cdefs.h (__extern_always_inline): Add __artificial__
911         attribute also for non-C99 inline semantics variant.
913 2009-02-12  Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
915         * sysdeps/powerpc/powerpc32/power7/fpu/Implies: New file.
916         * sysdeps/powerpc/powerpc32/power7/Implies: Likewise.
917         * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
918         * sysdeps/powerpc/powerpc64/power7/Implies: Likewise.
919         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/fpu/Implies:
920         Likewise.
921         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/fpu/Implies:
922         Likewise.
924 2009-03-02  Ulrich Drepper  <drepper@redhat.com>
926         * po/cs.po: Update from translation team.
928 2009-02-28  Ulrich Drepper  <drepper@redhat.com>
930         * po/bg.po: Update from translation team.
931         * po/sv.po: Likewise.
932         * po/fi.po: Likewise.
933         * po/vi.po: Likewise.
935 2009-02-27  Roland McGrath  <roland@redhat.com>
937         * Makeconfig (%.v.i): Depend on Makeconfig.
938         Exclude % lines from initial #-comment removal.
940 2009-02-27  Ulrich Drepper  <drepper@redhat.com>
942         * po/ko.po: Update from translation team.
944 2009-02-26  Roland McGrath  <roland@redhat.com>
946         * shadow/lckpwdf.c (__lckpwdf): Move FLAGS inside block using it,
947         avoids unused warning.
949 2009-02-26  Andrew Stubbs  <ams@codesourcery.com>
950             SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
952         * sysdeps/unix/sysv/linux/sh/sys/procfs.h: Don't include signal.h,
953         sys/ucontext.h and asm/elf.h.  Include sys/user.h.
954         * sysdeps/unix/sysv/linux/sh/sys/user.h: Don't include features.h
955         and asm/user.h.  Include asm/ptrace.h.
956         (PTRACE_GETREGS, PTRACE_SETREGS, PTRACE_GETFPREGS,
957         PTRACE_SETFPREGS, PTRACE_GETFDPIC, PTRACE_GETFDPIC_EXEC,
958         PTRACE_GETFDPIC_INTERP, PTRACE_GETDSPREGS, PTRACE_SETDSPREGS):
959         Undefine.
960         (start_thread): Don't undefine.
961         (elf_greg_t, ELF_NGREG, elf_fpregset_t, user_fpu_struct, user):
962         Define.
964 2009-02-26  Ulrich Drepper  <drepper@redhat.com>
966         * wctype/wctype.h: The *_l functions are in POSIX 2008.
967         * wcsmbs/wchar.h: mbsnrtowcs, open_wmemstream, wcpcpy, wcpncpy,
968         wcscasecmp, wcsdup, wcsncasecmp, wcsnlen, wcsnrtombs,
969         wcscasecmp_l, wcsncasecmp_l, wcscoll_l, and wcsxfrm_l.
970         * sysdeps/mach/hurd/bits/posix_opt.h: Reset value of macros from
971         200112L to 200809L.
972         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Likewise.
973         * posix/getconf.c (vars): Add _SC_THREAD_ROBUST_PRIO_INHERIT and
974         _SC_THREAD_ROBUST_PRIO_PROTECT entries.
975         * bits/confname.h: Add _SC_THREAD_ROBUST_PRIO_INHERIT and
976         _SC_THREAD_ROBUST_PRIO_PROTECT.
977         * posix/unistd.h: fexecve is in POSIX 2008.
978         * time/time.h: strftime_l is in POSIX 2008.
979         * io/sys/stat.h: futimens is in POSIX 2008.
980         * string/strings.h: strcasecmp_l and strncasecmp_l are in POSIX 2008.
981         * string/string.h: stpcpy, stpncpy, strndup, strnlen, strsignal,
982         strcoll_l, strerror_l, and strxfrm_l are in POSIX 2008.
983         * stdlib/stdlib.h: mkdtemp is in POSIX 2008.
984         * libio/stdio.h: dprintf, fmemopen, getdelim, getline,
985         open_memstream, and vdprintf are in POSIX 2008.
987 2009-02-25  Ulrich Drepper  <drepper@redhat.com>
989         * include/features.h: Define macros for XPG7/POSIX 2008.
990         * ctype/ctype.h: The *_l functions are in POSIX 2008.
991         * dirent/dirent.h: alphasort, dirfd, scandir, and fdopendir are in
992         POSIX 2008.
993         * locale/langinfo.h: nl_langinfo_l is in POSIX 2008.
994         * locale/xlocale.h: Define locale_t type.
995         * locale/locale.h: duplocale, freelocale, newlocale, uselocale are
996         in POSIX 2008.  Don't define locale_t here.
997         * stdlib/monetary.h: strfmon_l is in POSIX 2008.
998         * sysdeps/unix/sysv/linux/bits/stat.h: Protect UTIME_NOW and
999         UTIME_OMIT only with __USE_ATFILE.
1000         * signal/signal.h: Declare psignal and psiginfo for POSIX 2008.
1001         * stdio-common/psiginfo.c: New file.
1002         * stdio-common/psiginfo-data.h: New file.
1003         * stdio-common/psiginfo-define.h: New file.
1004         * stdio-common/Makefile (routines): Add psiginfo.
1005         * stdio-common/Versions: Export psiginfo for GLIBC_2.10.
1006         * sysdeps/unix/sysv/linux/ia64/bits/stat.h: Likewise.
1007         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
1008         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
1009         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
1010         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
1011         * io/sys/stat.h: Move mknodat definition into same conditional as
1012         mknod.
1013         * time/sys/time.h: futimesat is not among the functions accepted
1014         into the POSIX standard.
1016         * include/features.h: If no feature selection given and we select
1017         by default a POSIX mode, also define __USE_POSIX_IMPLICITLY.
1018         * posix/Versions: Export __posix_getopt.
1019         * posix/getopt.c (_getopt_initialize): Take additional parameter.
1020         Use it to alternatively initialize __posixly_correct.
1021         (_getopt_internal_r): Take addition parameter.  Pass on to
1022         _getopt_initialize.
1023         (_getopt_internal): Take addition parameter.  Pass on to
1024         _getopt_internal_r.
1025         (getopt): Pass additional zero to _getopt_internal.
1026         (__posix_getopt): New function.
1027         * posix/getopt.h: Add redirection for getopt.
1028         * posix/getopt1.c (getopt_long): Pass additional zero to
1029         _getopt_internal.
1030         (getopt_long_only): Likewise.
1031         (_getopt_long_r): Pass additional zero to _getopt_internal_r.
1032         (_getopt_long_only_r): Likewise.
1033         * posix/getopt_int.h: Adjust declarations of _getopt_internal and
1034         _getopt_internal_r.
1036 2009-02-24  Ulrich Drepper  <drepper@redhat.com>
1038         * bits/confname.h: Define _SC_TRACE_EVENT_NAME_MAX, _SC_TRACE_NAME_MAX,
1039         _SC_TRACE_SYS_MAX, _SC_TRACE_USER_EVENT_MAX, _SC_XOPEN_STREAMS.
1040         * sysdeps/posix/sysconf.c (__sysconf): Handle
1041         _SC_TRACE_EVENT_NAME_MAX, _SC_TRACE_NAME_MAX, _SC_TRACE_SYS_MAX,
1042         _SC_TRACE_USER_EVENT_MAX, _SC_XOPEN_STREAMS.
1044 2009-02-24  Roland McGrath  <roland@redhat.com>
1046         [BZ #9895]
1047         * README.template: Reworded not to use substituted version number.
1048         Renamed to ...
1049         * README: ... here (no longer generated).
1050         * Makefile (README): Target removed.
1052 2009-02-24  Ulrich Drepper  <drepper@redhat.com>
1054         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf):
1055         /proc/sys/kernel/rtsig_max doesn't exist anymore, use getrlimit
1056         instead.
1058         * io/sys/stat.h: The lstat functions have been mandatory since 2001.
1060         * time/tzset.c (tzset_internal): Correct parsing of TZ envvar.
1062 2009-02-22  Ulrich Drepper  <drepper@redhat.com>
1064         * po/bg.po: Update from translation team.
1066 2009-02-16  Jakub Jelinek  <jakub@redhat.com>
1068         * stdlib/monetary.h: Uglify function parameter names.
1069         * sunrpc/rpc/pmap_clnt.h: Likewise.
1070         * sunrpc/rpc/svc.h: Likewise.
1071         * sunrpc/rpc/xdr.h: Likewise.
1072         * sunrpc/rpc/clnt.h: Likewise.
1073         * resolv/netdb.h: Likewise.
1074         * resolv/arpa/nameser.h: Likewise.
1075         * resolv/resolv.h: Likewise.
1076         * argp/argp.h: Likewise.
1077         * locale/langinfo.h: Likewise.
1078         * io/sys/stat.h: Likewise.
1079         * posix/spawn.h: Likewise.
1080         * nis/rpcsvc/nislib.h: Likewise.
1081         * malloc/obstack.h: Likewise.
1082         * sysdeps/ia64/bits/link.h: Likewise.
1083         * sysdeps/i386/bits/link.h: Likewise.
1084         * sysdeps/s390/bits/link.h: Likewise.
1085         * sysdeps/powerpc/bits/link.h: Likewise.
1086         * sysdeps/x86_64/bits/link.h: Likewise.
1087         * sysdeps/sparc/bits/link.h: Likewise.
1088         * sysdeps/sh/bits/link.h: Likewise.
1089         * sysdeps/unix/sysv/linux/i386/sys/io.h: Likewise.
1090         * sysdeps/unix/sysv/linux/x86_64/sys/io.h: Likewise.
1091         * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: Likewise.
1092         * sysdeps/unix/sysv/linux/sys/eventfd.h: Likewise.
1094 2008-12-01  Fredrik Unger  <fred@tree.se>
1096         * soft-fp/double.h [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_D,
1097         FP_UNPACK_SEMIRAW_DP): Use _FP_UNPACK_RAW_1 instead of
1098         _FP_UNPACK_RAW_2, fix up first argument.
1100 2009-02-15  Ulrich Drepper  <drepper@redhat.com>
1102         * sysdeps/unix/sysv/linux/getsysstats.c (next_line): New function.
1103         (GET_NPROCS_PARSER): Change parameters and use next_line.
1104         (__get_nprocs): Rewrite to not use stdio routines.
1105         * sysdeps/unix/sysv/linux/sparc/getsysstats.c (GET_NPROCS_PARSER):
1106         Change parameters and use next_line.
1108 2009-02-13  Ulrich Drepper  <drepper@redhat.com>
1110         [BZ #5381]
1111         * nscd/nscd.h: Remove definitions and declarations for mem_in_flight.
1112         Change mempool_alloc prototype.
1113         * nscd/mem.c (gc): Don't handle mem_in_flight.
1114         (mempool_alloc): Third parameter now only indicates whether this is the
1115         first call (to allocate data) or not.  If it is, get db rdlock.
1116         Release it on error.  Don't handle mem_in_flight.
1117         * nscd/aicache.c (addhstaiX): Mark he parameter as const.
1118         Adjust third parameter of mempool_alloc calls.
1119         Nothing to do here in case mempool_alloc fails.
1120         Avoid local variable shadowing parameter.  No need to get db rdlock
1121         before calling cache_add.
1122         * nscd/cache.c (cache_add): Adjust call to mempool_alloc.  There is
1123         no mem_in_flight array anymore.
1124         * nscd/connections.c: Remove definition and handling of mem_in_flight.
1125         * nscd/grpcache.c (cache_addgr): Adjust third parameter of
1126         mempool_alloc calls.  Mark he parameter as const.  Nothing to do here
1127         in case mempool_alloc fails. No need to get db rdlock before calling
1128         cache_add.
1129         * nscd/hstcache.c (cache_addhst): Likewise.
1130         * nscd/initgrcache.c (addinitgroupsX): Likewise.
1131         * nscd/servicescache.c (cache_addserv): Likewise.
1132         * nscd/pwdcache.c (cache_addpw): Likewise.  Remove some debugging code.
1134 2009-02-11  Ulrich Drepper  <drepper@redhat.com>
1136         * po/lt.po: Update from translation team.
1138 2009-02-10  Ulrich Drepper  <drepper@redhat.com>
1140         * elf/dl-load.c (open_verify): In case VALID_ELF_HEADER is
1141         defined, allow additional data to be added using the optional
1142         MORE_ELF_HEADER_DATA macro.
1143         * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_HEADER,
1144         VALID_ELF_OSABI, VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA): Define.
1146 2009-02-08  Ulrich Drepper  <drepper@redhat.com>
1148         * include/atomic.h: Define catomic_and if not already defined.
1149         * sysdeps/x86_64/bits/atomic.h: Define catomic_and.
1150         * sysdeps/i386/i486/bits/atomic.h: Likewise.
1152 2009-02-07  Ulrich Drepper  <drepper@redhat.com>
1154         * malloc/malloc.c (_int_free): Second argument is now mchunkptr.
1155         Change all callers.
1156         (_int_realloc): Likewise.  Third argument is now padded size
1157         All _int_* functions are now static.
1159         * malloc/hooks.c: Change all callers to _int_free and _int_realloc.
1160         * malloc/arena.c: Likewise.
1161         * include/malloc.h: Remove now unnecessary declarations of the _int_*
1162         functions.
1164         * sunrpc/rpc_common.c: We cannot move _null_auth into .rodata that
1165         easily.
1167         * malloc/malloc.c: Add branch prediction for use of the hooks.
1169         * grp/compat-initgroups.c [NOT_IN_libc] (__libc_use_alloca): Define.
1171 2009-02-06  Ulrich Drepper  <drepper@redhat.com>
1173         [BZ #7095]
1174         * bits/confname.h: Add SUSv7 macros for getconf environments.
1175         * bits/environments.h: Likewise.
1176         * sysdeps/unix/sysv/linux/i386/bits/environments.h: Likewise.
1177         * sysdeps/unix/sysv/linux/powerpc/bits/environments.h: Likewise.
1178         * sysdeps/unix/sysv/linux/s390/bits/environments.h: Likewise.
1179         * sysdeps/unix/sysv/linux/sparc/bits/environments.h: Likewise.
1180         * sysdeps/unix/sysv/linux/x86_64/bits/environments.h: Likewise.
1181         * posix/confstr.c: Handle SUSv5 and SUSv7 environments.
1182         * posix/getconf.c: Likewise.
1183         * posix/sysconf.c: Likewise.
1184         * sysdeps/posix/sysconf.c: Likewise.
1185         * posix/Makefile (getconf.speclist): Also collect SUSv5 and SUSv7
1186         environments.
1188 2009-01-16  Petr Baudis  <pasky@suse.cz>
1190         [BZ #9753]
1191         * resolv/res_libc.c (__res_maybe_init): Call __res_vinit()
1192         even if we currently have zero nscount.
1194 2009-02-06  Ulrich Drepper  <drepper@redhat.com>
1196         [BZ #9781]
1197         * grp/compat-initgroups.c (compat_call): Switch to use malloc when
1198         the input line is too long.
1200         * po/Makefile (libc.pot): Add f_print as function taking c-format
1201         parameter.
1203         * debug/xtrace.sh: Unify translatable messages.
1204         * elf/ldd.bash.in: Likewise.
1205         * elf/sprof.c: Likewise.
1206         * locale/programs/locale.c: Likewise.
1207         * malloc/memusage.sh: Likewise.
1208         * nss/getent.c: Likewise.
1210 2009-02-06  Joseph Myers  <joseph@codesourcery.com>
1212         * debug/pcprofiledump.c (print_version,
1213         argp_program_version_hook): New function.
1214         * elf/ldconfig.c (more_help): New function.
1215         (argp): Use it.
1216         * elf/sln.c (usage): New function.
1217         (main): Support --help and --version.
1218         * malloc/memusagestat.c (print_version): New function.
1219         (argp_program_version_hook): New variable.
1220         * nscd/nscd.c (more_help): New function.
1221         (argp): Use it.
1222         * posix/getconf.c (main): Send --version output to stdout.
1223         Support --help.
1224         * sunrpc/rpc_main.c (usage, options_usage): Take STREAM and STATUS
1225         arguments.  All callers changed.
1226         (print_version): New function.
1227         (parseargs): Support --help and --version.
1228         * sunrpc/rpcinfo.c (usage): Take STREAM argument.  All callers
1229         changed.
1230         (print_version): New function.
1231         (main): Use getopt_long.  Support --help and --version.
1232         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Support --help and
1233         --version.
1235 2009-02-06  Ulrich Drepper  <drepper@redhat.com>
1237         * malloc/memusage.c (DEFAULT_BUFFER_SIZE): Change to 32768.
1238         (update_data): Fix handling of wrapping back
1239         to the beginning of the buffer.
1241         [BZ #9823]
1242         * stdio-common/psignal.c (psignal): Fix test for empty string.
1244 2009-02-05  Ulrich Drepper  <drepper@redhat.com>
1246         * include/rpc/auth.h: Use libc_hidden_proto for _null_auth.
1247         * sunrpc/rpc_common.c: Add libc_hidden_def for _null_auth.  Also
1248         move _null_auth to .rodata.
1250         * time/tzset.c (__tzset_parse_tz): DST offset must also allow hour
1251         value of 24.
1253         * intl/dcigettext.c (DCIGETTEXT): Avoid some code duplication.
1255         * sysdeps/unix/opendir.c (__alloc_dir): We have a lot more memory
1256         today than when the original code was written.  Use larger
1257         buffers.  This also makes it unnecessary to have stat information,
1258         if this causes extra efforts.
1259         (__opendir): In case O_DIRECTORY works, don't call fstat just for
1260         __alloc_dir.
1262 2009-02-03  Andrew Stubbs  <ams@codesourcery.com>
1264         * sysdeps/sh/sh4/dl-trampoline.S: Only set HAVE_FPU if __SH_FPU_ANY__
1265         is set.
1266         * sysdeps/sh/sh4/setjmp.S: Support SH4-NOFPU.
1267         * sysdeps/sh/sh4/__longjmp.S: Likewise.
1268         * sysdeps/unix/sysv/linux/sh/sh4/getcontext.S: Likewise.
1269         * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S: Likewise.
1270         * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S: Likewise.
1271         * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Likewise.
1273 2009-02-04  Ulrich Drepper  <drepper@redhat.com>
1275         * po/ru.po: Update from translation team.
1277 2008-11-17  Nathan Sidwell  <nathan@codesourcery.com>
1279         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (struct sigevent):
1280         Add _tid slot to maintain consistency with kernel.
1282 2009-02-04  Ulrich Drepper  <drepper@redhat.com>
1284         * libio/wfileops.c (_IO_wfile_underflow): Fix handling of
1285         incomplete characters at end of input buffer.
1286         * libio/Makefile (tests): Add tst-fgetwc.
1287         * libio/tst-fgetwc.c: New file.
1288         * libio/tst-fgetwc.input: New file.
1290 2009-02-02  Andrew Stubbs  <ams@codesourcery.com>
1292         * sysdeps/unix/sysv/linux/sh/Makefile (libm.so-no-z-defs): Define.
1294 2009-02-02  Ulrich Drepper  <drepper@redhat.com>
1296         [BZ #9793]
1297         * iconv/gconv_trans.c (__gconv_transliterate): Don't change
1298         *OUTBUFSTART unless the whole output fit into the buffer.
1299         * iconv/Makefile (tests): Add tst-iconv4.
1300         * iconv/tst-iconv4.c: New file.
1302 2009-02-01  Ulrich Drepper  <drepper@redhat.com>
1304         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Add new descriptors.
1305         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
1307 2009-01-29  Andrew Stubbs  <ams@codesourcery.com>
1309         * elf/Makefile (ld.so): Adjust the sed script to insert _begin in to
1310         newer linker scripts.
1312 2009-01-30  Ulrich Drepper  <drepper@redhat.com>
1314         [BZ #7040]
1315         * sysdeps/unix/sysv/linux/sys/inotify.h: Second parameter of
1316         inotify_rm_watch should have type int.
1318 2009-01-06  Steven Munroe  <sjmunroe@us.ibm.com>
1320         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
1321         Make aligned_restore_vmx a local symbol.
1322         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp):
1323         Likewise.
1325 2009-01-30  Andreas Jaeger  <aj@suse.de>
1327         * sysdeps/unix/sysv/linux/bits/shm.h (SHM_EXEC): Define.
1328         * sysdeps/unix/sysv/linux/ia64/bits/shm.h (SHM_EXEC): Define.
1329         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h (SHM_EXEC): Define.
1330         * sysdeps/unix/sysv/linux/s390/bits/shm.h (SHM_EXEC): Define.
1331         * sysdeps/unix/sysv/linux/sh/bits/shm.h (SHM_EXEC): Define.
1332         * sysdeps/unix/sysv/linux/sparc/bits/shm.h (SHM_EXEC): Define.
1333         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h (SHM_EXEC): Define.
1335 2009-01-11  Ryan S. Arnold  <rsa@us.ibm.com>
1337         [BZ #9726]
1338         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_SET_DI_FPSCR,
1339         _SET_SI_FPSCR): Clobber fp0 to prevent erroneous test-case passes.
1341 2009-01-08  Ryan S. Arnold  <rsa@us.ibm.com>
1343         [BZ #9726]
1344         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
1345         (__CONTEXT_FUNC_NAME): Fix mtfsf to use fp31 instead of fp0.
1346         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
1347         (__CONTEXT_FUNC_NAME): Fix mtfsf to use fp31 instead of fp0.
1349 2009-01-11  Thomas Schwinge  <tschwinge@gnu.org>
1351         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Use
1352         memcpy instead of memcmp.
1353         (_dl_setup_pointer_guard): Likewise.
1355 2009-01-30  Ulrich Drepper  <drepper@redhat.com>
1357         * malloc/malloc.c (sYSMALLOc): Don't use assert when detecting
1358         manipulated brk, use malloc_printerr.
1359         * misc/sbrk.c (__sbrk): Better error handling for nonsense
1360         requests.
1362 2009-01-30  Jakub Jelinek  <jakub@redhat.com>
1364         * string/string.h (memchr, strchr, strrchr, strpbrk, strstr, index,
1365         rindex): For C++ add inlines so that they can be recognized as
1366         builtins.
1367         * string/strings.h: Define correct C++ prototypes for gcc 4.4.
1369 2009-01-29  Ulrich Drepper  <drepper@redhat.com>
1370             Jakub Jelinek  <jakub@redhat.com>
1372         * string/string.h: Define correct C++ prototypes for gcc 4.4.
1373         * wcsmbs/wchar.h: Likewise.
1375 2009-01-29  Ulrich Drepper  <drepper@redhat.com>
1377         * sysdeps/i386/stackinfo.h (stackinfo_get_sp): Define.
1378         (stackinfo_sub_sp): Define.
1380 2009-01-28  Ulrich Drepper  <drepper@redhat.com>
1382         [BZ #9750]
1383         * nscd/mem.c (gc): Use alloca_count to get the real stack usage.
1384         * include/alloca.h (alloca_account): Define.
1385         * sysdeps/x86_64/stackinfo.h (stackinfo_get_sp): Define.
1386         (stackinfo_sub_sp): Define.
1388         * nscd/connections.c (nscd_init): If database file access fails
1389         check whether this is due to permission problems and bail in that
1390         case.
1392         [BZ #9741]
1393         * nscd/mem.c (gc): Fix assignment of he_data in case malloc is used.
1394         Reported by Jun'ichi Nomura <j-nomura@ce.jp.nec.com>.
1396 2009-01-14  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1398         * sysdeps/unix/sysv/linux/sh/sysdep.h (INTERNAL_SYSCALL):
1399         Add "t" to clobber list.
1400         (INTERNAL_SYSCALL_NCS): Likewise.
1402 2009-01-28  Ulrich Drepper  <drepper@redhat.com>
1404         * nss/getent.c (print_networks): Don't print comma between aliases.
1406 2009-01-23  Ulrich Drepper  <drepper@redhat.com>
1408         * sysdeps/unix/sysv/linux/tst-clone.c (do_test): Avoid warning.
1410         * misc/hsearch_r.c (hcreate_r): We need at least three elements in
1411         the hash table.
1412         * misc/Makefile (tests): Add bug-hsearch1.
1413         * misc/bug-hsearch1.c: New file.
1415 2009-01-22  Roland McGrath  <roland@redhat.com>
1417         * Makeconfig (%.v.i): Strip trailing # comments,
1418         not only whole-line comments.
1420 2009-01-10  Ulrich Drepper  <drepper@redhat.com>
1422         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Take
1423         one parameter.  If non-NULL use it to initialize return value.
1424         (_dl_setup_pointer_guard): New function.
1425         * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
1426         * sysdeps/generic/ldsodefs.h: Declare _dl_random.
1427         * elf/rtld.c (security_init): Pass _dl_random to
1428         _dl_setup_stack_chk_guard.  Call _dl_setup_pointer_guard to initialize
1429         pointer_chk_guard.
1430         * elf/dl-sysdep.c (_dl_random): New variable.
1431         (_dl_sysdep_start): Handle AT_RANDOM.
1432         (_dl_show_auxv): Likewise.
1433         * elf/dl-support.c (_dl_random): New variable.
1434         (_dl_aux_init): Handle AT_RANDOM.
1435         * csu/libc-start.c [!SHARED] (libc_start_main): Pass _dl_random
1436         to _dl_setup_stack_chk_guard.
1438         * elf/elf.h (AT_RANDOM): Define AT_BASE_PLATFORM and AT_RANDOM.
1440 2009-01-10  Roland McGrath  <roland@redhat.com>
1442         * nscd/nscd.c (parse_opt): Use argp_error for bad -i argument.
1444 2009-01-08  Ulrich Drepper  <drepper@redhat.com>
1446         * sysdeps/i386/fpu/libm-test-ulps: Adjust expm1 errors.
1448         [BZ #9706]
1449         * nss/nss_files/files-parse.c (strtou32): New function.
1450         (INT_FIELD): Use strotu32 instead of strtoul to unify behavior
1451         across 32-bit and 64-bit platforms.
1452         (INT_FIELD_MAYBE_NULL): Likewise.
1454 2009-01-08  Jakub Jelinek  <jakub@redhat.com>
1456         [BZ #9720]
1457         * sysdeps/unix/sysv/linux/bits/resource.h (enum __rusage_who): Avoid
1458         comma after RUSAGE_CHILDREN if not -D_GNU_SOURCE.
1459         * sysdeps/unix/sysv/linux/sparc/bits/resource.h (enum __rusage_who):
1460         Likewise.
1462 2009-01-05  Paolo Bonzini  <bonzini@gnu.org>
1464         [BZ #697]
1465         * posix/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
1466         being NULL also if there are no backreferences.
1467         * posix/rxspencer/tests: Add testcases.
1469 2009-01-04  Paolo Bonzini  <bonzini@gnu.org>
1471         [BZ #9697]
1472         * posix/bug-regex17.c: Add testcases.
1473         * posix/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
1474         handling.
1476 2009-01-05  Martin Schwidefsky  <schwidefsky@de.ibm.com>
1478         * sysdeps/unix/sysv/linux/s390/bits/libc-vdso.h: New file.
1479         * sysdeps/unix/sysv/linux/s390/gettimeofday.c: New file.
1480         * sysdeps/unix/sysv/linux/s390/init-first.c: New file.
1481         * sysdeps/unix/sysv/linux/s390/Makefile (sysdep_routines): Add dl-vdso
1482         for elf subdir.
1483         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (INLINE_VSYSCALL,
1484         INTERNAL_VSYSCALL, INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK,
1485         INTERNAL_SYSCALL_NCS, HAVE_CLOCK_GETRES_VSYSCALL and
1486         HAVE_CLOCK_GETTIME_VSYSCALL: Define.
1487         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
1488         * sysdeps/unix/sysv/linux/s390/Versions: New file.
1490 2008-12-31  Paolo Bonzini  <bonzini@gnu.org>
1492         * posix/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
1493         * posix/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
1494         re_string_skip_chars, re_string_reconstruct): Likewise.
1495         * posix/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
1497 2008-12-31  Rafael Avila de Espindola  <espindola@google.com>
1499         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r): Check and
1500         adjust the buffer alignment.
1502 2009-01-07  Samuel Thibault  <samuel.thibault@ens-lyon.org>
1504         * sysdeps/mach/hurd/Makefile (sysdep_headers) [subdir=socket]:
1505         Add net/ethernet.h net/if_arp.h net/if_ether.h net/if_ppp.h
1506         net/route.h.
1508         * hurd/report-wait.c (describe_number): Use __stpcpy to prepend
1509         flavor to description only when flavor is not NULL.
1511         * hurd/hurdsig.c (signal_allowed): Unlock _hurd_dtable_lock
1512         mutex after SIGIO/SIGURG lookup loop.
1514 2009-01-03  Samuel Thibault  <samuel.thibault@ens-lyon.org>
1516         * bits/resource.h (PRIO_PROCESS, PRIO_PGRP, PRIO_USER): Add macros.
1518 2009-01-03  Ulrich Drepper  <drepper@redhat.com>
1520         * sysdeps/unix/sysv/linux/i386/sysdep.h: Describe 6th argument
1521         handling.
1523 2009-01-02  Ulrich Drepper  <drepper@redhat.com>
1525         * sysdeps/unix/sysv/linux/kernel-features.h
1526         (__ASSUME_FUTEX_CLOCK_REALTIME): Define.
1528         * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Create temporary state object
1529         if no output is written.
1531         * version.h: Bump to 2.10 development.
1533         * posix/getconf.c: Update copyright year.
1534         * nss/getent.c: Likewise.
1535         * iconv/iconvconfig.c: Likewise.
1536         * iconv/iconv_prog.c: Likewise.
1537         * elf/ldconfig.c: Likewise.
1538         * catgets/gencat.c: Likewise.
1539         * csu/version.c: Likewise.
1540         * elf/ldd.bash.in: Likewise.
1541         * elf/sprof.c (print_version): Likewise.
1542         * locale/programs/locale.c: Likewise.
1543         * locale/programs/localedef.c: Likewise.
1544         * nscd/nscd.c (print_version): Likewise.
1545         * debug/xtrace.sh: Likewise.
1546         * malloc/memusage.sh: Likewise.
1547         * malloc/mtrace.pl: Likewise.
1548         * debug/catchsegv.sh: Likewise.
1550 2008-12-29  Mike Frysinger  <vapier@gentoo.org>
1552         * iconvdata/Makefile (iconv-rules): Use LC_ALL=C when running awk
1553         script.
1555 2008-12-29  Ulrich Drepper  <drepper@redhat.com>
1557         * sysdeps/posix/getaddrinfo.c (gaih_inet): When the
1558         gethostbyname4_r function call succeeded, just leave the loop.
1560         [BZ #9694]
1561         * wcsmbs/wchar.h: Move undefs for local __need_* constants to the
1562         very end.
1563         * wctype/wctype.h: Get wint_t definition directly from <stddef.h>.
1564         * wctype/Makefile (tests): Add bug-wctypeh.
1565         * wctype/bug-wctypeh.c: New file.
1567         * nscd/nscd_gethst_r.c (nscd_gethst_r): Don't use nscd if
1568         LOCALDOMAIN is defined.
1569         * nscd/nscd_getai.c (__nscd_getai): Likewise.
1571         * sysdeps/x86_64/bits/select.h: New file.
1573         * resolv/res_init.c (__res_vinit): Count all servers in statp->nscount.
1575 2008-12-21  Bruno Haible  <bruno@clisp.org>
1577         [BZ #9677]
1578         * wcsmbs/mbsnrtowcs.c (__mbsnrtowcs): Create temporary state object
1579         if no output is written.
1581 2008-12-13  Klaus Dittrich  <kladit@arcor.de>
1583         * login/utmp_file.c (pututline_file): Replace call to dup2 with
1584         libc internal symbol __dup2 to avoid access through the PLT.
1586 2008-12-08  Ulrich Drepper  <drepper@redhat.com>
1588         [BZ #6545]
1589         * sysdeps/unix/sysv/linux/bits/socket.h (SCM_CREDENTIALS): Make
1590         available only for __USE_GNU.
1592         * inet/Makefile (tests): Add tst-getni2.
1593         * inet/tst-getni2.c: New file.
1595         [BZ #7080]
1596         * inet/getnameinfo.c (getnameinfo): Check for output buffers being
1597         NULL when NI_NAMEREQD is set.
1598         Patch mostly by Yang Hongyang <yanghy@cn.fujitsu.com>.
1599         * inet/Makefile (tests): Add tst-getni1.
1600         * inet/tst-getni1.c: New file.
1602 2008-12-03  Petr Baudis  <pasky@suse.cz>
1604         [BZ #7067]
1605         * nscd/connections.c (invalidate_cache): Use prune_run_lock
1606         instead of prune_lock.
1607         (nscd_run_prune): Before calling prune_cache, take prune_run_lock.
1608         * nscd/nscd.h (database_dyn): Add prune_run_cache.
1610 2008-12-07  Ulrich Drepper  <drepper@redhat.com>
1612         * resolv/res_send.c (send_dg): Use correct guards for SOCK_CLOEXEC
1613         use.
1615         * sysdeps/unix/sysv/linux/kernel-features.h: Fix typo in accept4
1616         handling.
1618         * resolv/res_init.c (__res_vinit): Always assign to statp->nscount
1619         after reading name server list.
1621         [BZ #7058]
1622         * nis/nss_nis/nis-hosts.c (_nss_nis_gethostbyname4_r): Fix memory
1623         handling for host name aliases.
1625 2008-11-24  Arkadiusz Miśkiewicz  <arekm@maven.pl>
1627         * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Use LOAD_PIC_REG
1628         instead of doing things manually.
1630 2008-11-26  Chris Steel  <chris.steel.lnx@googlemail.com>
1632         * posix/regex_internal.h (build_wcs_upper_buffer):
1633         Return type is reg_error_t.
1635 2008-12-05  Ulrich Drepper  <drepper@redhat.com>
1637         * posix/globtest.sh: Use mktemp to create temporary file and
1638         directory.
1640         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_SET_S): Handle large
1641         sets correctly.
1642         (__CPU_CLR_S): Likewise.
1643         (__CPU_ISSET_S): Likewise.
1645 2008-12-05  Joseph Myers  <joseph@codesourcery.com>
1646             Ulrich Drepper  <drepper@redhat.com>
1648         * scripts/firstversion.awk: Use custom comparison function to compare
1649         version numbers.
1650         * scripts/versions.awk: Use sort invocation which can handle
1651         multi-digit sub-version numbers.
1653 2008-12-04  Ulrich Drepper  <drepper@redhat.com>
1655         * locale/programs/ld-address.c (DEFINE_LANGUAGE_CODE2): Define.
1656         * locale/iso-639.def: Add Chhattisgarhi entry.
1658 2008-12-02  Ulrich Drepper  <drepper@redhat.com>
1660         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Recognize
1661         ESRCH return value.
1662         (_nss_dns_gethostbyname4_r): Likewise.
1663         * resolv/res_init.c (__res_vinit): Initialize nscount to zero.
1664         * sysdeps/posix/getaddrinfo.c (gaih_inet): In case we use
1665         gethostbyname4_r, we don't have a separate IPv6 status, so copy
1666         the no_data variable.
1668         * resolv/res_init.c (__res_vinit): Fill in IPv4 name server
1669         information at the correct index.
1671         * socket/sys/socket.h: Declare accept4.
1672         * socket/accept4.c: New file.
1673         * sysdeps/unix/sysv/linux/accept4.c: New file.
1674         * sysdeps/unix/sysv/linux/i386/accept4.S: New file.
1675         * socket/Makefile (routines): Add accept4.
1676         * socket/Versions: Export accept4 with version GLIBC_2.10.
1677         * socket/paccept.c: Removed.
1678         * sysdeps/unix/sysv/linux/paccept.c: Removed.
1679         * sysdeps/unix/sysv/linux/i386/paccept.S: Removed.
1680         * Versions.def: Define GLIBC_2.10 for libc.
1681         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_ACCEPT4.
1683         * nscd/connections.c: Use accept4.
1685         * sysdeps/unix/sysv/linux/i386/socket.S: Fix comment.
1687 2008-12-01  Ulrich Drepper  <drepper@redhat.com>
1689         * resolv/res_send.c (send_dg): Create sockets with non-blocking
1690         flag already set.
1692         * stdlib/setenv.c (unsetenv): Don't search environment if it does
1693         not exist.
1694         * stdlib/Makefile (tests): Add tst-unsetenv1.
1695         * stdlib/tst-unsetenv1.c: New file.
1697 2008-11-29  Ulrich Drepper  <drepper@redhat.com>
1699         * login/utmp_file.c (file_writable): New variable.
1700         (setutent_file): Don't try to open file for writing.
1701         (pututline_file): Before writing, make descriptor writable if
1702         necessary.
1704 2008-11-26  Ulrich Drepper  <drepper@redhat.com>
1706         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Only restrict search
1707         to IPv4 or IPv6 if an interface has been found.
1709 2008-11-26  Roland McGrath  <roland@redhat.com>
1711         * sysdeps/unix/sysv/linux/alpha/ipc_priv.h: Renamed to ...
1712         * sysdeps/unix/sysv/linux/powerpc/ipc_priv.h: ... here.
1714         * sysdeps/unix/sysv/linux/alpha/wordexp.c: Renamed to ...
1715         * sysdeps/unix/sysv/linux/ia64/wordexp.c: ... here.
1716         * sysdeps/unix/sysv/linux/sparc/sparc64/wordexp.c: Change #include.
1718         * elf/elf.h (NT_386_IOPERM): New macro.
1719         (NT_PPC_VSX): New macro.
1721 2008-11-25  Roland McGrath  <roland@redhat.com>
1723         * sysdeps/alpha, sysdeps/unix/bsd/osf/alpha,
1724         sysdeps/unix/bsd/Attic/osf1/alpha, sysdeps/unix/sysv/linux/alpha,
1725         sysdeps/unix/sysv/linux/alpha/alpha, sysdeps/unix/alpha,
1726         sysdeps/mach/alpha, sysdeps/mach/hurd/alpha:
1727         Subdirectories moved to ports repository.
1728         * configure.in (base_machine): Remove alpha case.
1730 2008-11-25  Thomas Schwinge  <tschwinge@gnu.org>
1732         * sysdeps/mach/strerror_l.c: New file.
1734 2008-11-13  Ryan S. Arnold  <rsa@us.ibm.com>
1736         [BZ #6411]
1737         * sysdeps/powerpc/fpu/Makefile: Added test case tst-setcontext-fpscr.
1738         * sysdeps/powerpc/fpu/feholdexcpt.c (_FPU_MASK_ALL): Define to replace
1739         magic numbers.
1740         * sysdeps/powerpc/fpu/fenv_libc.h (fesetenv_register): Dynamically
1741         choose mtfsf insn based on PPC_FEATURE_HAS_DFP.
1742         (relax_fenv_state): Same as above.
1743         (FPSCR_29): Reserve bit in ISA 2.05.
1744         (FPSCR_NI): Provide define for compat.
1745         * sysdeps/powerpc/fpu/fesetenv.c (_FPU_MASK_ALL): Define to replace
1746         magic numbers.
1747         * sysdeps/powerpc/fpu/feupdateenv.c (_FPU_MASK_ALL): Define to replace
1748         magic numbers.
1749         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c: New file.  Test case to
1750         test setcontext and swapcontext with dynamic 64-bit FPSCR detection.
1751         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp): Adjust
1752         access to hwcap to account for hwcap size increase to uint64_t.
1753         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S (__sigsetjmp ):
1754         Likewise.
1755         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S
1756         (*setcontext): Likewise.
1757         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/setcontext.S:
1758         New file.
1759         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/swapcontext.S:
1760         New file.
1761         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
1762         (*setcontext): dynamically select mtfsf insn based on
1763         PPC_FEATURE_HAS_DFP. Adjust access to hwcap to account for hwcap size
1764         increase to uint64_t.
1765         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
1766         (*swapcontext): dynamically select mtfsf insn based on
1767         PPC_FEATURE_HAS_DFP.  Adjust access to hwcap to account for hwcap size
1768         increase to uint64_t.
1769         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/setcontext.S:
1770         New file.
1771         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/swapcontext.S:
1772         New file.
1773         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
1774         (*setcontext): dynamically select mtfsf insn based on
1775         PPC_FEATURE_HAS_DFP.
1776         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
1777         (*swapcontext): dynamically select mtfsf insn based on
1778         PPC_FEATURE_HAS_DFP.
1780 2008-11-13  Ulrich Drepper  <drepper@redhat.com>
1782         * version.h: Bump for 2.9 release.
1783         * include/features.h (__GLIBC_MINOR__): Bump to 9.
1785         [BZ #7029]
1786         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_ALLOC_SIZE):
1787         Multiply with sizeof of __cpu_mask, not 8 unconditionally after
1788         all the rounding.
1790 2008-11-11  Ulrich Drepper  <drepper@redhat.com>
1792         [BZ #7009]
1793         * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): Don't abort for
1794         unknown request types for now.
1796 2008-11-11  Roland McGrath  <roland@redhat.com>
1798         * sysdeps/x86_64/configure: New file.
1800         * configure.in: Add AC_SUBST(libc_cv_cpp_asm_debuginfo).
1801         * configure: Regenerated.
1803 2008-11-03  Martin Schwidefsky  <schwidefsky@de.ibm.com>
1805         * sysdeps/s390/s390-64/dl-trampoline.S (_dl_runtime_profile): Use the
1806         correct instruction to remove the stack frame.
1808 2008-11-03  Michael Matz  <matz@suse.de>
1810         * sysdeps/s390/bits/atomic.h (__arch_compare_and_exchange_val_32_acq,
1811         __arch_compare_and_exchange_val_64_acq): Add "memory" clobber.
1813 2008-11-07  Jakub Jelinek  <jakub@redhat.com>
1815         * include/stdio.h (__builtin_fwrite, __builtin_fwrite_unlocked):
1816         Remove.
1818         * bits/libc-tsd.h (__libc_tsd_define, __libc_tsd_address,
1819         __libc_tsd_get, __libc_tsd_set): Add TYPE argument, use it as the type
1820         of the thread variable instead of void *.
1821         * sysdeps/mach/hurd/bits/libc-tsd.h (__libc_tsd_define,
1822         __libc_tsd_address, __libc_tsd_get, __libc_tsd_set): Likewise.
1823         * include/ctype.h (CTYPE_B, CTYPE_TOUPPER, CTYPE_TOLOWER): Adjust
1824         __libc_tsd_define arguments.
1825         (__ctype_b_loc, __ctype_toupper_loc, __ctype_tolower_loc): Adjust
1826         __libc_tsd_address arguments.  Remove union hack.
1827         * include/rpc/rpc.h (RPC_VARS): Adjust __libc_tsd_define arguments.
1828         * sunrpc/rpc_thread.c (RPC_VARS): Likewise.
1829         (__rpc_thread_destroy, rpc_thread_multi, __rpc_thread_variables):
1830         Adjust __libc_tsd_{set,get} arguments.
1831         * ctype/ctype-info.c (CTYPE_B, CTYPE_TOUPPER, CTYPE_TOLOWER): Adjust
1832         __libc_tsd_define arguments.
1833         * locale/uselocale.c (__uselocale): Adjust __libc_tsd_{set,get}
1834         arguments.
1835         * locale/lc-ctype.c (_nl_postload_ctype): Likewise.
1836         * locale/global-locale.c (__libc_tsd_LOCALE): Adjust type.
1837         (LOCALE): Adjust __libc_tsd_define arguments.
1838         * locale/localeinfo.h (_NL_CURRENT_LOCALE): Adjust __libc_tsd_get
1839         arguments.
1840         (LOCALE): Adjust __libc_tsd_define arguments.
1841         * sysdeps/mach/hurd/malloc-machine.h (MALLOC): Adjust __libc_tsd_define
1842         arguments.
1843         (tsd_setspecific, tsd_getspecific): Adjust __libc_tsd_{set,get}
1844         arguments.
1846 2008-11-02  Ulrich Drepper  <drepper@redhat.com>
1848         * malloc/malloc.c (public_rEALLOc): When new arena is used, copy
1849         really all bytes.  Patch by Denys Vlasenko <dvlasenk@redhat.com>.
1851 2008-11-01  Ulrich Drepper  <drepper@redhat.com>
1853         [BZ #6966]
1854         * misc/hsearch_r.c (hsearch_r): Fix secondary hash function.
1856 2008-10-24  Joseph Myers  <joseph@codesourcery.com>
1857             Ulrich Drepper  <drepper@redhat.com>
1859         * math/tgmath.h (__floating_type): Use __builtin_classify_type in
1860         definition for GCC 3.1 and later.
1862 2008-10-31  Jakub Jelinek  <jakub@redhat.com>
1864         * elf/dl-tls.c (__tls_get_addr): After calling _dl_update_slotinfo
1865         refetch dtv, as it might have changed.
1866         * elf/Makefile: Add rules to build and run tst-tls18.
1867         * elf/tst-tls18.c: New test.
1868         * elf/tst-tlsmod18a.c: New file.
1870 2008-09-09  Aurelien Jarno  <aurelien@aurel32.net>
1872         [BZ #6875]
1873         * iconvdata/gconv-modules: Add LATIN9 as an alias to ISO-8859-15.
1875 2008-10-31  Ulrich Drepper  <drepper@redhat.com>
1877         [BZ #6867]
1878         * sysdeps/powerpc/elf/rtld-global-offsets.sym: Fix typo.
1880         [BZ #6919]
1881         * posix/spawnattr_getschedparam.c (posix_spawnattr_getschedparam):
1882         Fix length of copy operation.
1884 2008-10-02  Pierre Habouzit <madcoder@debian.org>
1886         * sysdeps/unix/sysv/linux/eventfd.c (eventfd): Use the eventfd2 syscall
1887         and fix its calling convention.
1889 2008-10-07  Andreas Schwab  <schwab@suse.de>
1891         [BZ #6942]
1892         * resolv/res_send.c (send_vc): Fix last change.
1893         (send_dg): Align here as well.
1895 2008-10-31  Ulrich Drepper  <drepper@redhat.com>
1897         * sysdeps/unix/sysv/linux/ulimit.c (__ulimit): Handle UL_GETFSIZE
1898         return value in case rlimit is RLIM_INFINITY.
1900         [BZ #6947]
1901         * sysdeps/unix/sysv/linux/ulimit.c (__ulimit): Fix return value
1902         for UL_SETFSIZE.
1903         * resource/Makefile (tests): Add bug-ulimit1.
1904         * resource/bug-ulimit1.c: New file.
1906         [BZ #6974]
1907         * sunrpc/rpc_main.c (mkfile_output): Properly handle filename
1908         without dot.  Properly terminate the string with a null byte.
1909         Based on a patch by Aurelien Jarno <aurelien@aurel32.net>.
1911         [BZ #6980]
1912         * debug/getgroups_chk.c (__getgroups_chk): Return EINVAL error for
1913         negative sizees.
1914         * posix/bits/unistd.h (getgroups): Call __getgroups_chk for
1915         negative __size.
1917         [BZ #6995]
1918         * sysdeps/powerpc/powerpc32/dl-machine.c: Fix typo in message.
1920 2008-10-30  Ulrich Drepper  <drepper@redhat.com>
1922         * grp/initgroups.c (internal_getgrouplist): Don't prematurely
1923         abort if there is no initgroups_dyn function.
1925         * resolv/res_send.c (send_dg): On timeout, only return nonzero
1926         result if any of the queries really provided an answer.
1928 2008-10-28  Ulrich Drepper  <drepper@redhat.com>
1930         * po/lt.po: Update from translation team.
1932 2008-10-26  Ulrich Drepper  <drepper@redhat.com>
1934         * po/id.po: Update from translation team.
1936 2008-10-24  Ulrich Drepper  <drepper@redhat.com>
1938         * resolv/res_query.c (__libc_res_nquery): Add a few casts.
1939         Fix tests for existence of second reply.
1941 2008-10-23  Ulrich Drepper  <drepper@redhat.com>
1943         * po/id.po: New file.
1944         Contributed by the Indonesian translation team.
1946 2008-10-22  Dmitry V. Levin  <ldv@altlinux.org>
1948         * misc/syslog.c (openlog_internal): Fix __have_sock_cloexec
1949         initialization.
1951 2008-10-17  Jakub Jelinek  <jakub@redhat.com>
1953         * elf/Makefile: Add rules to build and run tst-tls17.
1954         * elf/tst-tls17.c: New test.
1955         * elf/tst-tlsmod17a.c: New file.
1956         * elf/tst-tlsmod17b.c: Likewise.
1958 2008-10-17  Ulrich Drepper  <drepper@redhat.com>
1960         * stdlib/divmod_1.c: Use correct type for dummy variable.
1961         * stdlib/mod_1.c: Likewise.
1963 2008-10-16  Ulrich Drepper  <drepper@redhat.com>
1965         * elf/dl-tls.c (_dl_update_slotinfo): Copy all of the initial DTV.
1967 2008-10-16  Jakub Jelinek  <jakub@redhat.com>
1969         * sysdeps/unix/sysv/linux/sys/signalfd.h (signalfd): Fix __THROW vs.
1970         __nonnull order for C++.
1971         * sysdeps/unix/sysv/linux/alpha/sys/signalfd.h (signalfd): Likewise.
1972         * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h (signalfd): Likewise.
1974 2008-10-01  Daniel Jacobowitz  <dan@codesourcery.com>
1976         * stdlib/longlong.h: Update from GCC.
1978 2008-10-09  Jakub Jelinek <jakub@redhat.com>
1979             David S. Miller  <davem@davemloft.net>
1981         * sysdeps/sparc/sparc64/sparcv9v/memcpy.S: When not USE_BPR,
1982         make sure any registers used with 64-bit 'branch-on-register'
1983         instructions have their top 32-bits clear.
1984         * sysdeps/sparc/sparc64/sparcv9v/memset.S: Likewise.
1985         * sysdeps/sparc/sparc64/sparcv9v2/memcpy.S: Likewise.
1987 2008-09-18  Andreas Schwab  <schwab@suse.de>
1989         [BZ #6942]
1990         * resolv/res_send.c (send_vc): Fix use of unaligned address.
1991         Properly handle partial reads.
1993 2008-10-01  Mark Shinwell  <shinwell@codesourcery.com>
1995         * elf/elf.h (STO_MIPS_PLT): New.
1996         (R_MIPS_COPY): New.
1997         (R_MIPS_JUMP_SLOT): New.
1998         (R_MIPS_NUM): Redefine to 128.
1999         (DT_MIPS_PLTGOT): New.
2000         (DT_MIPS_RWPLT): New.
2001         (DT_MIPS_NUM): Redefine to 0x35.
2003 2008-10-01  Ulrich Drepper  <drepper@redhat.com>
2005         * timezone/africa: Update from tzdata2008f.
2006         * timezone/asia: Likewise.
2007         * timezone/australasia: Likewise.
2008         * timezone/europe: Likewise.
2009         * timezone/leapseconds: Likewise.
2010         * timezone/northamerica: Likewise.
2011         * timezone/southamerica: Likewise.
2012         * timezone/zone.tab: Likewise.
2014 2008-09-30  Ulrich Drepper  <drepper@redhat.com>
2016         * nscd/connections.c: Disable use of paccept for now.
2018 2008-09-29  Ulrich Drepper  <drepper@redhat.com>
2020         * socket/Versions: Remove paccept export for GLIBC_2.9.
2021         * socket/Makefile (routines): Remove paccept.
2022         * socket/sys/socket.h: Remove paccept declaration.
2024         * po/sv.po: Update from translation team.
2026 2008-09-22  Deborah S. Townsend  <dstownse@us.ibm.com>
2028         * sysdeps/s390/s390-64/s390x-mcount.S: Replace ahi with aghi.
2029         * sysdeps/unix/sysv/linux/s390/s390-64/socket.S: Likewise.
2031 2008-09-16  Ulrich Drepper  <drepper@redhat.com>
2033         * dlfcn/dlopen.c (dlopen_doit): Allow __RTLD_SPROF flag.
2034         Patch by Olivier Fourdan <ofourdan@redhat.com>.
2036 2008-09-15  Ulrich Drepper  <drepper@redhat.com>
2038         * sunrpc/rpc/svc.h: Declare svcfd_create.
2039         Patch by Michael Solberg <msolberg@redhat.com>.
2041 2008-09-12  Flavio Leitner  <fleitner@redhat.com>
2042             Ulrich Drepper  <drepper@redhat.com>
2044         * malloc/malloc.c (public_vALLOc): Try other arenas in case
2045         _int_valloc fails.
2046         (public_pVALLOc): Likewise.
2048 2008-09-02  Andreas Jaeger  <aj@suse.de>
2050         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: Fix last
2051         commit.
2053 2008-08-26  Aurelien Jarno  <aurelien@aurel32.net>
2055         [BZ #6860]
2056         * hurd/hurd/signal.h (HURD_MSGPORT_RPC): Fix a typo.
2058 2008-07-18  Daniel Jacobowitz  <dan@codesourcery.com>
2060         * Makefile (check-data): Check data directory in add-ons.
2061         * elf/Makefile (check-data): Likewise.
2063 2008-08-18  Roland McGrath  <roland@redhat.com>
2065         * configure.in (--with-cpu): Check compiler support for -march/-mcpu.
2066         * configure: Regenerated.
2067         * config.make.in (cflags-cpu): New substituted variable.
2068         (with-cpu): Variable removed.
2069         * Makeconfig (+cflags): Use $(cflags-cpu), not $(with-cpu).
2071 2008-08-14  Ryan S. Arnold  <rsa@us.ibm.com>
2073         [BZ #6845]
2074         * sysdeps/powerpc/fpu/bits/mathinline.h (__signbitl): Copy new
2075         __signbitl definition and __LONG_DOUBLE_128__ guard from:
2076         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: Remove as
2077         redundant.  Functions which call floating point assembler operations
2078         should go into a sysdeps powerpc/fpu directory.
2080 2008-08-15  Ulrich Drepper  <drepper@redhat.com>
2082         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Define MAP_STACK.
2083         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Likewise.
2085 2008-08-14  Ulrich Drepper  <drepper@redhat.com>
2087         * sysdeps/x86_64/memset.S: Reduce size of tables for PIC.
2089         * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): Undo all
2090         change related to AT_EXECFN.  We cannot use that string.
2091         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Remove
2092         _dl_execfn member.
2093         * elf/dl-support.c: Remove _dl_execfn variable.
2094         (_dl_aux_init): Remove handling of AT_EXECFN.
2095         * elf/dl-sysdep.c (_dl_sysdep_start): Remove handling of AT_EXECFN.
2096         * elf/rtld.c (process_envvars): Remove use of __ASSUME_AT_EXECFN.
2098 2008-08-13  Ulrich Drepper  <drepper@redhat.com>
2100         [BZ #6544]
2101         * libio/fmemopen.c: Implement binary mode.  In this mode no NUL
2102         byte gets added to writes and seeks from the end use the length of
2103         the buffer and not the currently terminating NUL byte.
2105         [BZ #6634]
2106         * login/utmp_file.c (getutent_r_file): Take additional parameter.
2107         Set to true if locking failed.
2108         (getutid_r_file): Adjust caller.
2109         (pututline_file): Likewise.  Return NULL in this case.
2110         Patch mostly by halesh.s@gmail.com.
2112 2008-08-12  Ulrich Drepper  <drepper@redhat.com>
2114         [BZ #6589]
2115         * sysdeps/unix/sysv/linux/ifaddrs.c (struct sockaddr_ll_max):
2116         Define.
2117         (struct ifaddrs_storage): Use it instead of sockaddr_ll.
2119 2008-08-12  Ryan S. Arnold  <rsa@us.ibm.com>
2121         [BZ #6839]
2122         * sysdeps/powerpc/powerpc32/dl-machine.c (CHECK_STATIC_TLS): Remove
2123         macro since it is now available in elf/dynamic-link.h.
2125 2008-08-12  Roland McGrath  <roland@frob.com>
2127         * hurd/hurd/signal.h (HURD_MSGPORT_RPC): Avoid -Wparenthesis triggers,
2128         in case used outside of libc.
2129         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>
2131 2008-08-11  Ulrich Drepper  <drepper@redhat.com>
2133         * resolv/res_mkquery.c (res_nmkquery): Call ns_name_compress
2134         directly instead of going through dn_comp.
2136 2008-08-11  Aurelien Jarno  <aurel32@debian.org>
2138         * sysdeps/mach/i386/machine-lock.h (__spin_unlock, __spin_try_lock):
2139         Fix asm constraints.
2141 2008-08-07  Ulrich Drepper  <drepper@redhat.com>
2143         [BZ #6790]
2144         * sysdeps/unix/sysv/linux/bits/in.h (IP_PMTUDISC_PROBE): Define.
2145         (IPV6_PMTUDISC_PROBE): Likewise.
2147 2008-08-07  Pete Eberlein  <eberlein@us.ibm.com>
2149         [BZ #6791]
2150         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h (PROT_SAO): Define.
2152 2008-08-01  Steven Munroe  <sjmunroe@us.ibm.com>
2153             Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
2155         [BZ #6817]
2156         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags):
2157         Added the members 'vsx' and 'arch_2_06'.
2158         (_dl_powerpc_platforms): Add the member 'power7'.
2159         * sysdeps/powerpc/dl-procinfo.h: Modify _DL_HWCAP_FIRST
2160         to reflect the changes required by VSX and ISA 2.06.
2161         Modify _DL_PLATFORMS_COUNT to reflect the addition of
2162         'power7'.
2163         Defined PPC_PLATFORM_POWER7.
2164         (_dl_string_platform): Add support for POWER7.
2165         * sysdeps/powerpc/sysdep.h: Define bit masks for VSX
2166         capability and ISA 2.06.
2168 2008-08-07  Ulrich Drepper  <drepper@redhat.com>
2170         [BZ #6824]
2171         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: Use correct
2172         macro to detect use of 128 bit long double.
2173         Patch by Ryan S. Arnold <rsa@us.ibm.com>.
2175 2008-08-05  Ulrich Drepper  <drepper@redhat.com>
2177         * scripts/gen-as-const.awk: Use 32-bit values on 32-bit platforms.
2179         [BZ #5794]
2180         * sysdeps/i386/fpu/s_expm1l.S: Simply use exp implementation for large
2181         parameters.
2182         * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
2183         Patch by Denys Vlasenko <dvlasenk@redhat.com>.
2185 2008-08-03  Ulrich Drepper  <drepper@redhat.com>
2187         * nscd/connections.c (main_loop_poll): Pass a buffer which is
2188         guaranteed to be large enough to read inotify event.  Ignore
2189         EAGAIN error.  Better error message.  Add branch predicition.
2190         (main_loop_epoll): Likewise.
2192 2008-08-02  Roland McGrath  <roland@frob.com>
2194         * sysdeps/mach/i386/machine-lock.h (__spin_unlock, __spin_try_lock):
2195         Add memory clobbers.
2197 2008-08-02  Ulrich Drepper  <drepper@redhat.com>
2199         * manual/arith.texi: Avoid @strong{Note:}.
2200         * manual/creature.texi: Likewise.
2201         * manual/filesys.texi: Likewise.
2202         * manual/math.texi: Likewise.
2203         * manual/memory.texi: Likewise.
2204         * manual/resource.texi: Likewise.
2205         * manual/syslog.texi: Likewise.
2206         * manual/time.texi: Likewise.
2208         * sysdeps/posix/clock_getres.c (hp_timing_getres): Remove inline
2209         to prevent warning.
2211 2008-08-01  Ulrich Drepper  <drepper@redhat.com>
2213         * sysdeps/unix/sysv/linux/Versions: Fix changes due to old patch for
2214         new epoll_create1 interface.
2215         * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
2216         * sysdeps/unix/sysv/linux/sys/epoll.h: Likewise.
2217         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
2219         * include/arpa/nameser.h (NS_GET16): Use const pointer.
2220         (NS_GET32): Likewise.
2222         * sysdeps/unix/sysv/linux/kernel-features.h: s390 has the new
2223         syscalls, too.
2225         * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): We cannot
2226         use the AT_EXECFN value if it is no absolute path.
2227         * sysdeps/unix/sysv/linux/kernel-features.h: Never define
2228         __ASSUME_AT_EXECFN.
2230         * Versions.def: Add GLIBC_2.9 to libresolv.
2231         * include/resolv.h: Remove hidden proto declarations for __ns_*
2232         functions.  Add them for __dn_count_labels and __p_secstodate.
2233         * include/arpa/nameser.h: Add a number of hidden proto declarations.
2234         Define ns_msg_getflags macro here.
2235         * resolv/res_debug.c: Add hidden definition for __dn_count_labels
2236         and __p_secstodate.
2237         * resolv/Versions: Export functions from <arpa/nameser.h> from
2238         libresolv in version GLIBC_2.9.
2239         * resolv/ns_name.c: Integrate changes from bind 9.5.0.  Add necessary
2240         hidden definitions.
2241         * resolv/ns_netint.c: Likewise.
2242         * resolv/ns_parse.c: Likewise.
2243         * resolv/ns_print.c: Likewise.
2244         * resolv/ns_samedomain.c: Likewise.
2245         * resolv/ns_ttl.c: Likewise.
2246         * resolv/arpa/nameser_compat.h: Likewise.
2247         * resolv/arpa/nameser.h: Likewise.  Remove macros which redirect
2248         function calls.
2249         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Use __ns_get16
2250         instead of ns_get16.
2251         * resolv/nss_dns/dns-host.c (getanswer_r): Use __ns_get16 and
2252         __ns_get32 instead of ns_get16 and ns_get32 respectively.
2253         (gaih_getanswer_slice): Likewise.
2254         * resolv/Makefile (libresolv-routines): Add ns_date.
2255         * resolv/ns_date.c: New file.
2257         * elf/Makefile (check-localplt.out): Also check libresolv and
2258         libcrypt.
2260 2008-07-31  Ulrich Drepper  <drepper@redhat.com>
2262         * sysdeps/unix/sysv/linux/kernel-features.h: Define
2263         __ASSUME_O_CLOEXEC.
2265 2008-07-30  Ulrich Drepper  <drepper@redhat.com>
2267         * sysdeps/posix/getaddrinfo.c (gaih_inet): Raise size of initial
2268         buffer passed to NSS functions.
2270         * nscd/connections.c (nscd_init): Typo in preprocessor directive.
2272         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PACCEPT):
2273         Define.
2275         * misc/syslog.c (openlog_internal): Fix compile problem.
2277 2008-07-28  Roland McGrath  <roland@redhat.com>
2279         * elf/dl-sysdep.c (_dl_show_auxv): Add AT_EXECFN to the table.
2281 2008-07-28  Ulrich Drepper  <drepper@redhat.com>
2283         * io/ftw.c (add_object): Remove inline to avoid warning.
2285         * sysdeps/unix/sysv/linux/paccept.c: Fix compile problem.
2287         * resolv/res_send.c (__libc_res_nsend): Take additional parameter.
2288         Use it instead of locally defined resplen2 variable.
2289         (res_nsend): Adjust for __libc_res_nsend interface change.
2290         (send_vc): Initialize *resplen2 if necessary.  Read length of
2291         package into an appropriately aligned variable.  Store converted length
2292         in new variable and use it appropriately.
2293         Add branch prediction help.
2294         * resolv/res_query.c (__libc_res_nquery): Take additional parameter
2295         and pass it on to __libc_res_nsend.  Adjust all callers.
2296         (__libc_res_nsearch): Likewise.
2297         (__libc_res_nqeurydomain): Likewise.
2298         * resolv/nss_dns/dns-host.c: Adjust for __libc_res_nsearch interface
2299         change.
2300         (_nss_dns_gethostbyname4): Don't unconditionally allocate tmp array.
2301         Define resplen2 variable and pass it to __libc_res_nsearch and then
2302         to gaih_getanswer.
2303         (getanswer_r): In case of incorrect DNS data don't overread buffer.
2304         Add branch prediction.
2305         (gaih_getanswer_slice): Likewise.  Check for invalid data types.
2306         (gaih_getanswer): Don't decode second slice if first one failed due
2307         to a too small buffer.  Don't let not found status of second
2308         decoder shadow results of the first.
2309         * resolv/gethnamaddr.c (gethostbyname2): Adjust for __libc_res_nsearch
2310         and __libc_res_nquery interface changes
2311         (gethostbyaddr): Adjust for __libc_res_nquery interface change.
2312         * include/resolv.h: Adjust prototypes for __libc_res_nquery,
2313         __libc_res_nsearch, and __libc_res_nsend.
2314         * resolv/nss_dns/dns-canon.c: Adjust for __libc_res_nquery interface
2315         change.
2316         * resolv/nss_dns/dns-network.c: Adjust for __libc_res_nquery and
2317         __libc_res_nsearch interface changes.
2319 2008-07-27  Ulrich Drepper  <drepper@redhat.com>
2321         * libio/iopopen.c (_IO_new_proc_open): Remove unnecessary volatile.
2323         * posix/wordexp.c (exec_comm): Use pipe2 if possible to create
2324         file descriptors with close-on-exec set.
2325         (exec_comm_child): Fix the case where the write end of the pipe is
2326         STDOUT_FILENO already.  In case it is, clear close-on-exec.
2328         * sysdeps/unix/sysv/linux/syscalls.list: Add __pipe2 alias.
2329         * io/pipe2.c: Likewise.
2330         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PIPE2
2331         instead of __ASSUME_PACCEPT.
2332         * include/unistd.h: Declare __have_pipe2.
2333         * libio/iopopen.c: Implement "e" flag.
2334         * libio/Makefile (tests): Add tst-popen1.
2335         * libio/tst-popen1.c: New file.
2337         * sysdeps/unix/sysv/linux/bits/socket.h: Define PF_ISDN and AF_ISDN.
2338         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
2340 2008-07-26  Ulrich Drepper  <drepper@redhat.com>
2342         [BZ #6771]
2343         * libio/fileops.c (_IO_new_file_attach): Preserve errno around
2344         success call of _IO_SEEKOFF or calls which failed because the
2345         descriptor is for a pipe.
2347         * sunrpc/key_call.c (getkeyserv_handle): Use FD_CLOEXEC instead of
2348         magic number.
2350         * misc/syslog.c (openlog_internal): Use SOCK_CLOEXEC if possible.
2352         * malloc/mtrace.c (mtrace): Use 'e' flag in fopen call.  Drop
2353         F_SETFD use if we know fopen set the flag.
2355         * login/utmp_file.c (setutent_file): Minor optimization in case
2356         O_CLOEXEC is available.
2358 2008-07-24  Tom "spot" Callaway  <tcallawa@redhat.com>
2360         * Makeconfig: Define pie-ccflag and PIE-ccflag variables.
2361         * elf/Makefile: Use pie-ccflag variable.
2362         * nscd/Makefile: Likewise.
2363         * sysdeps/sparc/Makefile: Set $(pie-ccflag) to -fPIE.
2365 2008-07-21  Andreas Krebbel  <krebbel1@de.ibm.com>
2367         [BZ #6724]
2368         * Versions.def: Add GLIBC_2.9 version tag for libutil.
2369         * sysdeps/unix/sysv/linux/s390/bits/utmp.h: Copy of
2370         gnu/bits/utmp.h.  Check for __WORDSIZE_COMPAT32 removed.
2371         * sysdeps/unix/sysv/linux/s390/bits/utmpx.h: Copy of
2372         gnu/bits/utmpx.h.  Check for __WORDSIZE_COMPAT32 removed.
2373         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Add new files
2374         utmp32, utmpx32 and login32.
2375         * sysdeps/unix/sysv/linux/s390/s390-32/Versions: Add 2.9
2376         versions of struct utmp functions to libc and libutil.
2377         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-compat.h: New file.
2378         * sysdeps/unix/sysv/linux/s390/s390-32/getutent.c: New file.
2379         * sysdeps/unix/sysv/linux/s390/s390-32/getutent_r.c: New file.
2380         * sysdeps/unix/sysv/linux/s390/s390-32/getutid.c: New file.
2381         * sysdeps/unix/sysv/linux/s390/s390-32/getutid_r.c: New file.
2382         * sysdeps/unix/sysv/linux/s390/s390-32/getutline.c: New file.
2383         * sysdeps/unix/sysv/linux/s390/s390-32/getutline_r.c: New file.
2384         * sysdeps/unix/sysv/linux/s390/s390-32/getutmp.c: New file.
2385         * sysdeps/unix/sysv/linux/s390/s390-32/getutxent.c: New file.
2386         * sysdeps/unix/sysv/linux/s390/s390-32/getutxid.c: New file.
2387         * sysdeps/unix/sysv/linux/s390/s390-32/getutxline.c: New file.
2388         * sysdeps/unix/sysv/linux/s390/s390-32/login.c: New file.
2389         * sysdeps/unix/sysv/linux/s390/s390-32/login32.c: New file.
2390         * sysdeps/unix/sysv/linux/s390/s390-32/pututxline.c: New file.
2391         * sysdeps/unix/sysv/linux/s390/s390-32/updwtmp.c: New file.
2392         * sysdeps/unix/sysv/linux/s390/s390-32/updwtmpx.c: New file.
2393         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: New file.
2394         * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.c: New file.
2395         * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h: New file.
2396         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx-convert.h: New file.
2397         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.c: New file.
2398         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: New file.
2400 2008-07-26  Ulrich Drepper  <drepper@redhat.com>
2402         * scripts/gen-as-const.awk: Generate more widely usable code by
2403         using 64-bit arithmetic.
2405         * stdio-common/printf_fp.c (___printf_fp): Give wide outout code
2406         the same treatment as narrow output code in last patch.
2408         * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Namespace cleanup.
2410         [BZ #6763]
2411         * elf/dl-load.c (local_strdup): Remove inline.
2412         (_dl_map_object_from_fd): Don't allocate l_symbolic_searchlist.r_list.
2413         * elf/dl-object.c (_dl_new_object): Allocate symbolic searchlist as
2414         part of the object.
2416         * sysdeps/unix/sysv/linux/dl-origin.c: Add const to avoid warning.
2418 2008-07-25  Ulrich Drepper  <drepper@redhat.com>
2420         * sysdeps/unix/sysv/linux/kernel-features.h: IA-64 and SPARC have
2421         the new syscalls, too.
2423         * sysdeps/i386/i686/memcmp.S: Fix unwind information.
2424         Reported by Paul Pluzhnikov <ppluzhnikov@google.com>.
2426         [BZ #6698]
2427         * stdio-common/_i18n_number.h (_i18n_number_rewrite): Take additional
2428         parameter for end of buffer.  If temporary copy is too large use
2429         malloc.
2430         * stdio-common/vfprintf.c: Adjust for _i18n_number_rewrite
2431         interface change.
2432         * stdio-common/printf_fp.c (__printf_fp): Likewise..  Account for
2433         string rewrite when allocating buffer.
2435         * sysdeps/unix/sysv/linux/kernel-features.h: PPC has the new
2436         syscalls, too.
2438         * nscd/connections.c (nscd_init): Clean up fcntl call.
2440         * nscd/nscd_helper.c (open_socket): Use SOCK_CLOEXEC and
2441         SOCK_NONBLOCK if possible.
2443         * sysdeps/unix/sysv/linux/opensock.c (__opensock): Use
2444         SOCK_CLOEXEC if available.
2446         * include/rpc/clnt.h: Declare __libc_clntudp_bufcreate and
2447         __libc_clntudp_bufcreate_internal.
2448         * include/sys/socket.h: Declare __have_sock_cloexec.
2449         * socket/Makefile (aux): Add have_sock_cloexec.
2450         * socket/have_sock_cloexec.c: New file.
2451         * sunrpc/clnt_udp.h (clntudp_bufcreate): Now a wrapper around
2452         __libc_clntudp_bufcreate.
2453         (__libc_clntudp_bufcreate): Former implementation of clntudp_bufcreate
2454         which takes an additional parameter.  Create socket with non-blocking
2455         mode and close-on-exec flag set, if wanted.
2456         * sunrpc/Versions: Export __libc_clntudp_bufcreate@GLIBC_PRIVATE.
2457         * nis/ypclnt.c (yp_bind_client_create): Use __libc_clntpudp_bufcreate
2458         instead of clntudp_create.  The socket has already the close-on-exec
2459         flag set if SOCK_CLOEXEC is defined.
2461 2008-07-24  Ulrich Drepper  <drepper@redhat.com>
2463         * sysdeps/unix/sysv/linux/kernel-features.h: Define
2464         __ASSUME_PACCEPT, __ASSUME_IN_NONBLOCK, and __ASSUME_PACCEPT if
2465         appropriate.
2466         * nscd/connections.c: Avoid fcntl calls to set close-on-exec flag and
2467         non-blocking mode by using socket, paccept, and inotify_init1.
2469         * Versions.def (glibc): Add GLIBC_2.9.
2470         * io/Makefile (routines): Add dup3 and pipe2.
2471         * io/Versions [glibc] (GLIBC_2.9): Add dup3 and pipe2.
2472         * io/dup3.c: New file.
2473         * io/pipe2.c: New file.
2474         * posix/unistd.h: Declare dup3 and pipe2.
2475         * socket/Makefile (routines): Add paccept.
2476         * socket/Versions [glibc] (GLIBC_2.9): Add paccept.
2477         * socket/paccept.c: New file.
2478         * socket/sys/socket.h: Declare paccept.
2479         * sysdeps/unix/syscalls.list: Add entry for dup3.
2480         * sysdeps/unix/sysv/linux/Versions [glibc] (GLIBC_2.9): Add
2481         epoll_create2 and inotify_init1.
2482         * sysdeps/unix/sysv/linux/eventfd.c: Use eventfd1 syscall if possible.
2483         * sysdeps/unix/sysv/linux/paccept.c: New file.
2484         * sysdeps/unix/sysv/linux/signalfd.c: Use signalfd4 syscall if
2485         possible.
2486         * sysdeps/unix/sysv/linux/socketcall.h: Add SOCKOP_paccept.
2487         * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_create2,
2488         inotify_init1, and pipe2 entries.
2489         * sysdeps/unix/sysv/linux/alpha/sys/epoll.h: New file.
2490         * sysdeps/unix/sysv/linux/alpha/sys/eventfd.h: New file.
2491         * sysdeps/unix/sysv/linux/alpha/sys/inotify.h: New file.
2492         * sysdeps/unix/sysv/linux/alpha/sys/signalfd.h: New file.
2493         * sysdeps/unix/sysv/linux/alpha/sys/timerfd.h: New file.
2494         * sysdeps/unix/sysv/linux/bits/socket.h: Define SOCK_CLOEXEC and
2495         SOCK_NONBLOCK.
2496         * sysdeps/unix/sysv/linux/i386/paccept.S: New file.
2497         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: New file.
2498         * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: New file.
2499         * sysdeps/unix/sysv/linux/sparc/sys/inotify.h: New file.
2500         * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h: New file.
2501         * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: New file.
2502         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: New file.
2503         * sysdeps/unix/sysv/linux/sys/epoll.h: Define EPOLL_CLOEXEC and
2504         EPOLL_NONBLOCK.  Declare epoll_create2.
2505         * sysdeps/unix/sysv/linux/sys/eventfd.h: Define EFD_CLOEXEC and
2506         EFD_NONBLOCK.
2507         * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOEXEC and
2508         IN_NONBLOCK.  Declare inotify_init1.
2509         * sysdeps/unix/sysv/linux/sys/signalfd.h: Define SFD_CLOEXEC and
2510         SFD_NONBLOCK.
2511         * sysdeps/unix/sysv/linux/sys/timerfd.h: Define TFD_CLOEXEC and
2512         TFD_NONBLOCK.
2514         * elf/elf.h: Define AT_EXECFN.
2515         * elf/rtld.c [!__ASSUME_AT_EXECFN] (process_envvars): Don't handle
2516         LD_ORIGIN_PATH.
2517         * elf/dl-sysdep.c (_dl_sysdep_start): Handle AT_EXECFN.
2518         * elf/dl-support.c: Define _dl_execfn.  Don't define _dl_origin_path
2519         if __ASSUME_AT_EXECFN is defined.
2520         (_dl_aux_init): Handle AT_EXECFN.
2521         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_AT_EXECFN
2522         for 2.6.27 and up.
2523         * sysdeps/generic/ldsodefs.h (rtld_global_ro): Add _dl_execfn.
2524         Don't define _dl_origin_path if __ASSUME_AT_EXECFN is defined.
2525         * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): Use
2526         _dl_execfn if available and avoid compatibility code if
2527         __ASSUME_AT_EXECFN is defined.
2529         * sysdeps/unix/sysv/linux/dl-sysdep.h: Don't declare
2530         _dl_discover_osversion only for older kernels.
2532 2008-07-22  Roland McGrath  <roland@frob.com>
2534         * hurd/fd-read.c (_hurd_fd_read): Fix last change.
2536 2008-07-21  Roland McGrath  <roland@frob.com>
2538         * hurd/fd-read.c (_hurd_fd_read): Return EGRATUITOUS if the server
2539         returned too much data out of line.
2541 2008-07-20  Ulrich Drepper  <drepper@redhat.com>
2543         * locale/setlocale.c (setname): Remove inline to avoid compiler
2544         warning.
2546         [BZ #6712]
2547         * locale/setlocale.c (setlocale): Take the setlocale lock earlier.
2549 2008-07-15  Ulrich Drepper  <drepper@redhat.com>
2551         * stdio-common/vfprintf.c (_IO_helper_overflow): In case _IO_sputn
2552         doesn't manage to write anything, fail.
2554         * malloc/hooks.c (__malloc_check_init): Remove printf.
2556 2008-07-14  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2558         * sysdeps/mach/hurd/bits/fcntl.h: Include <sys/types.h>.
2560 2008-07-12  Ulrich Drepper  <drepper@redhat.com>
2562         * nscd/connections.c (main_loop_poll): Fix handling of read errors
2563         from inotify.
2564         (main_loop_epoll): Likewise.
2566 2008-07-09  Ulrich Drepper  <drepper@redhat.com>
2568         * resolv/res_send.c: Remove unnecessary res_pquery prototype.
2570         * resolv/res_query.c (__libc_res_nquery): Issue debug message only
2571         if DEBUG is defined.
2573         * resolv/res_query.c (__libc_res_nquery): Align buffer for T_AAAA
2574         query.  Adjust buffer size computation for padding.
2576 2008-07-08  Ulrich Drepper  <drepper@redhat.com>
2578         * stdio-common/Makefile: Add rules to build and run tst-setvbuf1.
2579         * stdio-common/tst-setvbuf1.c: New file.
2580         * stdio-common/tst-setvbuf1.expect: New file.
2582         [BZ #6719]
2583         * libio/iosetvbuf.c (_IO_setvbuf): Correctly clear buffering flags
2584         when selecting fully-buffered stream.
2585         Patch by Wang Xin <wxinee@gmail.com>.
2587 2008-07-06  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2589         * sysdeps/mach/hurd/open.c: Include <stdio.h>.
2590         (__open_2): New function.
2591         (__open64_2): New alias to __open_2.
2592         * sysdeps/mach/hurd/openat.c: Include <stdio.h>.
2593         (__openat_2): New function.
2594         (__openat64_2): New alias to __openat_2.
2596 2008-07-06  Ulrich Drepper  <drepper@redhat.com>
2598         [BZ #6723]
2599         * time/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
2601 2008-07-01  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2603         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Define MSG_NOSIGNAL.
2604         * hurd/hurd/fd.h (__hurd_sockfail): Add extern inline function.
2605         * sysdeps/mach/hurd/recv.c (__recv): Use __hurd_sockfail instead of
2606         __hurd_dfail.
2607         * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise.
2608         * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise.
2609         * sysdeps/mach/hurd/send.c (__send): Likewise.
2610         * sysdeps/mach/hurd/sendto.c (__sendfrom): Likewise.
2611         * sysdeps/mach/hurd/sendmsg.c (__sendmsg): Likewise.
2613 2008-03-04  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2615         * sysdeps/mach/hurd/recv.c (__recv): Initialize NPORTS.
2616         * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise.
2617         * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise.
2618         * hurd/fd-read.c (_hurd_fd_read): Initialize NREAD.
2619         * hurd/get-host.c (_hurd_get_host_config): Likewise.
2620         * sysdeps/mach/hurd/dl-sysdep.c (__libc_read): Likewise.
2622 2008-06-27  Ulrich Drepper  <drepper@redhat.com>
2624         [BZ #6657]
2625         * time/strptime_l.c: Don't clear s.era_cnt after successful match
2626         of %EY.
2627         Patch by Petr Baudis.
2629 2008-06-26  Ulrich Drepper  <drepper@redhat.com>
2631         * resolv/res_debug.c (__p_type_syms): Add ns_t_dname entry.
2632         Patch by Peter Jones <pjones@redhat.com>.
2634 2008-06-25  Ulrich Drepper  <drepper@redhat.com>
2636         [BZ #6654]
2637         * stdlib/canonicalize.c (__realpath): readlink can write too much
2638         into the buffer on platforms without PATH_MAX.
2640 2008-06-17  Carlos O'Donell  <carlos@codesourcery.com>
2642         [BZ #6653]
2643         * posix/tst-regex.c (main): Rename to...
2644         (do_test): ... this. Remove cmdline option processing.
2645         (TIMEOUT): Define.
2646         (TEST_FUNCTION): Define.
2647         (CMDLINE_OPTIONS): Define.
2649 2008-06-25  Ulrich Drepper  <drepper@redhat.com>
2651         [BZ #5210]
2652         * configure.in: Add -Werror to -fstack-protector test to catch
2653         unsupported architectures.
2654         Patch by Gilles Esponasse <g.esp@free.fr>.
2656 2008-06-17  Joseph Myers  <joseph@codesourcery.com>
2658         * stdlib/tst-setcontext.c: Set back_in_main before exit if
2659         getcontext returns ENOSYS.
2661 2008-06-18  Ulrich Drepper  <drepper@redhat.com>
2663         * nscd/connections.c (main_loop_poll): Fix test for read error.
2664         (main_loop_epoll): Likewise.
2666 2008-06-13  Ulrich Drepper  <drepper@redhat.com>
2668         * sysdeps/posix/getaddrinfo.c: Move _res_hconf_init call to a
2669         better place so it is not called when nscd is used.
2671         * nscd/connections.c: Also recognize and handle changes to the
2672         resolver configuration file.
2674 2008-06-12  Ulrich Drepper  <drepper@redhat.com>
2676         * time/strftime.c: Pass reference to tzset_called around to handle
2677         recursive calls.
2679         [BZ #6612]
2680         * time/strftime.c (__strftime_internal): Call tzset() only
2681         when printing timezone-dependent values.
2682         Based on a patch by Petr Baudis <pasky@suse.cz>.
2684         * resolv/nss_dns/dns-host.c (gaih_getanswer): Don't
2685         unconditionally use second gaih_getanswer_slice result.
2687         * sysdeps/posix/getaddrinfo.c (gai_inet): Remove unnecessary test.
2688         (getaddrinfo): RES must always be non-NULL.
2690 2008-06-12  Jakub Jelinek  <jakub@redhat.com>
2692         * sysdeps/powerpc/powerpc64/fpu/s_llround.S (__llround): Avoid using
2693         cr[34] registers.
2694         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S (__llroundf): Likewise.
2695         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S (__llround):
2696         Likewise.
2697         * sysdeps/powerpc/powerpc32/fpu/s_lround.S (__lround): Avoid using cr3
2698         register.
2700 2008-06-12  Ulrich Drepper  <drepper@redhat.com>
2702         * nscd/nscd.h (struct database_dyn): Add inotify_descr and clear_cache
2703         fields.
2704         * nscd/connections.c (inotify_fd): New variable.
2705         (nscd_init): Try to open an inotify descriptor.
2706         If successful, watch files for databases using inotify instead of
2707         having prune threads stat the files.
2708         (nscd_run_prune): Recognize clear_cache flag being set and call
2709         prune_cache appropriately.
2710         (main_loop_poll): Add inotify descriptor to wait set and handle the
2711         reported changes.
2712         (main_loop_epoll): Likewise.
2713         * nscd/cache.c (prune_cache): Don't stat files for databases if
2714         inotify is used.
2715         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd]
2716         (CFLAGS-connections.c): Add -DHAVE_INOTIFY.
2718         * nscd/grpcache.c (cache_addgr): Correctly compute size of
2719         fixed-size portion of the record.
2720         * nscd/servicescache.c (cache_addserv): Likewise.
2721         * nscd/pwdcache.c (cache_addpw): Likewise.
2722         * nscd/initgrcache.c (addinitgroupsX): Likewise.
2724 2008-06-11  Ulrich Drepper  <drepper@redhat.com>
2726         * nscd/mem.c (gc): Initialize obstack earlier so that if we jump
2727         out we don't use uninitialized memory.
2729         * nscd/hstcache.c (cache_addhst): Send correct number of bytes to
2730         the client.
2732 2008-06-10  Ulrich Drepper  <drepper@redhat.com>
2734         * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): Also log and
2735         ignore T_DNAME messages.
2736         * resolv/arpa/nameser_compat.h (T_DNAME): Define.
2738 2008-06-05  Jakub Jelinek  <jakub@redhat.com>
2740         * misc/regexp.h (compile): Use __REPB_PREFIX macro.
2741         Avoid segfault if first GETC returns eof/'\0'/'\n'.
2743 2008-06-03  Jakub Jelinek  <jakub@redhat.com>
2745         * nscd/nscd_getserv_r.c (__nscd_getservbyport_r): Pass cp
2746         instead of portstr to nscd_getserv_r.  Patch by
2747         Roman Kagan <rkagan@mail.ru>.
2749 2008-05-26  Jim Meyering  <meyering@redhat.com>
2751         Remove more useless "if" tests before "free".
2752         * include/inline-hashtab.h (htab_delete): Likewise.
2753         * libio/freopen.c (freopen): Likewise.
2754         * libio/freopen64.c (freopen64): Likewise.
2755         * locale/programs/ld-collate.c (collate_read): Likewise.
2756         * misc/fstab.c (libc_freeres_fn): Likewise.
2757         * posix/glob.c (globfree): Likewise.
2759 2008-05-24  Ulrich Drepper  <drepper@redhat.com>
2761         * string/Makefile (strop-tests): Add memmem.
2762         * string/test-memmem.c: New file.
2763         * string/test-string.h (BUF1PAGES): Define to 1 if undefined.
2764         (test_init): Size buf1 according to BUF1PAGES.
2766 2008-05-24  Jakub Jelinek  <jakub@redhat.com>
2768         * libio/stdio.h (vscanf): Fix -std=c99 redirect.
2769         * stdio-common/Makefile (tests): Add scanf16 and scanf17.
2770         (CFLAGS-scanf17.c): New.
2771         * stdio-common/scanf14.c (main): Add fscanf and scanf tests.
2772         * stdio-common/scanf15.c (main): Likewise.
2773         * stdio-common/scanf16.c: New file.
2774         * stdio-common/scanf17.c: New file.
2776 2008-05-24  Ulrich Drepper  <drepper@redhat.com>
2778         * resolv/res_send.c (send_dg): If we already have one of two
2779         answers and the server reports SERVFAIL, NOTIMP, or REFUSED, then
2780         use the one answer insted of failing.
2782 2008-02-20  Ryan S. Arnold  <rsa@us.ibm.com>
2784         * math/libm-test.inc (exp_test): Exclude expl(1000.0L) from
2785         being executed on PowerPC as the expected result exceeds IBM
2786         long double 128 __LDBL_MAX__.
2788 2008-05-21  Roland McGrath  <roland@redhat.com>
2790         * shlib-versions (sparc.*-.*-.*, sparc64.*-.*-.*): Add ABI lines.
2792         * Makefile (check-data): Use $(abi-name) before other guesses.
2793         Look in $(add-ons) dirs before scripts/data/.
2794         * elf/Makefile (check-data): Likewise.
2796         * scripts/soversions.awk: Grok ABI line.
2797         * Makeconfig ($(common-objpfx)soversions.mk): Likewise.
2798         Emit definition for abi-name variable.
2800 2008-05-21  Ulrich Drepper  <drepper@redhat.com>
2802         * string/endian.h: Define new fixed-size hto* and *toh macros only
2803         if [__USE_BSD].
2805         * iconvdata/Depend: Add localedata.
2807 2008-05-21  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2809         * bits/termios.h (ONLCR): Define under [__USE_XOPEN] too.
2811 2008-05-08  David S. Miller  <davem@davemloft.net>
2813         * sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S: Use
2814         HIDDEN_JUMPTARGET.
2815         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
2816         (__SYSCALL_CLOBBERS): Remove %g* registers.
2817         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
2818         (__SYSCALL_CLOBBERS): Likewise.
2819         * scripts/data/localplt-sparc-linux-gnu.data: New file.
2820         * scripts/data/localplt-sparc64-linux-gnu.data: New file.
2822 2008-05-21  Jakub Jelinek  <jakub@redhat.com>
2824         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
2825         (CALL_ERRNO_LOCATION): Define.
2826         (__SYSCALL_STRING, __CLONE_SYSCALL_STRING): Use it.
2827         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
2828         (CALL_ERRNO_LOCATION): Define.
2829         (__SYSCALL_STRING, __CLONE_SYSCALL_STRING): Use it.
2830         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S (__brk): Use
2831         HIDDEN_JUMPTARGET for __errno_location call in libc.so.
2833 2008-05-20  Ulrich Drepper  <drepper@redhat.com>
2835         * include/inline-hashtab.h (higher_prime_number): Fix type of mid
2836         variable.
2838 2008-05-20  Jakub Jelinek  <jakub@redhat.com>
2840         * sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h
2841         (FIRST_FRAME_POINTER): Define.
2843 2008-05-09  David S. Miller  <davem@davemloft.net>
2845         * sysdeps/sparc/sparc64/backtrace.c: New file.
2847 2008-05-14  David S. Miller  <davem@davemloft.net>
2849         * sysdeps/sparc/machine-gmon.h: New file.
2850         * sysdeps/sparc/sparc-mcount.S: Likewise.
2851         * sysdeps/sparc/Makefile: Add sparc-mcount target to
2852         sysdep_routines in gmon directory.
2854 2008-05-19  Jakub Jelinek  <jakub@redhat.com>
2856         * elf/soinit.c (__EH_FRAME_BEGIN__): Remove.
2858 2008-05-19  Ulrich Drepper  <drepper@redhat.com>
2860         * resolv/res_query.c (__libc_res_nquery): In case one of two
2861         answer was too short don't try to read that answer's header.
2863         * resolv/res_send.c (send_dg): In case of timeout and there are
2864         two queries and one has been answered, return value indicating
2865         success.
2867 2008-05-18  Ulrich Drepper  <drepper@redhat.com>
2869         * nscd/cache.c (cache_add): Take additional parameter specifying
2870         whether this is in response of a cache refill.  Check alignment
2871         of package data.  Revamp waking of pruning thread.
2872         (prune_cache): Small optimization.
2873         * nscd/nscd.h: Adjust cache_add prototypes.
2874         * nscd/aicache.c: Adjust cache_add calls.
2875         * nscd/grpcache.c: Likewise.
2876         * nscd/hstcache.c: Likewise.
2877         * nscd/initgrcache.c: Likewise.
2878         * nscd/pwdcache.c: Likewise.
2879         * nscd/servicescache.c: Likewise.
2880         * nscd/connections.c (restart): Really disable cache use before
2881         exec attempt.  If it fails, reenable cache.
2882         (nscd_run_prune): Initialize wakeup_time.  After wakeup, set wakeup
2883         time to max to be able to notice concurrent cache additions.  Unlock
2884         prune_lock while performing gc.  Afterwards compute wakeup time with
2885         current wakeup_time value in mind.
2887 2008-05-17  Ulrich Drepper  <drepper@redhat.com>
2889         * nscd/mem.c (gc): Avoid stack overflow when allocating move list.
2891         * nscd/mem.c (gc): Correctly determine highest used array element
2892         in mark.
2894         * nscd/mem.c (markrange): Add assert to check entries are all
2895         aligned.  Small cleanup in bitmap use.
2897         * nscd/nscd.h (mem_in_flight): Replace blockaddr field with
2898         blockoff of type nscd_ssize_t.
2899         * nscd/mem.c (gc): Simplify markrange call for on-flight blocks.
2900         (mempoll_alloc): Record block offset and not address.
2902         * nscd/mem.c (gc): Fix test for stack overuse.
2904         * nscd/aicache.c (addhstaiX): Fix a few small problems, cleanups,
2905         more asserts.
2907         * sysdeps/posix/getaddrinfo.c (gaih_inet): If nscd reports no
2908         entry is available, believe it.
2910         * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): If there are
2911         no answers return NSS_STATUS_NOTFOUND.
2912         (gaih_getanswer): Don't call gaih_getanswer_slice if the answer
2913         buffer does not have any content.
2915 2008-05-16  Ulrich Drepper  <drepper@redhat.com>
2917         * string/strcasestr.c (CMP_FUNC): Use __strncasecmp, not strncasecmp.
2919         * sysdeps/posix/getaddrinfo.c (gaih_inet): After gethostbyname4_r
2920         lookup, don't assign canon unconditionally.
2922 2008-05-14  Ulrich Drepper  <drepper@redhat.com>
2924         * string/Makefile (distribute): Add str-two-way.h.
2926 2008-03-29  Eric Blake  <ebb9@byu.net>
2928         Rewrite string searches to O(n) rather than O(n^2).
2929         * string/str-two-way.h: New file.  For linear fixed-allocation
2930         string searching.
2931         * string/memmem.c: New implementation.
2932         * string/strstr.c: New implementation.
2933         * string/strcasestr.c: New implementation.
2935 2008-04-11  Paolo Bonzini  <bonzini@gnu.org>
2937         * posix/regcomp.c (optimize_utf8): Add a note on why we test
2938         opr.ctx_type.
2939         (calc_first): Initialize constraint field.
2940         (duplicate_node_closure): Use it instead of special casing ANCHORS.
2941         Use search_duplicated_node to avoid loops.  Fix grammar.
2942         (duplicate_node): Merge constraint field for all node types.
2943         (calc_eclosure_iter): Look at constraint field for all node types.
2944         * posix/regex_internal.c (create_cd_newstate): Don't look at
2945         create_cd_newstate.
2947 2008-05-14  Ulrich Drepper  <drepper@redhat.com>
2949         [BZ #6428]
2950         * configure.in: Don't use $CFLAGS when assembling, use $ASFLAGS.
2952         [BZ #6442]
2953         * string/endian.h: Add macros for fixed-size endian conversion.
2954         * bits/byteswap.h: Allow inclusion from <endian.h>.
2955         * sysdeps/i386/bits/byteswap.h: Likewise.
2956         * sysdeps/ia64/bits/byteswap.h: Likewise.
2957         * sysdeps/s390/bits/byteswap.h: Likewise.
2958         * sysdeps/x86_64/bits/byteswap.h: Likewise.
2959         * string/Makefile (tests): Add tst-endian.
2960         * string/tst-endian.c: New file.
2962         * iconvdata/run-iconv-test.sh: Use = instead of == in test.
2963         Patch by Reuben Thomas.
2965 2008-05-14  Joseph Myers  <joseph@codesourcery.com>
2967         * iconvdata/Makefile (bug-iconv6-ENV, tst-iconv7-ENV): Define.
2969 2008-05-14  Ulrich Drepper  <drepper@redhat.com>
2971         * iconvdata/bug-iconv6.c (do_test): Use de_DE.UTF-8 locale.
2973         [BZ #6461]
2974         * iconv/gconv_simple.c (BODY for __gconv_transform_ascii_internal):
2975         Add missing braces.
2976         (BODY for __gconv_transform_internal_ascii): Likewise.
2978         [BZ #6472]
2979         * sysdeps/posix/getaddrinfo.c (get_scope): Loopback addresses have
2980         to be treated like link-local addresses.
2981         (match_prefix): Don't treat IPv4 loopback address special when
2982         converting to v4 mapped addressed.
2984         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Call _res_hconf_init
2985         if necessary.
2986         * posix/tst-rfc3484.c: Add dummy definition of _res_hconf_init.
2987         * posix/tst-rfc3484-2.c: Likewise.
2988         * posix/tst-rfc3484-3.c: Likewise.
2990         * sysdeps/posix/getaddrinfo.c: Implement handling of DCCP, UDPlite,
2991         and SCTP.
2993         * nss/getent.c (ahosts_keys_int): Handle all known socket types.
2995         * inet/netinet/in.h (IPPIPPROTO_DCCP, IPPROTO_UDPLITE): Define.
2997         * sysdeps/unix/sysv/linux/bits/socket.h (SOCK_DCCP): Define.
2999 2008-05-13  Ulrich Drepper  <drepper@redhat.com>
3001         * po/lt.po: New file.  From Lituanian translation team.
3003 2008-01-30  Alexandre Oliva  <aoliva@redhat.com>
3005         Introduce TLS descriptors for i386 and x86_64.
3006         * include/inline-hashtab.h: New file, copied from 2005's
3007         libiberty, with fix for memory leak imported afterwards by
3008         Glauber de Oliveira Costa.
3009         * elf/tlsdeschtab.h: New file.
3010         * elf/dl-reloc.c (_dl_try_allocate_static_tls): Extract from...
3011         (_dl_allocate_static_tls): ... here.  Rearrange failure path.
3012         (CHECK_STATIC_TLS): Move to...
3013         * elf/dynamic-link.h: ... this file.
3014         (TRY_STATIC_TLS): New macro.
3015         * elf/dl-conflict.c (CHECK_STATIC_TLS, TRY_STATIC_TLS): Override.
3016         * elf/elf.h (R_386_TLS_GOTDESC, R_386_TLS_DESC_CALL,
3017         R_386_TLS_DESC): Define.
3018         (R_X86_64_PC64, R_X86_GOTOFF64, R_X86_64_GOTPC32): Merge from
3019         binutils.
3020         (R_X86_64_GOTPC32_TLSDESC, R_X86_64_TLSDESC_CALL,
3021         R_X86_64_TLSDESC): Define.
3022         (R_386_NUM, R_X86_64_NUM): Adjust.
3023         * sysdeps/i386/Makefile (sysdep-dl-routines, sysdep_routines,
3024         sysdep-rtld-routines): Add tlsdesc and dl-tlsdesc for elf subdir.
3025         (gen-as-const-headers): Add tlsdesc.sym to csu subdir.
3026         * sysdeps/i386/dl-lookupcfg.h: New file.  Introduce _dl_unmap to
3027         release tlsdesc_table.
3028         * sysdeps/i386/dl-machine.h: Include dl-tlsdesc.h.
3029         (elf_machine_type_class): Mark R_386_TLS_DESC as PLT class.
3030         (elf_machine_rel): Handle R_386_TLS_DESC.
3031         (elf_machine_rela): Likewise.
3032         (elf_machine_lazy_rel): Likewise.
3033         (elf_machine_lazy_rela): Likewise.
3034         * sysdeps/i386/dl-tls.h (struct dl_tls_index): Name it.
3035         * sysdeps/i386/dl-tlsdesc.S: New file.
3036         * sysdeps/i386/dl-tlsdesc.h: New file.
3037         * sysdeps/i386/tlsdesc.c: New file.
3038         * sysdeps/i386/tlsdesc.sym: New file.
3039         * sysdeps/i386/bits/linkmap.h (struct link_map_machine): Add
3040         tlsdesc_table.
3041         * sysdeps/x86_64/Makefile (sysdep-dl-routines, sysdep_routines,
3042         sysdep-rtld-routines): Add tlsdesc and dl-tlsdesc for elf subdir.
3043         (gen-as-const-headers): Add tlsdesc.sym to csu subdir.
3044         * sysdeps/x86_64/dl-lookupcfg.h: New file.  Introduce _dl_unmap to
3045         release tlsdesc_table.
3046         * sysdeps/x86_64/dl-machine.h: Include dl-tlsdesc.h.
3047         (elf_machine_runtime_setup): Set up lazy TLSDESC GOT entry.
3048         (elf_machine_type_class): Mark R_X86_64_TLSDESC as PLT class.
3049         (elf_machine_rel): Handle R_X86_64_TLSDESC.
3050         (elf_machine_rela): Likewise.
3051         (elf_machine_lazy_rel): Likewise.
3052         * sysdeps/x86_64/dl-tls.h (struct dl_tls_index): Name it.
3053         (__tls_get_addr): Do not declare for non-shared compiles.
3054         * sysdeps/x86_64/dl-tlsdesc.S: New file.
3055         * sysdeps/x86_64/dl-tlsdesc.h: New file.
3056         * sysdeps/x86_64/tlsdesc.c: New file.
3057         * sysdeps/x86_64/tlsdesc.sym: New file.
3058         * sysdeps/x86_64/bits/linkmap.h (struct link_map_machine): Add
3059         tlsdesc_table for both 32- and 64-bit structs.
3061 2008-05-11  Ulrich Drepper  <drepper@redhat.com>
3063         * elf/dl-tls.c (__tls_get_addr): Optimize by moving slow path in
3064         its own function.  This reduces the frame setup costs and more.
3066 2008-02-11  Joseph Myers  <joseph@codesourcery.com>
3068         [BZ #3406]
3069         * sysdeps/ieee754/flt-32/w_expf.c (o_threshold): Correct value.
3070         * math/libm-test.inc (exp_test): Test 88.72269439697265625.
3072 2008-05-11  Ulrich Drepper  <drepper@redhat.com>
3074         * io/openat.c (__openat_2): Also pass fd to __openat.
3075         * io/openat64.c (__openat64_2): Also pass fd to __openat64.
3076         Patch by Kristian Van Der Vliet <vanders@liqwyd.com>.
3078         * string/tester.c (test_memcmp): Add a few more tests.
3079         Patch by Mats Erik Andersson <ynglingatal@comhem.se>.
3081 2008-05-10  Ulrich Drepper  <drepper@redhat.com>
3083         * nscd/cache.c (cache_add): Before returning with failure and this
3084         is the first use of the record, mark it as unusable.
3085         * nscd/aicache.c: Don't touch the dataset after cache_add returns
3086         reporting a failure.
3087         * nscd/grpcache.c: Likewise
3088         * nscd/hstcache.c: Likewise.
3089         * nscd/initgrcache.c: Likewise.
3090         * nscd/pwdcache.c: Likewise.
3091         * nscd/servicescache.c: Likewise.
3093 2008-05-10  Roland McGrath  <roland@redhat.com>
3095         [BZ #6505]
3096         * sysdeps/unix/sysv/linux/sys/user.h: Replace with #error stub.
3098 2008-05-08  David S. Miller  <davem@davemloft.net>
3100         * misc/truncate64.c (truncate64): Use __truncate not truncate.
3102         * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee751_j0l): Use __finitel.
3103         (__ieee754_y0l): Likewise.
3104         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
3105         (__ieee754_y1l): Likewise.
3106         * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Use __ldexpl.
3107         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Kill bogus prototypes for
3108         frexpl and ldexpl.  math_private.h provides them and the latter
3109         is not even used.
3110         (__log1pl): Use __frexpl.
3112 2008-05-10  Ulrich Drepper  <drepper@redhat.com>
3114         * include/resolv.h: Adjust __libc_res_nquery and __libc_res_nsend
3115         prototypes.
3116         * include/arpa/nameser_compat.h: Define T_UNSPEC.
3117         * nis/Versions (libnss_nis): Export _nss_nis_gethostbyname4_r.
3118         (libnss_nisplus): Export _nss_nisplus_gethostbyname4_r.
3119         * nis/nss_nis/nis-hosts.c (LINE_PARSER): Change to also handle
3120         af==AF_UNSPEC.
3121         (_nss_nis_gethostbyname4_r): New function.
3122         * nis/nss_nisplus/nisplus-hosts.c (_nss_nisplus_parse_hostent):
3123         Change to also handle af==AF_UNSPEC.
3124         (get_tablename): New function.  Use it to avoid duplication.
3125         (_nss_nisplus_gethostbyname4_r): New function.
3126         * nscd/aicache.c (addhstaiX): Use gethostbyname4_r function is
3127         available.
3128         * nss/Versions (libnss_files): Export _nss_files_gethostbyname4_r.
3129         * nss/nss.h: Define struct gaih_addrtuple.
3130         * nss/nss_files/files-hosts.c (LINE_PARSER): Change to also handle
3131         af==AF_UNSPEC.
3132         (_nss_files_gethostbyname4_r): New function.
3133         * resolv/Versions (libnss_dns): Export _nss_dns_gethostbyname4_r.
3134         * resolv/gethnmaddr.c: Adjust __libc_res_nsearch and __libc_res_nquery
3135         calls.
3136         * resolv/res_query.c (__libc_res_nquery): Take two additional
3137         parameters for second answer buffer.  Handle type=T_UNSPEC to mean
3138         look up IPv4 and IPv6.
3139         Change all callers.
3140         * resolv/res_send.c (__libc_res_nsend): Take five aditional parameters
3141         for an additional query and answer buffer.  Pass to send_vc and
3142         send_dg.
3143         (send_vc): Send possibly two requests and receive two answers.
3144         (send_dg): Likewise.
3145         * resolv/nss_dns/dns-host.c: Adjust calls to __libc_res_nsearch and
3146         __libc_res_nquery.
3147         (_nss_dns_gethostbyname4_r): New function.
3148         (gaih_getanswer_slice): Likewise.
3149         (gaih_getanswer): Likewise.
3150         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Adjust
3151         __libc_res_nquery call.
3152         * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyaddr_r): Likewise.
3153         (_nss_dns_getnetbyname_r): Adjust __libc_res_nsearch call.
3154         * sysdeps/posix/getaddrinfo.c: Use gethostbyname4_r function is
3155         available.
3157 2008-05-05  David S. Miller  <davem@davemloft.net>
3159         * sysdeps/sparc/sparc32/Makefile: Use -mcpu=v7 for initfini.s build.
3160         * sysdeps/sparc/sparc64/Makefile: Use -mcpu=v9 for initfini.s build.
3162 2007-09-14  Samuel Thibault  <samuel.thibault@ens-lyon.org>
3164         Fix termios bit macros.
3165         Move *DLY definitions where they belong, in termios.h.
3166         Add *[0-3] definitions.
3167         Fixes confusion between VT and FF.
3168         * sysdeps/mach/hurd/bits/ioctls.h (NL0, NL1, TAB0, TAB1, TAB2, CR0,
3169         CR1, CR2, CR3, FF0, FF1, BS0, BS1): Undefine these at start if they
3170         are already defined to avoid collision with termios.h.
3171         (NLDLY, TABDLY, TAB3, CRDLY, VTDLY, BSDLY): Remove macros.
3172         * bits/termios.h [__USE_MISC || __USE_XOPEN] (NL0, NL1, TAB0,
3173         TAB1, TAB2, CR0, CR1, CR2, CR3, FF0, FF1, BS0, BS1): Likewise.
3174         [__USE_BSD || __USE_XOPEN] (OCRNL, ONOCR, ONLRET): New macros.
3175         [__USE_MISC || __USE_XOPEN] (NLDLY, NL0, NL1, TABDLY, TAB0, TAB1, TAB2,
3176         TAB3, CRDLY, CR0, CR1, CR2, CR3, FFDLY, FF0, FF1, BSDLY, BS0, BS1,
3177         VTDLY, VT0, VT1): New macros.
3178         [__USE_GNU] (OLCUC): Change value of macro.
3179         [__USE_XOPEN] (OFILL): New macro.
3180         [__USE_BSD] (CRTSCTS): Change value.
3181         (CRTS_IFLOW, CCTS_OFLOW): Change into compatibility macros.
3182         [__USE_BSD] (CDTRCTS, CHWFLOW): New macros.
3183         (B7200, B14400, B28800, B76800): New macros.
3185 2008-05-01  David S. Miller  <davem@davemloft.net>
3187         * sysdeps/unix/sysv/linux/sparc/sparc32/ucontext_i.sym: New file.
3188         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile [$(subdir) = stdlib]:
3189         (gen-as-const-headers): Add it.
3190         * sysdeps/unix/sysv/linux/sparc/sparc32/getcontext.S: New file.
3191         * sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c: Likewise.
3192         * sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S: Likewise.
3193         * sysdeps/unix/sysv/linux/sparc/sparc32/swapcontext.S: Likewise.
3195         * sysdeps/unix/sysv/linux/sparc/sparc32/syscall.S: Add support for
3196         six system call parameters.
3197         * sysdeps/unix/sysv/linux/sparc/sparc64/syscall.S: Likewise.
3199 2008-04-30  Ulrich Drepper  <drepper@redhat.com>
3201         * sysdeps/unix/sysv/linux/bits/resource.h: Define RUSAGE_THREAD and
3202         RUSAGE_LWP.
3203         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
3204         * sysdeps/unix/sysv/linux/alpha/bits/resource.h: Likewise.
3206 2008-04-30  Jakub Jelinek  <jakub@redhat.com>
3208         * stdlib/tst-setcontext.c: Include unistd.h.
3210 2008-04-25  David S. Miller  <davem@davemloft.net>
3212         * sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c (semctl):
3213         Pass "union semun" properly in to sys_ipc, it must be passed
3214         by value, not by reference.
3216 2008-04-22  Jakub Jelinek  <jakub@redhat.com>
3218         * nscd/Makefile (nscd-cflags): Set back to -fpie.
3219         * nscd/nscd.h (mem_in_flight): Add attribute_tls_model_ie.
3220         * nscd/connections.c (mem_in_flight): Likewise.
3222         * nscd/nscd.h (dbs): Make hidden.
3224         * sysdeps/unix/sysv/linux/times.c (__times): Fix check for EFAULT.
3225         Avoid returning -1, return 0 instead.
3227 2008-04-19  Ulrich Drepper  <drepper@redhat.com>
3229         * resolv/res_mkquery.c (__res_nopt): Use NS_PUT16 instead of ns_put16.
3231 2008-04-15  Ulrich Drepper  <drepper@redhat.com>
3233         [BZ #5209]
3234         * sysdeps/unix/sysv/linux/times.c: New file.
3236         [BZ #5381]
3237         * nscd/nscd.h: Define enum in_flight, mem_in_flight, and
3238         mem_in_flight_list variables.  Add new parameter to mempool_alloc
3239         prototype.
3240         * nscd/mem.c (mempool_alloc): Take additional parameter.  Initialize
3241         appropriate mem_in_flight element.
3242         (gc): Take allocations which have not yet been committed to the
3243         database into account.
3244         * nscd/cache.c (cache_add): Add new parameter to mempool_alloc call.
3245         Reset mem_in_flight before returning.
3246         * nscd/connections.c (nscd_run_worker): Initialize mem_in_flight and
3247         cue it up in mem_in_flight_list.
3248         * nscd/aicache.c: Adjust mempool_alloc call.
3249         * nscd/grpcache.c: Likewise.
3250         * nscd/hstcache.c: Likewise.
3251         * nscd/initgrcache.c: Likewise.
3252         * nscd/pwdcache.c: Likewise.
3253         * nscd/servicescache.c: Likewise.
3254         * nscd/Makefile (nscd-flags): Until ld is fixed, use -fpic instead
3255         of -fpie.
3257         * nscd/connections.c (handle_request): Provide better error message
3258         in case SELinux forbids the service.
3260         * version.h (VERSION): Bump to 2.8.90.
3262 2008-04-17  Jakub Jelinek  <jakub@redhat.com>
3264         * sysdeps/unix/sysv/linux/dl-osinfo.h: Include fcntl.h.
3266 2008-04-11  Ulrich Drepper  <drepper@redhat.com>
3268         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h (__signbitl):
3269         Also use for 32-bit.
3270         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c (__nearbyintl): Use
3271         __nextafter instead of nextafter to avoid local PLT.
3272         * sysdeps/powerpc/fpu/e_sqrt.c: Avoid call to fetestexcept.
3273         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
3275         * scripts/data/localplt-powerpc64-linux-gnu.data: New file.
3277         * sysdeps/powerpc/fpu/fenv_libc.h: Add libm_hidden_proto for
3278         __fe_nomask_env.
3279         * sysdeps/powerpc/fpu/fe_nomask.c: Add libm_hidden_def.  Include
3280         <fenv_libc.h> instead of <fenv.h>.
3281         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: Likewise.
3282         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: Likewise.
3284         * sysdeps/powerpc/bits/fenv.h: Make safe for C++.
3286         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: New file.
3287         * sysdeps/powerpc/fpu/fegetexcept.c (__fegetexcept): Rename
3288         function from fegetexcept and make old name weak alias.
3289         * include/fenv.h: Declare __fegetexcept.
3290         * sysdeps/powerpc/fpu/fedisblxcpt.c: Use __fegetexcept instead of
3291         fegetexcept.
3292         * sysdeps/powerpc/fpu/feenablxcpt.c: Likewise.
3293         * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Avoid call
3294         to fetestexcept.
3295         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Use __frexpl
3296         instead of frexpl to avoid local PLT.
3297         * math/s_significandl.c (__significandl): Use __ilogbl instead of
3298         ilogbl to avoid local PLT.
3299         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Use __ldexpl
3300         instead of ldexpl to avoid local PLT.
3301         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Use
3302         __roundl not roundl to avoid local PLT.
3303         * sysdeps/ieee754/ldbl-128/e_j0l.c: Use function names which avoid
3304         local PLTs.  Use __sincosl instead of separate sinl and cosl
3305         calls.
3306         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
3308         * sysdeps/unix/sysv/linux/configure.in: Bump minimal kernel
3309         version for ppc64 to 2.4.21 since without it makecontext will fail.
3311         * elf/tls-macros.h [__powerpc64__] (__TLS_GET_ADDR): Define according
3312         to the ABI in use.
3313         [__powerpc64__] (TLS_LD): Use __TLS_GET_ADDR instead of
3314         .__tls_get_addr.
3315         [__powerpc64__] (TLS_GD): Likewise.
3317 2007-11-20  Ryan S. Arnold  <rsa@us.ibm.com>
3319         [BZ #4997]
3320         * sysdeps/powerpc/powerpc32/fpu/s_lround.S (__lround): Fixed erroneous
3321         result when x is +/-nextafter(+/-0.5,-/+1) i.e. all 1's in the
3322         mantissa.
3323         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S (__llround):
3324         Likewise.  Also account for when x is an odd number between 2^52
3325         and 2^53-1.
3326         * sysdeps/powerpc/powerpc64/fpu/s_llround.S (__llround): Likewise.
3327         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S (__llroundf): Likewise.
3328         * math/libm-test.inc (lround_test, llround_test): Added test cases to
3329         detect aforementioned erroneous conditions.
3331 2008-04-11  Jakub Jelinek  <jakub@redhat.com>
3333         * configure.in: Check for -fno-section-anchors in addition to
3334         -fno-toplevel-reorder.
3336 2008-04-11  Ulrich Drepper  <drepper@redhat.com>
3338         * include/features.h (__GLIBC_MINOR__): Bump to 8.
3340         * sysdeps/powerpc/powerpc32/fpu/s_lroundf.S: Remove duplicate comment.
3341         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llroundf.S: Likewise.
3342         * sysdeps/powerpc/powerpc32/power6/fpu/s_llroundf.S: Likewise.
3343         * sysdeps/powerpc/powerpc64/fpu/s_lrint.S: Likewise.
3344         * sysdeps/powerpc/powerpc64/fpu/s_lround.S: Likewise.
3345         * sysdeps/powerpc/powerpc64/fpu/s_lroundf.S: Likewise.
3347 2008-04-11  Jakub Jelinek  <jakub@redhat.com>
3349         [BZ #5443]
3350         * time/era.c: Transform __libc_setlocale_lock into rwlock.
3351         * time/alt_digit.c: Likewise.
3352         * wcsmbs/wcsmbsload.c: Likewise.
3354 2008-04-10  Ulrich Drepper  <drepper@redhat.com>
3356         * version.h (VERSION): Bump to 2.8.
3358         * timzeone/asia: Update from tzdata2008b.
3359         * timezone/backward: Likewise.
3360         * timezone/europe: Likewise.
3361         * timezone/northamerica: Likewise.
3362         * timezone/southamerica: Likewise.
3363         * timezone/iso3166.tab: Likewise.
3364         * timezone/leapseconds: Likewise.
3365         * timezone/zone.tab: Likewise.
3366         * timezone/private.h: Update from tzcode2008a.
3367         * timezone/zdump.c: Likewise.
3368         * timezone/zic.c: Likewise.
3370 2008-01-24  Steven Munroe  <sjmunroe@us.ibm.com>
3372         [BZ #5741]
3373         * sysdeps/powerpc/powerpc64/dl-machine.h (PPC_DCBT, PPC_DCBF):
3374         Define additonal Data Cache Block instruction macros.
3375         (elf_machine_fixup_plt): Add dcbt for opd and plt entries.
3376         Replace dcbst with dcbf and sync with sync/isync.
3378 2008-02-21  Alan Modra  <amodra@bigpond.net.au>
3380         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_type_class):
3381         Always set ELF_RTYPE_CLASS_PLT.
3382         (elf_machine_lookup_noexec_p, elf_machine_lookup_noplt_p): Delete.
3384 2008-04-03  Steven Munroe  <sjmunroe@us.ibm.com>
3386         * sysdeps/powerpc/powerpc32/power4/hp-timing.c: New file.
3387         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: New file.
3388         * sysdeps/powerpc/powerpc64/hp-timing.h [_ARCH_PWR4] (HP_TIMING_NOW):
3389         For ISA 2.01 and later replace mftb with mfspr 268.
3391 2008-02-19  Steven Munroe  <sjmunroe@us.ibm.com>
3393         [BZ #5768]
3394         * sysdeps/powerpc/fpu/Makefile (libm-tests): Add test-powerpc-snan.
3395         * sysdeps/powerpc/fpu/test-powerpc-snan.c: New file.
3397 2008-02-18  Steven Munroe  <sjmunroe@us.ibm.com>
3399         [BZ #5768]
3400         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: New file.
3401         * sysdeps/powerpc/powerpc32/fpu/s_isnan.c: Removed.
3402         * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: New file.
3403         * sysdeps/powerpc/powerpc64/fpu/s_isnan.c: Removed.
3405 2008-04-10  Jakub Jelinek  <jakub@redhat.com>
3407         * stdlib/tst-makecontext.c (othervar): New variable.
3408         (cf): Test sign extending the argument to long.
3410 2008-03-03  Steven Munroe  <sjmunroe@us.ibm.com>
3412         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: New file.
3413         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnanf.S: New file.
3414         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: New file.
3415         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S: New file.
3416         * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: New file.
3417         * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: New file.
3418         * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: New file.
3420 2008-02-22  Alan Modra  <amodra@bigpond.net.au>
3422         * elf/Makefile (tests): Substitute tests-vis-yes here.
3423         (tests-vis-yes): Delete.
3424         (modules-name, modules-vis-yes): Similarly.
3426 2008-02-12  Pete Eberlein  <eberlein@us.ibm.com>
3428         [BZ #4407]
3429         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
3430         Preserve sign in signgamp when x is zero.
3432 2007-10-26  Steven Munroe  <sjmunroe@us.ibm.com>
3434         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: New File.
3435         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.c: Removed.
3436         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: New File.
3437         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.c: Removed.
3438         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: New File.
3439         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: New File.
3441 2008-04-09  Ulrich Drepper  <drepper@redhat.com>
3443         [BZ #4314]
3444         * sysdeps/i386/i686/memcpy.S: Optimize copying of equally aligned
3445         buffers.
3447         [BZ #5209]
3448         * sysdeps/unix/sysv/syscalls.list: The times syscall doesn't have
3449         a reserved error value.
3451         * stdlib/tst-makecontext.c: Change parameter to cf to negative
3452         value to check for correct sign extension.
3454         [BZ #5436]
3455         * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
3456         Copy 64-bit parameter values even though this is not required in
3457         the standard.
3459         * sysdeps/unix/sysv/linux/x86_64/vfork.S (__vfork): Record return
3460         PC save.
3462 2008-02-14  Daniel Jacobowitz  <dan@codesourcery.com>
3464         * sysdeps/unix/sysv/linux/i386/vfork.S (__vfork): Record return
3465         PC save.
3467 2008-04-09  Jakub Jelinek  <jakub@redhat.com>
3469         * nss_files/files-XXX.c (_nss_files_getXXent_r): Restore saved errno.
3471 2008-04-09  Ulrich Drepper  <drepper@redhat.com>
3473         [BZ #5998]
3474         * libio/iofwrite.c (_IO_fwrite): Return correct count if flushing
3475         in line-buffered stream failed.
3476         * libio/iofwrite_u.c (fwrite_unlocked): Likewise.
3478 2008-04-08  Ulrich Drepper  <drepper@redhat.com>
3480         [BZ #6024]
3481         * scripts/abi-versions.awk: If the version specified by
3482         --enable-oldest-abi is older than the first version for this
3483         architecture, use the default version.
3485         * locale/programs/ld-collate.c (collate_read): Ignore script lines
3486         as well when ignoring the whole category.
3488 2008-04-07  Ulrich Drepper  <drepper@redhat.com>
3490         [BZ #6042]
3491         * sysdeps/unix/sysv/linux/net/ethernet.h: Add a few more
3492         ETHERTYPE_* definitions.
3493         Patch partly by Aurelien Jarno <aurelien@aurel32.net>.
3495 2008-04-07  Jakub Jelinek  <jakub@redhat.com>
3497         * stdlib/mbtowc.c (__no_r_state): Remove.
3498         (mbtowc): New static state variable.  Use it instead of
3499         __no_r_state.
3500         * stdlib/wctomb.c (__no_r_state): Remove extern decl.
3501         (__wctomb_state): New hidden variable.
3502         (wctomb): Use __wctomb_state instead of __no_r_state.
3503         * debug/wctomb_chk.c (__no_r_state): Remove extern decl.
3504         (__wctomb_state): New extern decl.
3505         (__wctomb_chk): Use __wctomb_state instead of __no_r_state.
3507 2008-04-07  Ulrich Drepper  <drepper@redhat.com>
3509         [BZ #5475]
3510         * resolv/res_init.c: Handle scope IDs in resolv.conf.
3512 2008-04-07  Jakub Jelinek  <jakub@redhat.com>
3514         * malloc/mtrace.pl: Use $@ instead of $* to keep perl 5.10 quiet.
3516 2008-04-06  Ulrich Drepper  <drepper@redhat.com>
3518         * po/nl.po: Update from translation team.
3520 2008-03-31  Ulrich Drepper  <drepper@redhat.com>
3522         [BZ #6007]
3523         * string/strfry.c: Handle empty strings again.
3525 2008-03-30  Ulrich Drepper  <drepper@redhat.com>
3527         [BZ #5443]
3528         * intl/dcigettext.c (__dcigettext): Get reader lock for locale data
3529         before looking for translation.
3530         * locale/duplocale.c: Transform __libc_setlocale_lock into rwlock.
3531         * locale/freelocale.c: Likewise.
3532         * locale/newlocale.c: Likewise.
3533         * locale/setlocale.c: Likewise.
3534         Based partially on a patch by ryo@np.css.fujitsu.com.
3536 2008-03-30  Jakub Jelinek  <jakub@redhat.com>
3538         * intl/dcigettext.c (_nl_find_msg): Reread nconversions after
3539         acquiring wrlock.  Do conv_tab allocation while holding lock.
3540         * intl/Makefile: Add rules to build and run tst-gettext6.
3541         * intl/tst-gettext6.c: New test.
3542         * intl/tst-gettext6.sh: New file.
3544 2008-03-30  Ulrich Drepper  <drepper@redhat.com>
3546         * po/nl.po: Update from translation team.
3548         * sysdeps/unix/opendir.c (__alloc_dir): If allocation fails for size
3549         provided through st_blksize, try the default size before giving up.
3551 2008-03-29  Ulrich Drepper  <drepper@redhat.com>
3553         * stdio-common/vfprintf.c (vfprintf): Correct overflow test.
3555         [BZ #5939]
3556         * sysdeps/posix/tempname.c (__gen_tempname): Correct flag selection.
3558         * posix/getopt.c (_getopt_internal_r): Remove old POSIX-demanded
3559         error message.  POSIX today does not require the messages to be in
3560         a specific form.  Suggested by Jim Meyering <jim@meyering.net>.
3562         [BZ #5979]
3563         * sunrpc/auth_unix.c: Unify printed strings.
3564         * sunrpc/clnt_tcp.c: Likewise.
3565         * sunrpc/clnt_udp.c: Likewise.
3566         * sunrpc/clnt_unix.c: Likewise.
3567         * sunrpc/svc_tcp.c: Likewise.
3568         * sunrpc/svc_udp.c: Likewise.
3569         * sunrpc/svc_unix.c: Likewise.
3570         * sunrpc/xdr.c: Likewise.
3571         * sunrpc/xdr_array.c: Likewise.
3572         * sunrpc/xdr_rec.c: Likewise.
3573         * sunrpc/xdr_ref.c: Likewise.
3574         * locale/programs/ld-time.c (time_finish): Unify messages.
3575         * locale/programs/locfile.c (handle_copy): Fix typo.
3576         * nscd/nscd.c (options): Fix typo.
3578         [BZ #5995]
3579         * stdlib/strtod_l.c: Use correct sign for result in one more
3580         underflow case.
3581         Patch by Eric Blake <ebb9@byu.net>.
3583 2008-03-27  Jakub Jelinek  <jakub@redhat.com>
3585         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Add open
3586         and creat system calls.
3587         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove open system
3588         call.
3589         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Remove open and creat
3590         system calls.
3591         * sysdeps/unix/sysv/linux/powerpc/powerpc64/syscalls.list: Likewise.
3592         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
3593         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
3595 2008-03-27  Ulrich Drepper  <drepper@redhat.com>
3597         * sysdeps/unix/sysv/linux/bits/local_lim.h: Undefined ARG_MAX if
3598         <linux/limits.h> has defined it.
3599         * sysdeps/unix/sysv/linux/sys/param.h: Define NCARGS to the legacy
3600         ARG_MAX value and prevent ARG_MAX from being defined by the kernel
3601         headers.
3602         * sysdeps/unix/sysv/linux/sysconf.c: Define legacy_ARG_MAX and use
3603         it instead of ARG_MAX.
3605 2008-03-25  Jakub Jelinek  <jakub@redhat.com>
3607         * posix/gai.conf: Fix comment for scope nullbits.
3608         * sysdeps/posix/getaddrinfo.c (gaiconf_init): If /bits is not present,
3609         default to 128 bits for v4 mapped addresses.
3611 2008-03-07  Martin Schwidefsky  <schwidefsky@de.ibm.com>
3613         * sysdeps/s390/fpu/fegetenv.c (fegetenv): Remove PTRACE_PEEKUSER
3614         ptrace call to get the ieee_instruction_pointer from the kernel.
3615         * sysdeps/s390/fpu/fesetenv.c (fesetenv): Remove PTRACE_POKEUSER
3616         ptrace call to set the ieee_instructtion_pointer.
3617         * sysdeps/unix/sysv/linux/s390/sys/user.h (struct _user_regs_struct):
3618         Add comment that ieee_instruction_pointer is always 0.
3620 2008-03-09  Andreas Jaeger  <aj@suse.de>
3622         [BZ #5857]
3623         * sysdeps/ieee754/dbl-64/s_rint.c (__rint): Handle j0==18.
3624         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Likewise.
3625         Patch by Mark Elliott <mark.h.elliott@lmco.com>.
3627         * math/libm-test.inc (nearbyint_test): Add new test cases from #5857.
3628         (rint_test): Likewise.
3630 2008-03-24  Ulrich Drepper  <drepper@redhat.com>
3632         * nis/nis_call.c (nis_server_cache_search): Save errno around stat
3633         call.
3634         (__nisfind_server): Similar for open readColdStartFile call.
3635         Patch partially by Jim Meyering.
3636         * nss/nss_files/files-XXX.c (_nss_files_getXXent_r): Save errno
3637         around internal_setent call.
3639         * po/vi.po: New Vietnamese translation.
3641         * sysdeps/unix/sysv/linux/adjtime.c: Correctly use
3642         ADJ_OFFSET_SS_READ.
3644         * sysdeps/unix/sysv/linux/bits/sched.h: Add new CLONE_* flags,
3645         remove CLONE_STOPPED.
3647 2008-02-10  Jim Meyering  <meyering@redhat.com>
3649         Remove useless "if" before "free":
3650         * elf/ldconfig.c (parse_conf_include): Likewise.
3651         * gmon/gmon.c (weak_alias): Likewise.
3652         * iconv/gconv_conf.c (__gconv_get_path): Likewise.
3653         * inet/rcmd.c (__validuser2_sa): Likewise.
3654         * intl/bindtextdom.c (set_binding_values): Likewise.
3655         * intl/loadmsgcat.c (_nl_load_domain, _nl_unload_domain): Likewise.
3656         * libio/genops.c (save_for_backup): Likewise.
3657         * libio/wgenops.c (save_for_wbackup): Likewise.
3658         * locale/programs/ld-collate.c (collate_read): Likewise.
3659         * locale/programs/linereader.c (get_string): Likewise.
3660         * nis/nss_compat/compat-pwd.c (give_pwd_free): Likewise.
3661         * nis/nss_compat/compat-spwd.c (give_spwd_free): Likewise.
3662         * resolv/res_debug.c (do_section): Likewise.
3663         * sunrpc/xdr_sizeof.c (x_inline, xdr_sizeof): Likewise.
3664         * sysdeps/mach/hurd/if_index.c (libc_hidden_def): Likewise.
3665         * sysdeps/posix/sprofil.c (__sprofil): Likewise.
3666         * time/lc-time-cleanup.c (_nl_cleanup_time): Likewise.
3667         * time/tzset.c (tzset_internal): Likewise.
3669 2008-03-18  Jakub Jelinek  <jakub@redhat.com>
3671         * sysdeps/unix/sysv/linux/dl-sysdep.h: Use __ASSEMBLER__ instead
3672         of ASSEMBLER.
3674 2008-03-11  Ulrich Drepper  <drepper@redhat.com>
3676         [BZ #5903]
3677         * iconv/iconv_charmap.c (charmap_conversion): Pass name of output file
3678         not stream for output file.  Open output file here.
3679         * iconv/iconv_prog.c (process_lock): Take pointer to output stream
3680         and output file name.
3681         (process_fd): Likewise.
3682         (process_file): Likewise.
3683         (main): Adjust callers of changed functions.
3684         * iconv/iconv_prog.h: Adjust prototype.
3686 2008-03-09  Andreas Jaeger  <aj@suse.de>
3688         [BZ #5753]
3689         * sysdeps/ia64/ieee754.h: Use protected namespace
3690         __BIG_ENDIAN/__LITTLE_ENDIAN.
3691         * sysdeps/ieee754/ieee754.h: Likewise.
3692         Patch by Aurelien Jarno <aurelien@aurel32.net>.
3694 2008-03-08  Roland McGrath  <roland@frob.com>
3696         * hurd/hurdsig.c (_hurd_internal_post_signal): When normal rules would
3697         ignore a signal that came from a machine exception, treat it as a
3698         fatal core-dump signal instead.
3699         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
3701         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
3702         Clear DF bit in thread state's eflags.
3703         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
3705 2008-03-08  Ulrich Drepper  <drepper@redhat.com>
3707         [BZ #5774]
3708         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Consume closing brace
3709         of NAN(...) sequence.
3710         * stdlib/Makefile (tests): Add tst-strtod6.
3711         * stdlib/tst-strtod6.c: New file.
3713         * inet/inet6_opt.c (inet6_opt_init): Check extlen for overflow.
3715         [BZ #5762]
3716         * posix/getopt.c (_getopt_internal_r): Clarify error message by
3717         putting offending option character in quotes.  Clean up error
3718         messages.
3719         * po/be.po: Adjust msgstr in translation file.
3720         * po/bg.po: Likewise.
3721         * po/ca.po: Likewise.
3722         * po/cs.po: Likewise.
3723         * po/da.po: Likewise.
3724         * po/de.po: Likewise.
3725         * po/es.po: Likewise.
3726         * po/fr.po: Likewise.
3727         * po/hr.po: Likewise.
3728         * po/ko.po: Likewise.
3729         * po/nl.po: Likewise.
3730         * po/rw.po: Likewise.
3731         * po/sk.po: Likewise.
3732         * po/sv.po: Likewise.
3733         * po/tr.po: Likewise.
3734         * po/zh_CN.po: Likewise.
3735         * po/zh_TW.po: Likewise.
3737         [BZ #5760]
3738         * inet/inet6_opt.c (inet6_opt_init): Fix ip6h_len computation.
3739         Patch by Roland Bless <roland@bless.de>.
3741         * sysdeps/unix/sysv/linux/dl-sysdep.c: Avoid unnecessary code for
3742         .o file.
3743         * elf/Makefile (routines): Add dl-sysdep.
3744         (elide-routines.os): Likewise.
3746 2008-03-07  Ulrich Drepper  <drepper@redhat.com>
3748         [BZ #5786]
3749         * elf/dl-sysdep.c: Undefine ROUND after use.
3750         * sysdeps/generic/ldsodefs.h [HAVE_DL_DISCOVER_OSVERSION]
3751         (struct rtld_global_ro): Add _dl_tls_get_addr_soft element.
3752         * elf/rtld.c (rtld_global_ro): Initialize _dl_discover_osversion.
3753         * sysdeps/unix/sysv/linux/dl-osinfo.h: Move _dl_discover_osversion
3754         to ...
3755         * sysdeps/unix/sysv/linux/dl-sysdep.c: ...here.
3756         * sysdeps/unix/sysv/linux/dl-sysdep.h: Declare _dl_discover_osversion
3757         if necessary.
3758         * sysdeps/unix/sysv/linux/sysconf.c: Handle _SC_ARG_MAX here.
3760         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Add
3761         _dl_tls_get_addr_soft element.
3762         * elf/rtld.c (rtld_global_ro): Initialize _dl_tls_get_addr_soft.
3763         * elf/Versions (ld): Don't export _dl_tls_get_addr_soft.
3764         * dlfcn/dlinfo.c (dlinfo_doit): Access dl_tls_get_addr_soft through
3765         GLRO.
3766         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Likewise.
3767         * elf/dl-tls.c (_dl_tls_get_addr_soft): Use attribute_hidden instead
3768         of internal_function.
3770         * stdlib/Makefile (aux): Add tens_in_limb.
3771         * stdlib/strtod_l.c: Move _tens_in_limb definition to...
3772         * stdlib/tens_in_limb.c: ...here.  New file.
3774         [BZ #5778]
3775         * sysdeps/unix/sysv/linux/pathconf.h: Declare
3776         __statfs_chown_restricted.
3777         * sysdeps/unix/sysv/linux/fpathconf.c: Call __statfs_chown_restricted
3778         for _PC_CHOWN_RESTRICTED.
3779         * sysdeps/unix/sysv/linux/pathconf.c: Likewise.
3780         Implement __statfs_chown_restricted.
3781         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Change
3782         _POSIX_CHOWN_RESTRICTED value to zero.
3783         * io/tst-fchownat.c: Correctly handle _POSIX_CHOWN_RESTRICTED
3784         defined to zero.
3786         * sysdeps/x86_64/rtld-memset.c: New file.
3788 2008-02-26  Harsha Jagasia  <harsha.jagasia@amd.com>
3790         * sysdeps/x86_64/cacheinfo.c (NOT_USED_RIGHT_NOW): Remove ifdef guards.
3792         * sysdeps/x86_64/memset.S: Rewrite non-SSE code path as tuned for AMD
3793         Barcelona machine.  Make default fall through branch of
3794         __x86_64_preferred_memory_instruction check as the integer code path.
3796 2007-10-15  H.J. Lu  <hongjiu.lu@intel.com>
3798         * sysdeps/x86_64/cacheinfo.c
3799         (__x86_64_preferred_memory_instruction): New variable.
3800         (init_cacheinfo): Initialize __x86_64_preferred_memory_instruction.
3802         * sysdeps/x86_64/memset.S: Rewrite.
3804 2008-03-04  Jakub Jelinek  <jakub@redhat.com>
3806         * include/stdio.h (__asprintf_chk, __dprintf_chk,
3807         __obstack_printf_chk): New prototypes.
3808         (__vasprintf_chk, __vdprintf_chk,
3809         __obstack_vprintf_chk): Likewise.
3810         Add libc_hidden_proto.
3811         * libio/obprintf.c
3812         (_IO_obstack_jumps): No longer static, add attribute_hidden.
3813         * libio/bits/stdio-ldbl.h (__asprintf_chk, __dprintf_chk,
3814         __obstack_printf_chk, __vasprintf_chk, __vdprintf_chk,
3815         __obstack_vprintf_chk): Add __LDBL_REDIR_DECL.
3816         * libio/bits/stdio2.h (__asprintf_chk, __dprintf_chk,
3817         __obstack_printf_chk, __vasprintf_chk, __vdprintf_chk,
3818         __obstack_vprintf_chk): New prototypes.
3819         (asprintf, __asprintf, dprintf, obstack_printf, vasprintf, vdprintf,
3820         obstack_vprintf): New inlines.
3821         * debug/dprintf_chk.c: New file.
3822         * debug/vdprintf_chk.c: New file.
3823         * debug/asprintf_chk.c: New file.
3824         * debug/vasprintf_chk.c: New file.
3825         * debug/obprintf_chk.c: New file.
3826         * debug/tst-chk1.c (do_test): Add asprintf and obstack_printf tests.
3827         * debug/Versions (__asprintf_chk, __dprintf_chk, __obstack_printf_chk,
3828         __vasprintf_chk, __vdprintf_chk, __obstack_vprintf_chk): Export
3829         @@GLIBC_2.8.
3830         * debug/Makefile: Build asprintf_chk, vasprintf_chk, dprintf_chk,
3831         vdprintf_chk and obprintf_chk, set CFLAGS for them.
3832         * sysdeps/ieee754/ldbl-opt/nldbl-compat.c (__nldbl___vasprintf_chk,
3833         __nldbl___vdprintf_chk, __nldbl___obstack_vprintf_chk): Add
3834         libc_hidden_proto.
3835         * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl___vasprintf_chk,
3836         __nldbl___vdprintf_chk, __nldbl___obstack_vprintf_chk): New prototypes.
3837         * sysdeps/ieee754/ldbl-opt/Versions (__nldbl___asprintf_chk,
3838         __nldbl___vasprintf_chk, __nldbl___dprintf_chk, __nldbl___vdprintf_chk,
3839         __nldbl___obstack_printf_chk, __nldbl___obstack_vprintf_chk): Export
3840         @@GLIBC_2.8.
3841         * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add asprintf_chk,
3842         vasprintf_chk, dprintf_chk, vdprintf_chk, obstack_printf_chk and
3843         obstack_vprintf_chk.
3844         * sysdeps/ieee754/ldbl-opt/nldbl-obstack_vprintf_chk.c: New file.
3845         * sysdeps/ieee754/ldbl-opt/nldbl-dprintf_chk.c: New file.
3846         * sysdeps/ieee754/ldbl-opt/nldbl-obstack_printf_chk.c: New file.
3847         * sysdeps/ieee754/ldbl-opt/nldbl-asprintf_chk.c: New file.
3848         * sysdeps/ieee754/ldbl-opt/nldbl-vdprintf_chk.c: New file.
3849         * sysdeps/ieee754/ldbl-opt/nldbl-vasprintf_chk.c: New file.
3851 2008-03-04  Ulrich Drepper  <drepper@redhat.com>
3853         [BZ #5779]
3854         * misc/sys/queue.h: Add STAILQ_CONCAT and TAILQ_CONCAT definitions.
3855         Patch by Roy Marples <roy@marples.name>.
3857         [BZ #5736]
3858         * malloc/malloc.c: Fix typo in comment.
3860         [BZ #5627]
3861         * locale/iso-639.def: Add Shuswap.
3863 2008-02-25  Jakub Jelinek  <jakub@redhat.com>
3865         [BZ #5790]
3866         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r): Don't
3867         overwrite *h_errnop/*errnop values from getanswer_r in case of
3868         failure.
3870 2008-03-03  Ulrich Drepper  <drepper@redhat.com>
3872         [BZ #5818]
3873         * nscd/connections.c (dbs): Add initializers for .suggested_module.
3874         (verify_persistent_db): Remove one unnecessary test and add a new one
3875         for bad configuration.
3876         (nscd_init): Improve error reported when persistent database cannot
3877         be reused.
3878         * nscd/nscd.h (DEFAULT_SUGGESTED_MODULE): Define.
3879         * nscd/nscd_conf.c (nscd_parse_file): Provide default values for
3880         .suggested_module and .max_db_size and case config file says the
3881         values are zero.
3882         * nscd/nscd_helper.c (get_mapping): Fail if hash table module is zero.
3884         [BZ #5854]
3885         * nis/ypclnt.c (yp_order): Fix handling of return value of
3886         do_ypcall_tr call.
3887         Patch by Jeff Moyer <jmoyer@redhat.com>.
3889         * po/fr.po: Update from translation team.
3891 2008-02-22  Andreas Jaeger  <aj@suse.de>,
3892             Carlos O'Donell <carlos@systemhalted.org>
3894         [BZ #5012]
3895         * FAQ.in: Describe why glibc needs to be compiled with
3896         optimization.
3898 2008-02-19  Roland McGrath  <roland@redhat.com>
3900         * elf/elf.h (SHT_GNU_ATTRIBUTES): New macro.
3902 2008-02-15  Ulrich Drepper  <drepper@redhat.com>
3904         [BZ #5737]
3905         * resolv/netdb.h: Make NI_MAXHOST and NI_MAXSERV available when
3906         __USE_MISC is defined.
3908 2008-02-10  Ulrich Drepper  <drepper@redhat.com>
3910         * sysdeps/unix/sysv/linux/sys/timerfd.h: New file.
3911         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers): Add
3912         sys/timerfd.h.
3913         * sysdeps/unix/sysv/linux/syscalls.list: Add timerfd_create,
3914         timerfd_gettime, timerfd_settime.
3915         * sysdeps/unix/sysv/linux/Versions: Add timerfd_create,
3916         timerfd_gettime, timerfd_settime for GLIBC_2.8.
3918 2008-02-08  Roland McGrath  <roland@redhat.com>
3920         * elf/elf.h (NT_PPC_SPE): New macro.
3922 2008-02-06  Roland McGrath  <roland@redhat.com>
3924         * Makerules ($(common-objpfx)sysd-rules):
3925         Depend on $(sysdep-makeconfigs).
3927 2008-01-31  Roland McGrath  <roland@redhat.com>
3929         [BZ #5442]
3930         * configure.in: Use -print-file-name if it yields a directory,
3931         for each of include and include-fixed.
3932         * configure: Regenerated.
3934         * Makeconfig (sysd-rules-targets): New variable.
3935         * sysdeps/unix/make-syscalls.sh: Use it in the rules emitted.
3936         * sysdeps/unix/Makefile (omit-deps): Append variants for each target.
3938 2008-01-30  Roland McGrath  <roland@redhat.com>
3940         * manual/libc.texinfo: Update back-cover text.
3942         * elf/elf.h (NT_386_TLS): New macro.
3944 2008-01-29  Roland McGrath  <roland@redhat.com>
3946         * Makeconfig (sysd-rules-patterns): New variable.
3947         * Makerules ($(common-objpfx)sysd-rules): Drive the loop from that.
3948         (check-inhibit-asm): New canned sequence, replaces ...
3949         (open-check-inhibit-asm, close-check-inhibit-asm): ... these, removed.
3950         * elf/rtld-Rules ($(objpfx)rtld-%.os): Use $(rtld-CPPFLAGS) in commands.
3951         (rtld-CPPFLAGS): Renamed from CPPFLAGS-rtld.
3952         (CFLAGS-rtld): Variable removed.
3954 2008-01-24  Roland McGrath  <roland@redhat.com>
3956         * configure.in: Let configure fragments set base_os.
3957         * configure: Regenerated.
3959 2008-01-22  Ulrich Drepper  <drepper@redhat.com>
3961         * po/ko.po: Update from translation team.
3963 2008-01-12  H.J. Lu  <hongjiu.lu@intel.com>
3965         * sysdeps/i386/fpu/ftestexcept.c (fetestexcept): Use short for fnstsw.
3967 2008-01-12  Andreas Jaeger  <aj@suse.de>
3969         [BZ #5040]
3970         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h (enum EPOLL_EVENTS):
3971         Add EPOLLRDHUP.
3973 2008-01-20  Samuel Thibault  <samuel.thibault@ens-lyon.org>
3975         * hurd/hurdsock.c (_hurd_socket_server): Return the standard
3976         error EAFNOSUPPORT rather than non-standard EPFNOSUPPORT.
3977         * sunrpc/bindrsvprt.c (bindresvport): Likewise.
3979 2007-10-23  Alexandre Oliva  <aoliva@redhat.com>
3981         * include/link.h (FORCED_DYNAMIC_TLS_OFFSET): Define.
3982         * elf/dl-close.c (_dl_close): Check for it.
3983         * elf/dl-reloc.c (CHECK_STATIC_TLS): Likewise.
3984         (_dl_allocate_static_tls): Likewise.
3985         * elf/dl-tls.c (_dl_allocate_tls_init): Likewise.
3986         (__tls_get_addr): Protect from race conditions in setting l_tls_offset
3987         to it.
3988         * elf/tst-tls16.c: New file.
3989         * elf/tst-tlsmod16a.c: New file.
3990         * elf/tst-tlsmod16b.c: New file.
3991         * elf/Makefile: Add rules to build and run tst-tls16.
3993 2008-01-16  Ulrich Drepper  <drepper@redhat.com>
3995         [BZ #5628]
3996         * bits/shm.h: Fix comment describing shmid_ds.
3997         * sysdeps/gnu/bits/shm.h: Likewise.
3998         * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Likewise.
3999         * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
4000         * sysdeps/unix/sysv/linux/ia64/bits/shm.h: Likewise.
4001         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
4002         * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
4003         * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
4004         * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
4005         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Likewise.
4006         Patch by Hareesh Nagarajan <hareesh.nagarajan@gmail.com>.
4008         [BZ #5607]
4009         * conform/data/fcntl.h-data: Fix posix_fadvise and posix_fallocate
4010         prototypes.
4011         * conform/data/limits.h-data: Adjust limits changed in v6 and add
4012         additional suffixes.
4013         * conform/data/mqueue.h-data: Fix typo in mq_curmsgs entry.
4014         Add optional functions mq_timedreceive and mq_timedsend.
4015         * conform/data/netdb.h-data: Add more AI_* and EAI_* constants.
4016         * conform/data/pthread.h-data: Fix prototype of
4017         pthread_condattr_setclock.  pthread_sigmask is not required in v6.
4018         * conform/data/semaphore.h-data: Allow time.h definitions.
4019         * conform/data/signal.h-data: Likewise.
4020         * conform/data/stdio.h-data: getw and putw are not required in v6.
4021         * conform/data/stdlib.h-data: Change setstate prototype.
4022         * conform/data/string.h-data: Fix strerror_r prototype.
4023         * conform/data/time.h-data: Fix typo in TIMER_ABSTIME definition.
4024         * conform/data/unistd.h-data: pthread_atfork not required in v6.
4025         Fix readlink prototype.
4026         * conform/data/netinet/in.h-data: Add const to in6addr_any and
4027         in6addr_loopback.
4028         * inet/netinet/in.h: Cleanup namespace.
4029         * posix/regex.h: Likewise.
4030         * resolv/netdb.h: Likewise.
4031         * sysdeps/unix/sysv/linux/bits/in.h: Likewise.
4032         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
4033         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
4034         * sysdeps/posix/getaddrinfo.c (default_labels): Adjust for change
4035         of names of in in6_addr.
4036         (default_precedence): Likewise.
4037         * sysdeps/unix/sysv/linux/cmsg_nxthdr.c: Include <stddef.h> for
4038         NULL definition.
4040 2008-01-15  Ulrich Drepper  <drepper@redhat.com>
4042         * conform/data/fmtmsg.h-data: Add missing allows.
4043         * conform/data/ftw.h-data: Likewise.
4044         * conform/data/inttypes.h-data: Likewise.
4045         * conform/data/math.h-data: Likewise.
4046         * conform/data/signal.h-data: Likewise.
4047         * conform/data/net/if.h-data: Likewise.
4048         * conform/data/netinet/in.h-data: Likewise.
4049         * conform/data/sys/socket.h-data: Likewise.
4051         [BZ #5614]
4052         * string/bits/string2.h (__strtok_r_1c): Always update *__NEXTP.
4053         (__strtok_r): Simplify.
4054         * string/tester.c (test_strtok_r): Add test case for futile search
4055         with single-character seach string.
4057 2008-01-12  Ulrich Drepper  <drepper@redhat.com>
4059         * po/ko.po: Update from translation team.
4061 2008-01-11  Andreas Jaeger  <aj@suse.de>
4063         [BZ #5600]
4064         * sysdeps/unix/sysv/linux/sys/signalfd.h (struct
4065         signalfd_siginfo): Use 64-bit type for ssi_ptr to sync with Linux
4066         kernel header.
4068 2008-01-10  Ulrich Drepper  <drepper@redhat.com>
4070         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Store result of
4071         native interface lookup in all the relevant places.
4073 2008-01-10  Jakub Jelinek  <jakub@redhat.com>
4074             Ulrich Drepper  <drepper@redhat.com>
4076         * sysdeps/posix/getaddrinfo.c (sort_results): Remove service_order
4077         field.  Use sockaddr_in6 for source_addr.
4078         (get_scope): Change type of parameter to sockaddr_in6.  Adjust.
4079         (match_prefix): Likewise.
4080         (get_label): Likewise.
4081         (get_precedence): Likewise.
4082         (rfc3484_sort): Change to use indirect access to results array.
4083         Adjust to use of sockaddr_in6.  Replace service_order test with
4084         simple index comparison.
4085         (getaddrinfo): Define order array.  Initialize it.  Don't initialize
4086         service_order field.  Adjust qsort_t calls.  Access sorted result
4087         array indirectly through order array.
4088         * posix/tst-rfc3484.c: Adjust for change of rfc3484_sort.
4089         * posix/tst-rfc3484-2.c: Likewise.
4090         * posix/tst-rfc3484-3.c: Likewise.
4092 2008-01-09  Ulrich Drepper  <drepper@redhat.com>
4094         [BZ #5541]
4095         * sunrpc/rpc_thread.c (__rpc_thread_destroy): Also free xports and
4096         pollfd structures.
4097         Patch by André Cruz.
4099         [BZ #5545]
4100         * sunrpc/clnt_perr.c (clnt_sperror): Don't use fixed size buffer.
4101         (clnt_spcreateerror): Likewise.
4103         [BZ #5553]
4104         * malloc/malloc.c (public_mALLOc): Set ar_ptr when trying main_arena.
4105         (public_mEMALIGn): Likewise.
4106         Patch mostly by Daniel Jacobowitz.
4108 2008-01-09  Jakub Jelinek  <jakub@redhat.com>
4110         * sysdeps/unix/sysv/linux/i386/makecontext.S (__makecontext): Avoid
4111         clobbering memory at or above uc_stack.ss_sp + uc_stack.ss_size.
4112         * stdlib/Makefile: Add rules to build and run tst-makecontext2.
4113         * stdlib/tst-makecontext2.c: New test.
4115 2008-01-08  Jakub Jelinek  <jakub@redhat.com>
4117         * iconv/loop.c (UPDATE_PARAMS): Define to empty statement if not
4118         defined.
4119         (REINIT_PARAMS): Likewise.  Undefine before end of file.
4120         (STANDARD_TO_LOOP_ERR_HANDLER): Use UPDATE_PARAMS before calling
4121         transliteration hooks and REINIT_PARAMS afterwards.
4122         * iconvdata/iso-2022-jp.c (BODY): Use a separate variable for
4123         status.
4124         (REINIT_PARAMS): Define.
4125         * iconvdata/ibm1364.c (REINIT_PARAMS): Likewise.
4126         * iconvdata/ibm930.c (REINIT_PARAMS): Likewise.
4127         * iconvdata/ibm933.c (REINIT_PARAMS): Likewise.
4128         * iconvdata/ibm935.c (REINIT_PARAMS): Likewise.
4129         * iconvdata/ibm937.c (REINIT_PARAMS): Likewise.
4130         * iconvdata/ibm939.c (REINIT_PARAMS): Likewise.
4131         * iconvdata/iso-2022-cn.c (REINIT_PARAMS): Likewise.
4132         * iconvdata/iso-2022-cn-ext.c (REINIT_PARAMS): Likewise.
4133         * iconvdata/iso-2022-jp-3.c (REINIT_PARAMS): Likewise.
4134         * iconvdata/iso-2022-kr.c (REINIT_PARAMS): Likewise.
4135         * iconvdata/Makefile: Add rules to build and run tst-iconv7.c.
4136         * iconvdata/tst-iconv7.c: New test.
4138 2008-01-07  Ulrich Drepper  <drepper@redhat.com>
4140         * libio/stdio.h (vscanf): Fix definition for loser compilers.
4142 2008-01-05  Jakub Jelinek  <jakub@redhat.com>
4144         [BZ #5112]
4145         * nscd/connections.c (restart): Fix condition.
4147 2008-01-03  Jakub Jelinek  <jakub@redhat.com>
4149         * ctype/ctype.h (__ctype_b_loc, __ctype_tolower_loc,
4150         __ctype_toupper_loc): Add __THROW.
4152 2008-01-02  Ulrich Drepper  <drepper@redhat.com>
4154         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Fix
4155         recognition of interface family.
4157         * posix/getconf.c: Update copyright year.
4158         * nss/getent.c: Likewise.
4159         * iconv/iconvconfig.c: Likewise.
4160         * iconv/iconv_prog.c: Likewise.
4161         * elf/ldconfig.c: Likewise.
4162         * catgets/gencat.c: Likewise.
4163         * csu/version.c: Likewise.
4164         * elf/ldd.bash.in: Likewise.
4165         * elf/sprof.c (print_version): Likewise.
4166         * locale/programs/locale.c: Likewise.
4167         * locale/programs/localedef.c: Likewise.
4168         * nscd/nscd.c (print_version): Likewise.
4169         * debug/xtrace.sh: Likewise.
4170         * malloc/memusage.sh: Likewise.
4171         * malloc/mtrace.pl: Likewise.
4172         * debug/catchsegv.sh: Likewise.
4174 2007-12-26  Ulrich Drepper  <drepper@redhat.com>
4176         * nss/nsswitch.c (__nss_lookup): Actually use alternative name in
4177         second lookup.
4179 2007-12-23  Ulrich Drepper  <drepper@redhat.com>
4181         * sysdeps/x86_64/cacheinfo.c (intel_02_known): New entry 0x3f.
4182         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
4184 2007-12-17  Roland McGrath  <roland@redhat.com>
4186         * inet/ether_line.c (ether_line): Remove unused variable.
4188 2007-12-17  Samuel Thibault  <samuel.thibault@ens-lyon.org>
4190         * login/forkpty.c (forkpty): Add const qualifier to parameters termp
4191         and winp.
4192         * login/openpty.c (openpty): Likewise.
4193         * login/pty.h (openpty, forkpty): Likewise.
4194         * manual/terminal.texi (openpty, forkpty): Likewise.
4196 2007-12-17  Ulrich Drepper  <drepper@redhat.com>
4198         * malloc/malloc.c (public_cALLOc): For arenas other than
4199         main_arena, count all bytes inside the mprotect_size range of the
4200         heap as uninitialized.
4202 2007-12-16  Ulrich Drepper  <drepper@redhat.com>
4204         * elf/tst-execstack.c (do_test): Don't fail if SELinux forbids
4205         executable stacks.
4207         * malloc/malloc.c (public_mTRIm): Iterate over all arenas and call
4208         mTRIm for all of them.
4209         (mTRIm): Additionally iterate over all free blocks and use madvise
4210         to free memory for all those blocks which contain at least one
4211         memory page.
4212         * malloc/tst-trim1.c: New file.
4213         * malloc/Makefile (tests): Add tst-trim1.
4215         * malloc/malloc.c (do_check_malloc_state): Minimal cleanups.
4217 2007-12-14  Ulrich Drepper  <drepper@redhat.com>
4219         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
4220         First cast argument to long
4221         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_gettimeofday):
4222         Return long.
4223         (__vdso_clock_gettime): Likewise.
4224         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Functions
4225         return long.
4227 2007-12-13  Ulrich Drepper  <drepper@redhat.com>
4229         * locale/nl_langinfo.c (nl_langinfo): Just call __nl_langinfo_l.
4230         * locale/nl_langinfo_l.c: Real implementation, copied from
4231         nl_langinfo.c.
4232         * include/langinfo.h: Add libc_hidden_proto for __nl_langinfo_l.
4234 2007-12-01  Jim Meyering  <meyering@redhat.com>
4236         * posix/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
4237         that would inhibit utf8-optimization of a regexp containing line-
4238         or buffer-anchors, e.g., `^', `$'.
4240 2007-12-12  Ulrich Drepper  <drepper@redhat.com>
4242         * time/bug-getdate1.c (do_test): Don't use century values which
4243         aren't valid on 32-bit systems.
4245 2007-12-12  Jakub Jelinek  <jakub@redhat.com>
4247         * sysdeps/i386/i486/bits/string.h (memmove): Define as macro.
4248         (memmove): Rename to __memmove_g, with __asm__ ("memmove").
4249         * sysdeps/s390/bits/string.h (__strlen_g, __strcpy_g, __strncpy_g,
4250         __strcat_g, __strncat_g): Add __asm__.
4252 2007-12-12  Ulrich Drepper  <drepper@redhat.com>
4254         [BZ #5477]
4255         * io/fchmodat.c: Fix typo in stub_warning use.
4256         Patch by Petr Salinger.
4258 2007-12-11  Ulrich Drepper  <drepper@redhat.com>
4260         * iconvdata/hp-thai8.c: New file.
4261         * iconvdata/Makefile: Add rules for hp-thai8.c.
4262         * iconvdata/tst-tables.sh: Add entry for HP-THAI8.
4263         * iconvdata/gconv-modules: Likewise.
4265         [BZ #5464]
4266         * iconvdata/hp-greek8.c: New file.
4267         * iconvdata/Makefile: Add rules for hp-greek8.c.
4268         * iconvdata/tst-tables.sh: Add entry for HP-GREEK8.
4269         * iconvdata/gconv-modules: Likewise.
4271         [BZ #5463]
4272         * iconvdata/hp-turkish8.c: New file.
4273         * iconvdata/Makefile: Add rules for hp-turkish8.c.
4274         * iconvdata/tst-tables.sh: Add entry for HP-TURKISH8.
4275         * iconvdata/gconv-modules: Likewise.
4277         * malloc/arena.c (grow_heap): Split out code to shrink heap into...
4278         (shrink_heap): ... this new function.
4279         (heap_trim): Call shrink_heap instead of grow_heap.
4281         * malloc/malloc.c (_int_malloc): sYSMALLOc might fail, in this
4282         case don't call alloc_perturb.
4284 2007-12-10  Ulrich Drepper  <drepper@redhat.com>
4286         * sysdeps/unix/sysv/linux/adjtime.c: Use ADJ_OFFSET_SS_READ if
4287         possible.
4288         * sysdeps/unix/sysv/linux/kernel-features.h
4289         (__ASSUME_ADJ_OFFSET_SS_READ): Define for 2.6.24.
4290         * sysdeps/unix/sysv/linux/sys/timex.h (ADJ_OFFSET_SS_READ): Define.
4292 2007-12-08  Ulrich Drepper  <drepper@redhat.com>
4294         [BZ #5424]
4295         * stdio-common/vfprintf.c: Do not overflow when adding to done.
4296         * stdio-common/Makefile (tests): Add bug22.
4297         * stdio-common/bug22.c: New file.
4299         [BZ #5451]
4300         * time/getdate.c: Fix filling in default values.
4301         * time/bug-getdate1.c: New file.
4302         * time/Makefile: Add rules to build and run bug-getdate1.
4304         * iconvdata/ebcdic-is-friss.c: Use 8bit-gap instead of 8bit-generic.
4305         * iconvdata/ebcdic-es.c: Likewise.
4306         * iconvdata/ebcdic-es-a.c: Likewise.
4307         * iconvdata/ebcdic-uk.c: Likewise.
4308         * iconvdata/iso8859-16.c: Likewise.
4309         * iconvdata/viscii.c: Likewise.
4310         * iconvdata/iso8859-9e.c: Likewise.
4311         * iconvdata/Makefile: Adjust appropriately.
4313         [BZ #5428]
4314         * wcsmbs/wchar.h: Unconditionally undefine __need_mbstate and
4315         __need_wint_t.
4317 2007-12-07  Ulrich Drepper  <drepper@redhat.com>
4319         [BZ #5427]
4320         * iconvdata/hp-roman9.c: New file.
4321         * iconvdata/Makefile: Add rules for hp-roman9.c.
4322         * iconvdata/tst-tables.sh: Add HP-ROMAN9.
4323         * iconvdata/gconv-modules: Likewise.
4325         * iconvdata/hp-roman8.c: Use 8bit-gap instead of 8bit-generic.
4326         * iconvdata/Makefile: Adjust appropriately.
4328         [BZ #5441]
4329         * stdio-common/vfscanf.c (_IO_vfwscanf): Don't free ptrs_to_free
4330         structure, it's allocated with alloca.
4331         * stdio-common/Makefile (tests): Add bug21.
4332         * stdio-common/bug21.c: New file.
4334 2007-12-06  Aurelien Jarno  <aurelien@aurel32.net>
4336         [BZ #5452]
4337         * sysdeps/unix/sysv/linux/bits/sched.h: Use __extension__
4338         keyword for gcc's braced-groups.
4340 2007-12-07  Ulrich Drepper  <drepper@redhat.com>
4342         [BZ #5454]
4343         * inet/ether_line.c: Strip hostname of whitespaces.
4344         * inet/Makefile (tests): Add tst-ether_line.
4345         * inet/tst-ether_line.c: New file.
4347 2007-12-03  Ulrich Drepper  <drepper@redhat.com>
4349         [BZ #5439]
4350         * sysdeps/unix/sysv/linux/sys/signalfd.h: Fix use of __nonnull.
4352         [BZ #5435]
4353         * sysdeps/unix/sysv/linux/i386/makecontext.S: Align stack.
4355         * stdlib/tst-setcontext.c: Catch the case where the links gets
4356         messed up and we do not reach main again.
4358         * po/ca.po: Update from translation team.
4360 2007-11-26  Ulrich Drepper  <drepper@redhat.com>
4362         * posix/unistd.h: Declare fsync also for __USE_XOPEN2K.
4363         * posix/regex.h (REG_ENOSYS): Likewise.
4364         * wcsmbs/wchar.h: Define __need_file also for __USE_XOPEN2K.
4366 2007-11-25  Ulrich Drepper  <drepper@redhat.com>
4368         * nscd/nscd.h (MAX_STACK_USE): Define.
4369         * nscd/mem.c (MAX_STACK_USE): Remove definition here.
4370         (gc): Initialize stack_used based on allocation in prune_cache.
4371         * nscd/cache.c (prune_cache): Use heap for mark array if necessary.
4372         Clear array before use.
4374         * nscd/aicache.c (addhstaiX): Update statistics counter in case
4375         memory allocation failed.
4376         * nscd/hstcache.c (cache_addhst): Likewise.
4377         * nscd/grpcache.c (cache_addgr): Likewise.
4378         * nscd/servicescache.c (cache_addserv): Likewise.
4379         * nscd/pwdcache.c (cache_addpw): Likewise.
4380         * nscd/initgrcache.c (addinitgroupsX): Likewise.
4382 2007-11-23  Ulrich Drepper  <drepper@redhat.com>
4384         * sysdeps/unix/sysv/linux/powerpc/powerpc64/syscalls.list: Add open
4385         and creat system calls.
4387         * sysdeps/unix/sysv/linux/check_native.c: Include <asm/types.h>.
4389 2007-11-23  Martin Schwidefsky  <schwidefsky@de.ibm.com>
4391         * sysdeps/unix/sysv/linux/Makefile [subdir=inet] (sysdep_headers):
4392         Add netiucv/iucv.h.
4393         * sysdeps/unix/sysv/linux/netiucv/iucv.h: New file.
4394         * sysdeps/unix/sysv/linux/opensock.c (__opensock): Add AF_IUCV
4395         protocol.
4396         * sysdeps/unix/sysv/linux/sa_len.c (__libc_sa_len): Likewise.
4397         * sysdeps/unix/sysv/linux/s390/opensock.c: New file.
4398         * sysdeps/unix/sysv/linux/s390/sa_len.c: New file.
4400 2007-11-22  Martin Schwidefsky  <schwidefsky@de.ibm.com>
4402         * sysdeps/s390/bits/string.h (strlen, strcpy, strncpy, strcat,
4403         strncat): Define as macros to avoid compile errors.
4405         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list:  Add open and
4406         creat entries.
4408 2007-11-22  Ulrich Drepper  <drepper@redhat.com>
4410         [BZ #5382]
4411         * nscd/nscd.h (NSCD_THREAD_STACKSIZE): Define.
4412         * nscd/connections.c (start_threads): Use NSCD_THREAD_STACKSIZE.
4413         * nscd/mem.c (gc): Don't allocate arrays on the stack if they can
4414         overflow it.
4415         Partially based on a patch by Petr Baudis <pasky@suse.cz>.
4417         * sysdeps/unix/sysv/linux/nscd_setup_thread.c (setup_thread):
4418         Return zero in case the thread library is not NPTL.
4420         [BZ #5375]
4421         * resolv/res_hconf.c (_res_hconf_reorder_addrs): Fix locking when
4422         initializing interface list.
4424         [BZ #5378]
4425         * nis/nss_compat/compat-initgroups.c (getgrent_next_nss): Don't
4426         use result of nss_getgrgid_r if nothing was found.  For other
4427         error return with a failure.
4428         Partially based on a patch by Petr Baudis <pasky@suse.cz>.
4430         * locale/programs/ld-collate.c (collate_read): Fix loop to match
4431         macro name.
4433 2007-11-19  Ulrich Drepper  <drepper@redhat.com>
4435         * sysdeps/posix/getaddrinfo.c (defaults_scopes, scopes): New variables.
4436         (get_scope): For IPv4 scope, use scopes table.
4437         (fini): Free scopes table if necessary.
4438         (free_scopelist): New function.
4439         (scopecmp): New function.
4440         (gaiconf_init): Also handle scopev4 entries.
4441         * posix/tst-rfc3484.c (do_test): Initialize scopes.
4442         * posix/tst-rfc3484-2.c (do_test): Likewise.
4443         * posix/gai.conf: Document scopev4 defaults.
4444         * posix/Makefile (tests): Add tst-rfc3484-3.
4445         * posix/tst-rfc3484-3.c: New file.
4447         * sysdeps/posix/getaddrinfo.c (default_labels): Describe entry for
4448         Teredo tunnels.
4449         * posix/gai.conf: Update for current default tables.
4451 2007-11-19  Ulrich Drepper  <drepper@redhat.com>
4453         * po/tr.po: Update from translation team.
4455 2007-11-18  Roland McGrath  <roland@frob.com>
4457         * manual/arith.texi (Remainder Functions): Spelling fix.
4458         From Shaun Silk <genix@mysoul.com.au>.
4460         * sysdeps/mach/hurd/bits/fcntl.h (O_CLOEXEC): Fix value.
4462 2007-11-17  Ulrich Drepper  <drepper@redhat.com>
4464         * po/zh_CN.po: Update from translation team.
4466         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers):
4467         Add sys/signalfd.h and sys/eventfd.h.
4469 2007-11-15  Bruno Haible  <bruno@clisp.org>
4471         [BZ #5346]
4472         * intl/dcigettext.c (struct known_translation_t): Turn msgid into a
4473         union.
4474         (transcmp): Use the appropriate part of s1->msgid and s2->msgid.
4475         (DCIGETTEXT): Change the allocation of the 'search' variable so that
4476         it needs only fixed stack space. Delay the initialization of
4477         msgid_len until it is needed.
4479 2007-11-15  Andreas Jaeger  <aj@suse.de>
4481         * sysdeps/ieee754/dbl-64/sincos.tbl: Fix size of union.
4482         Reported by Christoph Quirin Lauter <christoph.lauter@ens-lyon.fr>.
4484 2007-11-15  Ulrich Drepper  <drepper@redhat.com>
4486         * po/ko.po: Update from translation team.
4488 2007-11-14  Ulrich Drepper  <drepper@redhat.com>
4490         * sysdeps/unix/sysv/linux/check_native.c (__check_native): Simplify
4491         significantly.  The device type is also part of the ifinfomsg data.
4493         * po/sv.po: Update from translation team.
4494         * po/nl.po: Likewise.
4496         * nscd/cache.c (prune_cache): If cache is empty, instruct caller
4497         to wake up in 24 hours.
4499         * nscd/gai.c (__ioctl): Define.  Include check_native.c.
4501 2007-11-13  Ulrich Drepper  <drepper@redhat.com>
4503         * po/cs.po: Update from translation team.
4504         * po/pl.po: Likewise.
4506         * include/ifaddrs.h: Remove in6ai_temporary.
4507         (struct in6addrinfo): Add index element.
4508         Declare __check_native.
4509         * inet/Makefile (aux): Add check_native.
4510         * sysdeps/unix/sysv/linux/check_native.c: New file.
4511         * sysdeps/unix/sysv/linux/check_pf.c: No need to recognize
4512         IFA_F_TEMPORARY.  Pass back ifa_index.
4513         * sysdeps/posix/getaddrinfo.c: Remove netlink compatibility code.
4514         (rfc3484_sort): Add new parameter.  Implement rule 7 correctly:
4515         call __check_native if necessary.
4516         (getaddrinfo): Fill in index field.  Use qsort_r instead of qsort
4517         to sort addresses.  Pass information about the results.
4518         * posix/tst-rfc3484.c: Adjust for addition of index field and change
4519         of rfc3484_sort interface.
4520         * posix/tst-rfc3484-2.c: Likewise.
4522         * stdlib/stdlib.h: Define __compar_d_fn_t.  Declare qsort_r.
4523         * include/stdlib.h: Add hidden_proto for qsort_t and adjust protoype
4524         for _quicksort.
4525         * stdlib/msort.c (qsort): Now a wrapper around qsort_r.
4526         (qsort_r): Renamed from qsort.  Take additional parameter and pass it
4527         on as third parameter to compare function and _quicksort.
4528         * stdlib/qsort.c (_quicksort): Take additional parameter and pass on
4529         to the compare function.
4530         * stdlib/Versions [libc] (GLIBC_2.8): Add qsort_r.
4531         * Versions.def: Add GLIBC_2.8 for libc.
4533         * posix/tst-rfc3484.c: Adjust for addition of prefixlen field.
4534         * posix/tst-rfc3484-2.c: Likewise.
4536         * include/kernel-features.h: Moved to...
4537         * sysdeps/mach/hurd/kernel-features.h: ...here.
4539 2007-09-13  H.J. Lu  <hongjiu.lu@intel.com>
4541         * sysdeps/i386/i586/memcpy_chk.S: New file.
4542         * sysdeps/i386/i586/mempcpy_chk.S: Likewise.
4543         * sysdeps/i386/i586/memset_chk.S: Likewise.
4545 2007-11-12  Ulrich Drepper  <drepper@redhat.com>
4547         * include/ifaddrs.c (struct in6addrinfo): Add prefixlen field.
4548         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Always return
4549         list of interfaces.  Also store prefix length.
4550         * sysdeps/posix/getaddrinfo.c (sort_result): Add prefixlen element.
4551         (rfc3484_sort): In rule 9, for IPv4 addresses count only matching
4552         prefix if source and destination address are in the same subnet.
4553         (getaddrinfo): Always call __check_pf.  Fill in prefixlen field.
4554         Always look for matching record in in6ai list.
4555         Correct source_addr_len value for IPv6->IPv4 converted records.
4557 2007-11-11  Roland McGrath  <roland@frob.com>
4559         * include/kernel-features.h: New file.
4561 2007-11-10  Ulrich Drepper  <drepper@redhat.com>
4563         * sysdeps/pthread/aio_misc.c (handle_fildes_io): Avoid unnecessary
4564         complications for 64-bit platforms.
4566         * sysdeps/unix/sysv/linux/open64.c: Move __open64_2 implementation to..
4567         * sysdeps/unix/sysv/linux/open64_2.c: ...here.  New file.
4568         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines): Add
4569         open64_2.
4570         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Add open and creat
4571         entries.
4572         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
4573         * sysdeps/wordsize-64/alphasort.c: New file.
4574         * sysdeps/wordsize-64/alphasort64.c: New file.
4575         * sysdeps/wordsize-64/fseeko.c: New file.
4576         * sysdeps/wordsize-64/fseeko64.c: New file.
4577         * sysdeps/wordsize-64/ftello.c: New file.
4578         * sysdeps/wordsize-64/ftello64.c: New file.
4579         * sysdeps/wordsize-64/ftw.c: New file.
4580         * sysdeps/wordsize-64/ftw64.c: New file.
4581         * sysdeps/wordsize-64/iofgetpos.c: New file.
4582         * sysdeps/wordsize-64/iofgetpos64.c: New file.
4583         * sysdeps/wordsize-64/iofopen.c: New file.
4584         * sysdeps/wordsize-64/iofopen64.c: New file.
4585         * sysdeps/wordsize-64/iofsetpos.c: New file.
4586         * sysdeps/wordsize-64/iofsetpos64.c: New file.
4587         * sysdeps/wordsize-64/lockf.c: New file.
4588         * sysdeps/wordsize-64/lockf64.c: New file.
4589         * sysdeps/wordsize-64/mkostemp.c: New file.
4590         * sysdeps/wordsize-64/mkostemp64.c: New file.
4591         * sysdeps/wordsize-64/mkstemp.c: New file.
4592         * sysdeps/wordsize-64/mkstemp64.c: New file.
4593         * sysdeps/wordsize-64/scandir.c: New file.
4594         * sysdeps/wordsize-64/scandir64.c: New file.
4595         * sysdeps/wordsize-64/tmpfile.c: New file.
4596         * sysdeps/wordsize-64/tmpfile64.c: New file.
4597         * sysdeps/wordsize-64/versionsort.c: New file.
4598         * sysdeps/wordsize-64/versionsort64.c: New file.
4599         * sysdeps/unix/sysv/linux/wordsize-64/aio_read.c: New file.
4600         * sysdeps/unix/sysv/linux/wordsize-64/aio_read64.c: New file.
4601         * sysdeps/unix/sysv/linux/wordsize-64/aio_write.c: New file.
4602         * sysdeps/unix/sysv/linux/wordsize-64/aio_write64.c: New file.
4603         * sysdeps/unix/sysv/linux/wordsize-64/creat64.c: New file.
4604         * sysdeps/unix/sysv/linux/wordsize-64/getdirentries.c: New file.
4605         * sysdeps/unix/sysv/linux/wordsize-64/getdirentries64.c: New file.
4606         * sysdeps/unix/sysv/linux/wordsize-64/lio_listio.c: New file.
4607         * sysdeps/unix/sysv/linux/wordsize-64/lio_listio64.c: New file.
4608         * sysdeps/unix/sysv/linux/wordsize-64/open64.c: New file.
4609         * sysdeps/unix/sysv/linux/wordsize-64/openat.c: New file.
4610         * sysdeps/unix/sysv/linux/wordsize-64/openat64.c: New file.
4612         * crypt/sha256-crypt.c: Fix a comment.
4613         * crypt/sha512-crypt.c: Likewise.
4615 2007-11-07  H.J. Lu  <hongjiu.lu@intel.com>
4617         * sysdeps/x86_64/memset.S: Add sfence after movnti.
4619 2007-11-07  Ulrich Drepper  <drepper@redhat.com>
4621         [BZ #5277]
4622         * iconv/loop.c (STANDARD_TO_LOOP_ERR_HANDLER): If conversion failed
4623         because output buffer is too small break, don't loop.
4624         * iconvdata/Makefile (tests): Add bug-iconv6.
4625         * iconvdata/bug-iconv6.c: New file.
4627 2007-11-06  Ulrich Drepper  <drepper@redhat.com>
4629         * stdio-common/vfprintf.c (vfprintf): Compute necessary buffer size
4630         with size_t type.
4631         * stdio-common/printf_fp.c (__print_fp): Change chars_needed type to
4632         size_t.  Add casts where needed.
4634         * nscd/selinux.c (nscd_request_avc_has_perm): When compiled with
4635         old headers, don't call avc_has_perm if we don't have the
4636         permission information.
4638 2007-11-05  Daniel Jacobowitz  <dan@codesourcery.com>
4640         * elf/rtld.c (dl_main): Use the page size to find the map start.
4642 2007-11-05  Ulrich Drepper  <drepper@redhat.com>
4644         * time/tzfile.c (__tzfile_read): Fix check for version 0 data files.
4645         Patch by Szymon Siwek <sls@poczta.wp.pl>.
4647         * nscd/aicache.c (addhstaiX): Check herrno after IPv4 lookup only
4648         when the lookup call failed.
4650         * nscd/nscd.h (struct database_dyn): Rename prunelock to prune_lock.
4651         Add prune_cond and wakeup_time.
4652         (CACHE_PRUNE_INTERNAL): Define.
4653         Update declarations of prune_cache and setup_thread.
4654         * nscd/connections.c (dbs): Update initializers.
4655         (CACHE_PRUNE_INTERNAL): Moved to nscd.h.
4656         (nscd_init): Default number of threads is now 4.
4657         (invalidate_cache): Take lock before calling prune_cache.
4658         (handle_request): If SELinux forbids the request, say so.
4659         (readylist_cond): Use static initializer.
4660         (nscd_run_prune): New function.  Used only by pruning threads.
4661         (nscd_run_worder): Renamed from nscd_run.  Remove support for pruning
4662         here.
4663         (fd_ready): Update nscd_run reference.
4664         (start_threads): No need to initialize readylist_cond.
4665         Start pruning threads separately.
4666         * nscd/nscd_setup_thread.c: Change return value type to int and always
4667         return 0.
4668         * sysdeps/unix/sysv/linux/nscd_setup_thread.c: Change return value type
4669         to int and return nonzero value if we can use the TID address hack.
4670         * nscd/cache.c (cache_add): If next wakeup time of cleanup thread for
4671         the database is later than the new entry's timeout, update the
4672         wakeup time and wake the cleanup thread.
4673         (prune_cache): Return seconds the next entry in the database is still
4674         valid.  Remove locking for pruning here.
4675         * nscd/nscd.conf: Document default number of threads.
4677 2007-10-31  Ulrich Drepper  <drepper@redhat.com>
4679         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Make sure
4680         stack is properly aligned for the target function.
4681         Correct unwind info.
4683         * elf/rtld.c (dl_main): Initialize stack and pointer guard early
4684         when using auditing libraries.
4686 2007-10-29  Ulrich Drepper  <drepper@redhat.com>
4688         * resolv/Versions [libresolv] (GLIBC_PRIVATE): Add
4689         _nss_dns_getnetbyaddr2_r.
4690         * resolv/nss_dns/dns-host.c: Define _nss_dns_getnetbyaddr2_r.  Pass
4691         extra parameter to getanswer_r.
4692         (_nss_dns_getnetbyaddr_r): Now a wrapper around
4693         _nss_dns_getnetbyaddr2_r.
4695         * nscd/Makefile (nscd-modules): Replace gethstbynm2_r with
4696         gethstbynm3_r.
4697         * nscd/gethstbynm2_r.c: Remove.
4698         * nscd/gethstbynm3_r.c: New file.
4699         * nscd/aicache.c (addhstaiX): Use __gethostbyaddr2_r instead of
4700         __gethostbyaddr_r.
4701         * nscd/gethstbyad_r.c: Generate __gethostbyaddr2_r function.  Define
4702         __gethostbyaddr_r compatibility wrapper.
4703         * nscd/hstcache.c (cache_addhst): Add ttl parameter.  Use it when
4704         determining timeout of entry.
4705         (lookup): Take new parameter and pass it to __gethostbyname3_r and
4706         __gethostbyaddr2_r.
4707         (addhstbyX): Pass reference to variable for TTL to lookup and
4708         cache_addhst.
4709         * nss/Versions [glibc] (GLIBC_PRIVATE): Export __nss_passwd_lookup2,
4710         __nss_group_lookup2, __nss_hosts_lookup2, __nss_services_lookup2,
4711         and __nss_next2.  Remove __nss_services_lookup.
4712         * nss/XXX-lookup.c: Name function now *_lookup2.  Add new parameter.
4713         Add compat wrapper.
4714         * nss/getXXbyYY_r.c: Changes to call new *_lookup2 functions and
4715         __nss_next2.
4716         * nss/getXXent_r.c: Likewise.
4717         * nss/getnssent_r.c: Likewise.
4718         * nss/nsswitch.c (__nss_lookup): Add new parameter.  If first function
4719         does not exist in module, try the optional second name.
4720         (__nss_next2): New function.
4721         (__nss_next): Now wrapper around __nss_next2.
4722         * nss/nsswitch.h: Adjust __nss_lookup prototype.
4723         Declare __nss_next2.
4724         Adjust definition of db_lookup_function type.
4725         * nss/service-lookup.c: Define NO_COMPAT.
4726         * include/netdb.h: Declare __gethostbyaddr2_r and __gethostbyname3_r.
4727         * inet/ether_hton.c: Use __nss_next2 instead of __nss_next.
4728         * inet/ether_ntoh.c: Likewise.
4729         * sunrpc/netname.c: Likewise.
4730         * sunrpc/publickey.c: Likewise.
4731         * inet/getnetgrent.c: Likewise.  Adjust calls to __nss_lookup.
4732         * inet/gethstbyad_r.c (DB_LOOKUP_FCT): Change to __nss_hosts_lookup2.
4733         * inet/gethstbynm2_r.c (DB_LOOKUP_FCT): Likewise.
4734         * inet/gethstbynm_r.c (DB_LOOKUP_FCT): Likewise.
4735         * inet/gethstent_r.c (DB_LOOKUP_FCT): Likewise.
4737         * nscd/aicache.c (addhstaiX): Fix default TTL handling.
4739         * inet/getnetgrent_r.c (setup): Encrypt static pointer.
4741 2007-10-28  Ulrich Drepper  <drepper@redhat.com>
4743         [BZ #5204]
4744         * crypt/sha256c-test.c: Define TIMEOUT to 6 for ancient hardware.
4745         * crypt/sha512c-test.c: Likewise.
4747         [BZ #5225]
4748         * stdio-common/vfscanf.c (_IO_vfwscanf): Don't misuse wp pointer
4749         to keep track of end of %[ format string element.
4750         * stdio-common/Makefile (tests): Add bug20.
4751         * stdio-common/bug20.c: New file.
4753         [BZ #5222]
4754         * elf/dl-load.c (_dl_rtld_di_serinfo): Correct handling of short
4755         path elements in counting mode.
4757 2007-10-27  Andreas Jaeger  <aj@suse.de>
4759         [BZ #5040]
4760         * sysdeps/unix/sysv/linux/sys/epoll.h (EPOLLRDHUP): Add value.
4762         [BZ #3112]
4763         * sysdeps/ia64/backtrace.c (init): Free shared library if incorrect.
4764         (__cleanup): Free shared library when exiting.
4765         * sysdeps/i386/backtrace.c (init): Free shared library if incorrect.
4766         (__cleanup): Free shared library when exiting.
4768 2006-04-14  H.J. Lu  <hongjiu.lu@intel.com>
4770         [BZ #2549]
4771         * math/libm-test.inc (check_float_internal): Support
4772         denormalized return.
4774 2007-10-23  Andreas Jaeger  <aj@suse.de>
4776         [BZ #5208]
4777         * sysdeps/unix/sysv/linux/readahead.c (__readahead): Use
4778         __LONG_LONG_PAIR to handle little endian byte order.
4779         Suggested by abhishekrai@google.com
4781 2007-10-27  Ulrich Drepper  <drepper@redhat.com>
4783         * malloc/arena.c [!NO_THREADS]: Use ATFORK_MEM if defined.
4785 2007-10-26  Ulrich Drepper  <drepper@redhat.com>
4787         * nscd/cache.c (prune_cache): Move test for modified file outside
4788         of locking.
4790 2007-10-21  Andreas Jaeger  <aj@suse.de>
4792         * manual/texinfo.tex: Update to latest version.
4794         * manual/sysinfo.texi (System Parameters): Fix Formatting.
4796         * manual/arith.texi (Status bit operations): Fix formatting.
4798         * manual/errno.texi (Error Messages): Fix formatting.
4800         * manual/sysinfo.texi (System Parameters): Fix formatting.
4802         * manual/libc.texinfo: Update VERSION and UPDATED.
4804 2007-10-19  Roland McGrath  <roland@redhat.com>
4806         * elf/Makefile ($(objpfx)ld.so): Use $(AWK).
4808 2007-10-06  David S. Miller  <davem@davemloft.net>
4810         * configure.in: Add sparcv9v2 and sparc64v2.
4811         * scripts/config.sub: Likewise.
4812         * configure: Regenerate.
4813         * elf/elf.h (HWCAP_SPARC_N2): New.
4814         * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Bump to 8.
4815         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add 'v9v2'.
4816         (HWCAP_IMPORTANT): Add HWCAP_SPARC_N2.
4817         * sysdeps/sparc/sparc32/sparcv9/sparcv9v2/memcpy.S: New file.
4818         * sysdeps/sparc/sparc32/sparcv9/sparcv9v2/memset.S: New file.
4819         * sysdeps/sparc/sparc64/sparcv9v2/memcpy.S: New file.
4820         * sysdeps/sparc/sparc64/sparcv9v2/memset.S: New file.
4822 2007-10-18  Ulrich Drepper  <drepper@redhat.com>
4824         * sunrpc/clnt_udp.c (clntudp_call): Don't block in recvfrom call
4825         even if the poll result indicates there is data to read.
4826         Patch by Jeff Moyer <jmoyer@redhat.com>.
4828 2007-10-18  Roland McGrath  <roland@redhat.com>
4830         * elf/elf.h (NT_PPC_VMX): New macro.
4832 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
4834         * version.h (VERSION): Set to 2.7.90.
4836 2007-10-17  Jakub Jelinek  <jakub@redhat.com>
4838         * sysdeps/x86_64/memset.S (bzero): Renamed to __bzero.  Add
4839         weak_alias.
4841 2007-10-17  Roland McGrath  <roland@frob.com>
4843         * sysdeps/mach/hurd/bits/fcntl.h [__USE_GNU__] (F_DUPFD_CLOEXEC): New.
4844         * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Implement it.
4846 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
4848         * version.h (VERSION): Bump to 2.7.
4849         * include/features.h (__GLIBC_MINOR__): Bump to 7.
4851         [BZ #5186]
4852         * time/tzset.c (__tz_convert): Don't force testing for a change of
4853         TZ if not called from localtime.  But then also see whether the
4854         file changed, in case __use_tzfile is set.
4856         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define F_DUPFD_CLOEXEC.
4857         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
4858         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
4859         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
4860         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
4861         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
4862         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h:  Likewise.
4863         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
4865 2007-10-17  Jakub Jelinek  <jakub@redhat.com>
4867         * sysdeps/posix/getaddrinfo.c (getaddrinfo): When sorting addresses
4868         and admin selects to be able to replace the gai.conf file, lock
4869         data structures around the qsort call.
4871 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
4873         * sysdeps/x86_64/cacheinfo.c: Comment out code added in support of
4874         new memset.
4875         * sysdeps/x86_64/memset.S: Revert to old version for now.  The cost is
4876         too high for the improvements.  Implement bzero unconditionally for
4877         use in libc.
4879 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
4880             Jakub Jelinek  <jakub@redhat.com>
4882         * time/tzfile.c (__tzfile_read): Read POSIX TZ string if available
4883         even when time_t is 32-bit.
4884         (__tzfile_compute): Override POSIX TZ string STD/DST zone names if
4885         timezone data read by __tzfile_default.  Ensure __tzname[0] is
4886         always set after the search.
4888 2007-10-16  Ulrich Drepper  <drepper@redhat.com>
4890         * time/tzfile.c (__tzfile_read): Help the compiler recognize
4891         unreachable code on 32-bit machines.
4893 2007-10-16  Jakub Jelinek  <jakub@redhat.com>
4895         [BZ #5184]
4896         * time/strftime_l.c: Include stdbool.h.
4897         (my_strftime): New wrapper, old function renamed to...
4898         (__strftime_internal): ... new function.  Add tzset_called
4899         argument, pass it down to recursive calls, don't call tzset ()
4900         if already true, set to true after call to tzset ().
4902 2007-10-16  Ulrich Drepper  <drepper@redhat.com>
4904         * time/tzfile.c (__tzfile_read): Take extra memory requested by caller
4905         into account when copying TZ string.
4907 2007-10-16  Jakub Jelinek  <jakub@redhat.com>
4909         * time/tzfile.c (__tzfile_compute): For use_last case set i to
4910         num_transition rather than num_transitions - 1.
4912 2007-10-16  Jakub Jelinek  <jakub@redhat.com>
4914         * sysdeps/x86_64/memset.S (memset): Fix sse2_nt_move
4915         PIC indirect jump.
4917         * sysdeps/x86_64/memset.S: Jump from bzero to memset using
4918         a local label rather than HIDDEN_JUMPTARGET.
4920 2007-10-15  Ulrich Drepper  <drepper@redhat.com>
4922         * sysdeps/x86_64/cacheinfo.c (__x86_64_shared_cache_size): Define.
4923         (init_cacheinfo): Initialize it.
4924         * sysdeps/x86_64/memset.S: Use __x86_64_shared_cache_size.
4925         Always define bzero.
4926         Remove non-glibc code.
4927         * sysdeps/x86_64/bzero.S: Make an empty file.
4929 2007-10-15  H.J. Lu  <hongjiu.lu@intel.com>
4931         * sysdeps/x86_64/cacheinfo.c
4932         (__x86_64_preferred_memory_instruction): New.
4933         (init_cacheinfo): Initialize __x86_64_preferred_memory_instruction.
4935         * sysdeps/x86_64/memset.S: Rewrite.
4937 2007-10-15  Roland McGrath  <roland@redhat.com>
4939         * po/libc.pot: Regenerated.
4941 2007-10-15  Ulrich Drepper  <drepper@redhat.com>
4943         * nss/getXXbyYY_r.c (REENTRANT_NAME): Mangle startp and start_fct
4944         pointers.
4946         [BZ #3425]
4947         * resolv/nss_dns/dns-host.c (getanswer_r): Fail with
4948         NSS_STATUS_NOTFOUND if the server replied with only a CNAME and no
4949         address record to T_A/T_AAAA requests.
4951 2007-10-14  Ulrich Drepper  <drepper@redhat.com>
4953         * posix/glob.c: Reimplement link_exists_p to use fstatat64.
4955         * posix/glob.c: Add some branch prediction throughout.
4957         * nscd/nscd_getgr_r.c (nscd_getgr_r): Store result of successful
4958         read from nscd.
4960         * sysdeps/posix/getaddrinfo.c (struct sort_result): Add
4961         service_order.
4962         (rfc3484_sort): Make sure that even if qsort doesn't support
4963         stable sorting out sorting here is stable by comparing service_order.
4964         (getaddrinfo): Initialize service_order.
4965         * posix/tst-rfc3484.c (do_test): Adjust for addition of
4966         service_order field to sorting structure.
4967         * posix/tst-rfc3484-2.c (do_test): Likewise.
4969         * include/time.h: Declare __tzset_parse_tz and __tzset_compute.
4970         * time/tzset.c (tzset_internal): Break TZ string parsing out into
4971         __tzset_parse_tz and updating of daylight, timezone, tzname into
4972         update_vars.
4973         (__tz_compute): Renamed from tz_compute.  Take additional parameters.
4974         (__tz_convert): Updating of tm_isdst, tm_zone, and tm_gmtoff now
4975         happens in __tz_compute.
4976         * time/tzfile.c (__tzfile_read): Also read TZ string.
4977         (find_transition): Fold into __tzfile_compute.
4978         (__tzfile_compute): For times beyond the last transition try to
4979         use the TZ string.
4980         * timezone/tst-timezone.c: Information in daylight and tzname does
4981         change for Asia/Tokyo timezone with more concrete information.
4982         Remove the test.
4984         * include/stdio.h: Add libc_hidden_proto for ftello.
4985         * libio/ftello.c: Add libc_hidden_def.
4987         [BZ #1140]
4988         * time/tzfile.c (__tzfile_compute): Compute tzname[] values based
4989         on the specified time and not the last entries in the file.  Move
4990         code to determine tzname[] to...
4991         (find_transition): ...here.  Add ugly guess for times before the
4992         first transition.
4994 2007-10-13  Ulrich Drepper  <drepper@redhat.com>
4996         [BZ #3195]
4997         * nscd/nscd_getai.c (__nscd_getai): Set errno to 0 in case we found
4998         no entry.
4999         * nscd/nscd_getgr.c (nscd_getgr_r): Likewise.
5000         * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
5001         * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
5002         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
5004         * nscd/nscd_getgr_r.c (nscd_getgr_r): Optimize a bit: use simpler
5005         read mechanism when there are no group members and avoid no-op
5006         read syscall in this case.
5008         [BZ #3242]
5009         * nscd/nscd_helper.c (wait_on_socket): Take timeout as parameter.
5010         (__readall): If reading failed due to EAGAIN error wait a bit
5011         and possibly try again.
5012         (__readvall): Likewise.
5014 2007-10-13  Bruno Haible  <bruno@clisp.org>
5016         * intl/dcigettext.c (_nl_find_msg): Unlock the conversions_lock
5017         when we cannot recode the message.
5019 2007-10-13  Ulrich Drepper  <drepper@redhat.com>
5021         [BZ #4359]
5022         * libio/__freading.c (__freading): Don't return true for
5023         write-only streams.  For read/write streams, check whether we
5024         performed a read operation already.
5025         * libio/Makefile (tests): Add tst-ext2.
5026         * libio/tst-ext2.c: New file.
5028 2007-10-12  Ulrich Drepper  <drepper@redhat.com>
5030         * locale/programs/repertoire.c (repertoire_read): Always free
5031         memory for repertoire file name [Coverity CID 270].
5033         * elf/cache.c (save_aux_cache): Free memory allocated for
5034         temporary file name [Coverity CID 267].
5036 2007-10-12  Jakub Jelinek  <jakub@redhat.com>
5038         * misc/Makefile (headers): Add bits/error.h.
5040 2007-10-12  Ulrich Drepper  <drepper@redhat.com>
5042         * posix/fnmatch_loop.c: Take rule index returned as part of
5043         findidx return value into account when accessing weights.
5044         * posix/regcomp.c: Likewise.
5045         * posix/regexec.c: Likewise.
5047         * locale/programs/ld-collate.c (collate_read): Optimize a bit.
5048         (skip_to): Fix problems with parameter of elifdef/elifndef.
5050 2007-10-11  Ulrich Drepper  <drepper@redhat.com>
5052         * iconv/gconv_simple.c: Add some branch prediction.
5054 2007-10-12  Jakub Jelinek  <jakub@redhat.com>
5056         * locale/programs/ld-collate.c (collate_read): If ignore_content
5057         and nowtok is tok_define, eat any tok_eol tokens.
5059 2007-10-11  Jakub Jelinek  <jakub@redhat.com>
5061         * sysdeps/gnu/netinet/tcp.h: Include sys/socket.h if __USE_MISC.
5062         (struct tcp_md5sig): Change tcpm_addr type to struct sockaddr_storage.
5064         * inet/netinet/in.h: Don't include bits/socket.h.
5065         * sysdeps/unix/sysv/linux/bits/socket.h: Only check _SYS_SOCKET_H
5066         macro.
5067         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
5069 2007-10-10  Ulrich Drepper  <drepper@redhat.com>
5071         * locale/programs/locfile-token.h: Remove tok_elif, add tok_elifdef
5072         and tok_elifndef.
5073         * locale/programs/locfile-kw.gperf: Likewise.
5074         * locale/programs/ld-collate.c: Implement primitive preprocessor.
5076 2007-10-10  Jakub Jelinek  <jakub@redhat.com>
5078         * stdio-common/printf-parse.h: Include string.h and wchar.h.
5079         (__find_specwc): Change into __extern_always_inline function.
5080         (__find_specmb): Likewise.  Remove ps argument.  Use __strchrnul.
5081         (__parse_one_specmb): Remove ps argument.
5082         * stdio-common/vfprintf.c (vfprintf): Remove mbstate variable.
5083         Adjust __find_specmb and __parse_one_specmb callers.
5084         * stdio-common/printf-prs.c (parse_printf_format): Likewise.
5085         * stdio-common/printf-parsemb.c (__find_specwc, __find_specmb):
5086         Removed.
5087         (__parse_one_specmb): Remove ps argument, adjust __find_specmb
5088         caller.
5090 2007-10-09  Ulrich Drepper  <drepper@redhat.com>
5092         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Work around problem
5093         with some Pentium Ds.
5095 2007-10-08  Ulrich Drepper  <drepper@redhat.com>
5097         * sysdeps/unix/sysv/linux/eventfd_read.c (eventfd_read): Use
5098         __read not read.
5099         * sysdeps/unix/sysv/linux/eventfd_write.c (eventfd_write): Use
5100         __write not write.
5102 2007-10-07  Ulrich Drepper  <drepper@redhat.com>
5104         [BZ #181]
5105         * locale/C-time.c: Set week_1stday data to 19971201.
5106         * locale/programs/ld-time.c (time_finish): Default for
5107         first_workday is Monday.
5109         [BZ #2633]
5110         * wcsmbs/wchar.h: Move many C99 functions into std namespace.
5112         [BZ #5103]
5113         * posix/glob.c (glob): Recognize patterns starting \/.
5114         * posix/tst-gnuglob.c (find_file): Handle absolute path names.
5115         (main): Add test for pattern starting \/.
5117         * misc/error.h: Use __const instead of const.
5118         * misc/bits/error.h: Likewise.
5120 2007-10-07  Andreas Jaeger  <aj@suse.de>
5122         * include/bits/error.h: New file.
5124         * misc/bits/error.h (error_at_line): Fix prototype.
5126 2007-10-06  Ulrich Drepper  <drepper@redhat.com>
5128         [BZ #3924]
5129         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Fix a few
5130         more little bugs in creating the stack frame when pltexit has to
5131         be called.
5133         * nscd/nscd_helper.c (__nscd_cache_search): Prevent endless loops.
5134         * nscd/connections.c (verify_persistent_db): Recognize circular lists.
5136         [BZ #4407]
5137         * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Fix *signgamp for -0.0.
5138         * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
5139         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
5140         * math/libm-test.inc: Add test for this case.
5142         [BZ #5010]
5143         * sunrpc/svc.c (struct svc_callout): Add sc_mapped element.
5144         (svc_register): Initialize sc_mapped.  Set to TRUE if call to
5145         map service succeeded.
5146         (svc_is_mapped): New function.
5147         (svc_unregister): Use it before trying to unmap service.
5149 2007-10-05  Ulrich Drepper  <drepper@redhat.com>
5151         * timezone/zic.c: Update from tzcode2007h.
5153         [BZ #5063]
5154         * timezone/africa: Update from tzdata2007h.
5155         * timezone/antarctica: Likewise.
5156         * timezone/asia: Likewise.
5157         * timezone/australasia: Likewise.
5158         * timezone/europe: Likewise.
5159         * timezone/leapseconds: Likewise.
5160         * timezone/northamerica: Likewise.
5161         * timezone/southamerica: Likewise.
5162         * timzeone/zone.tab: Likewise.
5164         [BZ #5104]
5165         * elf/do-lookup.h (do_lookup_x): Don't ignore STT_COMMON symbols.
5167         [BZ #5113]
5168         * string/bits/string2.h (__strdup): Cast parameters to calloc to
5169         avoid warning with -Wconversion.
5170         (__strndup): Likewise.
5171         Half the patch by Christian Iseli <christian.iseli@licr.org>.
5173         [BZ #5112]
5174         * nscd/connections.c (restart): Don't resync if database is
5175         disabled.  Patch mostly by Brian De Wolf <bldewolf@csupomona.edu>.
5177         * sysdeps/gnu/netinet/tcp.h: Define TCP_MD5SIG, TCP_MD5SIG_MAXKEYLEN,
5178         struct tcp_md5sig.  Extend struct tcp_info according to recent kernels.
5180         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add eventfd,
5181         evetnfd_read, eventfd_write.
5182         * sysdeps/unix/sysv/linux/eventfd.c: New file.
5183         * sysdeps/unix/sysv/linux/eventfd_read.c: New file.
5184         * sysdeps/unix/sysv/linux/eventfd_write.c: New file.
5185         * sysdeps/unix/sysv/linux/sys/eventfd.h: New file.
5186         * sysdeps/unix/sysv/linux/Versions: Export eventfd, eventfd_read,
5187         eventfd_write for GLIBC_2.7.
5189         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add signalfd.
5190         * sysdeps/unix/sysv/linux/signalfd.c: New file.
5191         * sysdeps/unix/sysv/linux/sys/signalfd.h: New file.
5192         * sysdeps/unix/sysv/linux/Versions: Export signalfd for GLIBC_2.7.
5194 2007-10-04  Jakub Jelinek  <jakub@redhat.com>
5196         * stdlib/msort.c: Include stdint.h.
5197         (struct msort_param): New type.
5198         (msort_with_tmp): Use struct msort_param pointer for unchanging
5199         parameters.  Add optimized handling for several common sizes
5200         and indirect sorting mode.
5201         (qsort): Adjust msort_with_tmp callers.  For big S use indirect
5202         sorting.
5203         Suggested by Belazougui Djamel .
5205         * stdlib/Makefile (tests): Add tst-qsort2.
5206         * stdlib/tst-qsort2.c: New test.
5208 2007-10-04  Ulrich Drepper  <drepper@redhat.com>
5210         * login/login_tty.c (login_tty): The Linux kernel can return EBUSY
5211         for dup2 in case another thread races with the current one.  Retry
5212         in this case.
5214         * misc/error.h: Remove support for use outside of libc.  We have to
5215         include <features.h> now.  Include <bits/error.h> if possible.
5216         * misc/bits/error.h: New file.
5218 2007-10-03  Jakub Jelinek  <jakub@redhat.com>
5220         * string/bits/string3.h (memcpy, memmove, mempcpy, memset, bcopy,
5221         bzero, strcpy, stpcpy, strncpy, strcat, strncat): Use
5222         __extern_always_inline functions unconditionally, drop macros.
5224         * misc/sys/cdefs.h (__REDIRECT_LDBL, __REDIRECT_NTH_LDBL): New macros.
5225         * wcsmbs/bits/wchar2.h (__swprintf_alias, __vswprintf_alias): Use
5226         __REDIRECT_NTH_LDBL macro rather than __REDIRECT_NTH.
5228         * misc/sys/cdefs.h (__extern_always_inline): For GCC 4.3+
5229         add __artificial__ attribute.
5231 2007-10-02  Ulrich Drepper  <drepper@redhat.com>
5233         * string/strcoll_l.c (STRCOLL): Correct handling of switching from
5234         backward to forward direction.
5236         * string/strcoll_l.c (STRCOLL): Correct test for alloca use.
5238         [BZ #645]
5239         * locale/programs/ld-collate.c (collate_finish): Compare against last
5240         used section which is known to have rules defined.
5241         (collate_read): After order_start, correctly record order of sections
5242         and queue sections up.
5244 2007-10-01  Ulrich Drepper  <drepper@redhat.com>
5246         [BZ #5071]
5247         * malloc/malloc.c (mremap_chunk): Avoid resizing of new block has
5248         the same number of pages.
5249         Patch by Tomash Brechko <tomash.brechko@gmail.com>.
5251         * locale/programs/ld-collate.c (collate_read): After initial copy
5252         statement, continue in state 0.
5254         * include/stdio_ext.h (__fsetlocking): Define as macro.
5256 2007-09-30  Ulrich Drepper  <drepper@redhat.com>
5258         * locale/programs/ld-collate.c (collate_finish): Compare all bytes
5259         of section order.
5261         * po/pt_BR.po: Fix typo.
5263 2007-09-29  Ulrich Drepper  <drepper@redhat.com>
5265         * iconvdata/Makefile (modules): Add ISO8859-9E.
5266         (distribute): Add iso8859-9e.c.
5267         (gen-8bit-gap-modules): Add iso8859-9e.
5268         * iconvdata/iso8859-9e.c: New file.
5269         * iconvdata/gconv-modules: Add entries for ISO-8859-9E.
5270         * iconvdata/TESTS: Likewise.
5271         * iconvdata/tst-tables.sh: Likewise.
5273         * iconvdata/koi8-r.c (HAS_HOLES): Define to 0.
5275         * locale/iso-639.def: Add several new entries.
5277 2007-09-24  Jakub Jelinek  <jakub@redhat.com>
5279         * sysdeps/generic/ldsodefs.h (struct dl_scope_free_list): Store
5280         void * pointers instead of struct link_map **.
5281         (_dl_scope_free): Change argument type to void *.
5282         * include/link.h (struct link_map): Change type of l_reldeps
5283         to struct link_map_reldeps, move l_reldepsact into that
5284         struct too.
5285         * elf/dl-deps.c: Include atomic.h.
5286         (_dl_map_object_deps): Only change l->l_initfini when it is
5287         fully populated, use _dl_scope_free for freeing it.  Optimize
5288         removal of libs from reldeps by using l_reserved flag, when
5289         some removal is needed, allocate a new list instead of
5290         reallocating and free the old with _dl_scope_free.  Adjust
5291         for l_reldeps and l_reldepsact changes.
5292         * elf/dl-lookup.c (add_dependency): Likewise.  Reorganize to allow
5293         searching in l_initfini and l_reldeps without holding dl_load_lock.
5294         * elf/dl-fini.c (_dl_sort_fini): Adjust for l_reldeps and
5295         l_reldepsact changes.
5296         * elf/dl-close.c (_dl_close_worker): Likewise.
5297         * elf/dl-open.c (_dl_scope_free): Change argument type to void *.
5299 2007-09-28  Ulrich Drepper  <drepper@redhat.com>
5301         * iconvdata/Makefile (modules): Add KOI8-RU.
5302         (distribute): Add koi8-ru.c.
5303         (gen-8bit-gap-modules): Add koi8-ru.
5304         * iconvdata/koi8-ru.c: New file.
5305         * iconvdata/gconv-modules: Add entries for KOI8-RU.
5306         * iconvdata/TESTS: Likewise.
5307         * iconvdata/tst-tables.sh: Likewise.
5309         * iconvdata/koi8-r.c (HAS_HOLES): Define to 0.
5311 2007-09-26  Jakub Jelinek  <jakub@redhat.com>
5313         * misc/sys/cdefs.h (__warndecl, __errordecl): For GCC 4.3+ define
5314         with __warning__/__error__ attributes.
5315         (__warnattr): Define.
5316         * stdlib/bits/stdlib.h (__realpath_chk_warn, __ptsname_r_chk_warn,
5317         __mbstowcs_chk_warn, __wcstombs_chk_warn): New aliases with
5318         __warnattr.
5319         (realpath, ptsname_r, mbstowcs, wcstombs): Call __*_chk_warn instead
5320         of __*_chk if compile time detectable overflow is found.
5321         * libio/bits/stdio2.h (__fgets_chk_warn, __fread_chk_warn,
5322         __fgets_unlocked_chk_warn, __fread_unlocked_chk_warn): New aliases
5323         with __warnattr.
5324         (fgets, fread, fgets_unlocked, fread_unlocked): Call __*_chk_warn
5325         instead of __*_chk if compile time detectable overflow is found.
5326         (__gets_alias): Rename to...
5327         (__gets_warn): ... this.  Add __warnattr.
5328         (gets): Call __gets_warn instead of __gets_alias.
5329         * socket/bits/socket2.h (__recv_chk_warn, __recvfrom_chk_warn): New
5330         aliases with __warnattr.
5331         (recv, recvfrom): Call __*_chk_warn instead of __*_chk if compile
5332         time detectable overflow is found.
5333         * posix/bits/unistd.h (__read_chk_warn, __pread_chk_warn,
5334         __pread64_chk_warn, __readlink_chk_warn, __readlinkat_chk_warn,
5335         __getcwd_chk_warn, __confstr_chk_warn, __getgroups_chk_warn,
5336         __ttyname_r_chk_warn, __getlogin_r_chk_warn, __gethostname_chk_warn,
5337         __getdomainname_chk_warn): New aliases with __warnattr.
5338         (read, pread, pread64, readlink, readlinkat, getcwd, confstr,
5339         getgroups, ttyname_r, getlogin_r, gethostname, getdomainname): Call
5340         __*_chk_warn instead of __*_chk if compile time detectable overflow
5341         is found.
5342         (__getgroups_chk): Rename argument to __listlen from listlen.
5343         (__getwd_alias): Rename to...
5344         (__getwd_warn): ... this.  Add __warnattr.
5345         (getwd): Call __getwd_warn instead of __getwd_alias.
5346         * wcsmbs/bits/wchar2.h (__wmemcpy_chk_warn, __wmemmove_chk_warn,
5347         __wmempcpy_chk_warn, __wmemset_chk_warn, __wcsncpy_chk_warn,
5348         __wcpncpy_chk_warn, __fgetws_chk_warn, __fgetws_unlocked_chk_warn,
5349         __mbsrtowcs_chk_warn, __wcsrtombs_chk_warn, __mbsnrtowcs_chk_warn,
5350         __wcsnrtombs_chk_warn): New aliases with __warnattr.
5351         (wmemcpy, wmemmove, wmempcpy, wmemset, mbsrtowcs, wcsrtombs,
5352         mbsnrtowcs, wcsnrtombs): Call __*_chk_warn instead of __*_chk if
5353         compile time detectable overflow is found.
5354         (wcsncpy, wcpncpy): Likewise.  For constant __n fix check whether
5355         to use __*_chk or not.
5356         (fgetws, fgetws_unlocked): Divide __bos by sizeof (wchar_t), both
5357         in comparisons which function should be called and in __*_chk*
5358         arguments.  Call __*_chk_warn instead of __*_chk if compile time
5359         detectable overflow is found.
5360         (swprintf, vswprintf): Divide __bos by sizeof (wchar_t) in
5361         __*_chk argument.
5362         * debug/tst-chk1.c (do_test): Add a few more tests.
5364 2007-09-24  Ulrich Drepper  <drepper@redhat.com>
5366         [BZ #5058]
5367         * intl/gettextP.h (struct loaded_domain): Add conversions_lock member.
5368         * intl/loadmsgcat.c (_nl_load_domain): Initialize conversions_lock.
5369         (_nl_unload_domain): Finalize conversions_lock.
5370         * intl/dcigettext.c (_nl_find_msg): Take conversions_lock before
5371         handling table of known conversions.
5373 2007-09-24  Jakub Jelinek  <jakub@redhat.com>
5375         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Use
5376         close_not_cancel_no_status instead of close.
5378 2007-09-13  Aurelien Jarno  <aurelien@aurel32.net>
5380         [BZ #5028]
5381         * posix/regcomp.c (lookup_collation_sequence_value): Check that
5382         nrules != 0 for multibyte chars.
5384 2007-09-23  Ulrich Drepper  <drepper@redhat.com>
5386         * resolv/ns_print.c (ns_sprintrrf): Handle ns_t_a6 and ns_t_opt.
5387         Provide better error message in case the type is unknown.
5389         [BZ #4963]
5390         * wcsmbs/wcsnlen.c: Don't reference before checking the length.
5391         * string/stratcliff.c: Make usable to test wide char functions.
5392         * wcsmbs/wcsatcliff.c: New file.
5393         * wcsmbs/Makefiel (tests): Add wcsatcliff.
5395         [BZ #4972]
5396         * iconvdata/Makefile (modules): Add MAC-CENTRALEUROPE.
5397         (distribute): Add mac-centraleurope.c.
5398         (gen-8bit-gap-modules): Add mac-centraleurope.
5399         * iconvdata/mac-centraleurope.c: New file.
5400         * iconvdata/gconv-modules: Add entries for MAC-CENTRALEUROPE.
5401         * iconvdata/TESTS: Likewise.
5402         * iconvdata/tst-tables.sh: Likewise.
5404         [BZ #5043]
5405         * iconv/iconv_open.c (iconv_open): For large codeset names use malloc.
5407 2007-09-21  Ulrich Drepper  <drepper@redhat.com>
5409         * sysdeps/x86_64/cacheinfo.c (__x86_64_data_cache_size_half): Renamed
5410         from __x86_64_core_cache_size_half.
5411         (init_cacheinfo): Compute shared cache size for AMD processors with
5412         shared L3 correctly.
5413         * sysdeps/x86_64/memcpy.S: Adjust for __x86_64_data_cache_size_half
5414         name change.
5415         Patch in large parts by Evandro Menezes.
5417 2007-09-19  Ulrich Drepper  <drepper@redhat.com>
5419         * elf/dl-lookup.c (add_dependency): Handle failing memory
5420         allocation for dependency list.  Remove unnecessary check.
5422         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Avoid unnecessary
5423         open/close when determining source addresses.
5425         * crypt/Makefile (libcrypt-routines): Add sha256-crypt, sha256,
5426         sha512-crypt, and sha512.
5427         (tests): Add sha256test, sha256c-test, sha512test, and sha512c-test.
5428         (distribute): Add sha256.h and sha512.h.
5429         * crypt/crypt-entry.c (crypt): Recognize the new $5$ and $6$ prefixes
5430         and call the appropriate code.
5431         * crypt/sha256-crypt.c: New file.
5432         * crypt/sha256.c: New file.
5433         * crypt/sha256.h: New file.
5434         * crypt/sha256c-test.c: New file.
5435         * crypt/sha256test.c: New file.
5436         * crypt/sha512-crypt.c: New file.
5437         * crypt/sha512.c: New file.
5438         * crypt/sha512.h: New file.
5439         * crypt/sha512c-test.c: New file.
5440         * crypt/sha512test.c: New file.
5442 2007-09-19  Jakub Jelinek  <jakub@redhat.com>
5444         * misc/bits/syslog.h (syslog): Remove extraneous argument from
5445         the inline, pass __USE_FORTIFY_LEVEL - 1 as second argument to
5446         __syslog_chk.
5448 2007-09-18  Jakub Jelinek  <jakub@redhat.com>
5450         * locale/programs/charmap-dir.c (charmap_aliases): Use %ms instead of
5451         %as in fscanf format strings.
5453         * sysdeps/sparc/sparc32/elf/start.S: Remove cfi_* markup.
5454         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
5455         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__thread_start):
5456         Likewise.
5457         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__thread_start):
5458         Likewise.
5460         * sysdeps/generic/ldsodefs.h (DL_LOOKUP_GSCOPE_LOCK): New definition.
5461         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Or in
5462         DL_LOOKUP_GSCOPE_LOCK into flags after THREAD_GSCOPE_SET_FLAG ().
5463         * elf/dl-sym.c (do_sym): Likewise.
5464         * include/link.h (struct link_map): Add l_serial field.
5465         * elf/dl-object.c (_dl_new_object): Initialize l_serial.
5466         * elf/dl-lookup.c (add_dependency): Add flags argument.
5467         Remember map->l_serial, if DL_LOOKUP_GSCOPE_LOCK is among
5468         flags, use THREAD_GSCOPE_RESET_FLAG before and
5469         THREAD_GSCOPE_SET_FLAG after
5470         __rtld_lock_lock_recursive (GL(dl_load_lock)) to avoid deadlock.
5471         Don't dereference map until it has been found on some list.
5472         If map->l_serial changed, return -1.
5474 2007-09-17  Jakub Jelinek  <jakub@redhat.com>
5476         * include/stdio.h (__isoc99_fscanf, __isoc99_scanf,
5477         __isoc99_sscanf, __isoc99_vscanf): New prototypes.
5478         (__isoc99_vsscanf, __isoc99_vfscanf): New prototypes, add
5479         libc_hidden_proto.
5480         * include/wchar.h (__isoc99_fwscanf, __isoc99_wscanf,
5481         __isoc99_swscanf, __isoc99_vwscanf): New prototypes.
5482         (__isoc99_vswscanf, __isoc99_vfwscanf): New prototypes,
5483         add libc_hidden_proto.
5484         * libio/stdio.h (fscanf, scanf, sscanf, vfscanf, vscanf,
5485         vsscanf): Redirect to __isoc99_* if strict ISO C99 or POSIX
5486         conformance requested.
5487         * wcsmbs/wchar.h (fwscanf, wscanf, swscanf, vfwscanf, vwscanf,
5488         vswscanf): Redirect to __isoc99_* if strict ISO C99 or POSIX
5489         conformance requested.
5490         * libio/bits/stdio-ldbl.h (fscanf, scanf, sscanf, vfscanf, vscanf,
5491         vsscanf): Redirect to __nldbl___isoc99_* if strict ISO C99 or POSIX
5492         conformance requested.
5493         * wcsmbs/bits/wchar-ldbl.h (fwscanf, wscanf, swscanf, vfwscanf,
5494         vwscanf, vswscanf): Redirect to __nldbl___isoc99_* if strict
5495         ISO C99 or POSIX conformance requested.
5496         * stdio-common/Versions (libc): Export __isoc99_scanf@@GLIBC_2.7,
5497         __isoc99_vscanf@@GLIBC_2.7, __isoc99_fscanf@@GLIBC_2.7,
5498         __isoc99_vfscanf@@GLIBC_2.7, __isoc99_sscanf@@GLIBC_2.7
5499         and __isoc99_vsscanf@@GLIBC_2.7.
5500         * stdio-common/Makefile (routines): Add isoc99_scanf, isoc99_vscanf,
5501         isoc99_fscanf, isoc99_vfscanf, isoc99_sscanf and isoc99_vsscanf.
5502         (tests): Add scanf14.
5503         (CFLAGS-vfprintf.c, CFLAGS-fprintf.c, CFLAGS-printf.c,
5504         CFLAGS-vfwprintf.c, CFLAGS-vfscanf.c, CFLAGS-vfwscanf.c,
5505         CFLAGS-fscanf.c, CFLAGS-scanf.c, CFLAGS-isoc99_vfscanf.c,
5506         CFLAGS-isoc99_vscanf.c, CFLAGS-isoc99_fscanf.c,
5507         CFLAGS-isoc99_scanf.c): Add $(exceptions).
5508         (CFLAGS-scanf15.c): Add various -I paths to prevent the compiler
5509         from using internal headers.
5510         * wcsmbs/Versions (libc): Export __isoc99_wscanf@@GLIBC_2.7,
5511         __isoc99_vwscanf@@GLIBC_2.7, __isoc99_fwscanf@@GLIBC_2.7,
5512         __isoc99_vfwscanf@@GLIBC_2.7, __isoc99_swscanf@@GLIBC_2.7
5513         and __isoc99_vswscanf@@GLIBC_2.7.
5514         * wcsmbs/Makefile (routines): Add isoc99_wscanf, isoc99_vwscanf,
5515         isoc99_fwscanf, isoc99_vfwscanf, isoc99_swscanf and isoc99_vswscanf.
5516         (CFLAGS-isoc99_wscanf.c, CFLAGS-isoc99_fwscanf.c,
5517         CFLAGS-isoc99_vwscanf.c, CFLAGS-isoc99_vfwscanf.c): Add $(exceptions).
5518         (CPPFLAGS): Add -D_IO_MTSAFE_IO if needed.
5519         * stdio-common/isoc99_scanf.c: New file.
5520         * stdio-common/isoc99_vsscanf.c: New file.
5521         * stdio-common/isoc99_vscanf.c: New file.
5522         * stdio-common/isoc99_vfscanf.c: New file.
5523         * stdio-common/isoc99_fscanf.c: New file.
5524         * stdio-common/isoc99_sscanf.c: New file.
5525         * wcsmbs/isoc99_fwscanf.c: New file.
5526         * wcsmbs/isoc99_vswscanf.c: New file.
5527         * wcsmbs/isoc99_swscanf.c: New file.
5528         * wcsmbs/isoc99_wscanf.c: New file.
5529         * wcsmbs/isoc99_vwscanf.c: New file.
5530         * wcsmbs/isoc99_vfwscanf.c: New file.
5531         * libio/libio.h (_IO_FLAGS2_SCANF_STD): Define.
5532         * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): Also
5533         clear _IO_FLAGS2_SCANF_STD bit from _flags2.
5534         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Don't
5535         handle %as, %aS and %a[ if _IO_FLAGS2_SCANF_STD is set in _flags2.
5536         * stdio-common/scanf14.c: New test.
5537         * stdio-common/scanf15.c: New test.
5538         * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add
5539         isoc99_scanf, isoc99_fscanf, isoc99_sscanf,
5540         isoc99_vscanf, isoc99_vfscanf, isoc99_vsscanf,
5541         isoc99_wscanf, isoc99_fwscanf, isoc99_swscanf,
5542         isoc99_vwscanf, isoc99_vfwscanf and isoc99_vswscanf.
5543         * sysdeps/ieee754/ldbl-opt/Versions (libc): Export
5544         __nldbl___isoc99_scanf@@GLIBC_2.7,
5545         __nldbl___isoc99_fscanf@@GLIBC_2.7,
5546         __nldbl___isoc99_sscanf@@GLIBC_2.7,
5547         __nldbl___isoc99_vscanf@@GLIBC_2.7,
5548         __nldbl___isoc99_vfscanf@@GLIBC_2.7,
5549         __nldbl___isoc99_vsscanf@@GLIBC_2.7,
5550         __nldbl___isoc99_wscanf@@GLIBC_2.7,
5551         __nldbl___isoc99_fwscanf@@GLIBC_2.7,
5552         __nldbl___isoc99_swscanf@@GLIBC_2.7,
5553         __nldbl___isoc99_vwscanf@@GLIBC_2.7,
5554         __nldbl___isoc99_vfwscanf@@GLIBC_2.7
5555         and __nldbl___isoc99_vswscanf@@GLIBC_2.7.
5556         * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__isoc99_scanf,
5557         __isoc99_fscanf, __isoc99_sscanf, __isoc99_vscanf,
5558         __isoc99_vfscanf, __isoc99_vsscanf, __isoc99_wscanf,
5559         __isoc99_fwscanf, __isoc99_swscanf, __isoc99_vwscanf,
5560         __isoc99_vfwscanf, __isoc99_vswscanf): Add NLDBL_DECL.
5561         * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
5562         (__nldbl___isoc99_scanf, __nldbl___isoc99_fscanf,
5563         __nldbl___isoc99_sscanf, __nldbl___isoc99_vscanf,
5564         __nldbl___isoc99_vfscanf, __nldbl___isoc99_vsscanf,
5565         __nldbl___isoc99_wscanf, __nldbl___isoc99_fwscanf,
5566         __nldbl___isoc99_swscanf, __nldbl___isoc99_vwscanf,
5567         __nldbl___isoc99_vfwscanf, __nldbl___isoc99_vswscanf): New
5568         functions.
5569         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vfscanf.c: New file.
5570         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_swscanf.c: New file.
5571         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vwscanf.c: New file.
5572         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_wscanf.c: New file.
5573         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_scanf.c: New file.
5574         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_sscanf.c: New file.
5575         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vsscanf.c: New file.
5576         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_fwscanf.c: New file.
5577         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vfwscanf.c: New file.
5578         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vswscanf.c: New file.
5579         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vscanf.c: New file.
5580         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_fscanf.c: New file.
5582         * stdio-common/Makefile (tests): Add scanf13.
5583         (scanf13-ENV): New.
5584         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Handle
5585         m modifier followed by l.
5586         (STRING_ARG): Add width argument.
5587         (_IO_vfscanf_internal) <case L_('c')>: Handle %mc.
5588         <case L_('C')>: Handle %mlc and %mC.
5589         <case L_('s'), case L_('S'), case L_('[')>: Adjust STRING_ARG
5590         arguments.
5591         * stdio-common/scanf13.c: New test.
5593         * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): Clear
5594         the _IO_FLAGS2_FORTIFY bit from _flags2 rather than _flags.
5596 2007-09-18  Ulrich Drepper  <drepper@redhat.com>
5598         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Correct return value
5599         type and __THROW marker of splice, vmsplice, and tee.
5600         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
5601         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
5602         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
5603         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
5604         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
5605         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
5606         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
5607         * sysdeps/unix/sysv/linux/syscalls.list: Mark splice, vmsplice, and tee
5608         as cancellation points.
5610 2003-11-01  Daniel Jacobowitz  <dan@debian.org>
5612         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion): Don't
5613         parse more than three parts of the version number.
5615 2007-09-15  Ulrich Drepper  <drepper@redhat.com>
5617         * stdio-common/vfscanf.c (_IO_vfwscanf): Add support for 'm'
5618         modifier.  Patch by Jakub Jelinek.
5620 2007-08-26  Jakub Jelinek  <jakub@redhat.com>
5622         * sysdeps/unix/sysv/linux/i386/Makefile (sysdep_routines): Add
5623         call_fallocate in misc subdir.
5624         * sysdeps/unix/sysv/linux/i386/call_fallocate.S: New file.
5625         * sysdeps/unix/sysv/linux/i386/syscalls.list (fallocate64): Remove.
5626         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c: Use __call_fallocate
5627         instead of __fallocate64.
5628         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c: Likewise.
5630 2007-09-15  Jakub Jelinek  <jakub@redhat.com>
5632         * rt/Versions (librt): Export __mq_open_2@@GLIBC_2.7.
5633         * rt/Makefile (headers): Add bits/mqueue2.h.
5634         * rt/mqueue.h: Include bits/mqueue2.h if -D_FORTIFY_SOURCE=2,
5635         optimizing with GCC and __va_arg_pack_len is defined.
5636         * rt/bits/mqueue2.h: New file.
5637         * rt/mq_open.c (__mq_open): Renamed from mq_open.
5638         (mq_open): New strong_alias.
5639         (__mq_open_2): New function.
5640         * sysdeps/unix/sysv/linux/mq_open.c (__mq_open): Renamed from mq_open.
5641         (mq_open): New strong_alias.
5642         (__mq_open_2): New function.
5643         * debug/Versions (libc): Export __fortify_fail@@GLIBC_PRIVATE.
5644         * Versions.def (librt): Add GLIBC_2.7 version.
5645         * debug/fortify_fail.c (__fortify_fail): Add libc_hidden_def.
5646         * include/stdio.h (__fortify_fail): Add libc_hidden_proto.
5648         * misc/sys/cdefs.h (__errordecl, __va_arg_pack_len): Define.
5649         * io/fcntl.h: Include bits/fcntl2.h when __va_arg_pack_len
5650         is defined rather than when not C++.
5651         * io/bits/fcntl2.h (__open_alias, __open64_alias, __openat_alias,
5652         __openat64_alias): New redirects.
5653         (__open_too_many_args, __open_missing_mode, __open64_too_many_args,
5654         __open64_missing_mode, __openat_too_many_args, __openat_missing_mode,
5655         __openat64_too_many_args, __openat64_missing_mode): New __errordecls.
5656         (open, open64, openat, openat64): Rewrite as __extern_always_inline
5657         functions instead of function-like macros.
5659 2007-09-14  H.J. Lu  <hongjiu.lu@intel.com>
5661         * sysdeps/i386/i586/memcpy.S (__memcpy_chk): New definition.
5662         * sysdeps/i386/i586/mempcpy.S (__memcpy_chk): New definition.
5663         * sysdeps/i386/i586/memset.S (__memset_chk): New definition.
5665 2007-09-15  Mike Frysinger  <vapier@gentoo.org>
5667         * inet/inet_net.c: Reset digit to 0 for inputs starting with "0x".
5668         * inet/tst-network.c (tests): Add edge case tests for "0", "0x", "0x0".
5670 2007-09-14  Mike Frysinger  <vapier@gentoo.org>
5672         * inet/tst-network.c: Increment ERRORS for failing tests.
5674 2007-09-07  Jakub Jelinek  <jakub@redhat.com>
5676         * misc/sys/cdefs.h (__va_arg_pack): Define for GCC 4.3+.
5677         * misc/bits/syslog.h (syslog): When __va_arg_pack is defined,
5678         implement as __extern_always_inline function.
5679         (vsyslog): Define as __extern_always_inline function unconditionally.
5680         * libio/bits/stdio2.h (sprintf, snprintf, printf, fprintf):
5681         When __va_arg_pack is defined, implement as __extern_always_inline
5682         functions.
5683         (vsprintf, vsnprintf, vprintf, vfprintf): Define as
5684         __extern_always_inline functions unconditionally.
5685         * libio/bits/stdio.h (vprintf): Ifdef out the inline when
5686         bits/stdio2.h will be included.
5687         * wcsmbs/bits/wchar2.h (__swprintf_alias): New redirect.
5688         (swprintf, wprintf, fwprintf): When __va_arg_pack is defined,
5689         implement as __extern_always_inline functions.
5690         (vswprintf, vwprintf, vfwprintf): Define as
5691         __extern_always_inline functions unconditionally.
5692         * debug/tst-chk1.c (do_test): Enable remaining tests for C++.
5694 2007-09-03  Jakub Jelinek  <jakub@redhat.com>
5696         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline): Only
5697         define in C++ for GCC 4.3+, in C++ always use __gnu_inline__
5698         attribute.
5699         * include/features.h (__USE_EXTERN_INLINES): Define only when
5700         __extern_inline is defined.
5701         * stdlib/stdlib.h: Include bits/stdlib.h when __extern_always_inline
5702         is defined instead of when not __cplusplus.
5703         * misc/sys/syslog.h: Include bits/syslog.h when __extern_always_inline
5704         is defined instead of when not __cplusplus.
5705         * socket/sys/socket.h: Include bits/socket2.h when
5706         __extern_always_inline is defined instead of when not __cplusplus.
5707         * libio/stdio.h: Include bits/stdio2.h when __extern_always_inline
5708         is defined instead of when not __cplusplus.
5709         * posix/unistd.h: Include bits/unistd.h when __extern_always_inline
5710         is defined instead of when not __cplusplus.
5711         * string/string.h: Include bits/string3.h when __extern_always_inline
5712         is defined instead of when not __cplusplus.
5713         * wcsmbs/wchar.h: Include bits/wchar2.h when __extern_always_inline
5714         is defined instead of when not __cplusplus.
5715         (btowc, wctob): Don't guard the inlines with ifndef __cplusplus.
5716         * io/fcntl.h: Don't include bits/fcntl2.h if __extern_always_inline
5717         is not defined.
5718         * misc/bits/syslog-ldbl.h: Guard *_chk stuff with
5719         defined __extern_always_inline instead of !defined __cplusplus.
5720         * libio/bits/stdio-ldbl.h: Likewise.
5721         * wcsmbs/bits/wchar-ldbl.h: Likewise.
5722         * misc/bits/syslog.h (syslog): Don't define for C++.
5723         (vsyslog): Use __extern_always_inline function for C++ instead of
5724         a macro.
5725         * libio/bits/stdio.h (__STDIO_INLINE): Define to __extern_inline
5726         whenever that macro is defined.
5727         (vprintf): Don't provide the inline for C++.
5728         (fread_unlocked, fwrite_unlocked): Don't define the macros for C++.
5729         * libio/bits/stdio2.h (sprintf, snprintf, printf, fprintf): Don't
5730         define the macros for C++.
5731         (vsprintf, vsnprintf, vprintf, vfprintf): Define as
5732         __extern_always_inline functions for C++.
5733         * io/sys/stat.h (stat, lstat, fstat, fstatat, mknod, mknodat,
5734         stat64, lstat64, fstat64, fstatat64): Don't define if not
5735         __USE_EXTERN_INLINES.
5736         * wcsmbs/bits/wchar2.h: Fix #error message.
5737         (swprintf, wprintf, fwprintf): Don't define the macros for C++.
5738         (vswprintf, vwprintf, vfwprintf): Define using
5739         __extern_always_inline functions for C++.
5740         * string/bits/string3.h: Don't #undef macros if __cplusplus.
5741         (memcpy, memmove, mempcpy, memset, bcopy, bzero, strcpy, stpcpy,
5742         strncpy, strcat, strncat): Define as __extern_always_inline
5743         functions instead of macros for C++.
5744         * math/bits/cmathcalls.h: Guard __extern_inline routines with
5745         defined __extern_inline.
5746         * sysdeps/alpha/fpu/bits/mathinline.h (__MATH_INLINE): Define
5747         to __extern_inline whenever that macro is defined.
5748         * sysdeps/ia64/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5749         * sysdeps/i386/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5750         * sysdeps/i386/i486/bits/string.h (__STRING_INLINE): Likewise.
5751         * sysdeps/s390/bits/string.h (__STRING_INLINE): Likewise.
5752         * sysdeps/s390/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5753         * sysdeps/powerpc/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5754         * sysdeps/x86_64/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5755         * sysdeps/sparc/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5756         * sysdeps/unix/sysv/linux/sys/sysmacros.h (gnu_dev_major,
5757         gnu_dev_minor, gnu_dev_makedev): Remove __extern_inline from
5758         prototypes.  Only provide __extern_inline routines if
5759         __USE_EXTERN_INLINES.
5760         * debug/Makefile: Add rules to build and run tst-{,lfs}chk{4,5,6}
5761         tests.
5762         * debug/tst-chk1.c (do_prepare, do_test): Allow compilation as C++.
5763         For now avoid some *printf tests in C++.  Skip all testing
5764         if __USE_FORTIFY_LEVEL is defined, but __extern_always_inline macro
5765         is not.
5766         * debug/tst-chk4.cc: New file.
5767         * debug/tst-chk5.cc: New file.
5768         * debug/tst-chk6.cc: New file.
5769         * debug/tst-lfschk4.cc: New file.
5770         * debug/tst-lfschk5.cc: New file.
5771         * debug/tst-lfschk6.cc: New file.
5772         * include/wchar.h (__vfwprintf_chk, __vswprintf_chk): Avoid
5773         prototypes in C++.
5774         * include/stdio.h (__sprintf_chk, __snprintf_chk, __vsprintf_chk,
5775         __vsnprintf_chk, __printf_chk, __fprintf_chk, __vprintf_chk,
5776         __vfprintf_chk, __fgets_unlocked_chk, __fgets_chk): Likewise.
5778 2007-09-13  Ulrich Drepper  <drepper@redhat.com>
5780         * po/cs.po: Update from translation team.
5782 2007-09-11  Roland McGrath  <roland@redhat.com>
5784         * posix/Makefile ($(objpfx)getconf.speclist): Make it empty if cross
5785         compiling.
5787 2007-09-07  Samuel Thibault  <samuel.thibault@ens-lyon.org>
5789         * sysdeps/mach/hurd/bits/ioctls.h (TAB3): New macro.
5791 2007-09-05  Roland McGrath  <roland@redhat.com>
5793         * manual/signal.texi (Signaling Another Process): Typo fix.
5794         From Karl Berry <karl@freefriends.org>.
5796 2007-08-29  Ulrich Drepper  <drepper@redhat.com>
5798         * sysdeps/unix/sysv/linux/check_pf.c (IFA_F_OPTIMISTIC): Define to
5799         zero if not defined.
5800         (make_request): Recognize optimistic addresses and treat them like
5801         deprecated addresses.
5802         Reported by Neil Horman <nhorman@redhat.com>.
5804 2007-08-28  Ulrich Drepper  <drepper@redhat.com>
5806         * nscd/connections.c (send_ro_fd): Also transfer file size.
5807         * nscd/nscd_helper.c (get_mapping): If nscd also transfers the
5808         file size don't call fstat.
5810         * nscd/nscd_helper.c (get_mapping): Avoid the pread call, just go
5811         ahead and map the file.  This should always be correct and we can
5812         catch problems later.
5814 2007-08-28  Jakub Jelinek  <jakub@redhat.com>
5816         * libio/bits/stdio2.h (__fread_chk, __fread_unlocked_chk): New
5817         prototypes.
5818         (__fread_alias, __fread_unlocked_alias): New aliases.
5819         (fread): New extern inline.
5820         (fread_unlocked): Likewise.  Undef macro before definition of
5821         the inline function.
5822         * debug/Makefile (routines): Add fread_chk and fread_u_chk.
5823         (CFLAGS-fread_chk.c, CFLAGS-fread_u_chk.c): Add.
5824         * debug/Versions (libc): Export __fread_chk@@GLIBC_2.7
5825         and __fread_unlocked_chk@@GLIBC_2.7.
5826         * debug/fread_chk.c: New file.
5827         * debug/fread_u_chk.c: New file.
5828         * debug/tst-chk1.c (do_test): Add fread and fread_unlocked tests.
5830 2007-08-27  Jakub Jelinek  <jakub@redhat.com>
5832         * sysdeps/unix/sysv/linux/syscalls.list
5833         (personality): Change caller to EXTRA.
5835 2007-08-25  Ulrich Drepper  <drepper@redhat.com>
5837         * iconvdata/iso-2022-kr.c (BODY): Fake initialization of array buf
5838         to keep gcc quiet.
5839         * iconvdata/iso-2022-cn.c (BODY): Likewise.
5841         * locale/programs/ld-collate.c (collate_output): Avoid warning if
5842         NDEBUG is defined.
5844         * Makerules: Use -p option with mkdir.
5846         * sunrpc/key_prot.c (xdr_unixcred): Work around gcc alias warning.
5847         * nis/nis_xdr.c (_xdr_nis_server): Likewise.
5848         (_xdr_directory_obj): Likewise.
5849         (xdr_entry_obj): Likewise.
5850         (xdr_group_obj): Likewise.
5851         (xdr_link_obj): Likewise.
5852         (xdr_table_obj): Likewise.
5853         (_xdr_nis_result): Likewise.
5854         (_xdr_ns_request): Likewise.
5855         (_xdr_ib_request): Likewise.
5856         (_xdr_nis_taglist): Likewise.
5857         (xdr_cback_data): Likewise.
5858         * nis/yp_xdr.c (xdr_ypmaplist): Likewise.
5859         (xdr_ypresp_maplist): Likewise.
5861         * stdio-common/Makefile: Avoid format string warning for tst-sprint.
5863         * posix/regex_internal.h: Prevent some declarations and definitions
5864         to be seen when used in tests.
5866         * posix/tst-rfc3484.c (__idna_to_unicode_lzlz): Initialize *OUTPUT.
5867         * posix/tst-rfc3484-2.c (__idna_to_unicode_lzlz): Likewise.
5869         * debug/Makefile: Disable format checking when compiling tst-chk?.c.
5871         * config.make.in (datarootdir): Add to shut up configure.
5873         * sysdeps/x86_64/cacheinfo.c (handle_amd): Fix computation of
5874         associativity for fully-associative caches.
5876         * sysdeps/x86_64/cacheinfo.c (handle_amd): Handle L3 cache
5877         requests.  Fill on more associativity values for L2.
5878         Patch mostly by Evandro Menezes.
5880 2007-08-24  Ulrich Drepper  <drepper@redhat.com>
5882         * sysdeps/unix/sysv/linux/x86_64/init-first.c
5883         (_libc_vdso_platform_setup): Avoid using exported variable by using
5884         alias.
5886         * resolv/arpa/nameser.h (NS_OPT_DNSSEC_OK): Define.
5888         * sysdeps/unix/sysv/linux/i386/syscalls.list: No reason to mark
5889         fallocate64 as EXTRA.  It is not referenced if the symbol isn't
5890         defined.
5892 2007-08-23  Ulrich Drepper  <drepper@redhat.com>
5894         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Correctly
5895         align stack for call if pltexit is to be used.
5897         [BZ #3924]
5898         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Correctly
5899         align for function call in case pltexit has to be called later.
5901         * sysdeps/i386/dl-trampoline.S (_dl_runtime_resolve): Avoid
5902         implicit atomic operation when storing function pointer.
5903         (_dl_runtime_profile): Likewise.
5905 2007-08-17  Jakub Jelinek  <jakub@redhat.com>
5907         * nis/nis_table.c (nis_list): Don't fail if __follow_path returned
5908         NIS_NOTFOUND.
5910 2007-08-21  Ulrich Drepper  <drepper@redhat.com>
5912         [BZ #4566]
5913         * string/strtok.c: Fix typo in comment.
5915         [BZ #4582]
5916         * debug/segfault.c: Fix typos in comments.
5918         [BZ #4588]
5919         * stdio-common/tempnam.c: Fix comment, it is not checked that
5920         TMPDIR points to a writable directory.
5922         [BZ #4726]
5923         * resolv/res_send.c (__libc_res_nsend): Initialize all of the
5924         memory allocated for the name server address.
5926         [BZ #4946]
5927         * nscd/connections.c (handle_request): Using sendfile always
5928         requires that mmap is used for the database.
5929         Patch by Petr Baudis <pasky@suse.cz>.
5931         [BZ #4905]
5932         * nscd/hstcache.c (cache_addhst): When reloading an entry which
5933         suddenly has two or more addresses, ignore it and remove the old
5934         entry.
5936         [BZ #4814]
5937         * resolv/res_hconf.c: Prepare for compiling outside libc.
5938         * nscd/res_hconf.c: New file.
5939         * nscd/Makefile (nscd-modules): Add res_hconf.  Add rules to build
5940         the new file.
5941         * nscd/gethstbynm2_r.c (NEED__RES_HCONF): Define.
5942         * nscd/gethstbyad_r.c (NEED__RES_HCONF): Likewise.
5944         * nscd/hstcache.c (cache_addhst): Minimal optimization.
5946         [BZ #4925]
5947         * debug/pcprofiledump.c: Turn on internationalization by calling
5948         setlocale.  Patch mostly by Benno Schulenberg.
5950         [BZ #4936]
5951         * iconv/gconv.c (__gconv): If flush was successful, clear rest of
5952         the state.
5953         * iconvdata/Makefile: Add rules to build and run bug-iconv5.
5954         * iconvdata/bug-iconv5.c: New file.
5956 2007-08-04  Carlos O'Donell  <carlos@systemhalted.org>
5958         [BZ #4896]
5959         * elf/elf.h: Define R_PARISC_PLABEL21L, R_PARISC_PLABEL14R,
5960         R_PARISC_GNU_VTENTRY, R_PARISC_GNU_VTINHERIT, R_PARISC_TLS_GD21L,
5961         R_PARISC_TLS_GD14R, R_PARISC_TLS_GDCALL, R_PARISC_TLS_LDM21L,
5962         R_PARISC_TLS_LDM14R, R_PARISC_TLS_LDMCALL, R_PARISC_TLS_LDO21L,
5963         R_PARISC_TLS_LDO14R, R_PARISC_TLS_DTPMOD32, R_PARISC_TLS_DTPMOD64,
5964         R_PARISC_TLS_DTPOFF32, R_PARISC_TLS_DTPOFF64, R_PARISC_TLS_LE21L,
5965         R_PARISC_TLS_LE14R, R_PARISC_TLS_IE21L, R_PARISC_TLS_IE14R,
5966         R_PARISC_TLS_TPREL32, R_PARISC_TLS_TPREL64.
5968 2007-08-21  Ulrich Drepper  <drepper@redhat.com>
5970         [BZ #4937]
5971         * elf/do-lookup.h (do_lookup_x): Minimal improvement in hash
5972         lookup loop.  Suggested by John Reiser.
5974 2007-08-21  Jakub Jelinek  <jakub@redhat.com>
5976         * sysdeps/unix/sysv/linux/alpha/sysdep.h: Include tls.h.
5978 2007-08-20  Ulrich Drepper  <drepper@redhat.com>
5980         * csu/libc-start.c: Don't handle VDSO_SETUP here.
5981         * sysdeps/unix/sysv/linux/init-first.c: Handle it here instead.
5982         * sysdeps/unix/sysv/linux/x86_64/libc-start.c: Renamed to...
5983         * sysdeps/unix/sysv/linux/x86_64/init-first.c: ...this.  New file.
5984         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Move VDSO_SETUP code
5985         to...
5986         * sysdeps/unix/sysv/linux/x86_64/init-first.c: ...here.  New file.
5988 2007-08-18  Ulrich Drepper  <drepper@redhat.com>
5990         * po/nl.po: Update from translation team.
5992 2007-08-16  Andreas Jaeger  <aj@suse.de>
5994         * locale/localeinfo.h: Make _nl_category_name_idxs extern.
5995         Reported by Peter Festner <peter.festner@ewetel.net>.
5997 2007-08-17  Jakub Jelinek  <jakub@redhat.com>
5999         * login/tst-grantpt.c (test_einval): Add 3rd argument to open.
6001 2007-08-16  Jakub Jelinek  <jakub@redhat.com>
6003         * elf/Makefile ($(objpfx)ld.so): Use readelf -s and awk instead of nm -u
6004         to check for undefined symbols.
6006         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone):
6007         If the syscall fails, set errno to the actual returned error number
6008         rather than EINVAL.
6009         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__clone): If
6010         arguments are incorrect, set errno to EINVAL, if the syscall
6011         fails, set errno to the actual returned error number.
6013         * stdlib/bits/stdlib-ldbl.h (__strtold_internal): Remove.
6014         * wcsmbs/bits/wchar-ldbl.h (__wcstold_internal): Remove.
6016         * sysdeps/sparc/sparc32/sparcv9b/memcpy.S: Moved to...
6017         * sysdeps/sparc/sparc32/sparcv9/sparcv9b/memcpy.S: ... here.  New
6018         file.
6019         (ASI_PNF, ASI_BLK_P): Don't define.
6020         * sysdeps/sparc/sparc32/sparcv9v/memcpy.S: Moved to...
6021         * sysdeps/sparc/sparc32/sparcv9/sparcv9v/memcpy.S: ... here.  New
6022         file.
6023         * sysdeps/sparc/sparc32/sparcv9v/memset.S: Moved to...
6024         * sysdeps/sparc/sparc32/sparcv9/sparcv9v/memset.S: ... here.  New
6025         file.
6027 2007-08-15  Jakub Jelinek  <jakub@redhat.com>
6029         * sysdeps/sparc/fpu/fraiseexcpt.c (__feraiseexcept): Fix raising
6030         FE_UNDERFLOW on Niagara CPUs.
6032         * sysdeps/sparc/fpu/feholdexcpt.c (feholdexcept): Clear all
6033         exceptions.
6035 2007-08-14  Jakub Jelinek  <jakub@redhat.com>
6037         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_runtime_setup): No
6038         need to check GLRO(dl_hwcap) & HWCAP_SPARC_FLUSH on sparcv9.
6039         (sparc_fixup_plt): Add do_flush argument instead of figuring whether
6040         flush should be used or not inside of the function.
6041         (elf_machine_fixup_plt, elf_machine_rela): Adjust caller.
6043         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone,
6044         __thread_start): Use HIDDEN_JUMPTARGET.
6045         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__clone,
6046         __thread_start): Likewise.
6047         * sysdeps/unix/sysv/linux/sparc/sysdep.h (JUMPTARGET): Define.
6049         * sysdeps/ieee754/ldbl-64-128/strtold_l.c (__STRTOF): Declare.
6050         Add libc_hidden_proto.
6051         (STRTOF): Add libc_hidden_proto.
6052         (___new_strtold_l, ___new_wcstold_l): New weak aliases.
6053         (strtold_l, wcstold_l): Use them as second argument for
6054         long_double_symbol.
6056 2007-08-14  Ulrich Drepper  <drepper@redhat.com>
6058         * elf/dl-misc.c: Undo last change.  The kernel won't allow it.
6060 2007-08-13  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
6062         * stdlib/strtold_l.c: Include wchar.h if needed.  Add libc_hidden_def.
6064 2007-08-14  Ulrich Drepper  <drepper@redhat.com>
6066         * po/bg.po: New file.  From the translation team.
6068 2007-08-13  Jakub Jelinek  <jakub@redhat.com>
6070         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PSELECT,
6071         __ASSUME_PPOLL, __ASSUME_ATFCTS, __ASSUME_SET_ROBUST_LIST,
6072         __ASSUME_UTIMENSAT, __ASSUME_FALLOCATE): Update per-arch conditions
6073         when each feature was introduced.
6075         * sysdeps/unix/sysv/linux/dl-vdso.c: Don't include dl-hash.h.
6076         * sysdeps/unix/sysv/linux/dl-vdso.h: Don't include dl-hash.h if NDEBUG.
6077         (CHECK_HASH): New macro.
6078         (PREPARE_VERSION): Use it.
6080         * sysdeps/unix/sysv/linux/pselect.c (__generic_pselect): Only provide
6081         prototype if not __ASSUME_PSELECT.
6082         * sysdeps/unix/sysv/linux/ppoll.c (__generic_ppoll): Only provide
6083         prototype if not __ASSUME_PPOLL.
6085         * sysdeps/unix/sysv/linux/dl-osinfo.h (ROUND): #undef after use.
6087         * sysdeps/unix/clock_settime.c (freq, __pthread_clock_settime,
6088         hp_timing_settime): Don't define or declare if HANDLED_CPUTIME
6089         is defined.
6091 2007-08-13  Ulrich Drepper  <drepper@redhat.com>
6093         * sysdeps/unix/sysv/linux/x86_64/libc-start.c
6094         (_libc_vdso_platform_setup): If vDSO is not available point
6095         __vdso_gettimeofday to the vsyscall.
6096         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S [SHARED]: Use
6097         __vdso_gettimeofday instead of vsyscall.
6099 2007-08-13  Jakub Jelinek  <jakub@redhat.com>
6101         * nscd/servicescache.c: Include kernel-features.h.
6102         * nscd/gai.c: Likewise.
6103         * sysdeps/unix/sysv/linux/statfs64.c: Likewise.
6104         * sysdeps/unix/sysv/linux/fstatfs64.c: Likewise.
6105         * sysdeps/unix/sysv/linux/fxstatat.c: Likewise.
6106         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S: Likewise.
6107         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: Likewise.
6108         * sysdeps/unix/sysv/linux/xstatconv.c: Likewise.
6109         * sysdeps/unix/sysv/linux/if_index.c: Likewise.
6110         * sysdeps/unix/sysv/linux/sparc/sparc64/xstat.c: Likewise.
6111         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
6113 2007-08-12  Ulrich Drepper  <drepper@redhat.com>
6115         * elf/dl-dst.h: No need for _dl_dst_count, _dl_dst_substitute,
6116         and _dl_get_origin defines anymore.
6118         * sysdeps/unix/sysv/linux/clock_gettime.c (maybe_syscall_gettime_cpu):
6119         Build fix for systems which might lack POSIX timer support.
6121         * sysdeps/unix/sysv/linux/x86_64/libc-start.c
6122         (_libc_vdso_platform_setup): Mangle function pointers before storing
6123         them.
6124         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INLINE_VSYSCALL):
6125         Demangle vdso pointer before use.
6126         (INTERNAL_VSYSCALL): Likewise.
6128         * elf/cache.c (primes): Mark as const.
6129         Noted by Roland McGrath.
6131 2007-08-01  Andreas Jaeger  <aj@suse.de>
6132             Jakub Jelinek  <jakub@redhat.com>
6134         * elf/ldconfig.c (opt_ignore_aux_cache): Add new option.
6135         (options): Add option.
6136         (parse_opt): Handle option.
6137         (manual_link): Adjust process_file caller.  Call implicit_soname.
6138         (search_dir): Formatting.  Use and populate auxiliary cache.
6139         (main): Load and save auxiliary cache.
6140         * elf/readlib.c (process_file): Add stat_buf argument.  Pass struct
6141         stat64 from fstat64 to caller.
6142         (implicit_soname): New function.
6143         * elf/readelflib.c (process_elf_file): If DT_SONAME is not present,
6144         leave *soname as NULL.
6145         * elf/cache.c: Include libgen.h.
6146         (print_entry, print_cache, compare, save_cache, add_to_cache):
6147         Formatting and cleanups.
6148         (aux_cache_entry_id, aux_cache_entry, aux_cache_file_entry,
6149         aux_cache_file): New structures.
6150         (AUX_CACHEMAGIC): Define.
6151         (primes): New array.
6152         (aux_hash_size, aux_hash): New variables.
6153         (aux_cache_entry_id_hash, nextprime, init_aux_cache,
6154         search_aux_cache, insert_to_aux_cache, add_to_aux_cache,
6155         load_aux_cache, save_aux_cache): New functions.
6156         * sysdeps/generic/ldconfig.h (_PATH_LDCONFIG_AUX_CACHE): Define.
6157         (init_aux_cache, search_aux_cache, add_to_aux_cache,
6158         load_aux_cache, save_aux_cache, implicit_soname): New prototypes.
6159         (process_file): Adjust prototype.
6161 2007-08-12  Jakub Jelinek  <jakub@redhat.com>
6163         * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h: Include stddef.h
6164         with __need_size_t.
6166 2007-08-12  Ulrich Drepper  <drepper@redhat.com>
6168         * sysdeps/unix/sysv/linux/dl-vdso.c (_dl_vdso_vsym): Expect
6169         r_found_version structure as second parameter.
6170         * sysdeps/unix/sysv/linux/dl-vdso.h (PREPARE_VERSION): Define.
6171         (_dl_vdso_vsym): Change type of second parameter accordingly.
6172         * sysdeps/unix/sysv/linux/x86-64/libc-start.c
6173         (_libc_vdso_platform_setup): Adjust.
6174         * sysdeps/unix/sysv/linux/powerpc/libc-start.c
6175         (_libc_vdso_platform_setup): Likewise.
6177         * sysdeps/unix/sysv/linux/powerpc/dl-vdso.c: Move to...
6178         * sysdeps/unix/sysv/linux/dl-vdso.c: ...here.
6179         * sysdeps/unix/sysv/linux/powerpc/dl-vdso.h: Move to...
6180         * sysdeps/unix/sysv/linux/dl-vdso.h: ...here.
6181         * csu/libc-start.c: Pretty printing.
6182         Use VDSO_SETUP if defined.
6183         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Define VDSO_SETUP
6184         and let generic code call into _libc_vdso_platform_setup.
6185         * sysdeps/unix/sysv/linux/x86_64/libc-start.c: New file.
6186         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: New file.
6187         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Pretty printing.
6188         Define INLINE_VSYSCALL and INTERNAL_VSYSCALL.
6189         * sysdeps/unix/sysv/linux/x86_64/Versions: Export __vdso_clock_gettime
6190         for GLIBC_PRIVATE.
6191         * sysdeps/unix/sysv/linux/x86_64/Makefile [subdir=elf]
6192         (sysdep_rountines): Add dl-vdso.
6194         * sysdeps/unix/sysv/linux/powerpc/Makefile: Use sysdep_routines instead
6195         of routines.
6197         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Add
6198         attribute_hidden to __vdso_gettimeofday prototype.
6200 2007-08-12  Roland McGrath  <roland@redhat.com>
6202         * manual/stdio.texi (Variable Arguments Output): Fix xref to gcc manual.
6203         From: Karl Berry <karl@freefriends.org>.
6205 2007-08-11  Ulrich Drepper  <drepper@redhat.com>
6207         * elf/dl-misc.c (_dl_sysdep_read_whole_file): We really don't need
6208         an atime update for the files we read.
6210 2007-08-10  Ulrich Drepper  <drepper@redhat.com>
6212         * shadow/lckpwdf.c (__lckpwdf): Use O_CLOEXEC if possible.
6214         * nscd/connections.c: Use O_CLOEXEC if possible.  Use mkostemp
6215         instead of mkstemp.
6217         * misc/Makefile (routines): Add mkostemp and mkostemp64.
6218         * misc/Versions: Export mkostemp and mkostemp64 for GLIBC_2.7.
6219         * misc/mkostemp.c: New file.
6220         * misc/mkostemp64.c: New file.
6221         * stdlib/stdlib.h: Declare the new functions.
6222         * sysdeps/posix/tempname.c: Add new parameter which is added to
6223         the flags for open.  Remove __GT_BIGFILE handling.
6224         * stdio-common/tempname.c: Likewise.
6225         * include/stdio.h: Adjust __gen_tempname prototype.
6226         Renumber __GT_* constants.
6227         * libio/oldtmpfile.c: Adjust for __gen_tempname interface change.
6228         * misc/mkdtemp.c: Likewise.
6229         * misc/mkstemp.c: Likewise.
6230         * misc/mkstemp64.c: Likewise.
6231         * misc/mktemp.c: Likewise.
6232         * stdio-common/tempnam.c: Likewise.
6233         * stdio-common/tmpfile.c: Likewise.
6234         * stdio-common/tmpfile64.c: Likewise.
6235         * stdio-common/tmpnam.c: Likewise.
6236         * stdio-common/tmpnam_r.c: Likewise.
6238 2007-08-10  Roland McGrath  <roland@frob.com>
6240         * sysdeps/mach/hurd/bits/ioctls.h (NLDLY, TABDLY, BSDLY, VTDLY):
6241         New macros.
6242         (NLDELAY, CRDELAY, TBDELAY, BSDELAY, VTDELAY): Define to those.
6243         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
6245 2007-08-10  Ulrich Drepper  <drepper@redhat.com>
6247         * nss/nss_files/files-XXX.c (internal_setent): Use O_CLOEXEC if
6248         possible.
6249         * nss/nss_files/files-alias.c (internal_setent): Likewise.
6250         * nss/Makefile (libnss_files-routines): Add files-have_o_cloexec.
6251         * nss/nss_files/files-have_o_cloexec.c: New file.
6253         * sysdeps/unix/sysv/linux/shm_open.c (shm_open): Use O_CLOEXEC if
6254         available.
6256 2007-08-10  Jakub Jelinek  <jakub@redhat.com>
6258         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c (___new_strtold_l,
6259         ___new_wcstold_l): New weak aliases.
6260         (strtold_l, wcstold_l): Use them as second argument for
6261         long_double_symbol.
6263 2007-08-09  Ulrich Drepper  <drepper@redhat.com>
6265         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Use correct
6266         register in test for error.
6268         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_CLOEXEC): Define.
6269         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_CLOEXEC): Likewise.
6271         * po/sv.po: Update from translation team.
6273 2007-08-06  Roland McGrath  <roland@redhat.com>
6275         * include/stdlib.h: Add libc_hidden_proto for strto*, __strto*_l.
6276         Remove __strto*_l inlines.
6277         * include/wchar.h: Add libc_hidden_proto for wcsto*, __wcsto*_l.
6278         * stdlib/strtod.c: Add libc_hidden_def.
6279         * stdlib/strtod_l.c: Likewise.
6280         * stdlib/strtold.c [__LONG_DOUBLE_MATH_OPTIONAL]: Add libc_hidden_proto
6281         for __new_strtold and __new_wcstold.
6282         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Add libc_hidden_proto for
6283         __STRTOF, STRTOF.
6284         * stdlib/strtol.c: Add libc_hidden_def.
6285         * stdlib/strtol_l.c: Likewise.
6286         * sysdeps/wordsize-64/strtol.c: Add libc_hidden_ver for strtoll and
6287         strtoq.
6289         * scripts/data/localplt-powerpc-linux-gnu.data: New file.
6291         * scripts/data/localplt-x86_64-linux-gnu.data: File renamed to ...
6292         * scripts/data/localplt-generic.data: ... here.
6293         * elf/Makefile (check-data): Get generic file if no other.
6294         ($(objpfx)check-localplt.out): Make target unconditional.
6296         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion):
6297         Use ElfW(Nhdr).
6299 2007-08-05  Ulrich Drepper  <drepper@redhat.com>
6301         * po/zh_CN.po: Updated translation from translation team.
6303 2007-08-05  Jakub Jelinek  <jakub@redhat.com>
6305         * sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S (__socket):
6306         Don't use CGOTSETUP and CGOTRESTORE macros.
6308 2007-08-04  Roland McGrath  <roland@redhat.com>
6310         * posix/Makefile ($(objpfx)getconf.speclist): Fix typo.
6312 2007-08-04  Jakub Jelinek  <jakub@redhat.com>
6314         * io/bits/fcntl2.h (open, open64, openat, openat64): Add
6315         __extension__ around the whole statement expression.
6317 2007-08-04  Ulrich Drepper  <drepper@redhat.com>
6319         * sysdeps/unix/opendir.c (__alloc_dir): Correct order of DIR
6320         elements during initialization.
6322         * po/pl.po: Updated translation from translation team.
6323         * po/tr.po: Likewise.
6324         * po/nl.po: Likewise.
6326 2007-08-03  Ulrich Drepper  <drepper@redhat.com>
6328         * rt/aio.h: Add __nonnull attributes.
6330 2007-08-03  Jakub Jelinek  <jakub@redhat.com>
6332         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Properly handle -0.
6333         * stdlib/Makefile (tests): Add tst-strtod5.
6334         (tst-strtod5-ENV): New.
6335         * stdlib/tst-strtod5.c: New file.
6337         * intl/dcigettext.c (_nl_find_msg): Free encoding if __gconv_open
6338         failed.
6339         * intl/finddomain.c (_nl_find_domain): Free normalized_codeset
6340         on failure.
6342         * elf/dl-load.c (decompose_rpath): Free copy if result couldn't be
6343         allocated.
6345 2007-08-03  Jakub Jelinek  <jakub@redhat.com>
6347         * rt/mqueue.h (mq_timedreceive, mq_timedsend): Fix nonnull argument
6348         numbers.
6350 2007-08-02  Ulrich Drepper  <drepper@redhat.com>
6352         * io/Makefile (aux): Add have_o_cloexec.
6353         * include/fcntl.h: Declare __have_o_cloexec.
6354         * io/have_o_cloexec.c: New file.
6355         * sysdeps/unix/opendir.c (__opendir): Use O_CLOEXEC is available.
6356         (__alloc_dir): If O_CLOEXEC has been used, don't duplicate the
6357         fcntl call if not necessary.
6358         * login/utmp_file.c (setutent_file): Use __have_o_cloexec instead
6359         of local variable.
6361         * sysdeps/unix/opendir.c (__alloc_dir): Don't initialize ->data.
6362         Avoid memset, add explicit initialization.
6363         * sysdeps/unix/dirstream.h (struct __dirstream): Move data elemtn
6364         to the end and change into zero-sized array.
6365         Move lock member to fill a hole on 64-bit platforms.
6367         * stdlib/stdlib.h: Remove __strto*_internal prototypes and strto*
6368         inline functions.
6369         * include/stdlib.h: Add __strto*_internal prototypes here.
6370         * wcsmbs/wchar.h: Remove __wcsto*_internal prototypes and wcsto*
6371         inline functions.
6372         * include/wchar.h: Add __wcsto*_internal prototypes.
6373         * sysdeps/generic/inttypes.h: No need to protect the declaration
6374         of the __strto*_internal and __wcsto*_internal members here.
6376         * rt/mqueue.h: Change const to __const and add nonnull attributes.
6378 2007-08-02  Roland McGrath  <roland@redhat.com>
6380         * posix/Makefile ($(inst_libexecdir)/getconf): Make hard links to
6381         $(inst_bindir)/getconf if possible.
6383         * posix/Makefile ($(objpfx)getconf.speclist): New target.
6384         (generated): Add it.
6385         ($(inst_libexecdir)/getconf): Use it.
6387 2007-08-01  Ulrich Drepper  <drepper@redhat.com>
6389         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Using
6390         /proc is faster and sufficient.  /sys is still needed for
6391         __get_nprocs_conf.
6393 2007-08-01  Jakub Jelinek  <jakub@redhat.com>
6395         * sysdeps/unix/sysv/linux/i386/syscalls.list (fallocate): Add fallocate
6396         syscall as __fallocate64.
6397         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c: New file.
6398         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c: New file.
6400 2007-07-30  Jakub Jelinek  <jakub@redhat.com>
6402         * stdlib/tst-strtod2.c (do_test): Use %tu in fmt string for ptrdiff_t
6403         value.
6405         * stdio-common/tst-fmemopen2.c (do_test): Avoid fmt string warning
6406         if off_t is different rank from size_t.
6408         * sysdeps/generic/unwind-dw2.c (extract_cie_info, execute_cfa_program,
6409         uw_frame_state_for): Avoid type punning warnings.
6410         * sysdeps/generic/unwind-dw2-fde-glibc.c
6411         (_Unwind_IteratePhdrCallback): Likewise.
6412         * sysdeps/generic/unwind-dw2-fde.c (_Unwind_Find_FDE): Likewise.
6413         (binary_search_single_encoding_fdes, binary_search_mixed_encoding_fdes,
6414         get_cie_encoding, linear_search_fdes): Don't mix char and unsigned char
6415         pointers.
6417 2007-07-31  Ulrich Drepper  <drepper@redhat.com>
6419         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs_conf): Count
6420         total processors using sysfs.
6421         (__get_nprocs): Use sysfs to determine which processors are online.
6423 2007-07-31  Jakub Jelinek  <jakub@redhat.com>
6425         * sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate): Fix
6426         syscall arguments count.
6428         * stdio-common/tfformat.c (sprint_doubles): Add 12 new tests.
6430 2007-07-30  Roland McGrath  <roland@redhat.com>
6432         * manual/libc.texinfo: Update copyrights, formatting magic, and
6433         @dircategory.  From Karl Berry <karl@freefriends.org>.
6435 2007-07-29  Ulrich Drepper  <drepper@redhat.com>
6437         [BZ #4860]
6438         * io/Makefile (headers): Add bits/fcntl2.h.
6440         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_ZERO_S): Optimize
6441         using gcc builtin.
6442         (__CPU_EQUAL_S): Likewise.
6444         * posix/Makefile (routines): Add sched_cpualloc and sched_cpufree.
6445         (tests): Add tst-cpuset.
6446         * posix/sched_cpualloc.c: New file.
6447         * posix/sched_cpufree.c: New file.
6448         * posix/tst-cpuset.c: New file.
6449         * posix/Versions: Export __sched_cpualloc and __sched_cpufree for
6450         GLIBC_2.7.
6451         * sysdeps/unix/sysv/linux/bits/sched.h: Define __CPU_*_S macros.
6452         * posix/sched.h: Define old CPU_* macros in temers of __CPU_*_S
6453         macros.  Define CPU_*_S macros.
6455 2007-07-28  Ulrich Drepper  <drepper@redhat.com>
6457         * posix/getconf.c (vars): Add missing _SC_LEVEL4_CACHE_LINESIZE
6458         entry.
6460         [BZ #4858]
6461         * stdio-common/printf_fp.c (___printf_fp): Fix special case of
6462         #.0g and value rounded to 1.0.
6463         * stdio-common/tfformat.c (sprint_doubles): Add two new tests.
6465 2007-07-26  Jakub Jelinek  <jakub@redhat.com>
6467         * locale/programs/ld-monetary.c (monetary_finish): Avoid range check
6468         for int_frac_digits and frac_digits.
6470         * login/logout.c (logout): Avoid aliasing violation.
6471         * login/logwtmp.c (logwtmp): Likewise.
6473         * libio/genops.c (_IO_un_link): Avoid aliasing violation.
6475         * nscd/selinux.c (preserve_capabilities): Initialize new_caps
6476         to avoid warning.
6477         * iconv/gconv_open.c (__gconv_open): Initialize ptr to avoid
6478         warning.
6479         * nis/nis_subr.c (nis_getnames): Initialize saveptr to avoid
6480         warning.
6481         * resolv/inet_ntop.c (inet_ntop6): Initialize best.len and cur.len
6482         to avoid warnings.
6484         * nss/nsswitch.c (__nss_lookup_function): Don't cast &ni->known to
6485         void **.
6486         * nss/nsswitch.h (service_user): Use void * type for KNOWN field.
6488         * nss/nss_files/files-hosts.c (LINE_PARSER): Cast host_addr to
6489         char * to avoid warning.
6490         * nis/nss_nis/nis-hosts.c (LINE_PARSER): Likewise.
6492         * timezone/Makefile (CFLAGS-zdump.c): Add -fwrapv.
6494         * locale/programs/ld-ctype.c (ctype_finish, set_class_defaults,
6495         allocate_arrays): Cast second argument to charmap_find_symbol
6496         to char * to avoid warnings.
6498         * locale/programs/repertoire.c (repertoire_new_char): Change
6499         from_nr, to_nr and cnt to unsigned long, adjust printf format
6500         string.
6502         * locale/programs/ld-collate.c (insert_value, handle_ellipsis):
6503         Cast second argument to new_element to char * to avoid warnings.
6505         * locale/weightwc.h (findidx): Cast &extra[-i] to const int32_t *.
6507         * intl/gettextP.h (struct loaded_domain): Change plural to const
6508         struct expression *.
6509         * intl/plural-eval.c (plural_eval): Change first argument to
6510         const struct expression *.
6511         * intl/plural-exp.c (EXTRACT_PLURAL_EXPRESSION): Change first
6512         argument to const struct expression **.
6513         * intl/plural-exp.h (EXTRACT_PLURAL_EXPRESSION, plural_eval): Adjust
6514         prototypes.
6515         * intl/loadmsgcat (_nl_unload_domain): Cast away const
6516         in call to __gettext_free_exp.
6518         * posix/fnmatch.c (fnmatch): Rearrange code to avoid maybe
6519         unitialized wstring/wpattern var warnings.
6521         * posix/runtests.c (struct a_test): Make data field const char *.
6523         * stdio-common/tst-sprintf2.c (main): Don't declere u, v and buf
6524         vars if not LDBL_MANT_DIG >= 106.
6526         * stdio-common/Makefile (CFLAGS-vfwprintf.c): Add -Wno-unitialized.
6528         * stdio-common/vfprintf.c (vfprintf): Cast first arugment to
6529         __find_specmb to avoid warning.
6531         * rt/tst-mqueue1.c (do_one_test): Add casts to avoid warnings.
6533         * debug/test-strcpy_chk.c (do_tests, do_random_tests): Add casts
6534         to avoid warnings.
6536         * sysdeps/ieee754/ldbl-96/s_roundl.c (huge): Add L suffix to
6537         initializer.
6539         * sysdeps/unix/clock_gettime.c (clock_gettime): Only define
6540         tv var when it will be actually used.
6542         * sunrpc/rpc_cmsg.c (xdr_callmsg): Cast IXDR_PUT_* to void
6543         to avoid warnings.
6545         * iconvdata/gbk.c (BODY): Make buf and cp char instead of unsigned
6546         char array resp. pointer.
6547         * iconvdata/iso-2022-kr.c (BODY): Make buf unsigned char instead of
6548         char array.
6549         * iconvdata/cns11643.h (cns11643_to_ucs4): Change first argument
6550         to const unsigned char **.
6551         (ucs4_to_cns11643): Change second argument to unsigned char *.
6552         * iconvdata/euc-tw.c (BODY): Change endp type to
6553         const unsigned char *.
6554         * iconvdata/iso-ir-165.h (ucs4_to_isoir165): Change second argument
6555         to unsigned char *.
6556         * iconvdata/ibm1008_420.c (LOOP_NEED_FLAGS): Don't define.
6557         * iconvdata/iso-2022-cn.c (BODY): Change buf to unsigned char array.
6558         * iconvdata/iso-2022-cn-ext.c (BODY): Change buf, tmpbuf, tmp
6559         types to unsigned char pointers/arrays instead of char.
6560         * iconvdata/jis0201.h (ucs4_to_jisx0201): Change second argument
6561         to unsigned char *.
6562         * iconvdata/jis0208.h (ucs4_to_jisx0208): Likewise.
6563         * iconvdata/jis0212.h: Include assert.h.
6564         (ucs4_to_jisx0212): Change second argument to unsigned char *.
6565         assert that if cp[0] is not '\0', cp[1] is not '\0' either instead
6566         of trying to handle that.
6567         * iconvdata/euc-kr.c (euckr_from_ucs4): Initialize also cp[1] to
6568         shut up a warning.
6569         * iconvdata/euc-jp-ms.c (from_ucs4_lat1, from_ucs4_greek,
6570         from_ucs4_cjk, from_ucs4_cjkcpt, from_ucs4_extra): Change type to
6571         two dimensional const unsigned char arrays.
6572         (BODY): Cast "" to (const unsigned char *) for assignment to cp.
6573         Initialize endp to inptr to shut up a warning.
6575 2007-07-20  Jakub Jelinek  <jakub@redhat.com>
6577         [BZ #4772]
6578         * time/strptime_l.c (__strptime_internal): Silently ignore
6579         strftime modifiers and field width in recursive calls.
6581         * include/time.h (enum ptime_locale_status): Remove.
6582         (__strptime_internal): Remove decided and era_cnt arguments,
6583         add statep argument.
6584         * time/strptime_l.c (__strptime_internal): Remove decided
6585         and era_cnt arguments, add statep argument.  Don't recompute
6586         any fields in recursive calls, only update caller's tm
6587         and state, if recursive call fails, don't change tm nor
6588         any state.
6589         (get_alt_number): Adjust.
6590         (recursive): Adjust caller.
6591         (strptime): Likewise.
6592         * time/strptime.c (strptime): Likewise.
6594 2007-07-19  Jakub Jelinek  <jakub@redhat.com>
6596         * iconv/gconv_int.h (__GCONV_NULCONV): New internal only error code.
6597         * iconv/gconv_cache.c (__gconv_lookup_cache): Return __GCONV_NULCONV
6598         if from and to charsets are the same.
6599         * iconv/gconv_db.c (__gconv_find_transform): Likewise.
6600         * intl/dcigettext.c (_nl_find_msg): Return NULL even if __gconv_open
6601         returns __GCONV_NOCONV, but not for __GCONV_NULCONV.
6603 2007-07-17  Jakub Jelinek  <jakub@redhat.com>
6605         * wcsmbs/wchar.h: Only define wint_t if __need_wint_t.
6606         Don't define wint_t when __need_mbstate_t unless it
6607         is necessary.
6608         (__mbstate_t): Use __WINT_TYPE__ rather than wint_t
6609         in the typedef if possible.
6610         * wctype/wctype.h (wint_t): Define by including
6611         wchar.h with __need_wint_t instead of including stddef.h
6612         with __need_wint_t and as fallback definining it ourselves.
6613         * iconv/gconv.h (__need_wint_t): Define before including
6614         wchar.h.
6615         * sysdeps/gnu/_G_config.h: Don't include gconv.h if not _LIBC
6616         or _GLIBCPP_USE_WCHAR_T.
6617         (__need_wchar_t): Don't define
6618         if not _LIBC or _GLIBCPP_USE_WCHAR_T.
6619         (__need_wint_t): Don't define before including stddef.h,
6620         define before including wchar.h only if _LIBC or
6621         _GLIBCPP_USE_WCHAR_T.
6622         (_G_iconv_t): Don't define if not _LIBC or _GLIBCPP_USE_WCHAR_T.
6623         * sysdeps/mach/hurd/_G_config.h: Likewise.
6624         * sysdeps/generic/_G_config.h: Likewise.
6625         * libio/libio.h (__wunderflow, __wuflow, __woverflow): Only
6626         prototype if _LIBC or _GLIBCPP_USE_WCHAR_T.
6627         (_IO_getwc_unlocked, _IO_putwc_unlocked): Only define
6628         if _LIBC or _GLIBCPP_USE_WCHAR_T.
6630 2007-07-28  Ulrich Drepper  <drepper@redhat.com>
6632         * sysdeps/posix/posix_fallocate64.c: Undefine
6633         __posix_fallocate64_l64 before alias handling.
6634         * sysdeps/unix/sysv/linux/posix_fallocate.c: New file.
6635         * sysdeps/unix/sysv/linux/posix_fallocate64.c: New file.
6636         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c: New file.
6637         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate64.c: New file.
6639         * io/tst-posix_fallocate.c: Include <fcntl.h>.
6641 2007-07-23  Jakub Jelinek  <jakub@redhat.com>
6643         * locale/programs/ld-collate.c (atwc): New variable.
6644         (add_to_tablewc): New toplevel function, moved from collate_output.
6645         (collate_output): Remove add_to_tablewc nested function.
6647         * iconv/iconvconfig.c (hash_table, hash_size): New toplevel vars.
6648         (name_insert): New function.
6649         (write_output): Remove hash_table and hash_size vars and name_insert
6650         nested function.
6652 2007-07-24  Roland McGrath  <roland@redhat.com>
6654         * Makerules (install-others-programs-nosubdir): New target.
6655         (install-no-libc.a-nosubdir): Depend on it.
6657         * iconv/Makefile (install-others-programs): Set this instead of
6658         install-others.
6659         * login/Makefile (install-others-programs): Likewise.
6660         * posix/Makefile (install-others-programs): Likewise.
6662         * Makerules (install-no-libc.a-nosubdir): Clean up conditional
6663         dependencies.
6665 2007-07-23  Ulrich Drepper  <drepper@redhat.com>
6667         * io/Makefile (tests): Add tst-posix_fallocate.
6668         * io/tst-posix_fallocate.c: New file.
6670         * sysdeps/unix/sysv/linux/kernel-features.h: Define
6671         __ASSUME_FALLOCATE.
6673 2007-07-22  Roland McGrath  <roland@frob.com>
6675         * hurd/getdport.c: Add missing copyright year update.
6677         * sysdeps/mach/hurd/bits/fcntl.h [__USE_GNU] (O_CLOEXEC): New macro.
6678         * hurd/port2fd.c (_hurd_port2fd): Implement O_CLOEXEC.
6680 2007-07-22  Ulrich Drepper  <drepper@redhat.com>
6682         * login/utmp_file.c (setutent_file): Use O_CLOEXEC if possible.
6684         * libio/fileops.c (_IO_new_file_fopen): Recognize 'e' flag and set
6685         O_CLOEXEC is needed.
6686         * nis/nss_compat/compat-grp.c: Use 'e' flag when opening file.
6687         Avoid additional fcntl to set O_CLOEXEC if not needed.
6688         * nis/nss_compat/compat-initgroups.c: Likewise.
6689         * nis/nss_compat/compat-pwd.c: Likewise.
6690         * nis/nss_compat/compat-spwd.c: Likewise.
6692 2007-07-21  Samuel Thibault  <samuel.thibault@ens-lyon.org>
6694         [BZ #3665]
6695         * manual/errno.texi: Change ECANCELED value to 119.
6697         [BZ #4610]
6698         * mach/lock-intern.h: Include <sys/cdefs.h>.
6700         [BZ #4178]
6701         * sysdeps/mach/hurd/sigaction.c (__sigaction): Check ACT != NULL before
6702         reading A.
6704         [BZ #4126]
6705         * sysdeps/mach/hurd/sigsuspend.c (sigsuspend_not_cancel): Define alias
6706         to __sigsuspend.
6708         * sysdeps/mach/i386/sysdep.h: Include <dl-sysdep.h> and <tls.h>.
6710 2006-06-13  Thomas Schwinge  <tschwinge@gnu.org>
6712         * sysdeps/mach/hurd/tls.h: Change `ASSEMBLER' conditional to
6713         `__ASSEMBLER__'.
6714         * sysdeps/mach/hurd/i386/tls.h: Likewise.
6716 2007-07-21  Ulrich Drepper  <drepper@redhat.com>
6718         * nscd/nscd_helper.c (get_mapping): Use MSG_CMSG_CLOEXEC for
6719         descriptor received from nscd.
6721         * sysdeps/unix/sysv/linux/bits/socket.h: Define MSG_CMSG_CLOEXEC.
6723         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_CLOEXEC.
6724         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
6725         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
6726         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
6727         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
6728         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
6730 2007-07-20  Jakub Jelinek  <jakub@redhat.com>
6732         [BZ #4816]
6733         * manual/signal.texi (Non-atomic Example): Make memory var volatile.
6735         [BZ #4813]
6736         * login/forkpty.c (forkpty): Close master and slave fds on
6737         fork failure.  Patch by
6738         Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>.
6740 2007-07-18  Jakub Jelinek  <jakub@redhat.com>
6742         * include/features.h (__USE_ISOC95): New define.
6743         * wcsmbs/wchar.h (fwprintf, fwscanf, wprintf, wscanf, swprintf,
6744         swscanf, vfwprintf, vwprintf, vswprintf, fwide): Define even
6745         for -std=iso9899:199409.
6746         * CONFORMANCE: Remove comments about unsupported AMD1.
6748 2007-07-17  Jakub Jelinek  <jakub@redhat.com>
6750         * sysdeps/ia64/sched_cpucount.c: New file.
6751         * sysdeps/powerpc/sched_cpucount.c: New file.
6753         * sysdeps/unix/sysv/linux/bits/sched.h (__sched_cpucount): Add
6754         __BEGIN_DECLS/__END_DECLS around the prototype.
6755         * bits/sched.h (__sched_cpucount): Likewise.  Make second argument
6756         pointer to const cpu_set_t.
6758         * bits/types.h: Don't include stddef.h, don't define __need_size_t.
6759         * signal/signal.h <__USE_BSD || __USE_XOPEN_EXTENDED>: Define
6760         __need_size_t and include stddef.h.
6761         * sysvipc/sys/msg.h: Likewise.
6762         * posix/sched.h: Likewise.
6763         * hurd/hurd/signal.h (__need_size_t): Define.
6765         * CONFORMANCE: ctype.h and wctype.h no longer define size_t,
6766         neither does signal.h in pedantic ISO C namespaces.  stdio.h
6767         no longer defines wint_t or wchar_t.
6769         * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): New function.
6770         * debug/vfwprintf_chk.c (__vfwprintf_chk): Use
6771         _IO_acquire_lock_clear_flags2 instead of _IO_acquire_lock.
6772         * debug/vprintf_chk.c (__vprintf_chk): Likewise.
6773         * debug/vwprintf_chk.c (__vwprintf_chk): Likewise.
6774         * debug/vfprintf_chk.c (__vfprintf_chk): Likewise.
6775         * debug/fwprintf_chk.c (__fwprintf_chk): Likewise.
6776         * debug/printf_chk.c (__printf_chk): Likewise.
6777         * debug/fprintf_chk.c (__fprintf_chk): Likewise.
6778         * debug/wprintf_chk.c (__wprintf_chk): Likewise.
6780         * sysdeps/pthread/bits/stdio-lock.h (_IO_acquire_lock_clear_flags2):
6781         Define.
6783         * bits/confname.h (_CS_POSIX_V6_WIDTH_RESTRICTED_ENVS): Define.
6784         * posix/getconf.c (vars): Add POSIX_V6_WIDTH_RESTRICTED_ENVS.
6786 2007-07-16  Jakub Jelinek  <jakub@redhat.com>
6788         [BZ #4792]
6789         * stdlib/stdlib.h (realloc): Remove __attribute_malloc__.
6790         * malloc/malloc.h (realloc): Likewise.
6792         * libio/iopopen.c (_IO_new_proc_open): Don't close child_std_end
6793         if one of proc_file_chain streams has that fileno.
6794         * stdio-common/Makefile (tests): Add tst-popen2.
6795         * stdio-common/tst-popen2.c: New test.
6797 2007-07-14  Jakub Jelinek  <jakub@redhat.com>
6799         * elf/ldconfig.c: Allow GPLv2 or any later version.
6800         * elf/readlib.c: Likewise.
6801         * elf/chroot_canon.c: Likewise.
6802         * elf/cache.c: Likewise.
6803         * nscd/mem.c: Likewise.
6804         * nscd/getpwuid_r.c: Likewise.
6805         * nscd/grpcache.c: Likewise.
6806         * nscd/aicache.c: Likewise.
6807         * nscd/getsrvbynm_r.c: Likewise.
6808         * nscd/nscd.c: Likewise.
6809         * nscd/servicescache.c: Likewise.
6810         * nscd/getsrvbypt_r.c: Likewise.
6811         * nscd/initgrcache.c: Likewise.
6812         * nscd/gethstbyad_r.c: Likewise.
6813         * nscd/gethstbynm2_r.c: Likewise.
6814         * nscd/getgrnam_r.c: Likewise.
6815         * nscd/nscd_setup_thread.c: Likewise.
6816         * nscd/getpwnam_r.c: Likewise.
6817         * nscd/gai.c: Likewise.
6818         * nscd/connections.c: Likewise.
6819         * nscd/dbg_log.c: Likewise.
6820         * nscd/cache.c: Likewise.
6821         * nscd/hstcache.c: Likewise.
6822         * nscd/nscd_conf.c: Likewise.
6823         * nscd/getgrgid_r.c: Likewise.
6824         * nscd/pwdcache.c: Likewise.
6825         * catgets/gencat.c: Likewise.
6826         * locale/programs/linereader.h: Likewise.
6827         * locale/programs/locarchive.c: Likewise.
6828         * locale/programs/ld-paper.c: Likewise.
6829         * locale/programs/locfile-kw.h: Likewise.
6830         * locale/programs/ld-address.c: Likewise.
6831         * locale/programs/xmalloc.c: Likewise.
6832         * locale/programs/ld-time.c: Likewise.
6833         * locale/programs/localedef.c: Likewise.
6834         * locale/programs/simple-hash.c: Likewise.
6835         * locale/programs/xstrdup.c: Likewise.
6836         * locale/programs/ld-numeric.c: Likewise.
6837         * locale/programs/locfile-kw.gperf: Likewise.
6838         * locale/programs/ld-collate.c: Likewise.
6839         * locale/programs/charmap-kw.gperf: Likewise.
6840         * locale/programs/charmap.h: Likewise.
6841         * locale/programs/charmap-kw.h: Likewise.
6842         * locale/programs/config.h: Likewise.
6843         * locale/programs/locfile.c: Likewise.
6844         * locale/programs/ld-ctype.c: Likewise.
6845         * locale/programs/charmap.c: Likewise.
6846         * locale/programs/ld-messages.c: Likewise.
6847         * locale/programs/repertoire.h: Likewise.
6848         * locale/programs/locale.c: Likewise.
6849         * locale/programs/ld-name.c: Likewise.
6850         * locale/programs/linereader.c: Likewise.
6851         * locale/programs/locfile.h: Likewise.
6852         * locale/programs/3level.h: Likewise.
6853         * locale/programs/ld-monetary.c: Likewise.
6854         * locale/programs/ld-measurement.c: Likewise.
6855         * locale/programs/charmap-dir.c: Likewise.
6856         * locale/programs/ld-identification.c: Likewise.
6857         * locale/programs/localedef.h: Likewise.
6858         * locale/programs/charmap-dir.h: Likewise.
6859         * locale/programs/repertoire.c: Likewise.
6860         * locale/programs/simple-hash.h: Likewise.
6861         * locale/programs/ld-telephone.c: Likewise.
6862         * locale/programs/locale-spec.c: Likewise.
6863         * locale/programs/locfile-token.h: Likewise.
6864         * posix/getconf.c: Likewise.
6865         * iconv/dummy-repertoire.c: Likewise.
6866         * iconv/iconv_charmap.c: Likewise.
6867         * iconv/iconvconfig.c: Likewise.
6868         * iconv/iconv_prog.c: Likewise.
6869         * malloc/memusagestat.c: Likewise.
6870         * sysdeps/unix/sysv/linux/nscd_setup_thread.c: Likewise.
6872 2007-07-06  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
6874         * sysdeps/sh/bsd-setjmp.S (setjmp): Use correct argument registers.
6875         * sysdeps/sh/bsd-_setjmp.S (_setjmp): Likewise.
6876         * sysdeps/unix/sysv/linux/sh/clone.S (__clone): Do correct sanity
6877         check for the first argument.
6879 2007-07-12  Jakub Jelinek  <jakub@redhat.com>
6881         [BZ #4775]
6882         * math/tgmath.h (__tgmath_real_type_sub): Formatting.
6883         (__tgmath_real_type): Fix if expr is const int or other const
6884         qualified integral type.
6885         (__TGMATH_UNARY_REAL_ONLY): Rewritten to avoid using statement
6886         expressions and handle const qualified arguments.
6887         (__TGMATH_BINARY_FIRST_REAL_ONLY, __TGMATH_UNARY_REAL_IMAG,
6888         __TGMATH_UNARY_REAL_IMAG_RET_REAL): Likewise.
6889         (__TGMATH_UNARY_REAL_RET_ONLY): Rewritten to avoid using
6890         statement expressions.
6891         (__TGMATH_BINARY_REAL_ONLY, __TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY,
6892         __TGMATH_TERNARY_REAL_ONLY, __TGMATH_BINARY_REAL_IMAG): Likewise.
6893         (__TGMATH_UNARY_IMAG): Define.
6894         (conj, cproj): Use __TGMATH_UNARY_IMAG macro.
6895         * math/Makefile (tests): Add test-tgmath2.
6896         (CFLAGS-test-tgmath2.c): Add.
6897         * math/test-tgmath.c (fy, dy, ly, fz, dz, lz, count_cdouble,
6898         count_cfloat, count_cldouble): New variables.
6899         (NCCALLS): Define.
6900         (main): Check number of complex calls as well.
6901         (F(compile_test)): Add complex tests and tests with const qualified
6902         arguments.
6903         (y, z, ccount): Define.
6904         (F(cacos), F(casin), F(catan), F(ccos), F(csin), F(ctan), F(cacosh),
6905         F(casinh), F(catanh), F(ccosh), F(csinh), F(ctanh), F(cexp), F(clog),
6906         F(csqrt), F(cpow), F(cabs), F(carg), F(creal), F(cimag), F(conj),
6907         F(cproj)): New functions.
6908         * math/test-tgmath2.c: New test.
6910 2007-07-11  Jakub Jelinek  <jakub@redhat.com>
6912         [BZ #4776]
6913         * elf/dl-load.c (_dl_rtld_di_serinfo): Output / in LD_LIBRARY_PATH,
6914         RPATH etc. as "/" rather than "", don't segfault on empty paths,
6915         instead output ".".
6916         * dlfcn/Makefile (distribute): Add glreflib3.c.
6917         (module-names): Add glreflib3.
6918         ($(objpfx)tst-dlinfo.out): Depend on glreflib3.so rather than
6919         glreflib1.so.
6920         (LDFLAGS_glreflib3.so): New.
6921         * dlfcn/tst-dlinfo.c (do_test): Load glreflib3.so instead of
6922         glreflib1.so.
6923         * dlfcn/glreflib3.c: New file.
6925         * intl/finddomain.c (_nl_find_domain): If _nl_explode_name
6926         returned -1, return NULL.
6927         * intl/explodename.c (_nl_explode_name): Return -1 if
6928         _nl_normalize_codeset failed.
6930 2007-07-07  Steven Munroe  <sjmunroe@us.ibm.com>
6932         * sysdeps/powerpc/powerpc32/power6/memset.S: Update comments.
6933         Specify .machine power6 to get ISA-V2.0 branch hints.  Unroll loops
6934         and avoid branch misspredicts for > 31 bytes memset case.
6935         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
6936         Remove toc ref to __cache_line_size.
6938         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Specify .machine power4
6939         to get ISA-V2.0 branch hints.
6940         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Likewise
6941         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise
6942         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
6943         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
6944         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
6945         * sysdeps/powerpc/powerpc64/power4/memset.S: Likewise.
6946         Remove toc ref to __cache_line_size.
6948         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S:
6949         Include math_ldbl_opt.h.
6951 2007-07-10  Ulrich Drepper  <drepper@redhat.com>
6953         [BZ #4773]
6954         * time/strptime_l.c (__strptime_internal): Implement greedy
6955         matching of weekday and month names.
6957 2007-07-09  Roland McGrath  <roland@redhat.com>
6959         * elf/elf.h (NT_GNU_ABI_TAG): New macro.
6960         (ELF_NOTE_ABI): Use it.
6961         (NT_GNU_HWCAP, NT_GNU_BUILD_ID): New macros.
6963 2007-07-09  Ulrich Drepper  <drepper@redhat.com>
6965         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Add new entries.
6966         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
6968 2007-07-07  Ulrich Drepper  <drepper@redhat.com>
6970         [BZ #4745]
6971         * stdio-common/vfscanf.c (_IO_vfscanf): Add additional test for EOF
6972         in loop to look for conversion specifier to avoid testing of
6973         wrong errno value.
6974         * stdio-common/Makefile (tests): Add bug18, bug18a, bug19, bug19a.
6975         * stdio-common/bug18.c: New file.
6976         * stdio-common/bug18a.c: New file.
6977         * stdio-common/bug19.c: New file.
6978         * stdio-common/bug19a.c: New file.
6980 2007-07-05  Mike Frysinger  <vapier@gentoo.org>
6982         * Makeconfig ($(common-objpfx)gnu/lib-names.stmp): Use LC_ALL=C when
6983         running awk script.
6985 2007-07-01  Jakub Jelinek  <jakub@redhat.com>
6987         * elf/dl-sysdep.c (_dl_important_hwcaps): Add integer overflow check.
6988         * elf/dl-minimal.c (__libc_memalign): Likewise.  Handle malloc (0).
6989         Return NULL if mmap failed instead of asserting it does not.
6990         (calloc): Check for integer overflow.
6992         * elf/dl-minimal.c (__strtoul_internal): Fix parsing of numbers bigger
6993         than LONG_MAX / 10.
6995 2007-07-03  Jakub Jelinek  <jakub@redhat.com>
6997         [BZ #4702]
6998         * nis/nss-default.c: Include errno.h.
6999         (init): Preserve errno.
7001 2007-07-02  Ulrich Drepper  <drepper@redhat.com>
7003         * sysdeps/unix/sysv/linux/bits/socket.h (PF_UNIX): Update comment.
7005 2007-06-30  Ulrich Drepper  <drepper@redhat.com>
7007         * sysdeps/unix/sysv/linux/bits/socket.h: Add PF_RXRPC and AF_RXRPC.
7009 2007-06-29  Martin Schwidefsky  <schwidefsky@de.ibm.com>
7011         * sysdeps/unix/sysv/linux/bits/socket.h: Add PF_IUCV and AF_IUCV.
7013 2007-06-29  Martin Schwidefsky  <schwidefsky@de.ibm.com>
7015         * sysdeps/s390/dl-procinfo.c: New file.
7016         * sysdeps/s390/dl-procinfo.h: New file.
7017         * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: New file.
7019 2007-06-29  Jakub Jelinek  <jakub@redhat.com>
7021         * elf/dl-load.c (open_verify): Find .note.ABI-tag notes even
7022         in PT_NOTE segments with multiple notes.
7023         * elf/readelflib.c (process_elf_file): Likewise.
7025 2007-06-22  Ulrich Drepper  <drepper@redhat.com>
7027         * nis/nis_domain_of.c (__nis_domain_of): Make the code a bit more
7028         ISO C compliant.
7030 2007-06-19  Ulrich Drepper  <drepper@redhat.com>
7032         * elf/dl-close.c (free_mem): Free _dl_scope_free_list.
7034 2007-06-13  Jakub Jelinek  <jakub@redhat.com>
7036         * include/link.h: Don't include rtld-lowlevel.h.
7037         (struct link_map): Remove l_scope_lock.
7038         * sysdeps/generic/ldsodefs.h: Don't include rtld-lowlevel.h.
7039         (_dl_scope_free_list): New field (variable) in _rtld_global.
7040         (DL_LOOKUP_SCOPE_LOCK): Remove.
7041         (_dl_scope_free): New prototype.
7042         * elf/dl-runtime.c (_dl_fixup): Don't use __rtld_mrlock_*lock.
7043         Don't pass DL_LOOKUP_SCOPE_LOCK to _dl_lookup_symbol_x.
7044         (_dl_profile_fixup): Likewise.
7045         * elf/dl-sym.c (do_sym): Likewise.  Use wrapped _dl_lookup_symbol_x
7046         whenever !RTLD_SINGLE_THREAD_P, use THREAD_GSCOPE_SET_FLAG and
7047         THREAD_GSCOPE_RESET_FLAG around it.
7048         * elf/dl-close.c (_dl_close_worker): Don't use
7049         __rtld_mrlock_{change,done}.  Call _dl_scope_free on the old
7050         scope.  Make sure THREAD_GSCOPE_WAIT () happens if any old
7051         scopes were queued or if l_scope_mem has been abandoned.
7052         * elf/dl-open.c (_dl_scope_free): New function.
7053         (dl_open_worker): Use it.  Don't use __rtld_mrlock_{change,done}.
7054         * elf/dl-support.c (_dl_scope_free_list): New variable.
7055         * elf/dl-lookup.c (add_dependency): Remove flags argument.
7056         Remove DL_LOOKUP_SCOPE_LOCK handling.
7057         (_dl_lookup_symbol_x): Adjust caller.  Remove DL_LOOKUP_SCOPE_LOCK
7058         handling.
7059         * elf/dl-object.c (_dl_new_object): Don't use
7060         __rtld_mrlock_initialize.
7062 2007-06-19  Ulrich Drepper  <drepper@redhat.com>
7064         * sysdeps/generic/ldsodefs.h (rtld_global): Reorder some elements
7065         to fill in holes
7066         (rtld_global_ro): Likewise.
7068 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
7070         * elf/dl-addr.c (_dl_addr): Skip PT_LOAD checking if l_contiguous.
7071         Move PT_LOAD checking to...
7072         (_dl_addr_inside_object): ... here, new function.
7073         * elf/dl-sym.c (do_sym): If not l_contiguous,
7074         call _dl_addr_inside_object.
7075         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Likewise.
7076         * dlfcn/dlinfo.c (dlinfo_doit): Likewise.
7077         * elf/dl-open.c (dl_open_worker): Likewise.
7078         (_dl_addr_inside_object): New function if IS_IN_rtld.
7079         * elf/dl-load.c (_dl_map_object_from_fd): Set l_contiguous if no
7080         holes are present or are PROT_NONE protected.
7081         * include/link.h (struct link_map): Add l_contiguous field.
7082         * sysdeps/generic/ldsodefs.h (_dl_addr_inside_object): New prototype.
7084 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
7085             Tomas Janousek  <tjanouse@redhat.com>
7086             Ulrich Drepper  <drepper@redhat.com>
7088         [BZ #4647]
7089         * resolv/res_send.c (send_dg): Remove socket_pf.  Use ipv6_unavail
7090         member in __res_state, only convaddr4to6 if nssocks[ns] is a PF_INET6
7091         socket.
7092         * resolv/resolv.h (__res_state): Add ipv6_unavail member.  Make
7093         unused member a bitmap.
7094         * resolv/res_init.c (__res_vinit): Reset ipv6_unavail if IPv6
7095         servers are configured.
7097 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
7099         * elf/rtld.c (dl_main): Don't call init_tls more than once.
7101 2007-06-17  Andreas Schwab  <schwab@suse.de>
7103         * sysdeps/generic/initfini.c: Tell gcc about the nonstandard sections.
7105 2007-06-16  Andreas Jaeger  <aj@suse.de>
7107         [BZ #4125]
7108         * sysdeps/unix/sysv/linux/sys/ptrace.h
7109         (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK,
7110         PTRACE_O_TRACEVFORK, PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC,
7111         PTRACE_O_TRACEVFORKDONE, PTRACE_O_TRACEEXIT, PTRACE_O_MASK,
7112         PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK, PTRACE_EVENT_CLONE,
7113         PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE, PTRACE_EVENT_EXIT):
7114         Define.
7115         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
7116         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
7117         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
7118         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
7120 2007-06-16  Ulrich Drepper  <drepper@redhat.com>
7122         [BZ #4599]
7123         * sysdeps/unix/sysv/linux/check_pf.c (make_request): When
7124         determining whether there are IPv4/IPv6 addresses, ignore loopback
7125         addresses.
7127 2007-06-14 Uros Bizjak <ubizjak@gmail.com>
7129         * soft-fp/soft-fp.h (CMPtype): Define to "int" if undefined.
7130         * soft-fp/eqdf2.c (__eqdf2): Use CMPtype instead of int
7131         as the return type.  Change type of "r" variable to CMPtype.
7132         * soft-fp/eqsf2.c (__eqsf2): Likewise.
7133         * soft-fp/eqtf2.c (__eqtf2): Likewise.
7134         * soft-fp/gedf2.c (__gedf2): Likewise.
7135         * soft-fp/gesf2.c (__gesf2): Likewise.
7136         * soft-fp/getf2.c (__getf2): Likewise.
7137         * soft-fp/ledf2.c (__ledf2): Likewise.
7138         * soft-fp/lesf2.c (__lesf2): Likewise.
7139         * soft-fp/letf2.c (__letf2): Likewise.
7140         * soft-fp/unorddf2 (__unorddf2): Likewise.
7141         * soft-fp/unordsf2 (__unordsf2): Likewise.
7142         * soft-fp/unordtf2 (__unordtf2): Likewise.
7144 2007-06-09  Ulrich Drepper  <drepper@redhat.com>
7146         * elf/do-lookup.h (do_lookup_x): Read r_nlist before r_list and
7147         make sure gcc doesn't mess around with this.
7149 2007-06-08  Ulrich Drepper  <drepper@redhat.com>
7151         * elf/dl-lookup.c (_dl_lookup_symbol_x): Remove use of r_nlist.
7153 2007-06-08  Jakub Jelinek  <jakub@redhat.com>
7155         * elf/dl-close.c (_dl_close_worker): Remove all to be removed
7156         libraries from the global scope at once and call THREAD_GSCOPE_WAIT
7157         at most once per _dl_close_worker.
7159 2007-06-08  Ulrich Drepper  <drepper@redhat.com>
7161         * sysdeps/unix/sysv/linux/bits/sched.h: Make second parameter of
7162         __sched_cpucount as const.
7163         * posix/sched_cpucount.c: Adjust.
7165         * posix/sched_cpucount.c (__sched_cpucount): Allow using special
7166         instruction for counting bits.
7167         * sysdeps/x86_64/sched_cpucount.c: New file.
7169 2007-06-07  Ulrich Drepper  <drepper@redhat.com>
7171         * configure.in: Avoid variable named BASH.
7172         * config.make.in: Likewise.
7173         Patch in part by Mike Frysinger.
7175 2007-06-06  Jakub Jelinek  <jakub@redhat.com>
7177         [BZ #4586]
7178         * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Treat
7179         pseudo-zeros as zero.
7180         * sysdeps/x86_64/ldbl2mpn.c: New file.
7181         * sysdeps/ia64/ldbl2mpn.c: New file.
7183 2007-06-04  Jakub Jelinek  <jakub@redhat.com>
7185         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (nextafterl): Remove
7186         unused ily variable.  Fix nextafterl on +-__LDBL_MAX__ and +-Inf.
7187         Remove unreachable code at the end.
7189 2007-06-01  Steven Munroe  <sjmunroe@us.ibm.com>
7191         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Correct description of
7192         ldbl-128ibm in comment.
7193         (fpclassifyl): Correct classification of denormals.
7194         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (nextafterl): Correct
7195         return value for MIN denormal. Rewrite using long double math too
7196         correctly handle denormals and canonicalize the results.
7198 2007-06-05  Jakub Jelinek  <jakub@redhat.com>
7200         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c
7201         (__mpn_construct_long_double): Fix conversion where result ought
7202         to be smaller than __LDBL_MIN__, or the low double should be
7203         denormal.  Fix decision where to negate low double - honor round
7204         to even rules.
7205         * stdio-common/tst-sprintf2.c: Include string.h.
7206         (COMPARE_LDBL): Define.
7207         (TEST): Also test whether a string hexadecimal float representation
7208         can be parsed back to the number.
7209         (main): Add a couple of further tests.
7211 2007-06-04  Jakub Jelinek  <jakub@redhat.com>
7213         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c
7214         (PRINT_FPHEX_LONG_DOUBLE): Fix printing numbers where lower double
7215         is non-zero, but smaller than 2 * __DBL_MIN__.
7216         * stdio-common/tst-sprintf2.c: New test.
7217         * stdio-common/Makefile (tests): Add tst-sprintf2.
7219         * math/test-misc.c (main): Don't run last batch of tests with
7220         IBM long double format.
7222 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
7224         * sysdeps/powerpc/powerpc32/970/fpu/Implies: New file.
7225         * sysdeps/powerpc/powerpc32/power5/fpu/Implies: New file.
7226         * sysdeps/powerpc/powerpc32/power5+/fpu/Implies: New file.
7227         * sysdeps/powerpc/powerpc32/power6/fpu/Implies: New file.
7228         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
7229         * sysdeps/powerpc/powerpc64/970/fpu/Implies: New file.
7230         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: New file.
7231         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: New file.
7232         * sysdeps/powerpc/powerpc64/power6/fpu/Implies: New file.
7233         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: New file.
7234         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/fpu/Implies: New file.
7235         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/fpu/Implies:
7236         New file.
7237         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/fpu/Implies:
7238         New file.
7239         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/fpu/Implies:
7240         New file.
7241         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/Implies:
7242         New file.
7243         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/fpu/Implies:
7244         New file.
7245         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/fpu/Implies: New file.
7246         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/fpu/Implies:
7247         New file.
7248         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/fpu/Implies:
7249         New file.
7250         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/fpu/Implies:
7251         New file.
7252         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/Implies:
7253         New file.
7254         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/fpu/Implies:
7255         New file.
7257 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
7259         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S: Move.
7260         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: To here.
7261         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrintf.S: Move.
7262         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: To here.
7263         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llround.S: Move.
7264         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: To here.
7265         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llroundf.S: Move.
7266         * sysdeps/powerpc/powerpc32/power4/fpu/s_llroundf.S: To here.
7268 2007-05-22  Steven Munroe  <sjmunroe@us.ibm.com>
7270         * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S
7271         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
7272         * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S
7273         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
7274         * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S
7275         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
7276         * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S
7277         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
7279 2007-05-21  Steven Munroe  <sjmunroe@us.ibm.com>
7281         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: New file.
7282         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.c: New file.
7283         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: New file.
7284         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: New file.
7286 2007-03-15  Steven Munroe  <sjmunroe@us.ibm.com>
7288         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S
7289         [LONG_DOUBLE_COMPAT]: Add compat_symbol for llrintl@@GLIBC_2_1.
7291 2006-02-13  Steven Munroe  <sjmunroe@us.ibm.com>
7293         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: New File
7294         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: New File
7295         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: New File
7296         * sysdeps/powerpc/powerpc32/power6/fpu/s_llroundf.S: New File
7298 2006-10-20  Steven Munroe  <sjmunroe@us.ibm.com>
7300         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: New file.
7301         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: New file.
7303 2006-10-03  Steven Munroe  <sjmunroe@us.ibm.com>
7305         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llround.S: New file.
7306         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llroundf.S: New file.
7308         * sysdeps/powerpc/powerpc32/powerpc64/fpu/Makefile: Moved.
7309         * sysdeps/powerpc/powerpc32/powerpc64/fpu/mpa.c: Likewise.
7310         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile: To here.
7311         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
7313 2006-09-29  Steven Munroe  <sjmunroe@us.ibm.com>
7315         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S: New file.
7316         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: New file.
7317         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: New file.
7318         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: New file.
7320 2006-09-28  Steven Munroe  <sjmunroe@us.ibm.com>
7322         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: New file.
7323         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llroundf.S: New file.
7324         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: New file.
7325         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
7326         * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: New file.
7327         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: New file.
7329 2006-08-31  Steven Munroe  <sjmunroe@us.ibm.com>
7331         * sysdeps/powerpc/powerpc32/powerpc64/fpu/Makefile: New file.
7332         * sysdeps/powerpc/powerpc32/powerpc64/fpu/mpa.c: New file.
7333         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile: New file.
7334         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: New file.
7336 2006-06-15  Steven Munroe  <sjmunroe@us.ibm.com>
7338         * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S: New file.
7339         * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S: New file.
7340         * sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S: New file.
7341         * sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S: New file.
7342         * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S: New file.
7343         * sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S: New file.
7344         * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S: New file.
7345         * sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S: New file.
7346         * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S: New file.
7347         * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S: New file.
7348         * sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S: New file.
7349         * sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S: New file.
7350         * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S: New file.
7351         * sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S: New file.
7352         * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S: New file.
7353         * sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S: New file.
7355 2006-03-20  Steven Munroe  <sjmunroe@us.ibm.com>
7357         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S: New file.
7358         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrintf.S: New file.
7360 2007-06-01  Steven Munroe  <sjmunroe@us.ibm.com>
7362         * sysdeps/powerpc/powerpc32/power6/memset.S: New file.
7363         * sysdeps/powerpc/powerpc64/power6/memset.S: New file.
7365 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
7367         * sysdeps/powerpc/powerpc32/970/Implies: New file.
7368         * sysdeps/powerpc/powerpc32/power5/Implies: New file.
7369         * sysdeps/powerpc/powerpc32/power5+/Implies: New file.
7370         * sysdeps/powerpc/powerpc32/power6/Implies: New file.
7371         * sysdeps/powerpc/powerpc32/power6x/Implies: New file.
7372         * sysdeps/powerpc/powerpc64/970/Implies: New file.
7373         * sysdeps/powerpc/powerpc64/power5/Implies: New file.
7374         * sysdeps/powerpc/powerpc64/power5+/Implies: New file.
7375         * sysdeps/powerpc/powerpc64/power6/Implies: New file.
7376         * sysdeps/powerpc/powerpc64/power6x/Implies: New file.
7378 2007-05-21  Steven Munroe  <sjmunroe@us.ibm.com>
7380         * sysdeps/powerpc/powerpc32/power4/memset.S: New file
7382 2007-03-13  Steven Munroe  <sjmunroe@us.ibm.com>
7384         * sysdeps/powerpc/powerpc64/memcpy.S: Improve aligned loop to minimize
7385         branch miss-predicts. Ensure that cache line crossing does not impact
7386         dispatch grouping.
7388 2006-12-13  Steven Munroe  <sjmunroe@us.ibm.com>
7390         * sysdeps/powerpc/powerpc64/power4/memcopy.h: Replace with include
7391         "../../powerpc32/power4/memcopy.h".
7392         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: Replace with include
7393         "../../powerpc32/power4/wordcopy.c".
7395 2006-10-03  Steven Munroe  <sjmunroe@us.ibm.com>
7397         * sysdeps/powerpc/powerpc32/powerpc64/Makefile: Moved.
7398         * sysdeps/powerpc/powerpc32/powerpc64/memcopy.h: Likewise.
7399         * sysdeps/powerpc/powerpc32/powerpc64/wordcopy.c: Likewise.
7400         * sysdeps/powerpc/powerpc32/power4/Makefile: To here.
7401         * sysdeps/powerpc/powerpc32/power4/memcopy.h: Likewise.
7402         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Likewise.
7404 2006-09-10  Steven Munroe  <sjmunroe@us.ibm.com>
7406         * sysdeps/powerpc/powerpc32/power6/memcpy.S: New file.
7408 2006-08-31  Steven Munroe  <sjmunroe@us.ibm.com>
7410         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: New file.
7411         * sysdeps/powerpc/powerpc32/powerpc64/Makefile: New file.
7412         * sysdeps/powerpc/powerpc32/powerpc64/memcopy.h: New file.
7413         * sysdeps/powerpc/powerpc32/powerpc64/wordcopy.c: New file.
7414         * sysdeps/powerpc/powerpc64/power4/Makefile: New file.
7415         * sysdeps/powerpc/powerpc64/power4/memcopy.h: New file.
7416         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: New file.
7417         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: New file.
7419 2006-07-06  Steven Munroe  <sjmunroe@us.ibm.com>
7421         * sysdeps/powerpc/powerpc64/power6/memcpy.S: New file.
7423 2006-03-20  Steven Munroe  <sjmunroe@us.ibm.com>
7425         * sysdeps/powerpc/powerpc32/power4/memcmp.S: New file.
7426         * sysdeps/powerpc/powerpc32/power4/memcpy.S: New file.
7427         * sysdeps/powerpc/powerpc32/power4/memset.S: New file.
7428         * sysdeps/powerpc/powerpc32/power4/strncmp.S: New file.
7429         * sysdeps/powerpc/powerpc64/power4/memcmp.S: New file.
7430         * sysdeps/powerpc/powerpc64/power4/memcpy.S: New file.
7431         * sysdeps/powerpc/powerpc64/power4/strncmp.S: New file.
7433 2007-05-29  Roland McGrath  <roland@redhat.com>
7435         * po/Makefile (po-sed-cmd): New variable.
7436         (libc.pot.files): Move sed command text in there, avoid \ inside ''.
7438 2007-05-29  Ulrich Drepper  <drepper@redhat.com>
7440         * crypt/md5-crypt.c: Fix comment.
7442         * nscd/nscd_helper.c (get_mapping): Handle short replies instead
7443         of crashing.  When this is the case or if the reply is malformed,
7444         don't try to close the new file descriptor since it does not
7445         exist.
7446         Patch in part by Guillaume Chazarain <guichaz@yahoo.fr>.
7448 2007-05-28  Jakub Jelinek  <jakub@redhat.com>
7450         * sysdeps/unix/sysv/linux/futimes.c (miss_utimensat): Don't define
7451         if __NR_utimensat is not defined.
7453 2007-05-26  Ulrich Drepper  <drepper@redhat.com>
7455         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Include <sysdep.h>.
7457 2007-05-25  Jakub Jelinek  <jakub@redhat.com>
7459         * io/bits/fcntl2.h (__open_2): Add nonnull attribute.
7460         (open): Fix comment typos.  Don't call __open_2 if flags
7461         is a compile time constant without O_CREAT.
7462         (__open64_2): Add nonnull attribute.
7463         (open64): Fix comment typos.  Don't call __open64_2 if flags
7464         is a compile time constant without O_CREAT.
7465         (__openat_2): Add nonnull attribute, fix nonnull attribute
7466         on redirect.
7467         (openat): Fix comment typos.  Don't call __openat_2 if flags
7468         is a compile time constant without O_CREAT.
7469         (__openat64_2): Add nonnull attribute, fix nonnull attribute
7470         on redirect.
7471         (openat64): Fix comment typos.  Don't call __openat64_2 if flags
7472         is a compile time constant without O_CREAT.
7474 2007-05-24  Ulrich Drepper  <drepper@redhat.com>
7476         * Makerules (sysd-rules): Define PTW for ptw-* files.
7477         * Versions: Define GLIBC_2.7 for libc.
7478         * include/stdio.h: Declare __fortify_fail.
7479         * debug/fortify_fail.c: New file.
7480         * debug/Makefile (routines): Add fortify_fail.
7481         * debug/chk_fail.c: Use __fortify_fail.
7482         * debug/stack_chk_fail.c: Likewise.
7483         * io/Versions: Export __open_2, __open64_2, __openat_2, and
7484         __openat64_2 for GLIBC_2.7.
7485         * io/fcntl.h: When compiling with fortification, include bits/fcntl2.h.
7486         * io/open.c: Define *_2 variant of function which checks for O_CREAT
7487         and fails if necessary.
7488         * io/open64.c: Likewise.
7489         * io/openat.c: Likewise.
7490         * io/openat64.c: Likewise.
7491         * sysdeps/unix/sysv/linux/open64.c: Likewise.
7492         * sysdeps/unix/sysv/linux/openat.c: Likewise.
7493         * sysdeps/unix/sysv/linux/openat64.c: Likewise.
7494         * io/bits/fcntl2.h: New file.
7495         * include/fcntl.h: Declare __open_2, __open64_2, __openat_2, and
7496         __openat64_2.
7497         * include/bits/fcntl2.h: New file.
7498         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
7499         Add open_2.
7500         * sysdeps/unix/sysv/linux/open_2.c: New file.
7502 2007-05-21  Ulrich Drepper  <drepper@redhat.com>
7504         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Pass correct value
7505         as second parameter to handle_intel.
7507         * nscd/aicache.c (addhstaiX): If reported TTL is zero don't cache
7508         the entry.
7510         * sysdeps/unix/sysv/linux/x86_64/sysconf.c: Move cache information
7511         handling to ...
7512         * sysdeps/x86_64/cacheinfo.c: ... here.  New file.
7513         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
7514         cacheinfo.
7515         * sysdeps/x86_64/memcpy.S: Complete rewrite.
7516         * sysdeps/x86_64/mempcpy.S: Adjust appropriately.
7517         Patch by Evandro Menezes <evandro.menezes@amd.com>.
7519         * sysdeps/unix/sysv/linux/i386/epoll_pwait.S: New file.
7521 2007-05-21  Jakub Jelinek  <jakub@redhat.com>
7523         [BZ #4525]
7524         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add epoll_pwait.
7525         * sysdeps/unix/sysv/linux/epoll_pwait.c: New file.
7526         * sysdeps/unix/sysv/linux/syscalls.list (epoll_pwait): Remove.
7528         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h (epoll_pwait): Declare.
7530         [BZ #4514]
7531         * stdio-common/vfprintf.c (vfprintf): Don't shadow workstart variable,
7532         reinitialize workend at the start of each do_positional format spec
7533         loop, free workstart before do_positional loops.
7534         (printf_unknown): Fix size of work_buffer.
7535         * stdio-common/tst-sprintf.c (main): Add 3 new testcases.
7537         * malloc/hooks.c (MALLOC_STATE_VERSION): Bump.
7538         (public_sET_STATe): If ms->version < 3, put all chunks into
7539         unsorted chunks and clear {fd,bk}_nextsize fields of largebin
7540         chunks.
7542         * malloc/malloc.c [MALLOC_DEBUG]: Revert 2007-05-13 changes.
7543         * malloc/hooks.c: Likewise.
7544         * malloc/arena.c: Likewise.
7545         * malloc/malloc.c (do_check_malloc_state): Don't assert
7546         n_mmaps is not greater than n_mmaps_max.  This removes the need
7547         for the previous change.
7549         * malloc/Makefile (CFLAGS-malloc.c): Revert accidental
7550         2007-05-07 commit.
7552 2007-05-19  Ulrich Drepper  <drepper@redhat.com>
7554         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PRIVATE_FUTEX):
7555         Define for kernel >= 2.6.22.
7557 2007-05-18  Ulrich Drepper  <drepper@redhat.com>
7559         * elf/dl-close.c (_dl_close_worker): When removing object from
7560         global scope, wait for all lookups to finish afterwards.
7561         * elf/dl-open.c (add_to_global): When global scope array must
7562         grow, allocate a new one and free old array only after all
7563         lookups finish.
7564         * elf/dl-runtime.c (_dl_fixup): Protect using global scope.
7565         (_dl_lookup_symbol_x): Likewise.
7566         * elf/dl-support.c: Define _dl_wait_lookup_done.
7567         * sysdeps/generic/ldsodefs.h (struct rtld_global): Add
7568         _dl_wait_lookup_done.
7570         * malloc/malloc.c (do_check_chunk): Correct check for mmaped block
7571         not overlapping with arena.
7573         * malloc/mcheck.c (reallochook): If size==0, free the block.
7575         * rt/tst-shm.c: Use fstat64 instead of fstat.
7577         * sysdeps/unix/sysv/linux/i386/sync_file_range.S: Fix case where
7578         __NR_sync_file_range is not defined.
7580 2007-05-17  Ulrich Drepper  <drepper@redhat.com>
7582         Dummy files to prevent stub versions from being used.
7583         * sysdeps/x86_64/fpu/k_cosl.c: New file.
7584         * sysdeps/x86_64/fpu/k_rem_pio2l.c: New file.
7585         * sysdeps/x86_64/fpu/k_sinl.c: New file.
7586         * sysdeps/x86_64/fpu/k_tanl.c: New file.
7588         * version.h (VERSION): Set to 2.6.90.
7590 2007-05-14  Ulrich Drepper  <drepper@redhat.com>
7592         * version.h (VERSION): Define to 2.6.
7593         * include/features.h (__GLIBC_MINOR__): Define to 6.
7595         * malloc/malloc.c: Use all small bin slots on 64-bit archs.
7597         * malloc/malloc.c (largebin_index): Really have 32 buckets with 64
7598         sizes.
7600 2007-05-13  Ulrich Drepper  <drepper@redhat.com>
7602         * malloc/malloc.c [MALLOC_DEBUG]: Keep track of current maximum
7603         number of mmaps.  n_mmaps_max is the target.
7604         * malloc/hooks.c: Likewise.
7605         * malloc/arena.c: Likewise.
7607 2007-05-12  Andreas Jaeger  <aj@suse.de>
7609         * sysdeps/unix/sysv/linux/tst-getcpu.c: Include <unistd.h> for
7610         getpid.
7612 2007-05-11  Ulrich Drepper  <drepper@redhat.com>
7614         * elf/dl-close.c (_dl_close_worker): Help gcc to optimize by
7615         adding new variables.
7617         * elf/dl-open.c (add_to_global): Introduce variable ns to help gcc
7618         optimize.  Completely extend global scope array before making the
7619         new entries visible.
7621 2007-05-10  Ulrich Drepper  <drepper@redhat.com>
7623         * sysdeps/unix/sysv/linux/tst-getcpu.c: New file.
7624         * sysdeps/unix/sysv/linux/Makefile [subdir=posix] (tests): Add
7625         tst-getcpu.
7627         * include/link.h: Move l_version and l_nversion members around to
7628         fill gaps.
7630         * scripts/check-c++-types.sh: Don't use -fnu89-inline option.
7632         * sysdeps/unix/sysv/linux/sched_setaffinity.c
7633         (__sched_setaffinity_new): If syscall was successful and
7634         RESET_VGETCPU_CACHE is defined, use it before returning.
7635         * sysdeps/unix/sysv/linux/x86_64/sched_setaffinity.c: New file.
7637         * io/sys/stat.h: Make sure struct timespec is defined for
7638         __USE_ATFILE.
7640         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Define UTIME_NOW and
7641         UTIME_OMIT.
7642         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
7643         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
7644         * sysdeps/unix/sysv/linux/alpha/bits/stat.h: Likewise.
7645         * sysdeps/unix/sysv/linux/ia64/bits/stat.h: Likewise.
7646         * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
7647         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
7648         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_UTIMENSAT.
7649         * io/sys/stat.h: Declare utimensat, futimens.
7650         * io/utimensat.c: New file.
7651         * io/futimens.c: New file.
7652         * sysdeps/unix/sysv/linux/utimensat.c: New file.
7653         * sysdeps/unix/sysv/linux/futimens.c: New file.
7654         * io/Makefile (routines): Add utimensat, futimens.
7655         * io/Versions: Add utimensat, futimens to GLIBC_2.6.
7656         * sysdeps/unix/sysv/linux/lutimes.c: New file.
7657         * sysdeps/unix/sysv/linux/futimes.c: Use utimensat syscall if
7658         available.
7660         * include/sys/cdefs.h: Redefine __nonnull so that test for
7661         incorrect parameters in the libc code itself are not omitted.
7663 2007-05-09  Jakub Jelinek  <jakub@redhat.com>
7665         * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow
7666         exception in addition to inexact when asked to raise only FE_INEXACT.
7668         [BZ #3427]
7669         * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Don't clear exceptions
7670         in *envp.
7672 2007-05-07  Ulrich Drepper  <drepper@redhat.com>
7674         [BZ #4403]
7675         * string/strfry.c (strfry): Make result more random.
7677 2007-05-07  Richard Henderson  <rth@redhat.com>
7679         * sysdeps/alpha/fpu/bits/mathinline.h (__isnanl): Don't define
7680         if __NO_LONG_DOUBLE_MATH.
7681         * sysdeps/unix/sysv/linux/alpha/ioperm.c: If BWX insns not
7682         available in the compiler, add .arch directive to the assembly.
7684 2007-05-07  Jakub Jelinek  <jakub@redhat.com>
7686         * sysdeps/alpha/fpu/s_nearbyint.c (nearbyintl): Fix version on
7687         compat_symbol to GLIBC_2_1.
7688         * sysdeps/alpha/fpu/s_fmin.S (fminl): Likewise.
7689         * sysdeps/alpha/fpu/s_trunc.c (truncl): Likewise.
7690         * sysdeps/alpha/fpu/s_fmax.S (fmaxl): Likewise.
7691         * sysdeps/alpha/fpu/s_lrint.c (lrintl, llrintl): Likewise.
7692         * sysdeps/alpha/fpu/s_lround.c (lroundl, llroundl): Likewise.
7693         * sysdeps/alpha/fpu/s_round.c (roundl): Likewise.
7694         * sysdeps/alpha/fpu/s_isnan.c (isnanl): Provide compat_symbol in
7695         libc, not libm.
7696         (__isnanl): New compat_symbol.
7698 2007-05-07  Ulrich Drepper  <drepper@redhat.com>
7699             Jakub Jelinek  <jakub@redhat.com>
7701         * malloc/arena.c (heap_info): Add mprotect_size field, adjust pad.
7702         (new_heap): Initialize mprotect_size.
7703         (grow_heap): When growing, only mprotect from mprotect_size till
7704         new_size if mprotect_size is smaller.  When shrinking, use PROT_NONE
7705         MMAP for __libc_enable_secure only, otherwise use MADV_DONTNEED.
7707 2007-04-30  Steven Munroe  <sjmunroe@us.ibm.com>
7708             Peter Bergner  <bergner@us.ibm.com>
7710         * sysdeps/powerpc/bits/fenv.h: Declare __fe_mask_env extern.
7711         Define FE_NOMASK_ENV as FE_EANBLED_ENV.  Define FE_MASK_ENV.
7712         * sysdeps/powerpc/fpu/Makefile: Add fe_mask to libm-support.
7713         * sysdeps/powerpc/fpu/fe_mask.c: New file.
7714         * sysdeps/powerpc/fpu/fe_nomask.c: Correct comment.
7715         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept):
7716         Call __fe_mask_env() if all FP exceptions disabled.
7717         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Copy high 32-bits
7718         from old FPSCR to new fenv to propagate DFP rounding modes.
7719         Call __fe_mask_env() if FP exceptions previously enabled.
7720         * sysdeps/powerpc/fpu/fesetenv.c (fesetenv): Change mask to merge
7721         exceptions from env.  Use __fe_nomask_env() or __fe_mask_env() when
7722         transitioning from all exceptions disabled to any exception enabled
7723         or visa versa.
7724         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Change mask to
7725         merge exceptions from env.  Call __fe_nomask_env or __fe_mask_env
7726         when transitioning from all exceptions disabled to any exception
7727         enabled or visa versa.
7728         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fe_nomask.c: Moved to...
7729         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: ...here.
7730         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c: Moved to...
7731         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: ...here.
7732         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c: New file.
7733         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c: New file.
7735 2007-05-06  Ulrich Drepper  <drepper@redhat.com>
7737         [BZ #4465]
7738         * posix/unistd.h: Remove __THROW from fdatasync.
7740 2007-05-06  Mike Frysinger  <vapier@gentoo.org>
7742         [BZ #4465]
7743         * sysdeps/unix/sysv/linux/syscalls.list (fdatasync): Add "C" to args.
7745 2007-05-06  Ulrich Drepper  <drepper@redhat.com>
7747         * stdio-common/vfprintf.c (process_string_arg): Optimize
7748         ridiculous precision in wide char code printing multi-byte string.
7749         Reported by Jim Meyering <jim@meyering.net>.
7751         [BZ #4131]
7752         * elf/dl-addr.c (_dl_addr): Compare address with actual segment
7753         boundaries to work around systems with overlapping binary loading.
7754         Based on a patch by Suzuki <suzuki@in.ibm.com>.
7756 2007-05-04  Ulrich Drepper  <drepper@redhat.com>
7758         * stdio-common/vfprintf.c (process_string_arg): Adjust call to
7759         __mbsnrtowcs after last change.
7761         * locale/programs/linereader.c (get_symname): Fix adding final NUL.
7762         (get_ident): Likewise.
7764 2007-05-03  Jakub Jelinek  <jakub@redhat.com>
7766         * soft-fp/op-common.h (FP_TRUNC): Replace raising of FP_EX_INEXACT
7767         with setting the sticky bit.
7768         * math/test-misc.c (main): Add more truncation tests.
7770 2007-04-14  Uros Bizjak  <ubizjak@gmail.com>
7772         * soft-fp/floatunsidf.c (__floatunsidf): Use DFtype instead of
7773         double in the function declaration.
7774         * soft-fp/floatundidf.c (__floatundidf): Use DFtype instead of
7775         double in the function declaration.
7776         * soft-fp/floatunsisf.c (__floatunsisf): Use SFtype instead of
7777         float in the function declaration.
7778         * soft-fp/floatunsisf.c (__floatunsisf): Use SFtype instead of
7779         float in the function declaration.
7781         * soft-fp/extended.h (FP_UNPACK_RAW_E): Do not increase X##_e for
7782         denormal operands.  Do not generate FP_EX_DENORM exception.
7783         (FP_UNPACK_RAW_EP): Ditto.
7784         (FP_UNPACK_SEMIRAW_E): Use FP_UNPACK_RAW_E instead of
7785         undefined _FP_UNPACK_RAW_E.
7786         (FP_UNPACK_SEMIRAW_EP): Use FP_UNPACK_RAW_EP instead of
7787         undefined _FP_UNPACK_RAW_EP.
7788         (FP_PACK_SEMIRAW_E): Use FP_PACK_RAW_E instead of
7789         undefined _FP_PACK_RAW_E.
7790         (FP_PACK_SEMIRAW_EP): Use FP_PACK_RAW_EP instead of
7791         undefined _FP_PACK_RAW_EP.
7793         * soft-fp/op-2.h (_FP_FRAC_COPY_2_2): Define as alias to
7794         _FP_FRAC_COPY_2.
7795         * soft-fp/op-4.h (_FP_FRAC_COPY_2_2): Define as alias to
7796         _FP_FRAC_COPY_4.
7798 2007-04-16  Uros Bizjak  <ubizjak@gmail.com>
7799             Jakub Jelinek  <jakub@redhat.com>
7801         * soft-fp/op-common.h (FP_EXTEND): Do not abort when
7802         _FP_EXPBIAS_##dfs == _FP_EXPBIAS_##sfs.  Handle denormals for
7803         this case.
7804         * soft-fp/op-common.h (FP_TRUNC): Ditto.
7806 2007-05-03  Jakub Jelinek  <jakub@redhat.com>
7808         * math/test-misc.c (main): Add tests for rounding long double
7809         values close to smallest double denormalized value to double.
7811 2007-04-30  Joseph Myers  <joseph@codesourcery.com>
7813         * soft-fp/op-common.h (FP_TRUNC): Correct off-by-one error in
7814         condition for truncating to 0.  Set sticky bit for such
7815         truncation.
7817 2007-05-02  Jakub Jelinek  <jakub@redhat.com>
7819         * stdio-common/vfprintf.c (process_string_arg): Use a VLA rather than
7820         fixed length array for ignore.
7822 2007-04-30  Ulrich Drepper  <drepper@redhat.com>
7824         [BZ #4438]
7825         * stdio-common/vfprintf.c (process_string_arg): Don't overflow the
7826         stack for large precisions.
7827         * stdio-common/test-vfprintf.c (main): Add test for large
7828         precision.
7830 2007-04-30  Jakub Jelinek  <jakub@redhat.com>
7832         * stdio-common/printf_fp.c (___printf_fp): Don't print negative sign
7833         for exponent 0.
7834         * stdio-common/tfformat.c (sprint_doubles): Add a new test.
7836         [BZ #4439]
7837         * resolv/inet_ntop.c (inet_ntop4): Take terminating '\0' into
7838         account in the size check.
7839         * resolv/tst-inet_ntop.c: New test.
7840         * resolv/Makefile (tests): Add tst-inet_ntop.
7842 2007-04-30  Ulrich Drepper  <drepper@redhat.com>
7843             Jakub Jelinek  <jakub@redhat.com>
7845         [BZ #4349]
7846         * malloc/malloc.c: Keep separate list for first blocks on the bin
7847         lists with a given size.  This helps skipping over list elements
7848         we know won't fit in two places.
7849         Inspired by a patch by Tomash Brechko <tomash.brechko@gmail.com>.
7851 2007-04-28  Ulrich Drepper  <drepper@redhat.com>
7853         [BZ #4102]
7854         * sysdeps/posix/getaddrinfo.c (default_labels): Assign separate
7855         label to Teredo tunnel addresses 2001://32.
7857 2007-04-27  Ulrich Drepper  <drepper@redhat.com>
7859         * locale/programs/ld-collate.c (collate_read): Allow order_start
7860         after copy.
7862         * locale/programs/ld-collate.c (collate_read): Fix printing of
7863         error message.
7865         [BZ #3213]
7866         * locale/C-translit.h.in: Add entry for U2044.
7868         [BZ #4342]
7869         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Allow
7870         hexa-decimal floats without exponent.
7871         * stdio-common/tstscanf.c (main): Adjust Test 8 test for success.
7873 2007-04-25  Ulrich Drepper  <drepper@redhat.com>
7875         * sysdeps/unix/sysv/linux/bits/sched.h: Declare sched_getcpu.
7876         * sysdeps/unix/sysv/linux/sched_getcpu.c: New file.
7877         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: New file.
7878         * sysdeps/unix/sysv/linux/Versions: Export sched_getcpu for
7879         GLIBC_2.6.
7880         * sysdeps/unix/sysv/linux/Makefile [subdir=posix] (sysdep_routines):
7881         Add sched_getcpu.
7883 2007-04-25  Jakub Jelinek  <jakub@redhat.com>
7885         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Return -1 instead
7886         of 0 after the out_fail label.
7888 2007-04-25  Ulrich Drepper  <drepper@redhat.com>
7890         [BZ #4406]
7891         * iconv/gconv_charset.h (strip): Allow ':'.
7892         * iconv/iconv_open.c (iconv_open): Adjust comment.
7894 2007-04-25  Jakub Jelinek  <jakub@redhat.com>
7896         * libio/bits/stdio.h (fgetc_unlocked): Add extern inline optimized
7897         version.
7899 2007-04-23  Jakub Jelinek  <jakub@redhat.com>
7901         [BZ #4381]
7902         * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Ensure sufficient
7903         alignment of buffer and tmp_buffer.
7904         * nis/nss_nis/nis-hosts.c (internal_nis_gethostent_r,
7905         internal_gethostbyname2_r, _nss_nis_gethostbyaddr_r): Ensure sufficient
7906         alignment of buffer.
7907         * resolv/nss_dns/dns-hosts.c (getanswer_r): Likewise.  Handle buflen
7908         bigger than INT_MAX.
7909         * resolv/nss_dns/dns-network.c (getanswer_r): Likewise.  Add errnop and
7910         h_errnop arguments.  Fail if buflen is too small.
7911         (_nss_dns_getnetbyname_r, _nss_dns_getnetbyaddr_r): Adjust callers.
7913 2007-04-23  Jakub Jelinek  <jakub@redhat.com>
7915         [BZ #4405]
7916         * iconvdata/gconv-modules (E13B): Add a missing slash to the alias
7917         name.  Patch by Aurelien Jarno <aurelien@aurel32.net>.
7919 2007-04-22  Roland McGrath  <roland@redhat.com>
7921         * elf/elf.h (NT_PRXFPREG): New macro.
7923 2007-04-19  Andreas Jaeger  <aj@suse.de>
7925         [BZ #3905]
7926         * bits/in.h (IPV6_ROUTER_ALERT, IPV6_MTU_DISCOVER, IPV6_MTU,
7927         IPV6_RECVERR, IPV6_V6ONLY, IPV6_JOIN_ANYCAST, IPV6_LEAVE_ANYCAST):
7928         Added.
7930 2007-04-19  Ulrich Drepper  <drepper@redhat.com>
7932         * include/sys/mman.h: Mark madvise hidden.
7933         * misc/madvise.c: Add libc_hidden_def.
7935 2007-04-06  Jakub Jelinek  <jakub@redhat.com>
7937         * nis/nis_domain_of.c (__nis_domain_of): New function.
7938         * include/rpcsvc/nislib.h (__nis_domain_of): New prototype.
7939         * nis/nis_lookup.c (nis_lookup): Use __nis_domain_of.
7940         * nis/nis_call.c (rec_dirsearch): Likewise.
7941         (first_shoot): Likewise.  Remove search_parent_first argument.
7942         (struct nis_server_cache): Rename search_parent_first field
7943         to search_parent.
7944         (nis_server_cache_search, nis_server_cache_add): Rename
7945         search_parent_first argument to search_parent.
7946         (__nisfind_server): Likewise.  If search_parent, call
7947         __nis_domain_of.
7949 2007-04-18  Ulrich Drepper  <drepper@redhat.com>
7951         * sysdeps/posix/getaddrinfo.c: Remove commented-out code.
7953 2007-04-17  Ulrich Drepper  <drepper@redhat.com>
7955         [BZ #4368]
7956         * stdlib/stdlib.h: Remove obsolete part of comment for realpath.
7958 2007-04-16  Ulrich Drepper  <drepper@redhat.com>
7960         [BZ #4364]
7961         * posix/unistd.h (_XOPEN_VERSION): Define appropriately for SUSv3.
7963 2007-04-15  Jakub Jelinek  <jakub@redhat.com>
7965         * locale/programs/locarchive.c (INITIAL_NUM_NAMES,
7966         INITIAL_SIZE_STRINGS, INITIAL_NUM_LOCREC): Update to accomodate
7967         current number of locales in SUPPORTED.
7968         (create_archive): Initialize serial.
7969         (enlarge_archive): Preserve aliases rather than duplicating
7970         their locrecs.
7972 2007-04-13  Jakub Jelinek  <jakub@redhat.com>
7974         * libio/genops.c (_IO_default_finish): Call _IO_lock_fini
7975         after _IO_un_link, not before it.
7977         * stdio-common/printf_fp.c (___printf_fp): Fix exponent -4
7978         special case handling when wcp == wstartp + 1.  Fix a comment typo.
7979         * stdio-common/tfformat.c (sprint_doubles): Add a new testcase.
7981 2007-03-30  Jakub Jelinek  <jakub@redhat.com>
7983         * libio/libio.h (__underflow, __uflow, __overflow, __wunderflow,
7984         __wuflow, __woverflow, _IO_getc, _IO_putc, _IO_peekc_locked, _IO_padn,
7985         _IO_sgetn, _IO_seekoff, _IO_seekpos, _IO_getwc, _IO_putwc, _IO_wpadn):
7986         Remove __THROW.
7987         * libio/fileops.c (new_do_write, _IO_file_xsgetn_mmap,
7988         _IO_file_xsgetn_maybe_mmap): Likewise.
7989         * libio/oldfileops.c (old_do_write): Likewise.
7990         * libio/libioP.h (_IO_switch_to_get_mode, _IO_switch_to_wget_mode,
7991         _IO_init_marker, _IO_init_wmarker, _IO_default_uflow,
7992         _IO_wdefault_uflow, _IO_default_setbuf, _IO_default_seekpos,
7993         _IO_do_write, _IO_new_do_write, _IO_old_do_write, _IO_wdo_write,
7994         _IO_flush_all_lockp, _IO_flush_all, _IO_cleanup,
7995         _IO_flush_all_linebuffered, _IO_new_fgetpos, _IO_old_fgetpos,
7996         _IO_new_fsetpos, _IO_old_fsetpos, _IO_new_fgetpos64,
7997         _IO_old_fgetpos64, _IO_new_fsetpos64, _IO_old_fsetpos64,
7998         _IO_file_setbuf, _IO_file_seekoff, _IO_file_xsputn, _IO_file_xsgetn,
7999         _IO_file_underflow, _IO_file_underflow_mmap,
8000         _IO_file_underflow_maybe_mmap, _IO_file_overflow, _IO_file_attach,
8001         _IO_file_open, _IO_file_fopen, _IO_file_write, _IO_file_read,
8002         _IO_file_sync, _IO_file_close_it, _IO_file_finish,
8003         _IO_new_file_attach, _IO_new_file_close_it, _IO_new_file_finish,
8004         _IO_new_file_fopen, _IO_new_file_setbuf, _IO_file_setbuf_mmap,
8005         _IO_new_file_sync, _IO_new_file_underflow, _IO_new_file_overflow,
8006         _IO_new_file_seekoff, _IO_new_file_write, _IO_new_file_xsputn,
8007         _IO_old_file_setbuf, _IO_old_file_seekoff, _IO_old_file_xsputn,
8008         _IO_old_file_underflow, _IO_old_file_overflow, _IO_old_file_attach,
8009         _IO_old_file_fopen, _IO_old_file_write, _IO_old_file_sync,
8010         _IO_old_file_close_it, _IO_old_file_finish, _IO_wfile_xsputn,
8011         _IO_wfile_setbuf, _IO_wfile_sync, _IO_wfile_underflow,
8012         _IO_wfile_overflow, _IO_wfile_seekoff, _IO_old_proc_open,
8013         _IO_old_proc_close, _IO_getdelim, _IO_flush_all_internal,
8014         _IO_adjust_column_internal, _IO_default_uflow_internal,
8015         _IO_default_xsgetn_internal, _IO_wdefault_xsputn_internal,
8016         _IO_wdefault_xsgetn_internal, _IO_wdefault_uflow_internal,
8017         _IO_file_setbuf_internal, _IO_file_seekoff_internal,
8018         _IO_file_xsputn_internal, _IO_file_xsgetn_internal,
8019         _IO_file_close_it_internal, _IO_file_underflow_internal,
8020         _IO_file_overflow_internal, _IO_file_attach_internal,
8021         _IO_file_fopen_internal, _IO_file_sync_internal,
8022         _IO_file_finish_internal, _IO_wfile_xsputn_internal,
8023         _IO_wfile_seekoff_internal, _IO_wfile_sync_internal,
8024         _IO_switch_to_wget_mode_internal, _IO_padn_internal,
8025         _IO_switch_to_get_mode_internal, _IO_seekoff_unlocked,
8026         _IO_seekpos_unlocked): Likewise.
8027         (_IO_strtod, _IO_dtoa, _IO_outfloat, _IO_read, _IO_write,
8028         _IO_lseek, _IO_close, _IO_fstat): Remove unused prototypes.
8030 2007-04-16  Jakub Jelinek  <jakub@redhat.com>
8032         * locale/programs/locarchive.c (show_archive_content): Fix sizeof
8033         argument in xmalloc size computation.
8035 2007-04-01  Jakub Jelinek  <jakub@redhat.com>
8037         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Use
8038         math_opt_barrier and math_force_eval macros.
8040 2007-03-27  Jakub Jelinek  <jakub@redhat.com>
8042         [BZ #3306]
8043         * math/math_private.h (math_opt_barrier, math_force_eval): Define.
8044         * sysdeps/i386/fpu/math_private.h: New file.
8045         * sysdeps/x86_64/fpu/math_private.h: New file.
8046         * math/s_nexttowardf.c (__nexttowardf): Use math_opt_barrier and
8047         math_force_eval macros.  Use "+m" constraint on asm rather than
8048         "=m" and "m".
8049         * math/s_nextafter.c (__nextafter): Likewise.
8050         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward):
8051         Likewise.
8052         * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
8053         * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward): Likewise.
8054         * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
8055         * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Use
8056         math_opt_barrier and math_force_eval macros.
8057         * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl): Likewise.
8058         * sysdeps/ieee754/ldbl-96/s_nextafterl.c (__nextafterl): Likewise.
8059         * sysdeps/i386/fpu/s_nexttoward.c: Include float.h.
8060         (__nexttoward): Use math_opt_barrier and
8061         math_force_eval macros.  Use "+m" constraint on asm rather than
8062         "=m" and "m".  Only use asm to force double result if
8063         FLT_EVAL_METHOD is 2.
8064         * sysdeps/i386/fpu/s_nexttowardf.c: Include float.h.
8065         (__nexttowardf): Use math_opt_barrier and
8066         math_force_eval macros.  Use "+m" constraint on asm rather than
8067         "=m" and "m".  Only use asm to force double result if
8068         FLT_EVAL_METHOD is not 0.
8069         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Include float.h.
8070         (__nexttowardf): Use math_opt_barrier and
8071         math_force_eval macros.  If FLT_EVAL_METHOD is not 0, force
8072         x to float using asm.
8073         * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c: Include float.h.
8074         (__nldbl_nexttowardf): Use math_opt_barrier and
8075         math_force_eval macros.  If FLT_EVAL_METHOD is not 0, force
8076         x to float using asm.
8077         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Include float.h.
8078         (__nexttowardf): Use math_opt_barrier and math_force_eval
8079         macros.  If FLT_EVAL_METHOD is not 0, force x to float using asm.
8080         * math/bug-nextafter.c (zero, inf): New variables.
8081         (main): Add new tests.
8082         * math/bug-nexttoward.c (zero, inf): New variables.
8083         (main): Add new tests.
8085 2007-03-22  Jakub Jelinek  <jakub@redhat.com>
8087         [BZ #3427]
8088         * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Clear all
8089         exceptions both in SW and MXCSR.
8090         * sysdeps/x86_64/fpu/feupdateenv.c: New file.
8091         * sysdeps/x86_64/fpu/feenablxcpt.c (feenableexcept): Remove dead code.
8092         * sysdeps/x86_64/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
8093         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
8094         in MXCSR if SSE is available.
8095         * sysdeps/i386/fpu/feupdateenv.c: Include unistd.h, dl-procinfo.h
8096         and ldsodefs.h.
8097         (__feupdateenv): Query exceptions also from MXCSR if SSE is available.
8098         Fix comment typo.
8099         * sysdeps/ia64/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions.
8100         Return 0 rather than 1.
8101         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Fix comment typo.
8102         Remove incorrect part of a comment.  Fix argument to feraiseexcept.
8103         * math/test-fenv.c (feholdexcept_tests): New function.
8104         (main): Call it.
8106 2007-01-05  Richard B. Kreckel  <kreckel@ginac.de>
8108         [BZ #3427]
8109         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
8110         in SW.
8112 2007-04-13  Jakub Jelinek  <jakub@redhat.com>
8114         [BZ #4344]
8115         * elf/ldconfig.c (search_dir): Fix 2 off-by-2 errors.
8116         Reported by David Anderson <davea42@earthlink.net>.
8118 2007-04-07  Ulrich Drepper  <drepper@redhat.com>
8120         * posix/sys/wait.h: Remove unnecessary forward declaration.
8122 2007-04-05  Jakub Jelinek  <jakub@redhat.com>
8124         * nis/nis_call.c (__nisfind_server): Replace (*dir)->do_servers
8125         with obj->do_servers after first_shoot.
8127 2007-04-03  Ulrich Drepper  <drepper@redhat.com>
8129         * posix/Makefile (routines): Add sched_cpucount.
8130         (tests): Add tst-cpucount.
8131         * posix/sched_cpucount.c: New file.
8132         * posix/tst-cpucount.c: New file.
8133         * posix/Versions: Export __sched_cpucount with version GLIBC_2.6.
8134         * bits/sched.h: Define __CPU_COUNT.  Declare __sched_cpucount.
8135         * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
8136         * posix/sched.h: Define CPU_COUNT.
8138 2007-03-27  Jakub Jelinek  <jakub@redhat.com>
8140         * posix/fnmatch.c (STRUCT): Define.
8141         (fnmatch): Pass NULL as last argument to internal_fn{,w}match.
8142         * posix/fnmatch_loop.c (struct STRUCT): New type.
8143         (FCT): Add ends argument.  If ends != NULL and normal * is
8144         seen in the pattern, store current pattern and string pointers
8145         and return.  Adjust recursive calls.
8146         (EXT): Adjust FCT callers.
8147         (STRUCT): Undef at the end of the file.
8148         * posix/Makefile (tests): Add tst-fnmatch2.
8149         * posix/tst-fnmatch2.c: New test.
8151 2007-04-01  Jakub Jelinek  <jakub@redhat.com>
8153         * sysdeps/ia64/fpu/fesetround.c (fesetround): Return 0 on success
8154         and 1 on failure.
8156         * sysdeps/unix/sysv/linux/sync_file_range.c (sync_file_range):
8157         Change last argument to unsigned int.
8159 2007-03-23  Jakub Jelinek  <jakub@redhat.com>
8161         * scripts/check-local-headers.sh: Filter out sys/capability.h.
8163 2007-03-22  Jakub Jelinek  <jakub@redhat.com>
8165         * config.h.in (HAVE_LIBCAP): Add.
8166         * nscd/selinux.h: Include sys/capability.h rather than non-existent
8167         sys/capabilities.h.
8168         * nscd/selinux.c (preserve_capabilities): Use cap_free instead of
8169         free_caps.  Cast away const from 4th cap_set_flag argument.
8171 2007-03-26  Ulrich Drepper  <drepper@redhat.com>
8173         * sysdeps/unix/sysv/linux/Versions: Move sync_file_range to
8174         GLIBC_2.6.
8175         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
8176         Add sync_file_range.
8177         Reported by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
8179 2007-03-19  Steven Munroe  <sjmunroe@us.ibm.com>
8181         * sysdeps/powerpc/bits/atomic.h
8182         [!MUTEX_HINT_ACQ]: Define MUTEX_HINT_ACQ.
8183         [!MUTEX_HINT_REL]: Define MUTEX_HINT_REL.
8184         (__arch_compare_and_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
8185         (__arch_compare_and_exchange_val_32_rel): Add MUTEX_HINT_REL to lwarx.
8186         (__arch_atomic_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
8187         (__arch_atomic_exchange_rel_32_rel): Add MUTEX_HINT_REL to lwarx.
8188         * sysdeps/powerpc/powerpc32/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6X]:
8189         Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
8190         (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
8191         (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
8192         * sysdeps/powerpc/powerpc64/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6D]:
8193         Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
8194         (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
8195         (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
8196         (__arch_compare_and_exchange_bool_64_acq): Add MUTEX_HINT_ACQ to lwarx.
8197         (__arch_compare_and_exchange_bool_64_rel): Add MUTEX_HINT_REL to lwarx.
8198         (__arch_compare_and_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
8199         (__arch_compare_and_exchange_val_64_rel): Add MUTEX_HINT_REL to lwarx.
8200         (__arch_atomic_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
8201         (__arch_atomic_exchange_rel_64_rel): Add MUTEX_HINT_REL to lwarx.
8203 2007-03-20  Jakub Jelinek  <jakub@redhat.com>
8205         * sysdeps/unix/sysv/linux/powerpc/libc-start.c
8206         (__cache_line_size): Define the variable here.  Add
8207         attribute_hidden, remove weak_extern.
8208         (__libc_start_main): Set __cache_line_size
8209         unconditionally.
8210         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
8211         (__cache_line_size): Define the variable here.  Add
8212         attribute_hidden, remove weak_extern.
8213         (DL_PLATFORM_AUXV): Set __cache_line_size
8214         unconditionally.
8215         * sysdeps/powerpc/powerpc32/dl-machine.c (__cache_line_size): Remove
8216         weak_extern, add attribute_hidden.
8217         (__elf_machine_runtime_setup): Assume __cache_line_size is always
8218         defined in ld.so.
8219         * sysdeps/powerpc/powerpc32/memset.S (__cache_line_size): Remove
8220         definition.
8221         * sysdeps/powerpc/powerpc64/memset.S (__cache_line_size): Likewise.
8223 2007-03-26  Jakub Jelinek  <jakub@redhat.com>
8225         [BZ #4276]
8226         * timezone/africa: Update from tzdata2007d.
8227         * timezone/asia: Likewise.
8228         * timezone/australasia: Likewise.
8229         * timezone/backward: Likewise.
8230         * timezone/europe: Likewise.
8231         * timezone/iso3166.tab: Likewise.
8232         * timezone/leapseconds: Likewise.
8233         * timezone/northamerica: Likewise.
8234         * timezone/southamerica: Likewise.
8235         * timezone/zone.tab: Likewise.
8237         * timezone/private.h: Update from tzcode2007d.
8238         * timezone/zdump.c: Likewise.
8239         * timezone/zic.c: Likewise.
8241 2007-03-21  Jakub Jelinek  <jakub@redhat.com>
8243         * nis/nis_call.c: Include bits/libc-lock.h, sys/stat.h, unistd.h.
8244         (nis_server_cache, nis_server_cache_lock, nis_cold_start_mtime): New
8245         variables.
8246         (nis_server_cache_search, nis_server_cache_add): New functions.
8247         (__nisfind_server): Use them.  Add dbp and flags argument, if
8248         call __nisbind_create.
8249         (__nisbind_create): Add server_used and current_ep arguments,
8250         only call __nis_findfastest if server_used is ~0.
8251         (__do_niscall2, __prepare_niscall): Adjust callers.
8252         (ckey_cache, ckey_cache_size, ckey_cache_allocated, ckey_cache_pid,
8253         ckey_cache_euid, ckey_cache_lock): New variables.
8254         (get_ckey): New function.
8255         (__nisbind_connect): If not dbp->use_udp, pass IPPROTO_TCP to
8256         __pmap_getnisport.  Save __pmap_getnisport result in
8257         dbp->addr.sin_port if non-zero.  Use get_ckey to create conversation
8258         key.
8259         * nis/nis_lookup.c (nis_lookup): Likewise.
8260         * nis/nis_table.c (nis_list): Likewise.
8261         * nis/rpcsvc/nislib.h (__nisbind_create, __nisfind_server): Adjust
8262         prototypes.
8264         * nis/nss_nisplus/nisplus-pwd.c (_nss_nisplus_getpwnam_r,
8265         _nss_nisplus_getpwuid_r): Pass USE_DGRAM flag to nis_list.
8266         * nis/nss_nisplus/nisplus-service.c (_nss_nisplus_getservbyname_r,
8267         _nss_nisplus_getservbyport_r): Likewise.
8268         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r,
8269         _nss_nisplus_getnetbyaddr_r): Likewise.
8270         * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_getspnam_r): Likewise.
8271         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r,
8272         _nss_nisplus_getntohost_r): Likewise.
8273         * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r,
8274         _nss_nisplus_getrpcbynumber_r): Likewise.
8276 2007-03-20  Jakub Jelinek  <jakub@redhat.com>
8278         * configure.in (libc_cv_gnu89_inline): Only do compile test.
8279         * configure: Rebuilt.
8281         * soft-fp/double.h (_FP_UNION_D): Use _FP_W_TYPE for frac
8282         bit-fields.
8283         * soft-fp/extended.h (_FP_UNION_E): Likewise.
8285 2006-06-07  Joseph Myers  <joseph@codesourcery.com>
8287         [BZ #2831]
8288         * soft-fp/quad.h (_FP_UNION_Q): Use _FP_W_TYPE for frac
8289         bit-fields.
8291 2007-03-18  Jakub Jelinek  <jakub@redhat.com>
8293         * nscd/gai.c: Include alloca.h.
8294         (__libc_use_alloca): Define.
8296 2007-03-16  Jakub Jelinek  <jakub@redhat.com>
8298         * elf/dl-open.c (dl_open_worker): Declare l in 2 different
8299         smaller scopes.
8300         * elf/dl-dst.h (DL_DST_REQ_STATIC): Add l as macro argument.
8301         (DL_DST_REQUIRED): Adjust user.
8303         * include/dlfcn.h (struct link_map): New forward decl.
8305         * inet/getnameinfo.c: Include stddef.h.
8306         (getnameinfo): Use offsetof.
8308         * time/tst-mktime2.c (do_test): Don't rely on signed wrap.
8310         * stdio-common/vfprintf.c (_itoa): Undef before redefining.
8312         * string/strerror_l.c: Include stdlib.h.
8314         * configure.in (libc_cv_gnu89_inline): Test for -fgnu89-inline.
8315         * config.make.in (gnu89-inline-CFLAGS): New variable.
8316         * Makeconfig (CFLAGS): Use $(gnu89-inline-CFLAGS) together with
8317         -std=gnu99.
8318         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline): Define.
8319         * argp/argp.h: Use it.
8320         * bits/mathinline.h: Likewise.
8321         * bits/sigset.h: Likewise.
8322         * bits/string.h: Likewise.
8323         * ctype/ctype.h: Likewise.
8324         * hurd/hurd.h: Likewise.
8325         * hurd/hurd/fd.h: Likewise.
8326         * hurd/hurd/port.h: Likewise.
8327         * hurd/hurd/signal.h: Likewise.
8328         * hurd/hurd/threadvar.h: Likewise.
8329         * hurd/hurd/userlink.h: Likewise.
8330         * io/sys/stat.h: Likewise.
8331         * libio/bits/stdio.h: Likewise.
8332         * libio/bits/stdio2.h: Likewise.
8333         * mach/lock-intern.h: Likewise.
8334         * mach/mach/mig_support.h: Likewise.
8335         * math/bits/cmathcalls.h: Likewise.
8336         * posix/bits/unistd.h: Likewise.
8337         * socket/bits/socket2.h: Likewise.
8338         * stdlib/bits/stdlib.h: Likewise.
8339         * stdlib/stdlib.h: Likewise.
8340         * string/argz.h: Likewise.
8341         * string/bits/string2.h: Likewise.
8342         * string/bits/string3.h: Likewise.
8343         * sysdeps/alpha/fpu/bits/mathinline.h: Likewise.
8344         * sysdeps/generic/inttypes.h: Likewise.
8345         * sysdeps/generic/machine-lock.h: Likewise.
8346         * sysdeps/generic/machine-sp.h: Likewise.
8347         * sysdeps/i386/fpu/bits/mathinline.h: Likewise.
8348         * sysdeps/i386/i486/bits/string.h: Likewise.
8349         * sysdeps/ia64/fpu/bits/mathinline.h: Likewise.
8350         * sysdeps/mach/alpha/machine-lock.h: Likewise.
8351         * sysdeps/mach/alpha/machine-sp.h: Likewise.
8352         * sysdeps/mach/i386/machine-lock.h: Likewise.
8353         * sysdeps/mach/powerpc/machine-lock.h: Likewise.
8354         * sysdeps/mach/powerpc/machine-sp.h: Likewise.
8355         * sysdeps/powerpc/fpu/bits/mathinline.h: Likewise.
8356         * sysdeps/s390/bits/string.h: Likewise.
8357         * sysdeps/s390/fpu/bits/mathinline.h: Likewise.
8358         * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
8359         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
8360         * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
8361         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
8362         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Likewise.
8363         * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
8364         * wcsmbs/bits/wchar2.h: Likewise.
8365         * wcsmbs/wchar.h: Likewise.
8366         * stdlib/gmp.h: Likewise.  Include <features.h> to get
8367         __extern_inline definition.
8369 2007-03-15  Jakub Jelinek  <jakub@redhat.com>
8371         * locale/programs/ld-ctype.c (find_translit): Return NULL if ctype is
8372         NULL.
8374         [BZ #3919]
8375         * math/libm-test.inc (log_test): Test -Inf and NaN.
8376         (log10_test, log1p_test, log2_test): Test -Inf.
8377         * sysdeps/i386/fpu/e_log.S (__ieee754_log): Don't raise
8378         FE_INVALID when argument is qNaN.
8379         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
8380         * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
8381         * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
8382         * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Replace
8383         andb $1, %ah with testb $1, %ah, don't test for parity, instead
8384         testb $4, %ah and jump if non-zero.
8385         * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Likewise.
8386         * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Likewise.
8388         [BZ #4101]
8389         * argp/argp-help.c (hol_cluster_cmp): Fix comparisons used to find
8390         ancestors with the same depths.
8391         Patch by Niels Moeller <nisse@lysator.liu.se>.
8392         (filter_doc): Don't crash if argp is NULL.
8393         * argp/Makefile (tests): Add tst-argp2.
8394         * argp/tst-argp2.c: New test.
8396         [BZ #4130]
8397         * login/utmp_file.c (setutent_file): Use O_LARGEFILE for
8398         open_not_cancel_2.
8399         (updwtmp_file): Likewise.
8401         [BZ #4181]
8402         * inet/inet6_opt.c (add_padding): Only insert padding if npad > 0.
8403         (inet6_opt_append): Don't check extlen is big enough if extbuf
8404         is NULL.
8405         (inet6_opt_finish): Likewise.
8406         * inet/Makefile (tests): Add test-inet6_opt.
8407         * inet/test-inet6_opt.c: New test.
8409         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Never
8410         reallocate the buffer, instead fail for MSG_TRUNC or for EBUSY
8411         NLMSG_ERR.  Instead use a page sized buffer.
8412         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use page sized
8413         buffer.
8415 2007-03-14  Richard Henderson  <rth@redhat.com>
8417         * sysdeps/alpha/fpu/s_llround.c: New file.
8418         * sysdeps/alpha/fpu/s_llroundf.c: New file.
8419         * sysdeps/alpha/fpu/s_lround.c: New file.
8420         * sysdeps/alpha/fpu/s_lroundf.c: New file.
8421         * sysdeps/alpha/fpu/s_round.c: New file.
8422         * sysdeps/alpha/fpu/s_roundf.c: New file.
8423         * sysdeps/alpha/fpu/s_trunc.c: New file.
8424         * sysdeps/alpha/fpu/s_truncf.c: New file.
8426         * sysdeps/alpha/fpu/s_ceil.c: Rewrite without branches.
8427         * sysdeps/alpha/fpu/s_ceilf.c: Likewise.
8428         * sysdeps/alpha/fpu/s_floor.c: Likewise.
8429         * sysdeps/alpha/fpu/s_floorf.c: Likewise.
8430         * sysdeps/alpha/fpu/s_rint.c: Likewise.
8431         * sysdeps/alpha/fpu/s_rintf.c: Likewise.
8433         * sysdeps/alpha/fpu/s_fmax.S: New file.
8434         * sysdeps/alpha/fpu/s_fmaxf.S: New file.
8435         * sysdeps/alpha/fpu/s_fmin.S: New file.
8436         * sysdeps/alpha/fpu/s_fminf.S: New file.
8437         * sysdeps/alpha/fpu/s_isnan.c: New file.
8438         * sysdeps/alpha/fpu/s_isnanf.c: New file.
8439         * sysdeps/alpha/fpu/s_llrint.c: New file.
8440         * sysdeps/alpha/fpu/s_llrintf.c: New file.
8441         * sysdeps/alpha/fpu/s_lrint.c: New file.
8442         * sysdeps/alpha/fpu/s_lrintf.c: New file.
8443         * sysdeps/alpha/fpu/s_nearbyint.c: New file.
8444         * sysdeps/alpha/fpu/s_nearbyintf.c: New file.
8446         * sysdeps/alpha/fpu/bits/mathinline.h (__floorf, __floor): Remove.
8447         (__fdimf, fdimf, __fdim, fdim): Remove.
8448         (__signbitf, __signbit, __signbitl): Use gcc builtin if available.
8449         (__isnanf, __isnan, __isnanl): New.
8451 2007-03-13  Richard Henderson  <rth@redhat.com>
8453         * sysdeps/ieee754/ldbl-128/Makefile: New file.
8455 2007-03-13  Richard Henderson  <rth@redhat.com>
8457         * sysdeps/alpha/Makefile (sysdep-CFLAGS): Force dynamic rounding.
8458         * sysdeps/alpha/fpu/bits/mathinline.h (__signbitl): New.
8459         * sysdeps/alpha/fpu/libm-test-ulps: Regenerate.
8460         * sysdeps/unix/sysv/linux/alpha/alphaev6/fpu/Implies: New file.
8461         * sysdeps/unix/sysv/linux/alpha/alphaev67/fpu/Implies: New file.
8462         * sysdeps/unix/sysv/linux/alpha/fpu/Implies: New file.
8464 2007-03-13  Richard Henderson  <rth@redhat.com>
8466         * elf/dl-support.c (_dl_aux_init): Honor DL_PLATFORM_AUXV.
8467         * sysdeps/unix/sysv/linux/alpha/dl-auxv.h: New file.
8468         * sysdeps/unix/sysv/linux/alpha/dl-support.c: New file.
8469         * sysdeps/unix/sysv/linux/alpha/dl-sysdep.c (__libc_alpha_cache_shape):
8470         Move to dl-auxv.h; initialize instead of extern weak.
8471         (DL_PLATFORM_AUXV): Move to dl-auxv.h; don't test for undef
8472         weak symbol.
8473         * sysdeps/unix/sysv/linux/alpha/sysconf.c (__libc_alpha_cache_shape):
8474         Extern instead of initialized.
8476 2007-03-13  Richard Henderson  <rth@redhat.com>
8478         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S: Add support for
8479         __sigsuspend_nocancel.
8481 2007-03-06  Ulrich Drepper  <drepper@redhat.com>
8483         * sysdeps/posix/getaddrinfo.c (get_scope): Correct test for
8484         172.16/12 address range.
8486 2007-03-02  Jakub Jelinek  <jakub@redhat.com>
8488         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Retry with
8489         a new netlink socket if NLMSG_ERR -EBUSY is seen after some MSG_TRUNC
8490         message.
8492 2007-03-01  Jakub Jelinek  <jakub@redhat.com>
8494         [BZ #4069]
8495         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Check for NaN
8496         earlier.
8497         * math/libm-test.inc (pow_test): Add more tests involving NaNs.
8499         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Avoid invalid exception
8500         for x qNaN and y either +-inf or non-integer value.
8501         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Likewise.
8502         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
8503         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
8505 2007-02-10  Mike Frysinger  <vapier@gentoo.org>
8507         * sysdeps/unix/sysv/linux/sh/Makefile: Remove sys/io.h
8508         from sysdep_headers.
8510 2007-02-28  Jakub Jelinek  <jakub@redhat.com>
8512         * time/tzfile.c (find_transition): Instead of a linear search try to
8513         guess the transition index, use a linear search if the result is at
8514         most 10 transitions away from the guess or binary search otherwise.
8516 2007-02-27  Jakub Jelinek  <jakub@redhat.com>
8518         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Fix
8519         memory reallocation.
8521 2007-02-21  Ulrich Drepper  <drepper@redhat.com>
8523         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Add branch predictions
8524         and fix some typos.
8525         Optimize use of TOLOWER.
8527         [BZ #3325]
8528         * sysdeps/i386/fpu/e_fmodf.S: Revert last changes, keep using fprem.
8529         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
8530         * sysdeps/i386/fpu/e_fmod.S: Likewise.
8532         [BZ #3458]
8533         * sysdeps/unix/sysv/linux/posix_madvise.c: New file.
8534         * sysdeps/unix/sysv/linux/syscalls.list: Remove posix_madvise entry.
8536         [BZ #4076]
8537         * io/ftw.c (ftw_startup): Handle special case of FTW_CHDIR in /.
8538         (open_dir_stream): Likewise.
8539         * io/Makefile (tests): Add bug-ftw5.
8540         * io/bug-ftw5.c: New file.
8542         * nscd/hstcache.c (cache_addhst): Remove unnecessary conditional.
8543         * nscd/servicescache.c (cache_addserv): Likewise.
8545         * nscd/grpcache.c (cache_addgr): In case a record changed on
8546         refresh, adjust key_copy.
8548         [BZ #4074]
8549         * nscd/pwdcache.c (cache_addpw): In case a record changed on
8550         refresh, adjust key_copy.
8552         [BZ #4070]
8553         * stdio-common/printf_fp.c (___printf_fp): Handle a few more
8554         special cases.
8555         * stdio-common/tfformat.c (sprint_doubles): Some more tests.
8557 2007-02-19  Ulrich Drepper  <drepper@redhat.com>
8559         * stdio-common/printf_fp.c (___printf_fp): Cleanups and minor
8560         optimization.
8562         * stdio-common/vfscanf.c: Small cleanups throughout.
8564 2007-02-18  Ulrich Drepper  <drepper@redhat.com>
8566         [BZ #3325]
8567         * sysdeps/i386/fpu/e_fmodf.S: Use fprem1 instead of fprem.
8568         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
8569         * sysdeps/i386/fpu/e_fmod.S: Likewise.
8570         Patch by Jared Casper <jaredcasper@gmail.com>.
8572         * sysdeps/unix/closedir.c: Outside libc don't use locking.
8573         * sysdeps/unix/opendir.c: Likewise.
8574         * sysdeps/unix/readdir.c: Likewise.
8576         [BZ #2211]
8577         * stdio-common/vfscanf.c: Handle localized digits etc for floating
8578         point numbers.
8579         Patch mostly by Hamed Malek <hamed@farsiweb.info>.
8581         * stdio-common/vfscanf.c: Fix problems in width accounting.
8582         * stdio-common/tst-sscanf.c (double_tests): New tests.
8583         (main): Hook them up.
8585         * stdio-common/vfscanf.c: Remove unused WIDTH handling.
8586         More simplifications of floating-point reader.
8588         * stdio-common/Makefile (tests): Add tst-swscanf.
8589         * stdio-common/tst-sscanf.c: Make tests usable for swscanf
8590         testing.
8591         * stdio-common/tst-swscanf.c: New file.
8593 2007-02-17  Ulrich Drepper  <drepper@redhat.com>
8595         [BZ #2633]
8596         * libio/stdio.h: Define struct _IO_FILE in global namespace.
8597         * setjmp/setjmp.h: Define __jmp_buf_tag in global namespace.
8598         Remove using for __jmp_buf_tag.
8599         * locale/locale.h (struct lconv): Also define in std namespace.
8600         * wcsmbs/wchar.h: Move using declaration for tm out of namespace.
8602         [BZ #3842]
8603         * sysdeps/posix/euidaccess.c [_LIBC] (euidaccess): Remove shortcut
8604         using __libc_enable_secure.
8606         [BZ #3818]
8607         * sysdeps/unix/sysv/linux/sys/acct.h (struct acct_v3): Define.
8609         [BZ #3745]
8610         * locale/programs/ld-collate.c (handle_ellipsis): Fix generation
8611         of names for ellipsises.
8613         [BZ #3348]
8614         * malloc/memusage.sh: Cleanups.
8615         * debug/xtrace.sh: Quoting and trap changes.
8617 2007-02-16  Ulrich Drepper  <drepper@redhat.com>
8619         * locale/iso-3166.def: Add Jersey, Guernsey, and Isle Of Man entries.
8621         * locale/iso-3166.def: Update entry for Serbia.
8622         * locale/iso-4217.def: Define RSD, remove CSD.
8624         * sysdeps/x86_64/bits/atomic.h: One more change, this time for 16-
8625         and 64-bit operations.
8627         [BZ #4040]
8628         * sysdeps/i386/i486/bits/atomic.h: One more change, this time for
8629         16-bit operations.
8631         * nscd/nscd.c (parse_opt): One more conversion to use send instead
8632         of writev.
8634 2007-02-15  Ulrich Drepper  <drepper@redhat.com>
8636         [BZ #3991]
8637         * assert/assert.h (assert): Simplify.
8638         (assert_perror): Likewise.
8639         Patch by Israel G. Lugo <ilugo@bridonsecurity.com>.
8641         * nscd/nscd_helper.c (open_socket): Don't send padding bytes from
8642         reqdata.
8644         * sysdeps/unix/sysv/linux/x86_64/send.c (__libc_send): Cosmetic
8645         change: don't pass NULL in place of an integer.
8647 2007-02-02  Bruno Haible  <bruno@clisp.org>
8649         [BZ #3954]
8650         * iconvdata/ksc5601.c (__ksc5601_sym_to_ucs, __ksc5601_sym_from_ucs):
8651         Add mapping for U+327E.
8652         * iconvdata/ksc5601.h (KSC5601_SYMBOL): Increment.
8653         * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
8654         mapping of 0xD9 0xE8.
8655         * iconvdata/uhc.c (BODY for FROM_LOOP, BODY for TO_LOOP): Disable
8656         mapping of U+327E.
8657         Reported by Jungshik Shin <jungshik@google.com>.
8659         [BZ #3955]
8660         * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
8661         mapping of 0xD9 0xE6 and of 0xD9 0xE7.
8662         Reported by Jungshik Shin <jungshik@google.com>.
8664 2007-02-14  Ulrich Drepper  <drepper@redhat.com>
8666         * sysdeps/x86_64/bits/atomic;h: Fix asm parameters for some
8667         byte variants.
8669         [BZ #4040]
8670         * sysdeps/i386/i486/bits/atomic.h: Fix asm parameters for some
8671         byte variants.  Patch mostly be tom@tommay.net.
8673 2007-02-14  Jakub Jelinek  <jakub@redhat.com>
8675         [BZ #3996]
8676         * posix/glob.c (attribute_hidden): Define if not defined.
8677         (glob): Unescape dirname, filename or username when needed and not
8678         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
8679         is NULL.  Handle unescaped [ in pattern without closing ].
8680         Don't pass GLOB_CHECK down to recursive glob for directories.
8681         (__glob_pattern_type): New function.
8682         (__glob_pattern_p): Implement using __glob_pattern_type.
8683         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
8684         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
8685         Remove unreachable code.
8686         * posix/globtest.sh: Add a couple of new tests.
8688 2007-02-13  Ulrich Drepper  <drepper@redhat.com>
8690         * po/ru.po: Update from translation team.
8692 2007-02-12  Jakub Jelinek  <jakub@redhat.com>
8694         * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __amdfam10__
8695         to the list of i486+ CPUs.
8696         * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
8698 2007-02-12  Ulrich Drepper  <drepper@redhat.com>
8700         * elf/rtld.c (RESOLVE_MAP): Always return bootstrap_map reference.
8701         * elf/Makefile ($(objpfx)ld.so): Check that ld.so has no undefined
8702         references.
8704 2007-02-09  Ulrich Drepper  <drepper@redhat.com>
8706         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Remove incorrect comment.
8708         * resolv/res_init.c (res_setoptions): Recognize edns0 option.
8709         * resolv/res_mkquery.c: Define __res_nopt.
8710         * resolv/res_query.c (__libc_res_nquery): If RES_USE_EDNS0 is set
8711         try adding EDNS0 record.
8712         * resolv/res_send.c (send_dg): If request failed with FORMERR and
8713         EDNS0 record was send make sure we don't try it again.
8714         * resolv/resolv.h: Define RES_F_EDNS0ERR and RES_USE_EDNS0.
8715         * include/resolv.h: Declare __res_nopt.
8717 2007-02-08  Jakub Jelinek  <jakub@redhat.com>
8719         [BZ #3944]
8720         * time/strptime_l.c (__strptime_internal): Set have_mon for
8721         %b/%B/%h.  Set have_mon and have_mday if tm_mon and tm_mday
8722         have been computed from tm_yday and tm_year.  Don't crash
8723         in day_of_the_week or day_of_the_year if not have_mon
8724         and tm_mon contains bogus value.
8725         * time/Makefile (tests): Add tst-strptime3.
8726         * time/tst-strptime3.c: New test.
8728 2007-02-05  Jakub Jelinek  <jakub@redhat.com>
8730         [BZ #3957]
8731         * posix/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
8732         bit for RE_HAT_LISTS_NOT_NEWLINE.
8733         (build_charclass_op): Remove bogus comment.
8734         * posix/Makefile (tests): Add bug-regex27 and bug-regex28.
8735         * posix/bug-regex27.c: New test.
8736         * posix/bug-regex28.c: New test.
8738 2007-02-03  Ulrich Drepper  <drepper@redhat.com>
8740         * po/sv.po: Update from translation team.
8742 2007-02-02  Ulrich Drepper  <drepper@redhat.com>
8744         * nscd/nscd_helper.c (open_socket): Minor size optimization.
8746 2007-02-02  Jakub Jelinek  <jakub@redhat.com>
8748         * include/locale.h (__uselocale): Add libc_hidden_proto.
8749         * locale/uselocale.c (__uselocale): Add libc_hidden_def.
8751         * nscd/nscd_helper.c (open_socket): Use __gettimeofday instead of
8752         gettimeofday.
8754 2007-02-01  Ulrich Drepper  <drepper@redhat.com>
8756         * sysdeps/unix/sysv/linux/i386/sysdep.h (PTR_MANGLE): Roll value before
8757         returning.
8758         (PTR_DEMANGLE): Real definition now that it's not the same as
8759         PRT_MANGLE anymore.
8760         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
8762         * string/strerror_l.c: New file.
8763         * string/Makefile (routines): Add strerror_l.
8764         * string/string.h: Declare strerror_l.
8765         * string/Versions: Export strerror_l for GLIBC_2.6.
8767 2007-01-31  Ulrich Drepper  <drepper@redhat.com>
8769         * nscd/nscd_helper.c (open_socket): Now takes request type and key
8770         as parameter.  Construct request record.  Try sending request
8771         before the first poll use, it usually succeeds.  Adjust all
8772         callers.
8773         * nscd/nscd-client.h: Define MAXKEYLEN.
8774         * nscd/connections.c (nscd_run): Don't define MAXKEYLEN here.
8776 2007-01-31  Jakub Jelinek  <jakub@redhat.com>
8778         * nscd/nscd-client.h (__nscd_cache_search): Remove const qualifier
8779         from return value.
8780         * nscd/nscd_helper.c: Include string.h.
8781         (__nscd_cache_search): Remove const qualifier from return value.
8782         On strict alignment architectures check hash entry and data head
8783         alignment.
8784         * nscd/nscd_getpw_r.c (nscd_getpw_r): Don't crash or fail because
8785         mmapped data during GC cycle contains garbage.  If
8786         __nscd_drop_map_ref fails, decrement mapped->counter when returning
8787         error or if retrying with NO_MAPPING, only __nscd_unmap if counter
8788         dropped to 0.
8789         * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
8790         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
8791         * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
8792         * nscd/nscd_getai.c (__nscd_getai): Likewise.
8793         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
8795 2007-01-30  Ulrich Drepper  <drepper@redhat.com>
8797         * misc/hsearch_r.c (hdestroy_r): Remove unnecessary test.
8799 2007-01-26  Ulrich Drepper  <drepper@redhat.com>
8801         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Use register
8802         names not numbers in cfi_*.
8804 2007-01-26  Andreas Jaeger  <aj@suse.de>
8806         * sysdeps/unix/sysv/linux/sys/personality.h (ADDR_NO_RANDOMIZE,
8807         ADDR_LIMIT_3GB, PER_LINUX_32BIT, PER_LINUX32_3GB): Add.
8808         Correct values of PER_HPUX and PER_OSF4.
8810 2007-01-24  Ulrich Drepper  <drepper@redhat.com>
8812         * elf/dl-minimal.c: Undefine _itoa first.
8813         * stdio-common/_itoa.h: Define _itoa and _fitoa for 64-bit platforms.
8814         * malloc/mtrace.c: Revert last change.
8815         * posix/wordexp.c: Likewise.
8817 2007-01-24  Jakub Jelinek  <jakub@redhat.com>
8819         * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __nocona__, __core2__
8820         and __geode__ to the list of i486+ CPUs.
8821         * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
8823 2007-01-23  Ulrich Drepper  <drepper@redhat.com>
8825         * stdio-common/_itoa.c: Include <limits.h>.
8826         * stdio-common/_itowa.c: Likewise.
8828 2007-01-22  Ulrich Drepper  <drepper@redhat.com>
8830         * stdio-common/_itowa.c: Don't compile _itowa for 64-bit
8831         platforms.
8832         * stdio-common/_itoa.c: Don't compile in _itoa and _fitoa for
8833         64-bit platforms.
8834         * malloc/mtrace.c (tr_where): Use _fitoa_word instead of _fitoa if
8835         possible.
8836         * posix/wordexp.c (parse_arith): Use _itoa_word instead of _itoa
8837         if possible.
8839         [BZ #3902]
8840         * stdio-common/_itoa.c (_itoa): Make sure at least a zero is emitted.
8841         * stdio-common/Makefile (tests): Add bug17.
8842         * stdio-common/bug17.c: New file.
8844 2007-01-19  Ulrich Drepper  <drepper@redhat.com>
8846         * iconvdata/brf.c: New file.
8847         * iconvdata/testdata/BRF: New file.
8848         * iconvdata/testdata/BRF..UTF8: New file.
8849         Contributed by Samuel Thibault <samuel.thibault@ens-lyon.org>.
8850         * iconvdata/Makefile: Add rules to build BRF.
8851         * iconvdata/TESTS: Add BRF entry.
8852         * iconvdata/gconv-modules: Likewise.
8853         * iconvdata/tst-tables.sh: Likewise.
8855 2007-01-18  Anton Nikishaev  <anton.nik@gmail.com>
8857         * wcsmbs/wchar.h (wcstoll): Fix comment, function returns value of
8858         type `long long int', not `long int'.
8859         (wcstoq): Likewise.
8861 2007-01-18  Ulrich Drepper  <drepper@redhat.com>
8863         * scripts/gen-as-const.awk: Add cast to long to avoid int promotion
8864         of values on 64-bit platforms which are too large.
8866 2007-01-12  Steven Munroe  <sjmunroe@us.ibm.com>
8867             Joe Kerian  <jkerian@us.us.ibm.com>
8869         [BZ #2749]
8870         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Include
8871         <math_ldbl_opt.h>.  Remove weak_alias.  Use long_double_symbol macro.
8872         (__copysignl): Use signbit() for comparison.
8873         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Correct parms for
8874         SET_LDOUBLE_WORDS64.
8876         [BZ #2423, #2749]
8877         * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Don't include <fenv_libc.h>.
8878         (__ceill): Remove calls to fegetround(), fesetround().
8879         * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
8880         * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
8881         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
8883 2007-01-17  Jakub Jelinek  <jakub@redhat.com>
8885         * nscd/nscd_getserv_r.c (nscd_getserv_r): Fix pastos.
8887         * sysdeps/unix/sysv/linux/getdents.c (offsetof): Remove.
8889 2007-01-17  Ulrich Drepper  <drepper@redhat.com>
8891         * sysdeps/unix/sysv/linux/fatal-prepare.h: Use PTHFCT_CALL to
8892         demangle pointer.
8893         * csu/libc-start.c: Likewise.
8895 2007-01-16  Ulrich Drepper  <drepper@redhat.com>
8897         * sysdeps/posix/system.c: Remove NO_WAITPID support, it cannot
8898         really work anyway.
8900 2007-01-15  Ulrich Drepper  <drepper@redhat.com>
8902         * nscd/connections.c (servinfo): Renamed to reqinfo.  Change all
8903         users.
8904         (handle_request): Remove unnecessary tests.
8906         * nscd/cache.c (cache_add): Record the failure to add to the cache.
8908 2007-01-15  Jakub Jelinek  <jakub@redhat.com>
8910         * soft-fp/op-common.h (FP_TRUNC): When truncating a NaN, clear
8911         workbits in semi-raw fraction.
8913         * math/test-misc.c: Add new tests.
8915 2007-01-14  Steven Munroe  <sjmunroe@us.ibm.com>
8917         * math/basic-test.c: Include test-skeleton.c.
8918         (TEST_TRUNC): Define.
8919         (truncdfsf_test, trunctfsf_test, trunctfdf_test): New.
8920         (main): Rename to ...
8921         (do_test): ...this.  Run new tests.
8922         (TEST_FUNCTION): Define.
8924 2006-10-05  Steven Munroe  <sjmunroe@us.ibm.com>
8925             Joe Kerian  <jkerian@us.us.ibm.com>
8927         [BZ #2749]
8928         * soft-fp/op-4.h (__FP_FRAC_SUB_3, __FP_FRAC_SUB_4): Correct borrow
8929         handling for high words.
8930         * soft-fp/op-common.h (_FP_OVERFLOW_SEMIRAW): Always set inexact
8931         and overflow for infinity.
8933 2007-01-15  Ulrich Drepper  <drepper@redhat.com>
8935         * nscd/connections.c (handle_request): Add a __builtin_expect.
8937         * nscd/connections.c (serv2db): Change type into structure which
8938         also says whether this is a request for data.  Renamed to
8939         servinfo.  All users changed.
8940         (handle_request): Much simpler test whether we should search the cache.
8942         * nscd/connections.c (handle_request): Fix thinko in selinux test
8943         invocation.
8945         * sysdeps/generic/ldsodefs.h: Define DL_LOOKUP_SCOPE_LOCK.
8946         * elf/dl-lookup.c (add_dependency): If scope map is locked, unlock
8947         it before getting dl_load_lock and then relock.
8948         (_dl_lookup_symbol_x): Pass flags to add_dependency.
8949         When rerunning _dl_lookup_symbol_x, compute symbol_scope again in
8950         case we unlocked the scope.
8951         * elf/dl-runtime.c (_dl_fixup): Pass DL_LOOKUP_SCOPE_LOCK to
8952         _dl_lookup_symbol_x in case we locked the scope.
8953         (_dl_profile_fixup): Likewise.
8954         * elf/dl-sym.c (do_sym): In flags passed to call_dl_lookup, also
8955         set DL_LOOKUP_SCOPE_LOCK.
8957 2007-01-13  Ulrich Drepper  <drepper@redhat.com>
8959         * inet/Makefile: Define CFLAGS-getsrvbynm_r.c and
8960         CFLAGS-getsrvbynpt_r.c.
8961         * nscd/getsrvbynm_r.c: New file.
8962         * nscd/getsrvbypt_r.c: New file.
8963         * nscd/nscd_getserv_r.c: New file.
8964         * nscd/servicescache.c: New file.
8965         * nscd/Makefile (routines): Add nscd_getserv_r.
8966         (nscd-modules): Add getsrvbynm_r, getsrvbypt_r, and servicescache.
8967         Define CFLAGS-servicescache.c, CFLAGS-getsrvbynm_r.c, and
8968         CFLAGS-getsrvbypt_r.c.
8969         * nscd/cache.c (prune_cache): Rewrite to get re-add function from
8970         table.  Add entries for services database.
8971         * nscd/connections.c (serv2str): Mark as const.  Add entries for
8972         services database.
8973         (dbs): Add .reset_res and servdb initialization.
8974         (serv2db): Add entries for services database.
8975         (verify_persistent_db): Accept dbnr == servdb.
8976         (invalidate_cache): Rewrite database name recognition to use a table.
8977         Call res_init() if .reset_res is set for database.
8978         (handle_request): Add code to handle services database.
8979         * nscd/gai.c: Don't define __getservbyname_r.
8980         * nscd/nscd-client.h (request_type): Remove LASTDBREQ, add
8981         GETSERVBYNAME, GETSERVBYPORT, GETFDSERV.
8982         (serv_response_header): Define.
8983         (struct datahead): Add serv_response_header member.
8984         * nscd/nscd.c (parse_opt): Rewrite parsing of -i parameter value
8985         using table.
8986         * nscd/nscd.conf: Add entries for services database.
8987         * nscd/nscd.h: Adjust declaration of dbnames and serv2str.
8988         Declare serv_iov_disabled.
8989         Declare addservbyname, readdservbyname, addservbyport, and
8990         readdservbyport.
8991         * nscd/nscd_conf.c (dbnames): Mark as const.  Add services entry.
8992         (find_db): Fix error message.
8993         * nscd/nscd_proto.h: Declare __nss_not_use_nscd_services,
8994         __nscd_getservbyname_r, and __nscd_getservbyport_r.
8995         * nscd/selinux.c (perms): Add entries for services database.
8996         * nss/Versions: Export __nss_services_lookup with GLIBC_PRIVATE.
8997         * nss/nsswitch.c (__nss_disable_nscd): Also disable services database.
8999         * nscd/grpcache.c: Remove obsolete code.  Cleanups.
9000         * nscd/hstcache.c: Likewise.
9001         * nscd/pwdcache.c: Likewise.
9003         * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r): Correct
9004         computation of keylen.
9006         * include/string.h: Only redefine strndupa if this is really for
9007         libc code.
9009 2007-01-12  Ulrich Drepper  <drepper@redhat.com>
9011         * nscd/nscd_gethst_r.c: Minor cleanups.
9013         * nscd/connections.c (handle_request): Check selinux permissions
9014         for all non-admin commands.
9016         * sysdeps/i386/i486/bits/atomic.h: Define
9017         atomic_compare_and_exchange_val_acq,
9018         atomic_compare_and_exchange_bool_acq, and atomic_exchange_and_add
9019         using __sync_* built-ins for gcc >= 4.1.
9020         * sysdeps/x86_64/bits/atomic.h: Likewise.
9022         [BZ #3840]
9023         * scripts/check-local-headers.sh: Restrict to testing .o.d, .os.d,
9024         and .oS.d files.
9026 2007-01-05  Steven Munroe  <sjmunroe@us.ibm.com>
9028         * stdlib/tst-makecontext.c: Include errno.h.  Change main()
9029         to do_test().  Define TEST_FUNCTION. Include test-skeleton.c.
9030         (do_test): Check errno and exit(0) if ENOSYS.
9032 2007-01-11  Jakub Jelinek  <jakub@redhat.com>
9034         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix handling of multi-byte
9035         thousands separators.
9036         * stdlib/Makefile: Add rules to build and run tst-strtod4.
9037         * stdlib/tst-strtod4.c: New test.
9039         [BZ #3855]
9040         * stdlib/strtod_l.c (____STRTOF_INTERNAL): 0x. not followed by
9041         hexadecimal digit should accept just the initial 0.
9042         * stdlib/tst-strtod2.c (tests): New variable.
9043         (do_test): Run several tests rather than just one.
9045 2007-01-11  Jakub Jelinek  <jakub@redhat.com>
9047         * sysdeps/i386/soft-fp/sfp-machine.h: Remove.
9048         * sysdeps/x86_64/soft-fp/sfp-machine.h: Likewise.
9050 2007-01-10  Ulrich Drepper  <drepper@redhat.com>
9052         * io/fts.c: Make sure fts_cur is always valid after return from
9053         fts_read.
9054         Patch by Miloslav Trmac <mitr@redhat.com>.
9056 2006-10-27  Richard Sandiford  <richard@codesourcery.com>
9058         * elf/elf.h (R_MIPS_GLOB_DAT): Define.
9059         (R_MIPS_NUM): Bump by 1.
9061 2007-01-03  Jakub Jelinek  <jakub@redhat.com>
9063         * posix/execvp.c: Include alloca.h.
9064         (allocate_scripts_argv): Renamed to...
9065         (scripts_argv): ... this.  Don't allocate buffer here nor count
9066         arguments.
9067         (execvp): Use alloca if possible.
9068         * posix/Makefile: Add rules to build and run tst-vfork3 test.
9069         * posix/tst-vfork3.c: New test.
9071 2007-01-03  Ulrich Drepper  <drepper@redhat.com>
9073         * string/Makefile (tst-strxfrm2-ENV): Define.
9074         * stdlib/Makefile (tst-strtod3-ENV): Define.
9076 2007-01-02  Ulrich Drepper  <drepper@redhat.com>
9078         * posix/getconf.c: Update copyright year.
9079         * nss/getent.c: Likewise.
9080         * iconv/iconvconfig.c: Likewise.
9081         * iconv/iconv_prog.c: Likewise.
9082         * elf/ldconfig.c: Likewise.
9083         * catgets/gencat.c: Likewise.
9084         * csu/version.c: Likewise.
9085         * elf/ldd.bash.in: Likewise.
9086         * elf/sprof.c (print_version): Likewise.
9087         * locale/programs/locale.c: Likewise.
9088         * locale/programs/localedef.c: Likewise.
9089         * nscd/nscd.c (print_version): Likewise.
9090         * debug/xtrace.sh: Likewise.
9091         * malloc/memusage.sh: Likewise.
9092         * malloc/mtrace.pl: Likewise.
9093         * debug/catchsegv.sh: Likewise.
9095 2006-12-24  Ulrich Drepper  <drepper@redhat.com>
9097         * malloc/malloc.c (sYSMALLOc): Remove some unnecessary alignment
9098         attempts.
9100 2006-12-23  Ulrich Drepper  <drepper@redhat.com>
9102         * posix/wordexp.c: Remove some unnecessary tests.
9104 2006-12-22  Gavin Romig-Koch  <gavin@redhat.com>
9106         * nis/nss_compat/compat-grp.c (internal_getgrgid_r): Don't
9107         blacklist the group till after we look it up.
9109 2006-12-21  Ulrich Drepper  <drepper@redhat.com>
9111         * include/atomic.h (atomic_forced_read): New macro.
9113 2006-12-20  SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
9115         * sysdeps/unix/sysv/linux/sh/bits/shm.h: New file.
9117 2006-12-19  Jakub Jelinek  <jakub@redhat.com>
9119         * nss/getXXbyYY_r.c: Include atomic.h.
9120         (INTERNAL (REENTRANT_NAME)): Write startp after start_fct,
9121         add atomic_write_barrier () in between.
9123         * stdlib/Makefile (tests): Add tst-makecontext.
9124         * stdlib/tst-makecontext.c: New test.
9126         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
9127         (__makecontext): Don't realign uc_mcontext.uc_regs.
9129 2006-11-28  Jakub Jelinek  <jakub@redhat.com>
9131         * elf/dl-support.c: Include dl-procinfo.h.
9132         * sysdeps/powerpc/dl-procinfo.h (PPC_PLATFORM_POWER4,
9133         PPC_PLATFORM_PPC970, PPC_PLATFORM_POWER5, PPC_PLATFORM_POWER5_PLUS,
9134         PPC_PLATFORM_POWER6, PPC_PLATFORM_CELL_BE, PPC_PLATFORM_POWER6X):
9135         Define.
9136         (_dl_string_platform): Use PPC_PLATFORM_* macros instead of
9137         hardcoded constants.
9138         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platform): Use
9139         PPC_PLATFORM_* macros for array designators.
9141 2006-11-11  Steven Munroe  <sjmunroe@us.ibm.com>
9143         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 3 new cap
9144         names to the beginning.
9145         (_dl_powerpc_platforms): Add "power6x".
9146         * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
9147         (HWCAP_IMPORTANT): Add PPC_FEATURE_HAS_DFP.
9148         (_DL_PLATFORMS_COUNT): Increase.
9149         (_dl_string_platform): Handle power6x case.
9150         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_PA6T, PPC_FEATURE_HAS_DFP,
9151         PPC_FEATURE_POWER6_EXT): Define.
9152         (PPC_FEATURE_POWER5, PPC_FEATURE_POWER5_PLUS): Correct Comment.
9154 2006-12-18  Jakub Jelinek  <jakub@redhat.com>
9156         [BZ #3747]
9157         * stdlib/jrand48_r.c (__jrand48_r): Make sure result is in the
9158         [-2^31 .. 2^31) range.
9159         * stdlib/tst-rand48.c (main): Fix expected values for 64-bit
9160         targets.
9161         * stdlib/tst-rand48-2.c: New test.
9162         * stdlib/Makefile (tests): Add tst-rand48-2.
9164 2006-12-14  Jakub Jelinek  <jakub@redhat.com>
9166         * misc/tst-pselect.c (do_test): Fix sigblock argument.
9168 2006-12-14  Ulrich Drepper  <drepper@redhat.com>
9170         * misc/tst-pselect.c (do_test): Make sure the helper process is
9171         terminating when the test is aborted.
9173 2006-12-13  Ulrich Drepper  <drepper@redhat.com>
9175         * sysdeps/unix/sysv/linux/bits/statvfs.h: Define ST_RELATIME.
9176         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
9177         Handle relatime mount option.
9179         [BZ #2337]
9180         * libio/Makefile (tests): Add tst-setvbuf1.
9181         * libio/tst-setvbuf1.c: New file.
9183 2006-12-08  Jakub Jelinek  <jakub@redhat.com>
9185         [BZ #2337]
9186         * libio/genops.c (__uflow): Fix a typo.
9187         * libio/wfiledoalloc.c (_IO_wfile_doallocate): Don't stat
9188         nor set _IO_LINE_BUF bit here.  Size the wide buffer based on
9189         the narrow buffer size.
9191 2006-11-24  Jakub Jelinek  <jakub@redhat.com>
9193         [BZ #2337]
9194         * libio/libio.h (_IO_FLAGS2_USER_WBUF): Define.
9195         * libio/wgenops.c (_IO_wsetb, _IO_wdefault_finish): Test and set
9196         _IO_FLAGS2_USER_WBUF bit in _flags2 instead of _IO_USER_BUF bit
9197         in _flags.
9198         * libio/wstrops.c (_IO_wstr_overflow, enlarge_userbuf,
9199         _IO_wstr_finish): Likewise.
9200         * libio/wmemstream.c (open_wmemstream): Likewise.
9201         * libio/fileops.c (_IO_new_file_close_it): Call _IO_set[bgp]
9202         even for wide streams.
9204 2006-12-13  Jakub Jelinek  <jakub@redhat.com>
9206         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Include
9207         kernel-features.h.
9209 2006-12-11  Ulrich Drepper  <drepper@redhat.com>
9211         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Parse thousand
9212         separators also if no non-zero digits found.
9213         * stdlib/Makefile (tests): Add tst-strtod3.
9215 2006-12-09  Ulrich Drepper  <drepper@redhat.com>
9217         [BZ #3632]
9218         * include/features.h: Fix comment about default value for
9219         _POSIX_C_SOURCE.
9221         [BZ #3664]
9222         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix test to recognize
9223         empty parsed strings.
9224         * stdlib/Makefile (tests): Add tst-strtod2.
9225         * stdlib/tst-strtod2.c: New file.
9227         [BZ #3673]
9228         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix exp_limit
9229         computation.
9230         * stdlib/Makefile (tests): Add tst-atof2.
9231         * stdlib/tst-atof2.c: New file.
9233         [BZ #3674]
9234         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Adjust exponent value
9235         correctly if removing trailing zero of hex-float.
9236         * stdlib/Makefile (tests): Add tst-atof1.
9237         * stdlib/tst-atof1.c: New file.
9239 2006-12-09  Jakub Jelinek  <jakub@redhat.com>
9241         * misc/mntent_r.c (__hasmntopt): Check p[optlen] even when p == rest.
9242         Start searching for next comma at p rather than rest.
9243         * misc/Makefile (tests): Add tst-mntent2.
9244         * misc/tst-mntent2.c: New test.
9246         * misc/getusershell.c (initshells): Check for integer overflows.
9247         Make strings buffer one bigger as fgets always succeeds when second
9248         argument is 1.  Don't use calloc for shells array.  Disallow
9249         / as shell.
9251 2006-12-08  Ulrich Drepper  <drepper@redhat.com>
9253         * malloc/memusage.c: Handle realloc with new size of zero and
9254         non-NULL pointer correctly.
9255         (me): Really write first record twice.
9256         (struct entry): Make format bi-arch safe.
9257         (dest): Write out more realloc statistics.
9258         * malloc/memusagestat.c (struct entry): Make format bi-arch safe.
9260 2006-12-05  Jakub Jelinek  <jakub@redhat.com>
9262         * nis/nis_subr.c (nis_getnames): Revert last change.
9264 2006-12-04  Jakub Jelinek  <jakub@redhat.com>
9266         * sysdeps/unix/sysv/linux/ttyname.c: Include termios.h.
9267         (ttyname): Use tcgetattr instead of isatty, don't set errno to ENOTTY.
9268         * sysdeps/unix/sysv/linux/ttyname_r.c: Include termios.h.
9269         (__ttyname_r): Use tcgetattr instead of isatty, don't set errno to
9270         ENOTTY.
9271         * io/Makefile: Add rules to build and run tst-ttyname_r test.
9272         * io/tst-ttyname_r.c: New test.
9274 2006-12-03  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
9276         * sysdeps/unix/sysv/linux/sh/sys/io.h: Removed.
9278 2006-11-30  H.J. Lu  <hongjiu.lu@intel.com>
9280         * sysdeps/i386/i686/memcmp.S: Use jump table as the base of
9281         jump table entries.
9283 2006-11-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
9285         * sysdeps/unix/sysv/linux/i386/clone.S: Provide CFI for the outermost
9286         `clone' function to ensure proper unwinding stop of gdb.
9287         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
9289 2006-12-01  Ulrich Drepper  <drepper@redhat.com>
9291         * nscd/nscd.init: Remove obsolete and commented-out -S option
9292         handling.
9294 2006-11-23  Jakub Jelinek  <jakub@redhat.com>
9296         [BZ #3514]
9297         * manual/string.texi (strncmp): Fix pastos from wcscmp description.
9299         [BZ #3515]
9300         * manual/string.texi (strtok): Remove duplicate paragraph.
9302 2006-12-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
9304         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Fix compatibility with
9305         libgcc not supporting `rflags' unwinding (register # >= 17).
9307 2006-11-30  Jakub Jelinek  <jakub@redhat.com>
9309         * sunrpc/svc_run.c (svc_run): Set my_pollfd to new_pollfd if realloc
9310         succeeded.
9312 2006-11-29  Daniel Jacobowitz  <dan@codesourcery.com>
9313             Jakub Jelinek  <jakub@redhat.com>
9314             Jan Kratochvil  <jan.kratochvil@redhat.com>
9316         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (restore_rt): Add correct
9317         unwind information.
9318         * sysdeps/unix/sysv/linux/x86_64/Makefile: Provide symbols for
9319         'restore_rt' even in the 'signal' directory.
9320         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.sym: Extend the regs list.
9322 2006-11-27  Jakub Jelinek  <jakub@redhat.com>
9324         [BZ #3559]
9325         * sunrpc/svc_run.c (svc_run): Fail instead of segfaulting if
9326         malloc crashed.  Don't allocate memory unnecessarily in each
9327         loop.
9329 2006-10-21  Jakub Jelinek  <jakub@redhat.com>
9331         * resolv/mapv4v6addr.h (map_v4v6_address): Fix last change.
9333 2006-11-20  Ulrich Drepper  <drepper@redhat.com>
9335         * resolv/mapv4v6addr.h (map_v4v6_address): Optimize a bit.
9337 2006-11-18  Bruno Haible  <bruno@clisp.org>
9339         * sysdeps/unix/sysv/linux/i386/getgroups.c (__getgroups): Invoke
9340         __sysconf only after having tried to call getgroups32.
9342 2006-11-19  Ulrich Drepper  <drepper@redhat.com>
9344         * nss/nss_files/files-hosts.c (LINE_PARSER): Support IPv6-style
9345         addresses for IPv4 queries if they can be mapped.
9347 2006-11-16  Jakub Jelinek  <jakub@redhat.com>
9349         * sysdeps/x86_64/fpu/s_copysignf.S (__copysignf): Switch to .text.
9350         * sysdeps/x86_64/fpu/s_copysign.S (__copysign): Likewise.
9351         (signmask): Add .size directive.
9352         (othermask): Add .type directive.
9354 2006-11-14  Ulrich Drepper  <drepper@redhat.com>
9356         * po/nl.po: Update from translation team.
9358         * timezone/zdump.c: Redo fix for BZ #3137.
9360 2006-11-14  Jakub Jelinek  <jakub@redhat.com>
9362         * nss/nss_files/files-alias.c (get_next_alias): Set line back
9363         to first_unused after parsing :include: file.
9365 2006-11-10  Ulrich Drepper  <drepper@redhat.com>
9367         * timezone/africa: Update from tzdata2006o.
9368         * timezone/antarctica: Likewise.
9369         * timezone/asia: Likewise.
9370         * timezone/australasia: Likewise.
9371         * timezone/backward: Likewise.
9372         * timezone/europe: Likewise.
9373         * timezone/iso3166.tab: Likewise.
9374         * timezone/northamerica: Likewise.
9375         * timezone/southamerica: Likewise.
9376         * timezone/zone.tab: Likewise.
9378         * time/tzfile.c (__tzfile_read): Extend to handle new file format
9379         on machines with 64-bit time_t.
9381         * timezone/checktab.awk: Update from tzcode2006o.
9382         * timezone/ialloc.c: Likewise.
9383         * timezone/private.h: Likewise.
9384         * timezone/scheck.c: Likewise.
9385         * timezone/tzfile.h: Likewise.
9386         * timezone/tzselect.ksh: Likewise.
9387         * timezone/zdump.c: Likewise.
9388         * timezone/zic.c: Likewise.
9390         [BZ #3483]
9391         * elf/ldconfig.c (main): Call setlocale and textdomain.
9392         Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
9394         [BZ #3480]
9395         * manual/argp.texi: Fix typos.
9396         * manual/charset.texi: Likewise.
9397         * manual/errno.texi: Likewise.
9398         * manual/filesys.texi: Likewise.
9399         * manual/lang.texi: Likewise.
9400         * manual/maint.texi: Likewise.
9401         * manual/memory.texi: Likewise.
9402         * manual/message.texi: Likewise.
9403         * manual/resource.texi: Likewise.
9404         * manual/search.texi: Likewise.
9405         * manual/signal.texi: Likewise.
9406         * manual/startup.texi: Likewise.
9407         * manual/stdio.texi: Likewise.
9408         * manual/sysinfo.texi: Likewise.
9409         * manual/syslog.texi: Likewise.
9410         * manual/time.texi: Likewise.
9411         Patch by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9413         [BZ #3465]
9414         * sunrpc/clnt_raw.c: Minimal message improvements.
9415         * sunrpc/pm_getmaps.c: Likewise.
9416         * nis/nss_nisplus/nisplus-publickey.c: Likewise.
9417         * nis/nis_print_group_entry.c: Likewise.
9418         * locale/programs/repertoire.c: Likewise.
9419         * locale/programs/charmap.c: Likewise.
9420         * malloc/memusage.sh: Likewise.
9421         * elf/dl-deps.c: Likewise.
9422         * locale/programs/ld-collate.c: Likewise.
9423         * libio/vswprintf.c: Likewise.
9424         * malloc/memusagestat.c: Likewise.
9425         * sunrpc/auth_unix.c: Likewise.
9426         * sunrpc/rpc_main.c: Likewise.
9427         * nscd/cache.c: Likewise.
9428         * locale/programs/repertoire.c: Unify output messages.
9429         * locale/programs/charmap.c: Likewise.
9430         * locale/programs/ld-ctype.c: Likewise.
9431         * locale/programs/ld-monetary.c: Likewise.
9432         * locale/programs/ld-numeric.c: Likewise.
9433         * locale/programs/ld-time.c: Likewise.
9434         * elf/ldconfig.c: Likewise.
9435         * nscd/selinux.c: Likewise.
9436         * elf/cache.c: Likewise.
9437         Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
9439         [BZ #3451]
9440         * sysdeps/i386/fpu/bits/mathinline.h (floor): Make rounding mode
9441         change atomic.
9442         (ceil): Likewise.
9444 2006-11-10  Jakub Jelinek  <jakub@redhat.com>
9446         * string/strxfrm_l.c (STRXFRM): Fix trailing \1 optimization
9447         if N is one bigger than return value.
9448         * string/tst-strxfrm2.c (do_test): Also test strxfrm with l1 + 1
9449         and l1 last arguments, if buf is defined, verify the return value
9450         equals to strlen (buf) and verify no byte beyond passed length
9451         is modified.
9453 2006-11-10  Ulrich Drepper  <drepper@redhat.com>
9455         * po/sv.po: Update from translation team.
9457 2006-11-09  Ulrich Drepper  <drepper@redhat.com>
9459         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word): Add
9460         noinline attribute.
9462 2006-11-10  Jakub Jelinek  <jakub@redhat.com>
9464         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Add
9465         noinline attribute.
9467         * sysdeps/gnu/siglist.c (__old_sys_siglist, __old_sys_sigabbrev):
9468         Use __new_sys_siglist instead of _sys_siglist_internal as
9469         second macro argument.
9470         (_old_sys_siglist): Use declare_symbol_alias macro instead of
9471         strong_alias.
9473 2006-11-09  Ulrich Drepper  <drepper@redhat.com>
9475         [BZ #3493]
9476         * posix/unistd.h (sysconf): Remove const attribute.
9478         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix test for
9479         temporary or deprecated addresses.
9480         Patch by Sridhar Samudrala <sri@us.ibm.com>.
9482         * string/Makefile (tests): Add tst-strxfrm2.
9483         * string/tst-strxfrm2.c: New file.
9485 2006-10-09  Jakub Jelinek  <jakub@redhat.com>
9487         * elf/dl-debug.c (_dl_debug_initialize): Check r->r_map for 0
9488         rather than r->r_brk.
9490 2006-11-08  Jakub Jelinek  <jakub@redhat.com>
9492         * string/strxfrm_l.c (STRXFRM): Do the trailing \1 removal
9493         optimization even if needed > n.
9495         * elf/dl-load.c (decompose_rpath): Return bool rather than void.
9496         If l->l_name is on inhibit_rpath list, set sps->dirs to -1 and
9497         return false, otherwise return true.
9498         (cache_rpath): Return decompose_rpath return value.
9500 2006-11-07  Jakub Jelinek  <jakub@redhat.com>
9502         * include/libc-symbols.h (declare_symbol): Rename to...
9503         (declare_symbol_alias): ... this.  Add ORIGINAL argument, imply
9504         strong_alias (ORIGINAL, SYMBOL) in asm to make sure it preceedes
9505         .size directive.
9506         * sysdeps/gnu/errlist-compat.awk: Adjust for declare_symbol_alias
9507         changes.
9508         * sysdeps/gnu/siglist.c: Likewise.
9510 2006-11-03  Steven Munroe  <sjmunroe@us.ibm.com>
9512         * sysdeps/powerpc/fpu/bits/mathinline.h
9513         [__LIBC_INTERNAL_MATH_INLINES]: Moved to ...
9514         * sysdeps/powerpc/fpu/math_private.h: ...here.  New file.
9516 2006-11-05  Ulrich Drepper  <drepper@redhat.com>
9518         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
9519         Update handling of cache descriptor 0x49 for new models.
9520         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word):
9521         Likewise.
9523 2006-11-02  Jakub Jelinek  <jakub@redhat.com>
9525         * malloc/memusage.c (dest): Reset not_me back to false after
9526         printing statistics.
9528 2006-11-02  Ulrich Drepper  <drepper@redhat.com>
9530         * configure.in: Work around ld --help change and avoid -z relro
9531         test completely if the architecture doesn't care about security.
9533 2006-11-01  Ulrich Drepper  <drepper@redhat.com>
9535         * po/sv.po: Update from translation team.
9537 2006-10-31  Ulrich Drepper  <drepper@redhat.com>
9539         * stdlib/atexit.c (atexit): Don't mark as hidden when used to
9540         generate compatibility version.
9542 2006-10-29  Ulrich Drepper  <drepper@redhat.com>
9544         * configure.in: Relax -z relro requirement a bit.
9546         * po/sv.po: Update from translation team.
9548 2006-10-29  Jakub Jelinek  <jakub@redhat.com>
9550         * elf/dl-sym.c (do_sym): Use RTLD_SINGLE_THREAD_P.
9551         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
9552         * elf/dl-close.c (_dl_close_worker): Likewise.
9553         * elf/dl-open.c (_dl_open_worker): Likewise.
9554         * sysdeps/generic/sysdep-cancel.h (RTLD_SINGLE_THREAD_P): Define.
9556 2006-10-27  Ulrich Drepper  <drepper@redhat.com>
9558         * configure.in: Require assembler support for visibility, compiler
9559         support for visibility and aliases, linker support for various -z
9560         options.
9561         * Makeconfig: Remove conditional code which now is unnecessary.
9562         * config.h.in: Likewise.
9563         * config.make.in: Likewise.
9564         * dlfcn/Makefile: Likewise.
9565         * elf/Makefile: Likewise.
9566         * elf/dl-load.c: Likewise.
9567         * elf/rtld.c: Likewise.
9568         * include/libc-symbols.h: Likewise.
9569         * include/stdio.h: Likewise.
9570         * io/Makefile: Likewise.
9571         * io/fstat.c: Likewise.
9572         * io/fstat64.c: Likewise.
9573         * io/fstatat.c: Likewise.
9574         * io/fstatat64.c: Likewise.
9575         * io/lstat.c: Likewise.
9576         * io/lstat64.c: Likewise.
9577         * io/mknod.c: Likewise.
9578         * io/mknodat.c: Likewise.
9579         * io/stat.c: Likewise.
9580         * io/stat64.c: Likewise.
9581         * libio/stdio.c: Likewise.
9582         * nscd/Makefile: Likewise.
9583         * stdlib/Makefile: Likewise.
9584         * stdlib/atexit.c: Likewise.
9585         * sysdeps/generic/ldsodefs.h: Likewise.
9586         * sysdeps/i386/dl-machine.h: Likewise.
9587         * sysdeps/i386/sysdep.h: Likewise.
9588         * sysdeps/i386/i686/memcmp.S: Likewise.
9589         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
9590         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
9591         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
9593         * Makerules: USE_TLS support is now default.
9594         * tls.make.c: Likewise.
9595         * csu/Versions: Likewise.
9596         * csu/libc-start.c: Likewise.
9597         * csu/libc-tls.c: Likewise.
9598         * csu/version.c: Likewise.
9599         * dlfcn/dlinfo.c: Likewise.
9600         * elf/dl-addr.c: Likewise.
9601         * elf/dl-cache.c: Likewise.
9602         * elf/dl-close.c: Likewise.
9603         * elf/dl-iteratephdr.c: Likewise.
9604         * elf/dl-load.c: Likewise.
9605         * elf/dl-lookup.c: Likewise.
9606         * elf/dl-object.c: Likewise.
9607         * elf/dl-open.c: Likewise.
9608         * elf/dl-reloc.c: Likewise.
9609         * elf/dl-support.c: Likewise.
9610         * elf/dl-sym.c: Likewise.
9611         * elf/dl-sysdep.c: Likewise.
9612         * elf/dl-tls.c: Likewise.
9613         * elf/ldconfig.c: Likewise.
9614         * elf/rtld.c: Likewise.
9615         * elf/tst-tls-dlinfo.c: Likewise.
9616         * elf/tst-tls1.c: Likewise.
9617         * elf/tst-tls10.h: Likewise.
9618         * elf/tst-tls14.c: Likewise.
9619         * elf/tst-tls2.c: Likewise.
9620         * elf/tst-tls3.c: Likewise.
9621         * elf/tst-tls4.c: Likewise.
9622         * elf/tst-tls5.c: Likewise.
9623         * elf/tst-tls6.c: Likewise.
9624         * elf/tst-tls7.c: Likewise.
9625         * elf/tst-tls8.c: Likewise.
9626         * elf/tst-tls9.c: Likewise.
9627         * elf/tst-tlsmod1.c: Likewise.
9628         * elf/tst-tlsmod13.c: Likewise.
9629         * elf/tst-tlsmod13a.c: Likewise.
9630         * elf/tst-tlsmod14a.c: Likewise.
9631         * elf/tst-tlsmod2.c: Likewise.
9632         * elf/tst-tlsmod3.c: Likewise.
9633         * elf/tst-tlsmod4.c: Likewise.
9634         * elf/tst-tlsmod5.c: Likewise.
9635         * elf/tst-tlsmod6.c: Likewise.
9636         * include/errno.h: Likewise.
9637         * include/link.h: Likewise.
9638         * include/tls.h: Likewise.
9639         * locale/global-locale.c: Likewise.
9640         * locale/localeinfo.h: Likewise.
9641         * malloc/arena.c: Likewise.
9642         * malloc/hooks.c: Likewise.
9643         * malloc/malloc.c: Likewise.
9644         * resolv/Versions: Likewise.
9645         * sysdeps/alpha/dl-machine.h: Likewise.
9646         * sysdeps/alpha/libc-tls.c: Likewise.
9647         * sysdeps/generic/ldsodefs.h: Likewise.
9648         * sysdeps/generic/tls.h: Likewise.
9649         * sysdeps/i386/dl-machine.h: Likewise.
9650         * sysdeps/ia64/dl-machine.h: Likewise.
9651         * sysdeps/ia64/libc-tls.c: Likewise.
9652         * sysdeps/mach/hurd/fork.c: Likewise.
9653         * sysdeps/mach/hurd/i386/tls.h: Likewise.
9654         * sysdeps/powerpc/powerpc32/dl-machine.c: Likwise.
9655         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
9656         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
9657         * sysdeps/s390/libc-tls.c: Likewise.
9658         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
9659         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
9660         * sysdeps/sh/dl-machine.h: Likewise.
9661         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
9662         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
9663         * sysdeps/x86_64/dl-machine.h: Likewise.
9665         * elf/dl-close.c (_dl_close_worker): Renamed from _dl_close and
9666         split out locking and parameter checking.
9667         (_dl_close): Call _dl_close_worker after locking and checking.
9668         * elf/dl-open.c (_dl_open): Call _dl_close_worker instead of
9669         _dl_close.
9670         * elf/Makefile: Add rules to build and run tst-thrlock.
9671         * elf/tst-thrlock.c:  New file.
9673         [BZ #3426]
9674         * stdlib/stdlib.h: Adjust comment for canonicalize_file_name to
9675         reality.
9677         [BZ #3429]
9678         * elf/dl-open.c (dl_open_worker): Keep holding dl_load_lock until
9679         we are sure we do not need it anymore for _dl_close.  Also move
9680         the asserts inside the lock region.
9681         Patch mostly by Suzuki <suzuki@in.ibm.com>.
9683 2006-10-27  Jakub Jelinek  <jakub@redhat.com>
9685         * elf/dl-lookup.c (_dl_debug_bindings): Remove unused symbol_scope
9686         argument.
9687         (_dl_lookup_symbol_x): Adjust caller.
9689         * sysdeps/generic/ldsodefs.h (struct link_namespaces): Remove
9690         _ns_global_scope.
9691         * elf/rtld.c (dl_main): Don't initialize _ns_global_scope.
9693         * elf/dl-libc.c: Revert l_scope name changes.
9694         * elf/dl-load.c: Likewise.
9695         * elf/dl-object.c: Likewise.
9696         * elf/rtld.c: Likewise.
9697         * elf/dl-close.c (_dl_close): Likewise.
9698         * elf/dl-open.c (dl_open_worker): Likewise.  If not SINGLE_THREAD_P,
9699         always use __rtld_mrlock_{change,done}.  Always free old scope list
9700         here if not l_scope_mem.
9701         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Revert l_scope name
9702         change.  Never free scope list here.  Just __rtld_mrlock_lock before
9703         the lookup and __rtld_mrlock_unlock it after the lookup.
9704         * elf/dl-sym.c: Likewise.
9705         * include/link.h (struct r_scoperec): Remove.
9706         (struct link_map): Replace l_scoperec with l_scope, l_scoperec_mem
9707         with l_scope_mem and l_scoperec_lock with l_scope_lock.
9709 2006-10-25  Ulrich Drepper  <drepper@redhat.com>
9711         * sysdeps/gnu/netinet/tcp.h: Define TCP_CONGESTION.
9713 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
9715         * configure.in: Disable building profile libraries by default.
9717 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
9719         * sunrpc/xdr_mem.c (xdrmem_setpos): Don't compare addresses
9720         as signed longs, check for x_base + pos overflow.
9721         * sunrpc/Makefile (tests): Add tst-xdrmem2.
9722         * sunrpc/tst-xdrmem2.c: New test.
9724 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
9726         * elf/dl-lookup.c (_dl_lookup_symbol_x): Add warning to
9727         _dl_lookup_symbol_x code.
9729 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
9731         * elf/dl-runtime.c: Include sysdep-cancel.h.
9732         (_dl_fixup, _dl_profile_fixup): Use __rtld_mrlock_* and
9733         scoperec->nusers only if !SINGLE_THREAD_P.  Use atomic_*
9734         instead of catomic_* macros.
9735         * elf/dl-sym.c: Include sysdep-cancel.h.
9736         (do_sym): Use __rtld_mrlock_* and scoperec->nusers only
9737         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
9738         * elf/dl-close.c: Include sysdep-cancel.h.
9739         (_dl_close): Use __rtld_mrlock_* and scoperec->nusers only
9740         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
9741         * elf/dl-open.c: Include sysdep-cancel.h.
9742         (dl_open_worker): Use __rtld_mrlock_* and scoperec->nusers only
9743         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
9745 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
9747         [BZ #3313]
9748         * malloc/malloc.c (malloc_consolidate): Set maxfb to address of last
9749         fastbin rather than end of fastbin array.
9751 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
9753         * sysdeps/i386/i486/bits/atomic.h (catomic_decrement): Use correct
9754         body macro.
9755         * sysdeps/x86_64/bits/atomic.h
9756         (__arch_c_compare_and_exchange_val_64_acq): Add missing casts.
9757         (catomic_decrement): Use correct body macro.
9759 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
9761         * include/atomic.h: Add a unique prefix to all local variables
9762         in macros.
9763         * csu/tst-atomic.c (do_test): Test also catomic_* macros.
9765 2006-10-16  Ulrich Drepper  <drepper@redhat.com>
9767         [BZ #3369]
9768         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Fix typos in rules 4
9769         and 7.
9771 2006-10-14  Ulrich Drepper  <drepper@redhat.com>
9773         * resolv/arpa/nameser.h: Document that ns_t_a6 is deprecated.
9775 2006-10-13  Ulrich Drepper  <drepper@redhat.com>
9777         [BZ #3313]
9778         * malloc/malloc.c (malloc_consolidate): Don't use get_fast_max to
9779         determine highest fast bin to consolidate, always look into all of
9780         them.
9781         (do_check_malloc_state): Only require for empty bins for large
9782         sizes in main arena.
9784         * libio/stdio.h: Add more __wur attributes.
9786         * elf/dl-minimal.c (realloc): Optimize last patch.
9788 2006-10-12  Richard Sandiford  <richard@codesourcery.com>
9790         [BZ #3352]
9791         * elf/dl-minimal.c (realloc): Let malloc() return a new pointer,
9792         and use memcpy() if it does.
9794 2006-11-12  Andreas Jaeger  <aj@suse.de>
9796         [BZ #2510]
9797         * manual/search.texi (Hash Search Function): Clarify.
9798         (Array Search Function): Clarify.
9800 2006-11-12  Joseph Myers  <joseph@codesourcery.com>
9802         [BZ #2830]
9803         * math/atest-exp.c (main): Cast hex value to mp_limb_t before
9804         shifting.
9805         * math/atest-exp2.c (read_mpn_hex): Likewise.
9806         * math/atest-sincos.c (main): Likewise.
9808 2006-10-11  Ulrich Drepper  <drepper@redhat.com>
9810         * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_pwait.
9811         * sysdeps/unix/sysv/linux/sys/epoll.h: Declare epoll_pwait.
9812         * sysdeps/unix/sysv/linux/Versions (libc): Add epoll_pwait for
9813         version GLIBC_2.6.
9814         * Versions.def: Add GLIBC_2.6 for libc.
9816         * sysdeps/unix/sysv/linux/i386/sysdep.h (DOARGS_6): Fix offset.
9818         * sysdeps/i386/i486/bits/atomic.h: Add catomic_* support.
9820 2006-10-11  Jakub Jelinek  <jakub@redhat.com>
9822         * malloc/malloc.c (_int_malloc): Remove unused any_larger variable.
9824         * nis/nis_defaults.c (__nis_default_access): Don't call getenv twice.
9826         * nis/nis_subr.c (nis_getnames): Use __secure_getenv instead of getenv.
9827         * sysdeps/generic/unsecvars.h: Add NIS_PATH.
9829 2006-10-11  Ulrich Drepper  <drepper@redhat.com>
9831         * include/atomic.c: Define catomic_* operations.
9832         * sysdeps/x86_64/bits/atomic.h: Likewise.  Fix a few minor problems.
9833         * stdlib/cxa_finalize.c: Use catomic_* operations instead of atomic_*.
9834         * malloc/memusage.c: Likewise.
9835         * gmon/mcount.c: Likewise.
9836         * elf/dl-close.c: Likewise.
9837         * elf/dl-open.c: Likewise.
9838         * elf/dl-profile.c: Likewise.
9839         * elf/dl-sym.c: Likewise.
9840         * elf/dl-runtime.c: Likewise.
9841         * elf/dl-fptr.c: Likewise.
9842         * resolv/res_libc.c: Likewise.
9844 2006-10-10  Ulrich Drepper  <drepper@redhat.com>
9846         * nis/nis_subr.c (nis_getnames): Add trailing dot to NIS_PATH
9847         components which lack them.
9849         * nis/nis_subr.c (nis_getnames): Make sure that we always return
9850         at least one entry consisting of the parameter concatenated with
9851         the domain.
9853 2006-10-10  Roland McGrath  <roland@frob.com>
9855         * sysdeps/mach/hurd/utimes.c: Use a union to avoid an improper cast.
9856         * sysdeps/mach/hurd/futimes.c: Likewise.
9857         * sysdeps/mach/hurd/lutimes.c: Likewise.
9859 2006-10-09  Ulrich Drepper  <drepper@redhat.com>
9860             Jakub Jelinek  <jakub@redhat.com>
9862         Implement reference counting of scope records.
9863         * elf/dl-close.c (_dl_close): Remove all scopes from removed objects
9864         from the list in objects which remain.  Always allocate new scope
9865         record.
9866         * elf/dl-open.c (dl_open_worker): When growing array for scopes,
9867         don't resize, allocate a new one.
9868         * elf/dl-runtime.c: Update reference counters before using a scope
9869         array.
9870         * elf/dl-sym.c: Likewise.
9871         * elf/dl-libc.c: Adjust for l_scope name change.
9872         * elf/dl-load.c: Likewise.
9873         * elf/dl-object.c: Likewise.
9874         * elf/rtld.c: Likewise.
9875         * include/link.h: Include <rtld-lowlevel.h>.  Define struct
9876         r_scoperec.  Replace r_scope with pointer to r_scoperec structure.
9877         Add l_scoperec_lock.
9878         * sysdeps/generic/ldsodefs.h: Include <rtld-lowlevel.h>.
9879         * sysdeps/generic/rtld-lowlevel.h: New file.
9881         * include/atomic.h: Rename atomic_and to atomic_and_val and
9882         atomic_or to atomic_or_val.  Define new macros atomic_and and
9883         atomic_or which do not return values.
9884         * sysdeps/x86_64/bits/atomic.h: Define atomic_and and atomic_or.
9885         Various cleanups.
9886         * sysdeps/i386/i486/bits/atomic.h: Likewise.
9888         * po/sv.po: Update from translation team.
9890 2006-10-07  Ulrich Drepper  <drepper@redhat.com>
9892         * Versions.def: Add GLIBC_2.6 to libpthread.
9894         * include/shlib-compat.h (SHLIB_COMPAT): Expand parameters before use.
9895         (versioned_symbol): Likewise.
9896         (compat_symbol): Likewise.
9898         * po/tr.po: Update from translation team.
9900 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
9902         * nis/Banner: Removed.  It's been integral part forever and the
9903         author info is incomplete anyway.
9904         * libio/Banner: Likewise.
9906         * nis/nis_table.c (nis_list): If __follow_path fails in the new
9907         code, make sure the nis_freeresult call doesn't crash and that the
9908         result is reported correctly.
9910 2006-09-27  Jakub Jelinek  <jakub@redhat.com>
9912         * nis/nis_table.c (nis_list): Handle FOLLOW_PATH | ALL_RESULTS
9913         when callback is NULL.
9915         * nis/Versions (libnss_nisplus): Add
9916         _nss_nisplus_initgroups_dyn@@GLIBC_PRIVATE.
9917         * nis/Makefile (libnss_nisplus-routines): Add nisplus-initgroups.
9918         * nis/nss_nisplus/nisplus-grp.c (tablename_val, tablename_len,
9919         _nss_create_tablename): Rename to...
9920         (grp_tablename_val, grp_tablename_len, _nss_grp_create_tablename):
9921         ... these.  No longer static.
9922         (internal_setgrent): Adjust users.
9923         (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
9924         Don't use locking around _nss_grp_create_tablename call.
9925         * nis/nss_nisplus/nisplus-initgroups.c: New file.
9927 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
9929         * version.h (VERSION): Bump to 2.5.90 for new development tree.
9931 2006-10-06  Andreas Jaeger  <aj@suse.de>
9933         * include/features.h (__GLIBC_MINOR__): It's glibc 2.5 now.
9935 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
9937         * po/pl.po: Update from translation team.
9939         * nscd/nscd.c (main): Fix typo in message.
9940         Patch by Jakub Bogsz <qboosh@pld-linux.org>.
9942 2006-10-02  Jakub Jelinek  <jakub@redhat.com>
9944         [BZ #3291]
9945         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Include
9946         errno.h, signal.h, unistd.h and sysdep-cancel.h.
9947         (__sigprocmask): Define.
9949 2006-10-02  Ulrich Drepper  <drepper@redhat.com>
9951         * elf/rtld.c (dl_main): Don't use prelinking if LD_DYNAMIC_WEAK is
9952         used.
9954 2006-10-02  Jakub Jelinek  <jakub@redhat.com>
9956         * nscd/mem.c (mempool_alloc): Round array size to 16 bytes
9957         in oldtotal and newtotal calculation.
9958         * nscd/nscd-client.h (struct mapped_database): Add datasize
9959         field.
9960         * nscd/nscd_helper.c (get_mapping): Initialize datasize field.
9961         (__nscd_get_map_ref): Get a new mapping even if mapping's data_size
9962         increased.
9963         (__nscd_cache_search): Add checks to make sure we never reference
9964         data beyond the current mapping.
9966 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
9968         * sysdeps/posix/getaddrinfo.c (match_prefix): Make mask and val
9969         variables const to avoid compiler warnings.
9971         * io/fts.c (fts_close): Remove redundant checks.
9972         (fts_build): Likewise.
9973         (fts_palloc): Likewise.
9975         * manual/message.texi (Advanced gettext functions,
9976         Using gettextized software): Fix typos.
9978 2006-09-30  Ulrich Drepper  <drepper@redhat.com>
9980         * posix/glob.c (glob_in_dir): Add some comments and asserts to
9981         explain why there are no leaks.
9983 2006-09-29  Ulrich Drepper  <drepper@redhat.com>
9985         * libio/wmemstream.c: Include <wchar.h>.
9986         * libio/bug-wmemstream1.c: Likewise.
9987         * libio/tst-wmemstream1.c: Likewise.
9988         * libio/tst-wmemstream2.c: Likewise.
9990         * version.h (RELEASE): Bump to 2.5.
9991         * README: Regenerated.
9993         * locale/iso-3166.def: Add Aaland Islands and Montenegro.
9995         [BZ #3273]
9996         * nscd/nscd_initgroups.c (__nscd_getgrouplist): It is OK to have
9997         found no group members.
9998         Patch by Petr Baudis.
10000 2006-09-29  Jakub Jelinek  <jakub@redhat.com>
10002         * elf/rtld.c (_dl_start_final): If not USE___THREAD, don't
10003         assert bootstrap_map.l_tls_modid is zero.
10004         (_dl_start): Initialize bootstrap_map.l_tls_modid to 0
10005         if USE___THREAD.
10007 2006-09-27  Ulrich Drepper  <drepper@redhat.com>
10009         * libio/stdio.h: Move open_wmemstream prototype to ...
10010         * wcsmbs/wchar.h: ... here.
10012 2006-09-25  Jakub Jelinek  <jakub@redhat.com>
10014         [BZ #3252]
10015         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Handle only
10016         fchownat syscall and __ASSUME_LCHOWN_SYSCALL case inline, call
10017         __{,l}chown to handle the rest.
10018         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Handle only
10019         fchownat syscall and __ASSUME_32BITUIDS case inline, call
10020         __{,l}chown to handle the rest.
10021         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Include
10022         i386/fchownat.c.
10023         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Likewise.
10024         * sysdeps/unix/sysv/linux/sh/fchownat.c: Likewise.
10026         [BZ #3253]
10027         * posix/glob.c (glob_in_dir): Don't alloca one struct globlink at a
10028         time, rather allocate increasingly bigger arrays of pointers, if
10029         possible with alloca, if too large with malloc.
10031 2006-09-24  Jakub Jelinek  <jakub@redhat.com>
10033         * sysdeps/powerpc/fpu/libm-test-ulps: Updated.
10035         * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Fix 2 typos.
10037 2006-09-24  Ulrich Drepper  <drepper@redhat.com>
10039         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Implement rule 4,
10040         home addresses.
10041         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Recognize
10042         IFA_F_HOMEADDRESS flag for interfaces.
10043         * include/ifaddrs.h (struct in6addrinfo): Define
10044         in6ai_homeaddress.
10046 2006-09-21  Jakub Jelinek  <jakub@redhat.com>
10048         [BZ #3225]
10049         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (PTR_MANGLE3,
10050         PTR_DEMANGLE3): Define.
10051         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h (PTR_MANGLE3,
10052         PTR_DEMANGLE3): Likewise.
10053         * sysdeps/powerpc/powerpc32/__longjmp-common.S (__longjmp): Use them.
10054         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
10055         Likewise.
10056         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
10058 2006-09-20  Jakub Jelinek  <jakub@redhat.com>
10060         * po/libc.pot: Regenerated.
10061         * po/be.po: Updated.
10062         * po/ca.po: Likewise.
10063         * po/cs.po: Likewise.
10064         * po/da.po: Likewise.
10065         * po/de.po: Likewise.
10066         * po/el.po: Likewise.
10067         * po/en_GB.po: Likewise.
10068         * po/es.po: Likewise.
10069         * po/fi.po: Likewise.
10070         * po/fr.po: Likewise.
10071         * po/gl.po: Likewise.
10072         * po/hr.po: Likewise.
10073         * po/hu.po: Likewise.
10074         * po/ja.po: Likewise.
10075         * po/ko.po: Likewise.
10076         * po/nb.po: Likewise.
10077         * po/nl.po: Likewise.
10078         * po/pl.po: Likewise.
10079         * po/pt_BR.po: Likewise.
10080         * po/ru.po: Likewise.
10081         * po/rw.po: Likewise.
10082         * po/sk.po: Likewise.
10083         * po/sv.po: Likewise.
10084         * po/tr.po: Likewise.
10085         * po/zh_CN.po: Likewise.
10086         * po/zh_TW.po: Likewise.
10088         [BZ #3137]
10089         * iconv/iconv_prog.c (main): Fix spelling in error message.
10090         * iconv/iconvconfig.c (main): Likewise.
10091         * locale/programs/ld-collate.c (handle_ellipsis): Likewise.
10092         * locale/programs/ld-ctype.c (charclass_symbolic_ellipsis): Likewise.
10093         * locale/programs/localedef.c (main): Likewise.
10094         * locale/programs/repertoire.c (repertoire_read): Likewise.
10095         * timezone/zdump.c (main): Likewise.
10096         * nscd/connections.c (handle_request): Fix spelling in log message.
10097         Patch by Malcolm Parsons <malcolm.parsons@gmail.com>.
10099 2006-09-20  Ulrich Drepper  <drepper@redhat.com>
10101         * inet/inet6_option.c: Also emit linker warnings for the RFC 2292
10102         interfaces.
10104 2006-09-20  Andreas Jaeger  <aj@suse.de>
10106         * math/libm-test.inc (lrint_test_upward): Fix typo.
10108 2006-06-17  Joseph S. Myers  <joseph@codesourcery.com>
10110         [BZ #2592]
10111         * math/libm-test.inc (lrint_test_tonearest): New function.
10112         (lrint_test_towardzero): New function.
10113         (lrint_test_downward): New function.
10114         (lrint_test_upward): New function.
10115         (main): Run these new tests.
10116         * sysdeps/ieee754/dbl-64/s_llrint.c (__llrint): Correct rounding
10117         of values near to 0.
10118         (two52): Use double not long double.
10119         * sysdeps/ieee754/dbl-64/s_lrint.c (__lrint): Likewise.
10120         * sysdeps/ieee754/flt-32/s_llrintf.c (__llrintf): Likewise.
10121         (two23): Use float not double.
10122         * sysdeps/ieee754/flt-32/s_lrintf.c (__lrintf): Likewise.
10123         (two23): Use float not double.
10124         * sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Likewise.
10125         * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Likewise.
10126         * sysdeps/ieee754/ldbl-96/s_llrintl.c (__llrintl): Likewise.
10127         * sysdeps/ieee754/ldbl-96/s_lrintl.c (__lrintl): Likewise.
10129 2006-09-20  Martin Schwidefsky  <schwidefsky@de.ibm.com>
10131         * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c (__makecontext):
10132         Cast sp to unsigned long to avoid compiler warning.
10133         Use __makecontext_ret function instead of a trampoline on the stack.
10134         (__makecontext_ret): New function.
10135         * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Likewise.
10137 2006-09-19  Jakub Jelinek  <jakub@redhat.com>
10139         * elf/dl-cache.c (HWCAP_CHECK): If _DL_PLATFORMS_COUNT, but
10140         platform == -1, reject any libs with non-zero _DL_HWCAP_PLATFORM
10141         bits.
10143 2006-09-19  Ulrich Drepper  <drepper@redhat.com>
10145         * elf/dl-close.c (_dl_close): If dependency is not unloaded make
10146         sure no reference to the unloaded map's search list remains in the
10147         dependency's scope.
10149 2006-09-16  Jakub Jelinek  <jakub@redhat.com>
10151         * elf/Makefile: Add rules to build and run unload7 test.
10152         * elf/unload7.c: New test.
10153         * elf/unload7mod1.c: New file.
10154         * elf/unload7mod2.c: New file.
10156 2006-09-18  Jakub Jelinek  <jakub@redhat.com>
10158         * sysdeps/unix/sysv/linux/sys/ptrace.h (PT_GETEVENTMSG): Fix pasto.
10159         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_SETOPTIONS,
10160         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
10161         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_SETOPTIONS,
10162         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
10163         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_SETOPTIONS,
10164         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
10165         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h (PTRACE_SETOPTIONS,
10166         PTRACE_GETEVENTMSG): Likewise.
10167         (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Change to the arch independent
10168         values.
10170 2006-09-17  Mike Frysinger  <vapier@gentoo.org>
10172         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_SETOPTIONS,
10173         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
10174         * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Check PTRACE_SETOPTIONS,
10175         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO and PTRACE_SETSIGINFO.
10177 2006-09-16  Jakub Jelinek  <jakub@redhat.com>
10179         * sysdeps/powerpc/powerpc32/register-dump.h (register_dump): Don't
10180         write '\0' to the fd.
10181         * sysdeps/mach/hurd/powerpc/register-dump.h (register_dump): Likewise.
10182         * sysdeps/powerpc/powerpc64/register-dump.h (register_dump): Likewise.
10183         Change regs to unsigned long pointer from unsigned int, fix fscr
10184         offset.
10186 2006-09-14  Jakub Jelinek  <jakub@redhat.com>
10188         * io/Makefile (CFLAGS-fstatat.c): Set.
10189         (CFLAGS-fstatat64.c): Likewise.
10190         (CFLAGS-mknodat.c): Likewise.
10192         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Comment fixes.
10193         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
10194         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Rewritten.
10195         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Rewritten.
10197 2006-09-14  Jakub Jelinek  <jakub@redhat.com>
10198             Steven Munroe  <sjmunroe@us.ibm.com>
10200         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 4 new cap
10201         names to the beginning.  Rename "cell" to "cellbe".
10202         (_dl_powerpc_platforms): New.
10203         * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
10204         (HWCAP_IMPORTANT): Remove power{4,5,5+} and cell.
10205         (_DL_PLATFORMS_COUNT, _DL_FIRST_PLATFORM): Define.
10206         (_DL_HWCAP_PLATFORM): Define to new mask.
10207         (_dl_platform_string, _dl_string_platform): New functions.
10208         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_BOOKE, PPC_FEATURE_SMT,
10209         PPC_FEATURE_ICACHE_SNOOP, PPC_FEATURE_ARCH_2_05): Define.
10211 2006-09-12  Jakub Jelinek  <jakub@redhat.com>
10213         [BZ #2526]
10214         * README.libm: Fix a thinko in sqrt algorithm description.
10216         [BZ #3143]
10217         * manual/string.texi (argz_delete): Fix prototype.
10218         Patch by <alpt@freaknet.org>.
10220 2006-08-26  Joseph Myers  <joseph@codesourcery.com>
10222         [BZ #3138]
10223         * io/test-lfs.c (do_prepare): Give name_len type size_t.
10224         * io/tst-fcntl.c (do_prepare): Likewise.
10225         * posix/tst-exec.c (do_prepare): Likewise.
10226         * posix/tst-preadwrite.c (do_prepare): Likewise.
10227         * posix/tst-spawn.c (do_prepare): Likewise.
10228         * posix/tst-truncate.c (do_prepare): Likewise.
10229         * rt/tst-aio.c (do_prepare): Likewise.
10230         * rt/tst-aio64.c (do_prepare): Likewise.
10231         * stdlib/test-canon2.c (do_prepare): Give test_dir_len type
10232         size_t.
10234 2006-09-09  Ulrich Drepper  <drepper@redhat.com>
10236         [BZ #2821]
10237         * time/mktime.c (guess_time_tm): Fix overflow detection.
10238         * time/Makefile (tests): Add bug-mktime1.
10239         * time/bug-mktime1.c: New file.
10241         [BZ #3189, #3188]
10242         * misc/sys/mman.h (remap_file_pages): Make available for _GNU_SOURCE.
10243         (mremap): Likewise.
10245 2006-09-07  Jakub Jelinek  <jakub@redhat.com>
10247         [BZ #1006]
10248         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
10249         Ensure relocation doesn't clobber any bits outside of the
10250         immediate field for R_SPARC_TLS_LE_HIX22, R_SPARC_WDISP30,
10251         R_SPARC_HI22 and R_SPARC_H44.
10253         [BZ #2775]
10254         * malloc/malloc.c (sYSMALLOc): Only call grow_heap if
10255         (long) (MINSIZE + nb - old_size) is positive.
10257         * malloc/arena.c (grow_heap): When growing bail even if new_size
10258         is negative.
10260         [BZ #3155]
10261         * sysdeps/powerpc/powerpc32/fpu/s_lrint.S (__lrint): Don't access
10262         stack below r1.
10264 2006-09-06  Jakub Jelinek  <jakub@redhat.com>
10266         * posix/regex_internal.c (re_string_reconstruct): Handle
10267         offset < pstr->valid_raw_len && pstr->offsets_needed case.
10268         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
10269         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
10270         re_string_context_at.
10271         * posix/Makefile: Add rules to build and run bug-regex26 test.
10272         * posix/bug-regex26.c: New test.
10274         * locale/programs/ld-collate.c (collate_read): Goto sym_equiv_free
10275         rather than col_sym_free.  Move seqp declaration earlier.
10277         * resolv/gai_suspend.c (gai_suspend): Make sure result is initialized.
10279 2006-09-05  Jakub Jelinek  <jakub@redhat.com>
10281         * nscd/initgrcache.c (addinitgroupsX): Move any_success
10282         decl before first goto out.
10284 2006-09-04  Jakub Jelinek  <jakub@redhat.com>
10286         * Makerules (shlib.lds): If have-hash-style, put .hash section
10287         at the end of the RO segment.
10289 2006-09-04  Ulrich Drepper  <drepper@redhat.com>
10291         * elf/do-lookup.h (do_lookup_x): Initialize symidx in case the new
10292         style hash table format is used.
10294 2006-09-04  Jakub Jelinek  <jakub@redhat.com>
10296         * resolv/res_mkquery.c (res_nmkquery): Set hp->id to statp->id after
10297         randomization rather than before.
10298         * resolv/res_init.c (res_randomid): Don't call gettimeofday here.
10300 2006-08-31  Jakub Jelinek  <jakub@redhat.com>
10302         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Add ld.so.
10304         * malloc/malloc.c (_int_malloc): Use full list insert and not
10305         shortcut which assumes the list is empty for large requests
10306         too.
10308         * elf/tst-addr1.c (do_test): Allow i.dli_sname "_IO_printf".
10310 2006-08-30  Jakub Jelinek  <jakub@redhat.com>
10312         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (splice): Add offin
10313         and offout arguments to the prototype.
10314         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (splice): Likewise.
10315         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (splice): Likewise.
10316         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (splice): Likewise.
10317         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (splice): Likewise.
10318         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (splice): Likewise.
10319         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (splice): Likewise.
10320         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (splice): Likewise.
10321         * sysdeps/unix/sysv/linux/syscalls.list (splice): Adjust args string.
10323 2006-08-28  Ulrich Drepper  <drepper@redhat.com>
10325         * elf/dl-load.c (_dl_init_paths): Expand DSTs.
10327         * elf/dl-open.c (dl_open_worker): Allow $LIB and $PLATFORM in
10328         dlopen parameters.
10330 2006-08-28  Jakub Jelinek  <jakub@redhat.com>
10332         * inet/getnameinfo.c (getnameinfo): For AF_INET, check errno
10333         only if herrno is NETDB_INTERNAL.  Handle errors other than
10334         ERANGE outside of the loops, handle TRY_AGAIN.
10336         * locale/programs/ld-ctype.c (translit_flatten): Issue error
10337         if other's ctype category was missing.
10338         * locale/programs/ld-collate.c (collate_read): Return if
10339         copy_locale's collate category is missing.
10341 2006-08-27  Ulrich Drepper  <drepper@redhat.com>
10343         [BZ #2684]
10344         * malloc/malloc.c (public_rEALLOc): Try harder by using other
10345         arenas if allocation failed.
10346         Patch mostly by Jan Edler <jan.edler@indexengines.com>.
10348 2006-08-26  Ulrich Drepper  <drepper@redhat.com>
10350         * malloc/malloc.c (bin_at): Rewrite to be more clear and to not
10351         waste bins[0..1].
10352         (malloc_state): Reduce bins size by 2.
10353         (_int_malloc): Fix test for large enough buffer for early termination.
10354         When no unsorted block matches perfectly and an exiting block has
10355         to be split, use full list insert and not shortcut which assumes
10356         the list is empty.
10358         * locale/programs/ld-ctype.c (ctype_read): Better patch for read
10359         failure.
10361 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
10363         * locale/programs/ld-ctype.c (ctype_read): If CTYPE is NULL, don't
10364         do anything.
10366         * sysdeps/generic/ldsodefs.h (DL_ADDR_SYM_MATCH): For undefined
10367         symbol require exact match (these are PLTs).
10368         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
10369         (_dl_ppc64_addr_sym_match): Likewise.
10371         [BZ #2683]
10372         * elf/dl-addr.c (_dl_addr): Don't ignore all undefined symbols.
10373         If symbol has a value use it.
10374         * elf/tst-dladdr1.c: New file.
10375         * elf/Makefile: Add rules to build and run tst-addr1.
10377 2006-08-24  Jakub Jelinek  <jakub@redhat.com>
10379         * malloc/malloc.c (sYSMALLOc): Avoid infinite loop if MMAP
10380         keeps failing and heap growth or new heap creation isn't
10381         successful either.
10382         * malloc/tst-malloc.c (main): Add new tests.
10384 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
10386         [BZ #2734]
10387         * sysdeps/i386/bits/byteswap.h (__bswap_32): Use same conditions
10388         as in the x86-64 code to use bswap.
10390 2006-05-21  Joseph S. Myers  <joseph@codesourcery.com>
10392         [BZ #2680]
10393         * posix/unistd.h (getlogin_r): Condition on __USE_POSIX199506, not
10394         __USE_UNIX98.
10395         * posix/bits/unistd.h: Likewise.
10397 2006-05-15  Mike Frysinger  <vapier@gentoo.org>
10399         [BZ #2751]
10400         * string/strchr.c: Add cast to avoid warning.
10402 2006-08-21  Ulrich Drepper  <drepper@redhat.com>
10404         * malloc/malloc.c (DEFAULT_MMAP_THRESHOLD_MAX): For 32-bit
10405         platforms define as 512K.  For 64-bit platforms as 32MB.  The lower
10406         limit is needed to avoid the exploding of the address space
10407         requirement for secondary heaps.
10408         * malloc/arena.c (HEAP_MAX_SIZE): Define using
10409         DEFAULT_MMAP_THRESHOLD_MAX if it is defined.
10411 2006-07-30  Joseph S. Myers  <joseph@codesourcery.com>
10413         [BZ #3018]
10414         * Makerules (depfiles): Handle extra-test-objs the same as
10415         extra-objs.
10416         (common-mostlyclean): Likewise.
10417         * dlfcn/Makefile (extra-objs): Add modules to extra-test-objs
10418         instead.
10419         * elf/Makefile (extra-objs): Likewise.
10420         * stdlib/Makefile (extra-objs): Likewise.
10422 2006-08-14  Eric Blake  <ebb9@byu.net>
10424         [BZ #3044]
10425         * misc/error.h: Assume C89 or better.
10426         * misc/error.c: Likewise.
10428 2006-08-21  Ulrich Drepper  <drepper@redhat.com>
10430         [BZ #3040]
10431         * sysdeps/unix/sysv/linux/openat.c: Fix compilation if
10432         __ASSUME_ATFCTS is defined.
10434 2006-08-19  Ulrich Drepper  <drepper@redhat.com>
10436         * malloc/malloc.c (_int_malloc): Limit number of unsorted blocks
10437         to sort in each call.
10439         * nis/nss_nis/nis-service.c (internal_nis_getservent_r): . If map
10440         is empty simply return and use next service.
10441         * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r): Likewise.
10443         * locale/programs/charmap.c (charmap_read): Add new parameter.  It
10444         tells us when not finding a charmap file is an error.
10445         * locale/programs/charmap.h: Adjust charmap_read prototype.
10446         * iconv/iconv_prog.c (main): Tell charmap_read it's no error if we
10447         cannot find a charmap.
10448         * locale/programs/localedef.c (main): Adjust charmap_read call.
10450 2006-08-15  Jakub Jelinek  <jakub@redhat.com>
10452         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Use
10453         sysdeps/posix/pause.c implementation instead.
10455 2006-08-09  Jakub Jelinek  <jakub@redhat.com>
10457         * sysdeps/unix/nice.c (nice): Transform EACCES errno from setpriority
10458         to EPERM.
10460 2006-08-13  Andreas Schwab  <schwab@suse.de>
10462         * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve):
10463         Don't clobber caller's LRSAVE.
10464         (_dl_prof_resolve): Likewise.
10466 2006-08-14  Ulrich Drepper  <drepper@redhat.com>
10468         [BZ #1996]
10469         * libio/memstream.c (open_memstream): Allocate initial buffer with
10470         calloc.
10471         * libio/wmemstream.c (open_wmemstream): Likewise.
10472         * libio/strops.c: Pretty printing.
10473         (_IO_str_overflow): Clear uninitialized part of the new buffer.
10474         (enlarge_userbuf): New function.
10475         (_IO_str_seekoff): Call it if seek position is larger than current
10476         buffer.
10477         * libio/wstrops.c: Likewise.
10478         * libio/vasprintf.c: Add comment as to why we do not have to use
10479         calloc instead of malloc to allocate initial buffer.
10480         * libio/Makefile (tests): Add bug-memstream1 and bug-wmemstream1.
10481         * libio/bug-memstream1.c: New file.
10482         * libio/bug-wmemstream1.c: New file.
10484 2006-08-13  Ulrich Drepper  <drepper@redhat.com>
10486         * libio/wstrops.c: Remove dead macro definitions and comments.
10487         * libio/strops.c: Likewise.
10489         [BZ #2764]
10490         * login/utmpname.c (__utmpname): Remove unnecessary test.
10492 2006-06-08  Joseph Myers  <jsm28@gcc.gnu.org>
10494         [BZ #2832]
10495         * math/gen-libm-test.pl (clean_up_number): Do not remove trailing
10496         0s from integers.
10498 2006-08-13  Ulrich Drepper  <drepper@redhat.com>
10500         [BZ #2987]
10501         * sysdeps/unix/sysv/linux/clock_settime.c: Add code to use syscall
10502         for CPU clocks.
10503         * sysdeps/unix/clock_settime.c: Add support for platform-specific
10504         setting of CPU clocks.
10506 2006-06-23  Paul Eggert  <eggert@cs.ucla.edu>
10508         [BZ #2841]
10509         * sysdeps/generic/stdint.h (UINT8_C, UINT16_C): Don't append 'U',
10510         since C99 requires the result to promote to 'int' when uint_least8_t
10511         and uint_least16_t promote to 'int'.
10513 2006-08-12  Ulrich Drepper  <drepper@redhat.com>
10515         [BZ #3013]
10516         * locale/programs/ld-ctype.c (ctype_output): Adjust alignments, fix
10517         lenght of one output field, correct bitmask creation.
10518         * locale/programs/ld-time.c: Add alignment.
10520         [BZ #2997]
10521         * misc/error.c: Add space between program name and message if file
10522         name is missing.
10524 2006-08-03  Eric Blake  <ebb9@byu.net>
10526         [BZ #2998]
10527         * misc/error.c (error_tail) [_LIBC]: Avoid invalid free.
10529 2006-08-09  Ulrich Drepper  <drepper@redhat.com>
10531         * malloc/memusagestat.c: Silence warnings.
10533         * malloc/malloc.c: Dynamically size mmap treshold if the program
10534         frees mmaped blocks.
10535         Patch by Valerie Henson and Arjan van de Ven.
10537 2006-08-08  Jakub Jelinek  <jakub@redhat.com>
10539         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (O_DIRECT): Protect with
10540         __USE_GNU.
10542         * stdlib/strtol_l.c (__strtol_ul_max_tab, __strtol_ul_rem_tab,
10543         __strtol_ull_max_tab, __strtol_ull_rem_tab): Declare.
10544         (DEF): Don't put the var into .gnu.linkonce.r.* section.
10545         Only provide var definitions in strtol_l (or for *ull*
10546         in strtoll_l).
10548         * stdio-common/bug16.c (tests): New array.
10549         (do_tests): Allow the first hexadecimal digit
10550         to be 1, 2, 4 or 8.  Do 3 additional tests.
10552         * sysdeps/s390/fpu/libm-test-ulps: Update.
10554         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c (fchownat): Use
10555         fchownat syscall if available.
10556         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
10557         * sysdeps/unix/sysv/linux/sh/fchownat.c (fchownat): Likewise.
10558         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
10560 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
10562         * nis/nis_xdr.c: Avoid some function calls.
10564 2006-08-07  Jakub Jelinek  <jakub@redhat.com>
10565             Ulrich Drepper  <drepper@redhat.com>
10567         * nis/nis_call.c (rec_dirsearch) [case LOWER_NAME]: Don't take
10568         short cut if only one name component is stripped away.
10570 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
10572         * nis/nis_call.c: Minor cleanups throughout.
10573         (rec_dirsearch) [case HIGHER_NAME]: Correctly size ndomain array.
10574         (first_shoot): Add search_parent_first parameter.  Only if it is set
10575         search parent server first.
10576         If directory for table found through cold start cache is not the same
10577         as referenced in the cache, don't use it.
10578         (__nisfind_server): Take additional parameter.  Pass it on to
10579         first_shoot.
10580         (__prepare_niscall): Adjust __nisfind_server call.
10581         * nis/rpcsvc/nislib.h: Adjust __nisfind_server prototype.
10582         * nis/nis_table.c: Adjust __nisfind_server call.
10583         * nis/nis_lookup.c: Likewise.
10584         (nis_lookup): Don't loop endlessly if name is reduced to ".".
10586 2006-08-03  Ulrich Drepper  <drepper@redhat.com>
10588         [BZ #2182]
10589         * math/s_cacosh.c: Return values from positive branch.
10590         * math/s_cacoshf.c: Likewise.
10591         * math/s_cacoshl.c: Likewise.
10593         [BZ #2883]
10594         * sysvipc/sys/msg.h: Change return value to ssize_t.
10595         * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
10596         * sysvipc/msgrcv.c: Likewise.
10597         * include/sys/msg.h: Likewise.
10599         * grp/initgroups.c (internal_getgrouplist): Remove unnecessary
10600         test introduced in patch for bz #661.
10601         (getgrouplist): Simplify code a bit.  Don't allocate one additional
10602         element for NEWGROUPS.
10604         [BZ #2908]
10605         * stdio-common/printf_fphex.c (__printf_fphex): When rounding up
10606         'f', use '1' as leading digit not '\1'.
10607         * stdio-common/Makefile (tests): Add bug16.
10608         * stdio-common/bug16.c: New file.
10610         [BZ #2914]
10611         * sysdeps/unix/sysv/linux/gethostid.c: Don't define OLD_HOSTIDFILE
10612         and don't try to open it.  The patch introducing the macro
10613         contained a bug and used the same file name as the new file
10614         instead of using /var/adm/hostid.  Nobody complaint so I'm taking
10615         this out completely.
10617         [BZ #2926]
10618         * assert/assert.h: Move cast to void inside ?: to quiet gcc.
10619         Patch by Jerry James <Jerry.James@usu.edu>.
10621         * rt/Makefile (tests): Add tst-clock2.
10622         * rt/tst-clock2.c: New file.
10624         [BZ #2978]
10625         * resolv/gai_notify.c (__gai_notify_only): Copy memory for thread
10626         function and its parameters and pass it to new thread.
10627         (__gai_notify): Add support for alternative waiting for completion.
10628         * resolv/gai_suspend.c (gai_suspend): Add support for alternative
10629         waiting for completion.
10630         * resolv/getaddrinfo_a.c: Likewise.
10631         * resolv/gai_misc.h (struct waitlist): Don't add cond if alternative
10632         waiting for completion is used.
10633         * resolv/gai_misc.c: Allow overwriting code to start helper thread.
10634         * resolv/gai_cancel.c: Include <gai_misc.h> not "gai_misc.h".
10635         * resolv/gai_error.c: Likewise.
10636         * resolv/gai_sigqueue.c: Likewise.
10638 2006-08-02  Thomas Schwinge  <tschwinge@gnu.org>
10640         * hurd/getdport.c (__getdport): Don't return EBADF; instead set
10641         errno to EBADF and return MACH_PORT_NULL.
10643 2006-06-23  Joseph Myers  <joseph@codesourcery.com>
10645         [BZ #2980]
10646         * posix/Makefile (CFLAGS-waitid.c): Add -fasynchronous-unwind-tables.
10648 2006-08-02  Ulrich Drepper  <drepper@redhat.com>
10650         * elf/dl-addr.c (_dl_addr): If GNU-style hash tables are present,
10651         walk them instead of the symbol table.
10653 2006-08-01  Ulrich Drepper  <drepper@redhat.com>
10655         [BZ #2098]
10656         * nscd/initgrcache.c (addinitgroupsX): Judge successful lookups by
10657         status of NSS calls, not the number of returned entries.
10659         * sysdeps/unix/sysv/linux/syscalls.list: Remove add_key,
10660         request_key, keyctl.
10662 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
10664         * sysdeps/unix/sysv/linux/dl-osinfo.h: Remove unnecessary include.
10666 2006-07-16  Jeff Bailey  <jbailey@ubuntu.com>
10668         * elf/tst-auditmod1.c: Fix typo in #error.
10670 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
10672         * elf/tst-auditmod1.c: Remove code for unsupported architectures.
10674         * iconvdata/run-iconv-test.sh: Run cmp in C locale.
10676 2006-07-20  Adam Nemet  <anemet@caviumnetworks.com>
10678         * stdlib/test-canon.c (do_test): Close fd before unlinking file so
10679         that the directory is empty even on non-POSIX filesystems.
10681 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
10683         * elf/dl-open.c (dl_open_worker): Add branch prediction.
10685         * nis/nss_compat/compat-grp.c: Avoid unnecessary setgrent calls into
10686         the backend NSS module.  If backend setgrent call failed, don't have
10687         internal_setgrent fail.  Just remember this until it is needed.
10688         * nis/nss_compat/compat-pwd.c: Likewise.
10689         * nis/nss_compat/compat-spwd.c: Likewise.
10691 2006-07-30  Roland McGrath  <roland@redhat.com>
10693         * sysdeps/unix/sysv/linux/ia64/sigsuspend.c: File removed.
10694         * sysdeps/unix/sysv/linux/x86_64/sigsuspend.c: File removed.
10695         * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c: File removed.
10696         * sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c: File removed.
10698         * sysdeps/unix/sysv/linux/not-cancel.h (pause_not_cancel): New macro.
10699         (nanosleep_not_cancel): New macro.
10700         (sigsuspend_not_cancel): new macro.
10701         * sysdeps/unix/sysv/linux/sigsuspend.c [__ASSUME_REALTIME_SIGNALS]
10702         (do_sigsuspend): Define as inline.
10703         (__sigsuspend): Always use do_sigsuspend.
10704         [! NO_CANCELLATION] (__sigsuspend_nocancel): New function.
10705         * include/signal.h: Declare __sigsuspend_nocancel.
10706         * sysdeps/posix/pause.c
10707         [! NO_CANCELLATION] (__pause_nocancel): New function.
10709         * include/unistd.h (__pause_nocancel): Add attribute_hidden.
10710         * include/time.h (__nanosleep_nocancel): Likewise.
10712 2006-07-30  Ulrich Drepper  <drepper@redhat.com>
10714         * locale/programs/localedef.c (add_to_readlist): Rename local
10715         variables to avoid confusion.
10717         * locale/programs/charmap.c (charmap_read): Emit error message if
10718         charmap couldn't be found or read.
10720 2006-07-28  Ulrich Drepper  <drepper@redhat.com>
10722         * sysdeps/unix/sysv/linux/kernel-features.h: Define
10723         __ASSUME_FUTEX_LOCK_PI.
10724         * include/time.h: Declare __nanosleep_nocancel.
10725         * include/unistd.h: Declare __pause_nocancel.
10727         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Use this instead of
10728         LDFLAGS.  Add -lgcc_eh and libc_nonshared (again) to make sure we
10729         get the __stack_chk_fail_local definition when it's needed.
10731 2006-07-26  Ulrich Drepper  <drepper@redhat.com>
10733         * dlfcn/Makefile: Add rules to build and run bug-atexit3.
10734         * dlfcn/bug-atexit3.c: New file.
10735         * dlfcn/bug-atexit3-lib.cc: New file.
10737         * dlfcn/dlmopen.c (dlmopen_doit): Don't allow RTLD_GLOBAL to be
10738         used when the namespace is not the base namespace.
10740 2006-07-26  Gavin Romig-Koch  <gavin@redhat.com>
10742         * stdlib/cxa_atexit.c (__new_exitfn_called): New variable.
10743         (__new_exitfn): Bump it in every successful call.
10744         * stdlib/cxa_finalize.c (__cxa_finalize): If destructor registered
10745         more exit handlers, call them right away.
10746         * stdlib/exit.h: Declare __new_exitfn_called.
10748 2006-07-25  Ulrich Drepper  <drepper@redhat.com>
10750         * stdlib/cxa_finalize.c (__cxa_finalize): Fix race condition when
10751         calling registered handler.
10753         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Fix comment.
10754         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
10755         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
10756         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
10757         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
10758         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
10759         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
10760         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
10762 2006-07-10  Ulrich Drepper  <drepper@redhat.com>
10764         * elf/dl-lookup.c (dl_new_hash): New functions.
10765         (_dl_lookup_symbol_x): Rename hash to old_hash and don't compute
10766         value here.  Compute new-style hash value.  Pass new hash value
10767         and reference to variable with the old value to do_lookup_x.
10768         (_dl_setup_hash): If DT_GNU_HASH is defined, use it and not
10769         old-style hash table.
10770         (_dl_debug_bindings): Pass new hash value and reference to variable
10771         with the old value to do_lookup_x.
10772         * elf/do-lookup.h (do_lookup_x): Accept additional parameter with
10773         new-style hash value and change old-style hash value parameter to
10774         be a reference.  Reoganize functions to determine whether
10775         new-style hash table is available.  Only fall back on old-style
10776         table.  If old-style hash value is needed, compute it here.
10777         * elf/dynamic-link.h (elf_get_dynamic_info): Relocate DT_GNU_HASH
10778         entry.
10779         * elf/elf.h: Define SHT_GNU_HASH, DT_GNU_HASH, DT_TLSDEC_PLT,
10780         DT_TLSDEC_GOT.  Adjust DT_ADDRNUM.
10781         * include/link.h (struct link_map): Add l_gnu_bitmask_idxbits,
10782         l_gnu_shift, l_gnu_bitmask, l_gnu_buckets and l_gnu_chain_zero.
10783         * Makeconfig: If linker supports --hash-style option add it to all
10784         linker command lines to build DSOs.
10785         * config.make.in: Define have-hash-style.
10786         * configure.in: Test whether linker supports --hash-style option.
10788         * elf/dl-misc.c (_dl_name_match_p): Make MAP parameter const.
10789         * sysdeps/generic/ldsodefs.h: Adjust prototype.
10791 2006-06-27  Ulrich Drepper  <drepper@redhat.com>
10793         * elf/dl-load.c (open_path): Fix test to determine whether DSO is
10794         auditing.
10796         * elf/dl-load.c (_dl_map_object): Try harder to avoid looking at
10797         RPATH of main map twice.
10799 2006-06-22  Ulrich Drepper  <drepper@redhat.com>
10801         * intl/dcigettext.c (DCIGETTEXT): If _nl_find_msg returns -1 don't
10802         look further, return original strings.
10803         (_nl_find_msg): Do not return found translation if the conversion
10804         failed.  Either signal the string is unusable or that something went
10805         wrong and the original should be used.
10807 2006-06-21  Ulrich Drepper  <drepper@redhat.com>
10809         * string/_strerror.c (__strerror_r): Add __builtin_expect.
10811 2006-06-14  Jakub Jelinek  <jakub@redhat.com>
10813         [BZ #2766]
10814         * misc/insremque.c (insque): Handle prev == NULL.
10815         * misc/Makefile (tests): Add tst-insremque.
10816         * misc/tst-insremque.c: New test.
10818 2006-06-17  Ulrich Drepper  <drepper@redhat.com>
10820         [BZ #2792]
10821         * elf/dl-deps.c (expand_dst): Rename __cnt variable to not
10822         conflict with DL_DST_REQUIRED.
10824 2006-06-16  Ulrich Drepper  <drepper@redhat.com>
10826         * nis/nis_subr.c (nis_getnames): Fix the implementation to better
10827         match what Solaris does.
10829 2006-06-04  Ulrich Drepper  <drepper@redhat.com>
10831         * sysdeps/posix/spawni.c (__spawni): Use local_seteuid and
10832         local_setegid instead of seteuid and setegid.
10833         * sysdeps/generic/local-setxid.h: New file.
10834         * sysdeps/unix/sysv/linux/local-setxid.h: New file.
10836         * sysdeps/posix/spawni.c (__spawni): Use non-cancelable interfaces.
10838         * string/Makefile (tests): Add bug-envz1.
10839         * string/bug-envz1.c: New file.
10841 2006-06-02  Jakub Jelinek  <jakub@redhat.com>
10843         * posix/regex_internal.c (re_string_skip_chars): If no character has
10844         been converted at all, set *last_wc to WEOF.  If mbrtowc failed, set wc
10845         to the byte which couldn't be converted.
10846         (re_string_reconstruct): Don't clear valid_raw_len before calling
10847         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
10848         tip_context using re_string_context_at.
10849         * posix/Makefile: Add rules to build and run bug-regex25 test.
10850         * posix/bug-regex25.c: New test.
10852 2006-06-02  Ryan S. Arnold  <rsa@us.ibm.com>
10854         [BZ #2703]
10855         * string/envz.c (envz_strip): Correct erroneously reversed src
10856         and dest parameters to memmove() invocation.
10858 2006-05-30  Jakub Jelinek  <jakub@redhat.com>
10860         * nscd/nscd.h (prune_cache): Add fd argument to prototype.
10861         * nscd/nscd.c (parse_opt): Read response from INVALIDATE request
10862         to make sure the database has been already invalidated.
10863         * nscd/cache.c (prune_cache): Add fd argument.  Write response to fd
10864         after the cache has been invalidated.  Use pthread_mutex_lock rather
10865         than pthread_mutex_trylock if fd != -1.
10866         * nscd/connections.c (invalidate_cache): Add fd argument, write
10867         response to fd if not calling prune_cache, pass fd to prune_cache.
10868         (handle_request): Adjust invalidate_cache caller.
10869         (nscd_run): Pass -1 as fd to prune_cache.
10871 2006-05-30  Ulrich Drepper  <drepper@redhat.com>
10873         * sysdeps/posix/getaddrinfo.c (gaiconf_init): Initialize bits in
10874         the correct place.
10876 2006-05-29  Ulrich Drepper  <drepper@redhat.com>
10878         * nscd/nscd.h (struct database_dyn): Add prunelock field.
10879         * nscd/cache.c (prune_cache): Take prunelock before starting the
10880         work.  Just return in case it is already taken.
10881         * nscd/connections.c (dbs): Initialize .prunelock.
10883 2006-05-25  Ulrich Drepper  <drepper@redhat.com>
10885         * nis/nis_removemember.c (nis_removemember): Avoid unnecessary
10886         copying.  No need to allocate new array for group members.  Just
10887         move the pointers and update the size.
10889         * nis/nis_addmember.c (nis_addmember): Avoid unnecessary copying.
10890         Avoid memory leak in case realloc fails.  Simplification for
10891         better code generation.
10893         Avoid deprecation warning because of libc_hidden_proto for
10894         inet6_option_alloc.
10895         * inet/inet6_option.c (option_alloc): Renamed from
10896         inet6_option_alloc.  Made static.
10897         (inet6_option_alloc): Now a simple wrapper around option_alloc.
10898         (inet6_option_append): Call option_alloc.
10899         * include/netinet/in.h: Remove libc_hidden_proto for
10900         inet6_option_alloc.
10902         * nis/nis_callback.c (__nis_create_callback): Always call xdr_free
10903         for cleanup when cb!=NULL [Coverity CID 233].
10905 2006-05-24  Ulrich Drepper  <drepper@redhat.com>
10907         [BZ #2693]
10908         * inet/Makefile (routines): Add inet6_opt and inet6_rth.
10909         * inet/Versions (libc, GLIBC_2.5): Add inet6_opt_init,
10910         inet6_opt_append, inet6_opt_finish, inet6_opt_set_val, inet6_opt_next,
10911         inet6_opt_find, inet6_opt_get_val, inet6_rth_space, inet6_rth_init,
10912         inet6_rth_add, inet6_rth_reverse, inet6_rth_segments,
10913         and inet6_rth_getaddr.
10914         * inet/netinet/ip6.h (struct ip6_rthdr0): Make ip6r0_addr a flexible
10915         array.
10916         * inet/netinet/in.h (struct ip6_mtuinfo): Define.
10917         Mark inet6_option_* interfaces as deprecated.
10918         Declare inet6_opt_init, inet6_opt_append, inet6_opt_finish,
10919         inet6_opt_set_val, inet6_opt_next, inet6_opt_find, inet6_opt_get_val,
10920         inet6_rth_space, inet6_rth_init, inet6_rth_add, inet6_rth_reverse,
10921         inet6_rth_segments, and inet6_rth_getaddr.
10922         * inet/inet6_opt.c: New file.
10923         * inet/inet6_rth.c: New file.
10925         * inet/netinet/icmp6.h: Pretty printing.
10927         [BZ #2683]
10928         * elf/dl-addr.c (_dl_addr): Don't match undefined references.
10930 2006-05-23  Ulrich Drepper  <drepper@redhat.com>
10932         * nis/nis_lookup.c (nis_lookup): Use __prepare_niscall instead of
10933         doing it all here.  When server does not know the answer do not
10934         fail immediate, try parent first.
10936         * nis/nis_domain_of_r.c (nis_domain_of_r): Add missing buffer
10937         overflow test.
10939 2006-05-20  Ulrich Drepper  <drepper@redhat.com>
10941         * nis/nis_call.c (__prepare_niscall): New function.  Split out
10942         from __do_niscall.
10943         * nis/nis_table.c (__create_ib_request): Renamed from create_ib_request
10944         and exported.
10945         (__follow_path): New function.  Split out from nis_list.
10946         * nis/nis_xdr.h: Add libnsl_hidden_proto for _xdr_ib_request and
10947         _xdr_nis_result.
10948         * nis/nis_xdr.c: Add libnsl_hidden_def for _xdr_ib_request and
10949         _xdr_nis_result.
10950         * nis/libnsl.h: Declare __prepare_niscall, __create_ib_request,
10951         and __follow_path.
10952         * nis/Versions: Export __prepare_niscall, __create_ib_request,
10953         __follow_path, __do_niscall3, _xdr_ib_request, and _xdr_nis_result
10954         from libnsl for version GLIBC_PRIVATE.
10955         * nis/nisplus-parser.h: Remove _nss_nisplus_parse_pwent_chk.
10956         Remove entry parameter from _nss_nisplus_parse_pwent and
10957         _nss_nisplus_parse_grent.
10958         * nis/nss_nisplus/nisplus-parser.c: Likewise.
10959         * nis/nss_nisplus/nisplus-pwd.c: Remove support for SETENT_BATCH_READ
10960         again.  Rewrite getpwent handling to not use nis_first_entry and
10961         nis_next_entry.  Roll out own niscall handling.
10962         * nis/nss_nisplus/nisplus-grp.c: Likewise.
10964         * sunrpc/xdr_rec.c: Fix typo in comment.
10966 2006-05-19  Ulrich Drepper  <drepper@redhat.com>
10968         * nis/nis_call.c (__do_niscall3): Avoid code duplication in error
10969         handling.
10971         * nis/nis_callback.c (internal_nis_do_callback): Don't use malloc
10972         to allocate memory for my_pollfd.  Better initialization of
10973         cb_is_running.  Use TEMP_FAILURE_RETRY.
10975         * malloc/memusage.sh (memusageso): Add quotes.
10976         (memusagestat): Likewise.
10977         * debug/xtrace.sh (pcprofileso): Likewise.
10978         (pcprofiledump): Likewise.
10979         * debug/Makefile ($(objpfx)xtrace): Use $LIB in SLIBDIR
10980         replacement.
10981         * malloc/Makefile ($(objpfx)memusage): Likewise.
10983         * nis/nis_callback.c (__nis_create_callback): Calls to
10984         svcudp_bufcreate and svctcp_create can fail.  Free ->xprt if
10985         asprintf call fails.
10987         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_sendreq): Make sure
10988         no uninitialized memory is passed to sendto.
10990 2006-05-18  Ulrich Drepper  <drepper@redhat.com>
10992         * nis/nis_callback.c (__nis_create_callback): Use asprinf instead
10993         of snprintf+strdup.  Handle OOM.
10994         * nis/nis_callback.c (__nis_create_callback): Allocate cb and
10995         cb->serv together.  Remove now obsolete free calls.
10996         (__nis_destroy_callback): Remove now obsolete free call.
10998 2006-05-18  David Woodhouse  <dwmw2@redhat.com>
11000         * sysdeps/posix/getaddrinfo.c: Add unique labels to the default
11001         RFC3484 precedence table for fec0::/10 and fc00::/7 (site-local
11002         and ULA respectively). Set precedence for IPv4 address to 10 as
11003         defined in RFC3484 for preferring IPv6.
11004         * posix/gai.conf: Update to match the new default tables.
11006 2006-05-18  Jakub Jelinek  <jakub@redhat.com>
11008         * nis/nss_compat/compat-pwd.c (internal_setpwent): If nss_set*ent
11009         returned NSS_STATUS_UNAVAIL, still return NSS_STATUS_SUCCESS.
11010         * nis/nss_compat/compat-spwd.c (internal_setspent): Likewise.
11011         * nis/nss_compat/compat-grp.c (internal_setgrent): Likewise.
11013         * nis/nss_compat/compat-initgroups.c (nss_setgrent, nss_endgrent):
11014         Removed.
11015         (init_nss_interface): Remove initialization of these variables.
11017 2006-05-18  Ulrich Drepper  <drepper@redhat.com>
11019         * nis/nis_call.c (rec_dirsearch): Little optimization: pull
11020         nis_free_directory forward to avoid duplication.
11022 2006-05-17  Ulrich Drepper  <drepper@redhat.com>
11024         * nis/nis_call.c (rec_dirsearch): Handle __nis_finddirectory and
11025         rec_dirsearch returning NULL.
11026         (first_shoot): Handle __nis_finddirectory returning NULL.
11027         (__nisfind_server): Fix leak when rec_dirsearch returns NULL.
11029         * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOSE, IN_MOVE,
11030         IN_ONLYDIR, IN_DONT_FOLLOW, and IN_MASK_ADD.
11032 2006-05-17  Jakub Jelinek  <jakub@redhat.com>
11034         * sunrpc/key_call.c (getkeyserv_handle): Call auth_destroy if
11035         pid changed.
11037 2006-05-15  Ulrich Drepper  <drepper@redhat.com>
11039         * include/rpc/pmap_prot.h: Mark all functions as hidden.
11041         * nscd/nscd_initgroups.c: Mark __gr_map_handle as hidden.
11042         * nscd/nscd_getgr_r.c: Likewise.
11044         * include/rpc/pmap_rmt.h: Mark all functions as hidden.
11046         * nscd/nscd_getai.c (__hst_map_handle): Mark as hidden.
11047         * nscd/nscd_gethst_r.c (__hst_map_handle): Likewise.
11049         * stdlib/longlong.h (__clz_tab): Mark as hidden.
11051         * iconv/gconv_int.h: Mark __gconv_lock as hidden.
11053         * include/rpc/key_prot.h: Mark all _internal functions as hidden.
11055         * include/rpc/auth.h: Mark xdr_des_block_internal and
11056         xdr_opaque_auth_internal as hidden.
11058         * sysdeps/unix/sysv/linux/getdents.c: Mark __have_no_getdents64 as
11059         hidden.
11061         * include/rpc/xdr.h: Mark all _internal functions as hidden.
11063         * misc/getusershell.c (okshells): Don't use static initializers,
11064         do it dynamically.
11066         * stdlib/fmtmsg.c (keywords): Change type of len element to
11067         uint32_t to not waste space on 64bit machines.
11069         * locale/setlocale.c: Change _nl_category_names into a string.
11070         Add new _nl_category_name_idxs.  Change all users.
11071         * locale/localeinfo.h: Adjust declaration of _nl_category_names.
11072         Declare _nl_category_name_idxs.
11073         * locale/findlocale.c: Adjust for _nl_category_names change.
11074         * locale/loadlocale.c: Likewise.
11075         * locale/newlocale.c: Likewise.
11076         * intl/dcigettext.c: Likewise.
11078         * iconv/gconv_conf.c (add_alias): Move actual alias handling to...
11079         (add_alias2): ...here.  New function.
11080         (__gconv_read_conf): Simplify builtin alias handling.
11081         (builtin_aliases): Convert to string to avoid relocations.
11082         * iconv/gconv_builtin.h: Add comment about correct formatting.
11084 2006-05-15  Jakub Jelinek  <jakub@redhat.com>
11086         * resolv/res_debug.c (loc_ntoa): Make error const.
11088 2006-05-14  Andreas Schwab  <schwab@suse.de>
11090         * math/complex.h [__LDBL_COMPAT]: Use __REDIRECT_NTH.
11092 2006-05-12  Jakub Jelinek  <jakub@redhat.com>
11094         * sysdeps/unix/sysv/linux/sched_getaffinity.c: Include sys/param.h.
11095         (__sched_getaffinity_new): Don't crash if cpusetsize is smaller than
11096         sizeof (cpu_set_t).
11098 2006-05-11  Ulrich Drepper  <drepper@redhat.com>
11100         * resolv/res_debug.c (loc_ntoa): Define error as array, not pointer.
11102         * include/arpa/nameser.h: Declare _ns_flagdata as hidden.
11104         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_master.
11105         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_master.
11107         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypbind_resp.
11108         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypbind_resp.
11110         * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_cback_data.
11111         * include/rpcsvc/nis_callback.h: Add libnsl_hidden_proto for
11112         xdr_cback_data.
11114         * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypupdate_args.
11115         * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
11116         xdr_ypupdate_args.
11118         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_order.
11119         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_order.
11121         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_maplist.
11122         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_maplist.
11124         * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_obj_p.
11125         * include/rpcsvc/nis_callback.h: New file.
11127         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_val.
11128         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_val.
11130         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
11131         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
11133         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypmaplist.
11134         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypmaplist.
11136         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
11137         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
11139         * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypdelete_args.
11140         * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
11141         xdr_ypdelete_args.
11143         * nis/nis_xdr.h: Mark all functions as hidden.  Remove
11144         __BEGIN_DECLS and __END_DECLS, the header is not installed.
11146         * nis/nis_error.c: Remove table of strings.  Use position
11147         independent mechanism.
11148         * nis/nis_error.h: New file.
11150 2006-05-11  Jakub Jelinek  <jakub@redhat.com>
11152         * locale/programs/ld-time.c (time_finish): If wide era name or
11153         format aren't provided, set both wname and wformat to L"".
11155 2006-05-10  Ulrich Drepper  <drepper@redhat.com>
11157         * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Only store
11158         results if the call was succesful.
11160         * nis/nss-nis.h: Mark __yperr2nss_tab and __yperr2nss_count as hidden.
11162         * nis/nss-nisplus.h: Mark __niserr2nss_tab and __niserr2nss_count
11163         as hidden.
11165 2006-05-10  Jakub Jelinek  <jakub@redhat.com>
11167         * misc/sys/queue.h: Remove uses of all QUEUEDEBUG_* macros.
11169 2006-05-10  Ulrich Drepper  <drepper@redhat.com>
11171         * posix/wordexp.c (parse_glob): No need to check ifs for NULL, the
11172         caller makes sure this is not the case.
11173         (wordexp): Simplify ifs_white creation.  [Coverity CID 231]
11175 2006-05-09  Ulrich Drepper  <drepper@redhat.com>
11177         * posix/wordexp.c: Remove numerous NULL pointer tests before FREE
11178         calls.
11180         * io/ftw.c (open_dir_stream): Return right away if REALLOC fails.
11181         [Coverity CID 229, 230]
11183         * argp/argp-help.c (hol_entry_help): Handle STATE==NULL in ARG and
11184         DGETTEXT calls.
11185         (hol_help): Likewise.  [Coverity CID 226, 227]
11187         * string/argz-replace.c (__argz_replace): Unconditionally call
11188         free on SRC.  [Coverity CID 225]
11190         * nis/nis_creategroup.c (nis_creategroup): No need to duplicate
11191         the return value of __nis_default_owner and __nis_default_group,
11192         it has been especially allocated.  [Coverity CID 224]
11194         * nis/nis_defaults.c (searchXYX): New functions.  Used by both
11195         searchgroup and searchowner.  Significantly simplified.
11196         (__nis_default_owner): Remove duplication.  Do not locally copy the
11197         string before duplicating it.
11198         (__nis_default_group): Likewise.
11200         * nis/nis_lookup.c (nis_lookup): After calling nis_free_directory,
11201         we must clear the variable before calling __nisfind_server.
11203         * nis/nis_lookup.c (nis_lookup): Always free memory allocated with
11204         nis_getnames.  [Coverity CID 223]
11206         * locale/programs/locfile.c (locfile_read): Use alloca instead of
11207         xmalloc to allocate local repertoire name.  [Coverity CID 222]
11209         * iconv/iconv_charmap.c (use_to_charmap): No need to dynamically
11210         allocate memory for the input to add_bytes.  [Coverity CID 221]
11212         * posix/wordexp.c (w_addword): Free word if realloc fails and it
11213         was allocated here.  [Coverity CID 219, 220]
11215         * posix/getconf.c (print_all): Free confstr data after printing.
11216         [Coverity CID 218]
11218         * sysdeps/posix/getaddrinfo.c (gaih_inet): Free canon string if
11219         list allocation fails.  [Coverity CID 215]
11221         * nss/nsswitch.c (__nss_configure_lookup): Fix loop end condition.
11222         [Coverity CID 213]
11224         * argp/argp-help.c (hol_entry_cmp): Don't call canon_doc_option if
11225         string is NULL.  [Coverity CID 212]
11226         * argp/Makefile: Add rules to build and run bug-argp1.
11227         * argp/bug-argp1.c: New file.
11229         * io/ftw.c (ftw_dir): Use __rawmemchr instead of strchr to find
11230         end of string.
11231         * stdlib/canonicalize.c (__realpath): Likewise.
11233         * locale/programs/ld-time.c (time_finish): Don't dereference NULL
11234         pointer.  [Coverity CID 206]
11236         * elf/dl-dst.h (DL_DST_REQUIRED): Be prepared for missing link map
11237         in statically linked code.
11238         * elf/dl-load.c (_dl_dst_substitute): When replacing ORIGIN in
11239         statically built code, be prepared to have no link map.
11240         [Coverity CID 205]
11242         * argp/argp-help.c (fill_in_uparams): Handle STATE==NULL in
11243         dgettext calls. [Coverity CID 204]
11245         * argp/argp-help.c (struct uparams): Remove valid member.  Change
11246         the one user.
11247         (uparam_names): Reduce size.  Avoid relative relocations.
11248         Moved to read-only segment.
11249         (fill_in_uparams): Update for new layout.
11251         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs): Parameter can be
11252         assumed to always be != NULL. [Coverity CID 202]
11254         * argp/argp-help.c (hol_entry_help): Remove some dead code
11255         [Coverity CID 200].
11257         * nis/nss_nis/nis-service.c (_nss_nis_getservbyport_r): Optimize
11258         away a few more unconditional yperr2nss calls.
11259         (_nss_nis_getservbyname_r): Likewise.
11261 2006-05-06  Ulrich Drepper  <drepper@redhat.com>
11263         * sysdeps/generic/ldsodefs.h: Remove support for non-core
11264         architectures.
11266         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Make sure
11267         that unused memory passed to sendto is nevertheless initialized.
11269         [BZ #2499]
11270         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Avoid
11271         possibly unaligned memory accesses.
11273         * include/arpa/nameser.h: Also optimize NS_PUT16 and NS_PUT32.
11274         * resolv/res_mkquery.c: Use NS_PUT16 and NS_PUT32 instead of __putshort
11275         and __putlong respectively.  Correct buffer overflow check for
11276         NS_NOTIFY_OP.
11278         * resolv/res_send.c (send_vc): Use ns_put16 instead of putshort.
11280         * resolv/res_send.c (res_queriesmatch): Fix typo in comment.
11281         (send_dg): Rewrite error handling to be more compact and avoid
11282         double recomputation of timeouts.  Pass MSG_NOSIGNAL to send.
11284         * include/arpa/nameser.h: Add optimizations for NS_GET16 and NS_GET32.
11286         * resolv/res_send.c (res_nameinquery): Use NS_GET16 directly
11287         instead of ns_get16.
11288         (res_queriesmatch): Likewise.  Minor optimization.
11290         [BZ #2499]
11291         * resolv/res_query.c (__libc_res_nquery): If answerp != NULL,
11292         __libc_res_nsend might reallocate the buffer for the answer.  In
11293         this case we have to reload the HP pointer.
11295 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
11297         * stdio-common/vfscanf.c (memory_error): Remove definition.  Add
11298         some branch prediction hints.
11300         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Define SPLICE_F_*.
11301         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
11302         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
11303         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
11304         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
11305         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
11306         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
11307         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
11309 2006-05-05  Martin Schwidefsky  <schwidefsky@de.ibm.com>
11311         * sysdeps/s390/s390-32/elf/start.S: Replace pc relative relocation
11312         by a GOT relocation to make Scrt1.o position independent.
11313         * sysdeps/s390/s390-64/elf/start.S: Likewise.
11315         * sysdeps/unix/sysv/linux/s390/s390-32/syscall.S: Add support for
11316         six system call parameters.
11317         * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
11319 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
11321         * sunrpc/svcauth_des.c (cache_init): Use calloc instead of
11322         malloc&bzero.
11324         * sunrpc/svc_udp.c (BZERO): Remove definition.
11325         (CALLOC): Define.
11326         (svc_enablecache): Use CALLOC instead of ALLOC&BZERO.
11328         * sunrpc/des_impl.c: Remove ALT_ECB support.  We never used it.
11329         (des_SPtrans): Use uint32_t type.
11330         (des_skb): Likewise.
11332         * sunrpc/xdr_ref.c (xdr_reference): Use calloc instead of malloc&bzero.
11334 2006-05-05  Jakub Jelinek  <jakub@redhat.com>
11336         [BZ #2509]
11337         * stdio-common/tst-printf.sh: Adjust for tst-printf.c change even
11338         on 32-bit arches.
11340 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
11342         * locale/programs/ld-address.c (address_finish): Fix one more
11343         place where the iso639 array might be accessed beyond the limits.
11345 2006-05-04  Ulrich Drepper  <drepper@redhat.com>
11347         * nis/nis_table.c (nis_list): Avoid clearing res twice before
11348         filling it for the first time.
11350         * nis/nis_table.c (get_tablepath): Renamed from __get_tablepath.
11351         Adjust all callers.
11352         Free res object content before returning.
11354         * sunrpc/xdr_array.c (xdr_array): Use calloc instead of malloc&bzero.
11356         * sunrpc/key_call.c (__rpc_thread_key_cleanup): Also free
11357         client->cl_auth.
11359         * sunrpc/rpc_thread.c (__rpc_thread_destroy): Don't skip entire
11360         cleanup for initial thread, just the free call on TVP.
11362         * nscd/gai.c (__getline): Define.
11365 See ChangeLog.16 for earlier changes.