* stdio-common/vfprintf.c (vfprintf): Slightly more compact code.
[glibc.git] / ChangeLog
blobfe0a899819265a35fa840518e18d3b55b54cb9e0
1 2009-04-09  Ulrich Drepper  <drepper@redhat.com>
3         * stdio-common/vfprintf.c (vfprintf): Slightly more compact code.
5         * sysdeps/unix/sysv/linux/preadv.c: Avoid prototype for static
6         function if it is not defined.  Add some necessary casts.
7         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
9         * sysdeps/unix/sysv/linux/kernel-features.h: SPARC and IA64 also
10         have preadv/pwritev in 2.6.30.
12 2009-04-08  Ulrich Drepper  <drepper@redhat.com>
14         * malloc/malloc.c (malloc_info): New function.
15         * malloc/malloc.h: Declare it.
16         * malloc/Versions: Export malloc_info for GLIBC_2.10.
18         * sysdeps/unix/sysv/linux/preadv64.c (PREAD): Use __libc_pread64
19         to avoid PLT slot.
21         * malloc/malloc.c (_int_realloc): Add parameter with old block
22         size.  Remove duplicated test.  Don't handle mmap'ed blocks here.
23         Adjust all callers.
24         * malloc/hooks.c (realloc_check): Adjust _int_realloc call.
26 2009-04-07  Ulrich Drepper  <drepper@redhat.com>
28         * sysdeps/x86_64/strchrnul.S: New file.
30         * crypt/Makefile (LDLIBS-crypt.so): Use this variable instead of
31         depending libcrypt on -lfreebl3.
33         * sysdeps/unix/sysv/linux/kernel-features.h: Power also has
34         preadv/pwritev in 2.6.30.
36         * resolv/nss_dns/dns-host.c (getanswer_r): Use strcasecmp
37         instead of __strcasecmp.
39         * string/stratcliff.c (do_test): Add memchr tests..
40         * wcsmbs/wcsatcliff.c (MEMCHR): Define.
41         * sysdeps/x86_64/memchr.S: Fix handling of end of buffer after
42         first read quad word.
44 2009-04-06  Ulrich Drepper  <drepper@redhat.com>
46         * string/strverscmp.c (__strverscmp): Fix last cleanups.
47         * string/tst-svc.input: Add new test case.
48         * string/tst-svc.expect: Adjust.
49         * string/Makefile: Don't ignore tst-svc error.
51         * sysdeps/x86_64/memchr.S: New file.
53         * resolv/resolv.h (RES_SNGLKUP): Define.
54         * resolv/res_init.c (res_setoptions): Recognize single-request option.
55         * resolv/res_send.c (send_dg): If we sent two requests at once and
56         only get one reply before timeout switch to mode where we send the
57         second request only after the first answer has been received.
59 2009-04-05  Ulrich Drepper  <drepper@redhat.com>
61         * sysdeps/x86_64/strlen.S: Optimize by using SSE2 instructions.
62         * sysdeps/x86_64/strchr.S: Likewise.
64 2009-04-03  Ulrich Drepper  <drepper@redhat.com>
66         * configure.in: We need to test for the compiler earlier.
68         * misc/Makefile (routines): Add preadv, preadv64, pwritev, pwritev64.
69         * misc/Versions: Export preadv, preadv64, pwritev, pwritev64 for
70         GLIBC_2.10.
71         * misc/sys/uio.h: Declare preadv, preadv64, pwritev, pwritev64.
72         * sysdeps/unix/sysv/linux/kernel-features.h: Add entries for preadv
73         and pwritev.
74         * misc/preadv.c: New file.
75         * misc/preadv64.c: New file.
76         * misc/pwritev.c: New file.
77         * misc/pwritev64.c: New file.
78         * sysdeps/posx/preadv.c: New file.
79         * sysdeps/posx/preadv64.c: New file.
80         * sysdeps/posx/pwritev.c: New file.
81         * sysdeps/posx/pwritev64.c: New file.
82         * sysdeps/unix/sysv/linux/preadv.c: New file.
83         * sysdeps/unix/sysv/linux/preadv64.c: New file.
84         * sysdeps/unix/sysv/linux/pwritev.c: New file.
85         * sysdeps/unix/sysv/linux/pwritev64.c: New file.
86         * sysdeps/unix/sysv/linux/wordsize-64/preadv64.c: New file.
87         * sysdeps/unix/sysv/linux/wordsize-64/pwritev64.c: New file.
89         * sysdeps/unix/sysv/linux/readv.c (__libc_readv): Fix calling of
90         compatibility code.
91         * sysdeps/unix/sysv/linux/writev.c (__libc_writev): Likewise.
93         * sysdeps/unix/sysv/linux/kernel-features.h: Define
94         __ASSUME_COMPLETE_READV_WRITEV.
95         * sysdeps/unix/sysv/linux/readv.c: No need for userlevel fallback
96         with modern kernels.
97         * sysdeps/unix/sysv/linux/writev.c: Likewise.
99         * sysdeps/posix/readv.c: Since read is a cancellation point we have
100         to free a possible malloced buffer in case of cancellation.
101         * sysdeps/posix/writev.c: Likewise for write.
103 2009-04-02  Ulrich Drepper  <drepper@redhat.com>
105         * sysdeps/unix/sysv/linux/bits/socket.h: Add missing protocol numbers.
107         * configure.in: Recognize --enable-nss-crypt.
108         * config.make.in: Add nss-crypt entry.
109         * crypt/Makefile: If nss-crypt==yes, don't build md5.c, sha256.c,
110         sha512.c.  Don't run md5test, sha256test, sha512test.  Pass -DUSE_NSS
111         and include path for NSS directory to compiler for md5-crypt,
112         sha256-crypt, sha512-crypt.  Link libcrypt.so with -lfreebl3.
113         * crypt/md5-crypt.c: If USE_NSS is defined, don't use local hash
114         function implementation, use NSS.  Introduce wrappers around the
115         hash function calls.  Little code size optimization.
116         * crypt/sha256-crypt.c: Likewise.
117         * crypt/sha512-crypt.c: Likewise.
118         * scripts/check-local-headers.sh: Ignore nss3 directory.
120         * configure.in: Rename pic_default to libc_cv_pic_default.
121         * config.make.in: Likewise.
123 2009-04-01  Roland McGrath  <roland@redhat.com>
125         * elf/elf.h (R_SPARC_GLOB_JMP): New macro.
126         (R_SPARC_GOTDATA_HIX22, R_SPARC_GOTDATA_LOX10): New macros.
127         (R_SPARC_GOTDATA_OP_HIX22, R_SPARC_GOTDATA_OP_LOX10): Likewise.
128         (R_SPARC_GOTDATA_OP, R_SPARC_H34): Likewise.
129         (R_SPARC_SIZE32, R_SPARC_SIZE64): Likewise.
130         (R_SPARC_GNU_VTINHERIT, R_SPARC_GNU_VTENTRY, R_SPARC_REV32): Likewise.
131         (R_SPARC_NUM): Update.
132         From Dave Miller <davem@davemloft.net>.
134 2009-04-01  Ulrich Drepper  <drepper@redhat.com>
136         * sysdeps/unix/sysv/linux/sys/eventfd.h (EFD_SEMAPHORE): Define.
138 2009-03-31  Ulrich Drepper  <drepper@redhat.com>
140         * elf/dl-open.c: Keep track of used name spaces and only iterate over
141         those which are used.
142         * elf/dl-addr.c: Likewise.
143         * elf/dl-caller.c: Likewise.
144         * elf/dl-fini.c: Likewise.
145         * elf/dl-iteratephdr.c: Likewise.
146         * elf/dl-libc.c: Likewise.
147         * elf/dl-load.c: Likewise.
148         * elf/dl-support.c: Likewise.
149         * elf/dl-sym.c: Likewise.
150         * elf/rtld.c: Likewise.
151         * sysdeps/generic/ldsodefs.h: Likewise.
153         * elf/dl-load.c: Remove support for systems without MAP_ANON.
154         * elf/dl-minimal.c: Likewise.
155         * elf/dl-misc.c: Likewise.
156         * elf/rtld.c: Likewise.
157         * sysdeps/generic/ldsodefs.h: Likewise.
159 2009-03-30  Ulrich Drepper  <drepper@redhat.com>
161         * elf/do-lookup.h (do_lookup_x): Minor optimization and cleanup.
162         Avoid reuse of complex expression.
164         * po/fr.po: Update from translation team.
166 2009-03-16  Ulrich Drepper  <drepper@redhat.com>
168         * include/dirent.h: Yet more changes to match sort function type
169         change.
170         * sysdeps/unix/sysv/linux/i386/alphasort64.c: Likewise.
171         * sysdeps/unix/sysv/linux/i386/olddirent.h: Likewise.
172         * sysdeps/unix/sysv/linux/i386/versionsort64.c: Likewise.
174 2009-03-16  Thomas Schwinge  <tschwinge@gnu.org>
176         * dirent/scandir64.c (scandir64): Adjust declaration to type change.
178 2009-03-16  Ulrich Drepper  <drepper@redhat.com>
180         * nscd/connections.c (restart): Try to preserve the process name
181         by reading the /proc/self/exe symlink and using the return name.
182         Patch by Jeff Bastian <jbastian@redhat.com>.
184 2009-03-15  Ulrich Drepper  <drepper@redhat.com>
186         [BZ #9733]
187         * elf/dl-load.c (_dl_map_object_from_fd): Only call audit hooks
188         if we are not loading a new audit library.
189         * elf/dl-reloc (_dl_relocate_object): Third parameter is now a bitmask.
190         Only use profiling trampoline for auditing if we are not relocating
191         an audit library.
192         * elf/dl-open.c (dl_open_worker): Adjust _dl_relocate_object call.
193         * elf/rtld.c: Likewise.
194         * sysdeps/generic/ldsodefs.h: Adjust _dl_relocate_object prototype.
196         * elf/rtld.c (dl_main): Extend help message for --audit option.
198         [BZ #9759]
199         * dirent/dirent.h: Adjust prototypes of scandir, scandir64, alphasort,
200         alphasort64, versionsort, and versionsort64 to POSIX 2008.
201         * dirent/alphasort.c: Adjust implementation to type change.
202         * dirent/alphasort64.c: Likewise.
203         * dirent/scandir.c: Likewise.
204         * dirent/versionsort.c: Likewise.
205         * dirent/versionsort64.c: Likewise.
206         * sysdeps/wordsize-64/alphasort.c: Add hack to hide alphasort64
207         declaration.
208         * sysdeps/wordsize-64/versionsort.c: Add hack to hide versionsort64
209         declaration.
211         [BZ #9880]
212         * inet/inet6_rth.c (inet6_rth_reverse): Compute number of segments
213         correctly.  Set segleft member in output as required.
214         Patch partly by Yang Hongyang <yanghy@cn.fujitsu.com>.
215         * inet/tst-inet6_rth.c (do_test): Add tests for inet6_rth_reverse.
217         [BZ #9881]
218         * inet/inet6_rth.c (inet6_rth_add): Add some error checking.
219         Patch mostly by Yang Hongyang <yanghy@cn.fujitsu.com>.
220         * inet/Makefile (tests): Add tst-inet6_rth.
221         * inet/tst-inet6_rth.c: New file.
223         [BZ #5807]
224         * string/strlen.c (strlen): Fix omission in the expression to test
225         for NUL bytes.
227 2009-03-14  Ulrich Drepper  <drepper@redhat.com>
229         * crypt/sha256test.c (main): Perform 100,000 'a' test in a second way.
231         * elf/dl-runtime.c (reloc_offset): Define.
232         (reloc_index): Define.
233         (_dl_fixup): Rename reloc_offset parameter to reloc_arg.
234         (_dl_fixup_profile): Likewise.  Use reloc_index instead of
235         computing index from reloc_offset.
236         (_dl_call_pltexit): Likewise.
237         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_resolve): Just pass
238         the relocation index to _dl_fixup.
239         (_dl_runtime_profile): Likewise for _dl_fixup_profile and
240         _dl_call_pltexit.
241         * sysdeps/x86_64/dl-runtime.c: New file.
243         [BZ #9893]
244         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix
245         alignment of La_x86_64_regs.  Store xmm parameters.
246         Patch mostly by Jiri Olsa <olsajiri@gmail.com>.
248         [BZ #9913]
249         * string/strverscmp.c (__strverscmp): Fix case of different digits
250         in fractional part of string.
251         Patch by Jingyu Liu <jyliu@fortinet.com>.
252         * string/Makefile (tests): Add tst-svc2.
253         * string/tst-svc2.c: New file.
255         * string/strverscmp.c (__strverscmp): Optimize size of tables.
257         * locale/iso-639.def: Add Min Nan.
259 2009-03-11  Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
261         [BZ #9948]
262         * elf/dl-sysdep.c (_dl_show_auxv): Add support for AT_BASE_PLATFORM.
264 2009-03-14  Ulrich Drepper  <drepper@redhat.com>
266         * elf/dl-sysdep.c (auxvars): Compress data structure.
268         * sysdeps/i386/dl-machine.h (elf_machine_rel): Implement
269         STT_GNU_IFUNC handling.
270         (elf_machine_rela): Likewise.
272 2009-03-13  Ulrich Drepper  <drepper@redhat.com>
274         * config.h.in (USE_MULTIARCH): Define.
275         * configure.in: Handle --enable-multi-arch.
276         * elf/dl-runtime.c (_dl_fixup): Handle STT_GNU_IFUNC.
277         (_dl_fixup_profile): Likewise.
278         * elf/do-lookup.c (dl_lookup_x): Likewise.
279         * sysdeps/x86_64/dl-machine.h: Handle STT_GNU_IFUNC.
280         * elf/elf.h (STT_GNU_IFUNC): Define.
281         * include/libc-symbols.h (libc_ifunc): Define.
282         * sysdeps/x86_64/cacheinfo.c: If USE_MULTIARCH is defined, use the
283         framework in init-arch.h to get CPUID values.
284         * sysdeps/x86_64/multiarch/Makefile: New file.
285         * sysdeps/x86_64/multiarch/init-arch.c: New file.
286         * sysdeps/x86_64/multiarch/init-arch.h: New file.
287         * sysdeps/x86_64/multiarch/sched_cpucount.c: New file.
289         * config.make.in (experimental-malloc): Define.
290         * configure.in: Handle --enable-experimental-malloc.
291         * malloc/Makefile: Handle experimental-malloc flag.
292         * malloc/malloc.c: Implement PER_THREAD and ATOMIC_FASTBINS features.
293         * malloc/arena.c: Likewise.
294         * malloc/hooks.c: Likewise.
295         * malloc/malloc.h: Define M_ARENA_TEST and M_ARENA_MAX.
297 2009-03-11  Ulrich Drepper  <drepper@redhat.com>
299         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Add branch
300         prediction.  A few size optimizations.
302 2009-03-10  Ulrich Drepper  <drepper@redhat.com>
304         * time/tzset.c: Optimize a bit for size.
306 2009-03-10  Jakub Jelinek  <jakub@redhat.com>
308         * include/stdio.h (fmemopen): Add libc_hidden_proto.
309         * libio/fmemopen.c (fmemopen): Add libc_hidden_def.
311         * elf/sprof.c: Avoid warning about multi-line comment.
313 2009-03-10  Ulrich Drepper  <drepper@redhat.com>
315         * time/tzset.c (__tzset_parse_tz): Use correct string when parsing
316         DST name.
317         * time/tst-posixtz.c: Add tests for quoted timezone names.
319 2009-03-10  Jakub Jelinek  <jakub@redhat.com>
321         * posix/unistd.h (_POSIX_VERSION, _POSIX2_VERSION, _POSIX2_C_BIND,
322         _POSIX2_C_DEV, _POSIX2_SW_DEV, _POSIX2_LOCALEDEF): Define to
323         200809L instead of 200112L.
324         (_XOPEN_VERSION): For __USE_XOPEN2K8 define to 700.
325         * posix/tst-sysconf.c (STDVER): Define to 200809L instead of 200112L.
327         * stdlib/quick_exit.c (quick_exit): Pass &__quick_exit_funcs
328         instead of __quick_exit_funcs to __run_exit_handlers.
329         * stdlib/at_quick_exit.c (at_quick_exit): Add attribute_hidden.
330         * stdlib/exit.h (__run_exit_handlers): Add noreturn attribute.
331         (__cxa_at_quick_exit): Remove attribute_hidden.
332         * stdlib/exit.c (exit): Pass &__exit_funcs instead of __exit_funcs
333         to __run_exit_handlers.
334         * stdlib/cxa_at_quick_exit.c (__cxa_at_quick_exit): Remove
335         attribute_hidden.
337 2009-03-10  Ulrich Drepper  <drepper@redhat.com>
339         * po/id.po: Update from translation team.
341 2009-02-18  Jakub Jelinek  <jakub@redhat.com>
343         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Use
344         .machine push; .machine "power6" and .machine pop around mtfsf
345         insns outside of _ARCH_PWR6 define.
346         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
347         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
348         Likewise.
349         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
350         Likewise.
351         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_SET_DI_FPSCR): Likewise.
352         * sysdeps/powerpc/fpu/fenv_libc.h (fesetenv_register,
353         relax_fenv_state): Likewise.
355 2009-03-08  Ulrich Drepper  <drepper@redhat.com>
357         * stdlib/Makefile (routines): Add quick_exit, at_quick_exit, and
358         cxa_at_quick_exit.
359         (static-only-routines): Add at_quick_exit.
360         * stdlib/Versions: Export quick_exit and __cxa_at_quick_exit for
361         GLIBC_2.10.
362         * stdlib/quick_exit.c: New file.
363         * stdlib/at_quick_exit.c: New file.
364         * stdlib/cxa_at_quick_exit.c: New file.
365         * stdlib/cxa_atexit.c (__cxa_atexit): Move body to new function.  Call
366         it appropriately.
367         (__internal_atexit): New function.
368         (__new_exitfn): Now takes parameter to point to the list to use.
369         * stdlib/cxa_finalize.c: Remove quick_exit handlers, don't call them.
370         * stdlib/exit.c (__run_exit_handlers): New function.  Split from...
371         (exit): ...here.  Just call __run_exit_handlers appropriately.
372         * stdlib/exit.h: Declare __quick_exit_funcs, __run_exit_handlers,
373         __internal_atexit, __cxa_at_quick_exit.  Adjust __new_exitfn.
374         * stdlib/on_exit.c: Adjust call to __new_exitfn.
375         * stdlib/stdlib.h: Declare at_quick_exit and quick_exit.
377         * po/id.po: Update from translation team.
379 2009-03-07  Ulrich Drepper  <drepper@redhat.com>
381         * po/ru.po: Update from translation team.
383 2009-03-04  Ulrich Drepper  <drepper@redhat.com>
385         * po/nl.po: Update from translation team.
387 2009-03-03  Ulrich Drepper  <drepper@redhat.com>
389         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Declare fallocate{,64}.
390         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
391         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
392         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
393         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
394         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
395         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
397         * po/pl.po: Update from translation team.
399 2009-03-02  Ulrich Drepper  <drepper@redhat.com>
401         [BZ #7083]
402         * sysdeps/unix/sysv/linux/fallocate.c: New file.
403         * sysdeps/unix/sysv/linux/fallocate64.c: New file.
404         * sysdeps/unix/sysv/linux/wordsize-64/fallocate64.c: New file.
405         * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: New file.
406         * sysdeps/unix/sysv/linux/i386/fallocate64.c: New file.
407         * sysdeps/unix/sysv/linux/i386/fallocate.c: New file.
408         * sysdeps/unix/sysv/linux/Versions: Export fallocate and fallocate64
409         for GLIBC_2.10.
410         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
411         Add fallocate and fallocate64.
413         * io/fcntl.h: Pretty printing.
415 2009-03-02  Richard Guenther  <rguenther@suse.de>
417         * misc/sys/cdefs.h (__extern_always_inline): Add __artificial__
418         attribute also for non-C99 inline semantics variant.
420 2009-02-12  Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
422         * sysdeps/powerpc/powerpc32/power7/fpu/Implies: New file.
423         * sysdeps/powerpc/powerpc32/power7/Implies: Likewise.
424         * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
425         * sysdeps/powerpc/powerpc64/power7/Implies: Likewise.
426         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/fpu/Implies:
427         Likewise.
428         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/fpu/Implies:
429         Likewise.
431 2009-03-02  Ulrich Drepper  <drepper@redhat.com>
433         * po/cs.po: Update from translation team.
435 2009-02-28  Ulrich Drepper  <drepper@redhat.com>
437         * po/bg.po: Update from translation team.
438         * po/sv.po: Likewise.
439         * po/fi.po: Likewise.
440         * po/vi.po: Likewise.
442 2009-02-27  Roland McGrath  <roland@redhat.com>
444         * Makeconfig (%.v.i): Depend on Makeconfig.
445         Exclude % lines from initial #-comment removal.
447 2009-02-27  Ulrich Drepper  <drepper@redhat.com>
449         * po/ko.po: Update from translation team.
451 2009-02-26  Roland McGrath  <roland@redhat.com>
453         * shadow/lckpwdf.c (__lckpwdf): Move FLAGS inside block using it,
454         avoids unused warning.
456 2009-02-26  Andrew Stubbs  <ams@codesourcery.com>
457             SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
459         * sysdeps/unix/sysv/linux/sh/sys/procfs.h: Don't include signal.h,
460         sys/ucontext.h and asm/elf.h.  Include sys/user.h.
461         * sysdeps/unix/sysv/linux/sh/sys/user.h: Don't include features.h
462         and asm/user.h.  Include asm/ptrace.h.
463         (PTRACE_GETREGS, PTRACE_SETREGS, PTRACE_GETFPREGS,
464         PTRACE_SETFPREGS, PTRACE_GETFDPIC, PTRACE_GETFDPIC_EXEC,
465         PTRACE_GETFDPIC_INTERP, PTRACE_GETDSPREGS, PTRACE_SETDSPREGS):
466         Undefine.
467         (start_thread): Don't undefine.
468         (elf_greg_t, ELF_NGREG, elf_fpregset_t, user_fpu_struct, user):
469         Define.
471 2009-02-26  Ulrich Drepper  <drepper@redhat.com>
473         * wctype/wctype.h: The *_l functions are in POSIX 2008.
474         * wcsmbs/wchar.h: mbsnrtowcs, open_wmemstream, wcpcpy, wcpncpy,
475         wcscasecmp, wcsdup, wcsncasecmp, wcsnlen, wcsnrtombs,
476         wcscasecmp_l, wcsncasecmp_l, wcscoll_l, and wcsxfrm_l.
477         * sysdeps/mach/hurd/bits/posix_opt.h: Reset value of macros from
478         200112L to 200809L.
479         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Likewise.
480         * posix/getconf.c (vars): Add _SC_THREAD_ROBUST_PRIO_INHERIT and
481         _SC_THREAD_ROBUST_PRIO_PROTECT entries.
482         * bits/confname.h: Add _SC_THREAD_ROBUST_PRIO_INHERIT and
483         _SC_THREAD_ROBUST_PRIO_PROTECT.
484         * posix/unistd.h: fexecve is in POSIX 2008.
485         * time/time.h: strftime_l is in POSIX 2008.
486         * io/sys/stat.h: futimens is in POSIX 2008.
487         * string/strings.h: strcasecmp_l and strncasecmp_l are in POSIX 2008.
488         * string/string.h: stpcpy, stpncpy, strndup, strnlen, strsignal,
489         strcoll_l, strerror_l, and strxfrm_l are in POSIX 2008.
490         * stdlib/stdlib.h: mkdtemp is in POSIX 2008.
491         * libio/stdio.h: dprintf, fmemopen, getdelim, getline,
492         open_memstream, and vdprintf are in POSIX 2008.
494 2009-02-25  Ulrich Drepper  <drepper@redhat.com>
496         * include/features.h: Define macros for XPG7/POSIX 2008.
497         * ctype/ctype.h: The *_l functions are in POSIX 2008.
498         * dirent/dirent.h: alphasort, dirfd, scandir, and fdopendir are in
499         POSIX 2008.
500         * locale/langinfo.h: nl_langinfo_l is in POSIX 2008.
501         * locale/xlocale.h: Define locale_t type.
502         * locale/locale.h: duplocale, freelocale, newlocale, uselocale are
503         in POSIX 2008.  Don't define locale_t here.
504         * stdlib/monetary.h: strfmon_l is in POSIX 2008.
505         * sysdeps/unix/sysv/linux/bits/stat.h: Protect UTIME_NOW and
506         UTIME_OMIT only with __USE_ATFILE.
507         * signal/signal.h: Declare psignal and psiginfo for POSIX 2008.
508         * stdio-common/psiginfo.c: New file.
509         * stdio-common/psiginfo-data.h: New file.
510         * stdio-common/psiginfo-define.h: New file.
511         * stdio-common/Makefile (routines): Add psiginfo.
512         * stdio-common/Versions: Export psiginfo for GLIBC_2.10.
513         * sysdeps/unix/sysv/linux/ia64/bits/stat.h: Likewise.
514         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
515         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
516         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
517         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
518         * io/sys/stat.h: Move mknodat definition into same conditional as
519         mknod.
520         * time/sys/time.h: futimesat is not among the functions accepted
521         into the POSIX standard.
523         * include/features.h: If no feature selection given and we select
524         by default a POSIX mode, also define __USE_POSIX_IMPLICITLY.
525         * posix/Versions: Export __posix_getopt.
526         * posix/getopt.c (_getopt_initialize): Take additional parameter.
527         Use it to alternatively initialize __posixly_correct.
528         (_getopt_internal_r): Take addition parameter.  Pass on to
529         _getopt_initialize.
530         (_getopt_internal): Take addition parameter.  Pass on to
531         _getopt_internal_r.
532         (getopt): Pass additional zero to _getopt_internal.
533         (__posix_getopt): New function.
534         * posix/getopt.h: Add redirection for getopt.
535         * posix/getopt1.c (getopt_long): Pass additional zero to
536         _getopt_internal.
537         (getopt_long_only): Likewise.
538         (_getopt_long_r): Pass additional zero to _getopt_internal_r.
539         (_getopt_long_only_r): Likewise.
540         * posix/getopt_int.h: Adjust declarations of _getopt_internal and
541         _getopt_internal_r.
543 2009-02-24  Ulrich Drepper  <drepper@redhat.com>
545         * bits/confname.h: Define _SC_TRACE_EVENT_NAME_MAX, _SC_TRACE_NAME_MAX,
546         _SC_TRACE_SYS_MAX, _SC_TRACE_USER_EVENT_MAX, _SC_XOPEN_STREAMS.
547         * sysdeps/posix/sysconf.c (__sysconf): Handle
548         _SC_TRACE_EVENT_NAME_MAX, _SC_TRACE_NAME_MAX, _SC_TRACE_SYS_MAX,
549         _SC_TRACE_USER_EVENT_MAX, _SC_XOPEN_STREAMS.
551 2009-02-24  Roland McGrath  <roland@redhat.com>
553         [BZ #9895]
554         * README.template: Reworded not to use substituted version number.
555         Renamed to ...
556         * README: ... here (no longer generated).
557         * Makefile (README): Target removed.
559 2009-02-24  Ulrich Drepper  <drepper@redhat.com>
561         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf):
562         /proc/sys/kernel/rtsig_max doesn't exist anymore, use getrlimit
563         instead.
565         * io/sys/stat.h: The lstat functions have been mandatory since 2001.
567         * time/tzset.c (tzset_internal): Correct parsing of TZ envvar.
569 2009-02-22  Ulrich Drepper  <drepper@redhat.com>
571         * po/bg.po: Update from translation team.
573 2009-02-16  Jakub Jelinek  <jakub@redhat.com>
575         * stdlib/monetary.h: Uglify function parameter names.
576         * sunrpc/rpc/pmap_clnt.h: Likewise.
577         * sunrpc/rpc/svc.h: Likewise.
578         * sunrpc/rpc/xdr.h: Likewise.
579         * sunrpc/rpc/clnt.h: Likewise.
580         * resolv/netdb.h: Likewise.
581         * resolv/arpa/nameser.h: Likewise.
582         * resolv/resolv.h: Likewise.
583         * argp/argp.h: Likewise.
584         * locale/langinfo.h: Likewise.
585         * io/sys/stat.h: Likewise.
586         * posix/spawn.h: Likewise.
587         * nis/rpcsvc/nislib.h: Likewise.
588         * malloc/obstack.h: Likewise.
589         * sysdeps/ia64/bits/link.h: Likewise.
590         * sysdeps/i386/bits/link.h: Likewise.
591         * sysdeps/s390/bits/link.h: Likewise.
592         * sysdeps/powerpc/bits/link.h: Likewise.
593         * sysdeps/x86_64/bits/link.h: Likewise.
594         * sysdeps/sparc/bits/link.h: Likewise.
595         * sysdeps/sh/bits/link.h: Likewise.
596         * sysdeps/unix/sysv/linux/i386/sys/io.h: Likewise.
597         * sysdeps/unix/sysv/linux/x86_64/sys/io.h: Likewise.
598         * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: Likewise.
599         * sysdeps/unix/sysv/linux/sys/eventfd.h: Likewise.
601 2008-12-01  Fredrik Unger  <fred@tree.se>
603         * soft-fp/double.h [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_D,
604         FP_UNPACK_SEMIRAW_DP): Use _FP_UNPACK_RAW_1 instead of
605         _FP_UNPACK_RAW_2, fix up first argument.
607 2009-02-15  Ulrich Drepper  <drepper@redhat.com>
609         * sysdeps/unix/sysv/linux/getsysstats.c (next_line): New function.
610         (GET_NPROCS_PARSER): Change parameters and use next_line.
611         (__get_nprocs): Rewrite to not use stdio routines.
612         * sysdeps/unix/sysv/linux/sparc/getsysstats.c (GET_NPROCS_PARSER):
613         Change parameters and use next_line.
615 2009-02-13  Ulrich Drepper  <drepper@redhat.com>
617         [BZ #5381]
618         * nscd/nscd.h: Remove definitions and declarations for mem_in_flight.
619         Change mempool_alloc prototype.
620         * nscd/mem.c (gc): Don't handle mem_in_flight.
621         (mempool_alloc): Third parameter now only indicates whether this is the
622         first call (to allocate data) or not.  If it is, get db rdlock.
623         Release it on error.  Don't handle mem_in_flight.
624         * nscd/aicache.c (addhstaiX): Mark he parameter as const.
625         Adjust third parameter of mempool_alloc calls.
626         Nothing to do here in case mempool_alloc fails.
627         Avoid local variable shadowing parameter.  No need to get db rdlock
628         before calling cache_add.
629         * nscd/cache.c (cache_add): Adjust call to mempool_alloc.  There is
630         no mem_in_flight array anymore.
631         * nscd/connections.c: Remove definition and handling of mem_in_flight.
632         * nscd/grpcache.c (cache_addgr): Adjust third parameter of
633         mempool_alloc calls.  Mark he parameter as const.  Nothing to do here
634         in case mempool_alloc fails. No need to get db rdlock before calling
635         cache_add.
636         * nscd/hstcache.c (cache_addhst): Likewise.
637         * nscd/initgrcache.c (addinitgroupsX): Likewise.
638         * nscd/servicescache.c (cache_addserv): Likewise.
639         * nscd/pwdcache.c (cache_addpw): Likewise.  Remove some debugging code.
641 2009-02-11  Ulrich Drepper  <drepper@redhat.com>
643         * po/lt.po: Update from translation team.
645 2009-02-10  Ulrich Drepper  <drepper@redhat.com>
647         * elf/dl-load.c (open_verify): In case VALID_ELF_HEADER is
648         defined, allow additional data to be added using the optional
649         MORE_ELF_HEADER_DATA macro.
650         * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_HEADER,
651         VALID_ELF_OSABI, VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA): Define.
653 2009-02-08  Ulrich Drepper  <drepper@redhat.com>
655         * include/atomic.h: Define catomic_and if not already defined.
656         * sysdeps/x86_64/bits/atomic.h: Define catomic_and.
657         * sysdeps/i386/i486/bits/atomic.h: Likewise.
659 2009-02-07  Ulrich Drepper  <drepper@redhat.com>
661         * malloc/malloc.c (_int_free): Second argument is now mchunkptr.
662         Change all callers.
663         (_int_realloc): Likewise.  Third argument is now padded size
664         All _int_* functions are now static.
666         * malloc/hooks.c: Change all callers to _int_free and _int_realloc.
667         * malloc/arena.c: Likewise.
668         * include/malloc.h: Remove now unnecessary declarations of the _int_*
669         functions.
671         * sunrpc/rpc_common.c: We cannot move _null_auth into .rodata that
672         easily.
674         * malloc/malloc.c: Add branch prediction for use of the hooks.
676         * grp/compat-initgroups.c [NOT_IN_libc] (__libc_use_alloca): Define.
678 2009-02-06  Ulrich Drepper  <drepper@redhat.com>
680         [BZ #7095]
681         * bits/confname.h: Add SUSv7 macros for getconf environments.
682         * bits/environments.h: Likewise.
683         * sysdeps/unix/sysv/linux/i386/bits/environments.h: Likewise.
684         * sysdeps/unix/sysv/linux/powerpc/bits/environments.h: Likewise.
685         * sysdeps/unix/sysv/linux/s390/bits/environments.h: Likewise.
686         * sysdeps/unix/sysv/linux/sparc/bits/environments.h: Likewise.
687         * sysdeps/unix/sysv/linux/x86_64/bits/environments.h: Likewise.
688         * posix/confstr.c: Handle SUSv5 and SUSv7 environments.
689         * posix/getconf.c: Likewise.
690         * posix/sysconf.c: Likewise.
691         * sysdeps/posix/sysconf.c: Likewise.
692         * posix/Makefile (getconf.speclist): Also collect SUSv5 and SUSv7
693         environments.
695 2009-01-16  Petr Baudis  <pasky@suse.cz>
697         [BZ #9753]
698         * resolv/res_libc.c (__res_maybe_init): Call __res_vinit()
699         even if we currently have zero nscount.
701 2009-02-06  Ulrich Drepper  <drepper@redhat.com>
703         [BZ #9781]
704         * grp/compat-initgroups.c (compat_call): Switch to use malloc when
705         the input line is too long.
707         * po/Makefile (libc.pot): Add f_print as function taking c-format
708         parameter.
710         * debug/xtrace.sh: Unify translatable messages.
711         * elf/ldd.bash.in: Likewise.
712         * elf/sprof.c: Likewise.
713         * locale/programs/locale.c: Likewise.
714         * malloc/memusage.sh: Likewise.
715         * nss/getent.c: Likewise.
717 2009-02-06  Joseph Myers  <joseph@codesourcery.com>
719         * debug/pcprofiledump.c (print_version,
720         argp_program_version_hook): New function.
721         * elf/ldconfig.c (more_help): New function.
722         (argp): Use it.
723         * elf/sln.c (usage): New function.
724         (main): Support --help and --version.
725         * malloc/memusagestat.c (print_version): New function.
726         (argp_program_version_hook): New variable.
727         * nscd/nscd.c (more_help): New function.
728         (argp): Use it.
729         * posix/getconf.c (main): Send --version output to stdout.
730         Support --help.
731         * sunrpc/rpc_main.c (usage, options_usage): Take STREAM and STATUS
732         arguments.  All callers changed.
733         (print_version): New function.
734         (parseargs): Support --help and --version.
735         * sunrpc/rpcinfo.c (usage): Take STREAM argument.  All callers
736         changed.
737         (print_version): New function.
738         (main): Use getopt_long.  Support --help and --version.
739         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Support --help and
740         --version.
742 2009-02-06  Ulrich Drepper  <drepper@redhat.com>
744         * malloc/memusage.c (DEFAULT_BUFFER_SIZE): Change to 32768.
745         (update_data): Fix handling of wrapping back
746         to the beginning of the buffer.
748         [BZ #9823]
749         * stdio-common/psignal.c (psignal): Fix test for empty string.
751 2009-02-05  Ulrich Drepper  <drepper@redhat.com>
753         * include/rpc/auth.h: Use libc_hidden_proto for _null_auth.
754         * sunrpc/rpc_common.c: Add libc_hidden_def for _null_auth.  Also
755         move _null_auth to .rodata.
757         * time/tzset.c (__tzset_parse_tz): DST offset must also allow hour
758         value of 24.
760         * intl/dcigettext.c (DCIGETTEXT): Avoid some code duplication.
762         * sysdeps/unix/opendir.c (__alloc_dir): We have a lot more memory
763         today than when the original code was written.  Use larger
764         buffers.  This also makes it unnecessary to have stat information,
765         if this causes extra efforts.
766         (__opendir): In case O_DIRECTORY works, don't call fstat just for
767         __alloc_dir.
769 2009-02-03  Andrew Stubbs  <ams@codesourcery.com>
771         * sysdeps/sh/sh4/dl-trampoline.S: Only set HAVE_FPU if __SH_FPU_ANY__
772         is set.
773         * sysdeps/sh/sh4/setjmp.S: Support SH4-NOFPU.
774         * sysdeps/sh/sh4/__longjmp.S: Likewise.
775         * sysdeps/unix/sysv/linux/sh/sh4/getcontext.S: Likewise.
776         * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S: Likewise.
777         * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S: Likewise.
778         * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Likewise.
780 2009-02-04  Ulrich Drepper  <drepper@redhat.com>
782         * po/ru.po: Update from translation team.
784 2008-11-17  Nathan Sidwell  <nathan@codesourcery.com>
786         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (struct sigevent):
787         Add _tid slot to maintain consistency with kernel.
789 2009-02-04  Ulrich Drepper  <drepper@redhat.com>
791         * libio/wfileops.c (_IO_wfile_underflow): Fix handling of
792         incomplete characters at end of input buffer.
793         * libio/Makefile (tests): Add tst-fgetwc.
794         * libio/tst-fgetwc.c: New file.
795         * libio/tst-fgetwc.input: New file.
797 2009-02-02  Andrew Stubbs  <ams@codesourcery.com>
799         * sysdeps/unix/sysv/linux/sh/Makefile (libm.so-no-z-defs): Define.
801 2009-02-02  Ulrich Drepper  <drepper@redhat.com>
803         [BZ #9793]
804         * iconv/gconv_trans.c (__gconv_transliterate): Don't change
805         *OUTBUFSTART unless the whole output fit into the buffer.
806         * iconv/Makefile (tests): Add tst-iconv4.
807         * iconv/tst-iconv4.c: New file.
809 2009-02-01  Ulrich Drepper  <drepper@redhat.com>
811         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Add new descriptors.
812         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
814 2009-01-29  Andrew Stubbs  <ams@codesourcery.com>
816         * elf/Makefile (ld.so): Adjust the sed script to insert _begin in to
817         newer linker scripts.
819 2009-01-30  Ulrich Drepper  <drepper@redhat.com>
821         [BZ #7040]
822         * sysdeps/unix/sysv/linux/sys/inotify.h: Second parameter of
823         inotify_rm_watch should have type int.
825 2009-01-06  Steven Munroe  <sjmunroe@us.ibm.com>
827         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
828         Make aligned_restore_vmx a local symbol.
829         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp):
830         Likewise.
832 2009-01-30  Andreas Jaeger  <aj@suse.de>
834         * sysdeps/unix/sysv/linux/bits/shm.h (SHM_EXEC): Define.
835         * sysdeps/unix/sysv/linux/ia64/bits/shm.h (SHM_EXEC): Define.
836         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h (SHM_EXEC): Define.
837         * sysdeps/unix/sysv/linux/s390/bits/shm.h (SHM_EXEC): Define.
838         * sysdeps/unix/sysv/linux/sh/bits/shm.h (SHM_EXEC): Define.
839         * sysdeps/unix/sysv/linux/sparc/bits/shm.h (SHM_EXEC): Define.
840         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h (SHM_EXEC): Define.
842 2009-01-11  Ryan S. Arnold  <rsa@us.ibm.com>
844         [BZ #9726]
845         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_SET_DI_FPSCR,
846         _SET_SI_FPSCR): Clobber fp0 to prevent erroneous test-case passes.
848 2009-01-08  Ryan S. Arnold  <rsa@us.ibm.com>
850         [BZ #9726]
851         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
852         (__CONTEXT_FUNC_NAME): Fix mtfsf to use fp31 instead of fp0.
853         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
854         (__CONTEXT_FUNC_NAME): Fix mtfsf to use fp31 instead of fp0.
856 2009-01-11  Thomas Schwinge  <tschwinge@gnu.org>
858         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Use
859         memcpy instead of memcmp.
860         (_dl_setup_pointer_guard): Likewise.
862 2009-01-30  Ulrich Drepper  <drepper@redhat.com>
864         * malloc/malloc.c (sYSMALLOc): Don't use assert when detecting
865         manipulated brk, use malloc_printerr.
866         * misc/sbrk.c (__sbrk): Better error handling for nonsense
867         requests.
869 2009-01-30  Jakub Jelinek  <jakub@redhat.com>
871         * string/string.h (memchr, strchr, strrchr, strpbrk, strstr, index,
872         rindex): For C++ add inlines so that they can be recognized as
873         builtins.
874         * string/strings.h: Define correct C++ prototypes for gcc 4.4.
876 2009-01-29  Ulrich Drepper  <drepper@redhat.com>
877             Jakub Jelinek  <jakub@redhat.com>
879         * string/string.h: Define correct C++ prototypes for gcc 4.4.
880         * wcsmbs/wchar.h: Likewise.
882 2009-01-29  Ulrich Drepper  <drepper@redhat.com>
884         * sysdeps/i386/stackinfo.h (stackinfo_get_sp): Define.
885         (stackinfo_sub_sp): Define.
887 2009-01-28  Ulrich Drepper  <drepper@redhat.com>
889         [BZ #9750]
890         * nscd/mem.c (gc): Use alloca_count to get the real stack usage.
891         * include/alloca.h (alloca_account): Define.
892         * sysdeps/x86_64/stackinfo.h (stackinfo_get_sp): Define.
893         (stackinfo_sub_sp): Define.
895         * nscd/connections.c (nscd_init): If database file access fails
896         check whether this is due to permission problems and bail in that
897         case.
899         [BZ #9741]
900         * nscd/mem.c (gc): Fix assignment of he_data in case malloc is used.
901         Reported by Jun'ichi Nomura <j-nomura@ce.jp.nec.com>.
903 2009-01-14  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
905         * sysdeps/unix/sysv/linux/sh/sysdep.h (INTERNAL_SYSCALL):
906         Add "t" to clobber list.
907         (INTERNAL_SYSCALL_NCS): Likewise.
909 2009-01-28  Ulrich Drepper  <drepper@redhat.com>
911         * nss/getent.c (print_networks): Don't print comma between aliases.
913 2009-01-23  Ulrich Drepper  <drepper@redhat.com>
915         * sysdeps/unix/sysv/linux/tst-clone.c (do_test): Avoid warning.
917         * misc/hsearch_r.c (hcreate_r): We need at least three elements in
918         the hash table.
919         * misc/Makefile (tests): Add bug-hsearch1.
920         * misc/bug-hsearch1.c: New file.
922 2009-01-22  Roland McGrath  <roland@redhat.com>
924         * Makeconfig (%.v.i): Strip trailing # comments,
925         not only whole-line comments.
927 2009-01-10  Ulrich Drepper  <drepper@redhat.com>
929         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Take
930         one parameter.  If non-NULL use it to initialize return value.
931         (_dl_setup_pointer_guard): New function.
932         * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
933         * sysdeps/generic/ldsodefs.h: Declare _dl_random.
934         * elf/rtld.c (security_init): Pass _dl_random to
935         _dl_setup_stack_chk_guard.  Call _dl_setup_pointer_guard to initialize
936         pointer_chk_guard.
937         * elf/dl-sysdep.c (_dl_random): New variable.
938         (_dl_sysdep_start): Handle AT_RANDOM.
939         (_dl_show_auxv): Likewise.
940         * elf/dl-support.c (_dl_random): New variable.
941         (_dl_aux_init): Handle AT_RANDOM.
942         * csu/libc-start.c [!SHARED] (libc_start_main): Pass _dl_random
943         to _dl_setup_stack_chk_guard.
945         * elf/elf.h (AT_RANDOM): Define AT_BASE_PLATFORM and AT_RANDOM.
947 2009-01-10  Roland McGrath  <roland@redhat.com>
949         * nscd/nscd.c (parse_opt): Use argp_error for bad -i argument.
951 2009-01-08  Ulrich Drepper  <drepper@redhat.com>
953         * sysdeps/i386/fpu/libm-test-ulps: Adjust expm1 errors.
955         [BZ #9706]
956         * nss/nss_files/files-parse.c (strtou32): New function.
957         (INT_FIELD): Use strotu32 instead of strtoul to unify behavior
958         across 32-bit and 64-bit platforms.
959         (INT_FIELD_MAYBE_NULL): Likewise.
961 2009-01-08  Jakub Jelinek  <jakub@redhat.com>
963         [BZ #9720]
964         * sysdeps/unix/sysv/linux/bits/resource.h (enum __rusage_who): Avoid
965         comma after RUSAGE_CHILDREN if not -D_GNU_SOURCE.
966         * sysdeps/unix/sysv/linux/sparc/bits/resource.h (enum __rusage_who):
967         Likewise.
969 2009-01-05  Paolo Bonzini  <bonzini@gnu.org>
971         [BZ #697]
972         * posix/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
973         being NULL also if there are no backreferences.
974         * posix/rxspencer/tests: Add testcases.
976 2009-01-04  Paolo Bonzini  <bonzini@gnu.org>
978         [BZ #9697]
979         * posix/bug-regex17.c: Add testcases.
980         * posix/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
981         handling.
983 2009-01-05  Martin Schwidefsky  <schwidefsky@de.ibm.com>
985         * sysdeps/unix/sysv/linux/s390/bits/libc-vdso.h: New file.
986         * sysdeps/unix/sysv/linux/s390/gettimeofday.c: New file.
987         * sysdeps/unix/sysv/linux/s390/init-first.c: New file.
988         * sysdeps/unix/sysv/linux/s390/Makefile (sysdep_routines): Add dl-vdso
989         for elf subdir.
990         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (INLINE_VSYSCALL,
991         INTERNAL_VSYSCALL, INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK,
992         INTERNAL_SYSCALL_NCS, HAVE_CLOCK_GETRES_VSYSCALL and
993         HAVE_CLOCK_GETTIME_VSYSCALL: Define.
994         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
995         * sysdeps/unix/sysv/linux/s390/Versions: New file.
997 2008-12-31  Paolo Bonzini  <bonzini@gnu.org>
999         * posix/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
1000         * posix/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
1001         re_string_skip_chars, re_string_reconstruct): Likewise.
1002         * posix/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
1004 2008-12-31  Rafael Avila de Espindola  <espindola@google.com>
1006         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r): Check and
1007         adjust the buffer alignment.
1009 2009-01-07  Samuel Thibault  <samuel.thibault@ens-lyon.org>
1011         * sysdeps/mach/hurd/Makefile (sysdep_headers) [subdir=socket]:
1012         Add net/ethernet.h net/if_arp.h net/if_ether.h net/if_ppp.h
1013         net/route.h.
1015         * hurd/report-wait.c (describe_number): Use __stpcpy to prepend
1016         flavor to description only when flavor is not NULL.
1018         * hurd/hurdsig.c (signal_allowed): Unlock _hurd_dtable_lock
1019         mutex after SIGIO/SIGURG lookup loop.
1021 2009-01-03  Samuel Thibault  <samuel.thibault@ens-lyon.org>
1023         * bits/resource.h (PRIO_PROCESS, PRIO_PGRP, PRIO_USER): Add macros.
1025 2009-01-03  Ulrich Drepper  <drepper@redhat.com>
1027         * sysdeps/unix/sysv/linux/i386/sysdep.h: Describe 6th argument
1028         handling.
1030 2009-01-02  Ulrich Drepper  <drepper@redhat.com>
1032         * sysdeps/unix/sysv/linux/kernel-features.h
1033         (__ASSUME_FUTEX_CLOCK_REALTIME): Define.
1035         * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Create temporary state object
1036         if no output is written.
1038         * version.h: Bump to 2.10 development.
1040         * posix/getconf.c: Update copyright year.
1041         * nss/getent.c: Likewise.
1042         * iconv/iconvconfig.c: Likewise.
1043         * iconv/iconv_prog.c: Likewise.
1044         * elf/ldconfig.c: Likewise.
1045         * catgets/gencat.c: Likewise.
1046         * csu/version.c: Likewise.
1047         * elf/ldd.bash.in: Likewise.
1048         * elf/sprof.c (print_version): Likewise.
1049         * locale/programs/locale.c: Likewise.
1050         * locale/programs/localedef.c: Likewise.
1051         * nscd/nscd.c (print_version): Likewise.
1052         * debug/xtrace.sh: Likewise.
1053         * malloc/memusage.sh: Likewise.
1054         * malloc/mtrace.pl: Likewise.
1055         * debug/catchsegv.sh: Likewise.
1057 2008-12-29  Mike Frysinger  <vapier@gentoo.org>
1059         * iconvdata/Makefile (iconv-rules): Use LC_ALL=C when running awk
1060         script.
1062 2008-12-29  Ulrich Drepper  <drepper@redhat.com>
1064         * sysdeps/posix/getaddrinfo.c (gaih_inet): When the
1065         gethostbyname4_r function call succeeded, just leave the loop.
1067         [BZ #9694]
1068         * wcsmbs/wchar.h: Move undefs for local __need_* constants to the
1069         very end.
1070         * wctype/wctype.h: Get wint_t definition directly from <stddef.h>.
1071         * wctype/Makefile (tests): Add bug-wctypeh.
1072         * wctype/bug-wctypeh.c: New file.
1074         * nscd/nscd_gethst_r.c (nscd_gethst_r): Don't use nscd if
1075         LOCALDOMAIN is defined.
1076         * nscd/nscd_getai.c (__nscd_getai): Likewise.
1078         * sysdeps/x86_64/bits/select.h: New file.
1080         * resolv/res_init.c (__res_vinit): Count all servers in statp->nscount.
1082 2008-12-21  Bruno Haible  <bruno@clisp.org>
1084         [BZ #9677]
1085         * wcsmbs/mbsnrtowcs.c (__mbsnrtowcs): Create temporary state object
1086         if no output is written.
1088 2008-12-13  Klaus Dittrich  <kladit@arcor.de>
1090         * login/utmp_file.c (pututline_file): Replace call to dup2 with
1091         libc internal symbol __dup2 to avoid access through the PLT.
1093 2008-12-08  Ulrich Drepper  <drepper@redhat.com>
1095         [BZ #6545]
1096         * sysdeps/unix/sysv/linux/bits/socket.h (SCM_CREDENTIALS): Make
1097         available only for __USE_GNU.
1099         * inet/Makefile (tests): Add tst-getni2.
1100         * inet/tst-getni2.c: New file.
1102         [BZ #7080]
1103         * inet/getnameinfo.c (getnameinfo): Check for output buffers being
1104         NULL when NI_NAMEREQD is set.
1105         Patch mostly by Yang Hongyang <yanghy@cn.fujitsu.com>.
1106         * inet/Makefile (tests): Add tst-getni1.
1107         * inet/tst-getni1.c: New file.
1109 2008-12-03  Petr Baudis  <pasky@suse.cz>
1111         [BZ #7067]
1112         * nscd/connections.c (invalidate_cache): Use prune_run_lock
1113         instead of prune_lock.
1114         (nscd_run_prune): Before calling prune_cache, take prune_run_lock.
1115         * nscd/nscd.h (database_dyn): Add prune_run_cache.
1117 2008-12-07  Ulrich Drepper  <drepper@redhat.com>
1119         * resolv/res_send.c (send_dg): Use correct guards for SOCK_CLOEXEC
1120         use.
1122         * sysdeps/unix/sysv/linux/kernel-features.h: Fix typo in accept4
1123         handling.
1125         * resolv/res_init.c (__res_vinit): Always assign to statp->nscount
1126         after reading name server list.
1128         [BZ #7058]
1129         * nis/nss_nis/nis-hosts.c (_nss_nis_gethostbyname4_r): Fix memory
1130         handling for host name aliases.
1132 2008-11-24  Arkadiusz MiÅ›kiewicz  <arekm@maven.pl>
1134         * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Use LOAD_PIC_REG
1135         instead of doing things manually.
1137 2008-11-26  Chris Steel  <chris.steel.lnx@googlemail.com>
1139         * posix/regex_internal.h (build_wcs_upper_buffer):
1140         Return type is reg_error_t.
1142 2008-12-05  Ulrich Drepper  <drepper@redhat.com>
1144         * posix/globtest.sh: Use mktemp to create temporary file and
1145         directory.
1147         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_SET_S): Handle large
1148         sets correctly.
1149         (__CPU_CLR_S): Likewise.
1150         (__CPU_ISSET_S): Likewise.
1152 2008-12-05  Joseph Myers  <joseph@codesourcery.com>
1153             Ulrich Drepper  <drepper@redhat.com>
1155         * scripts/firstversion.awk: Use custom comparison function to compare
1156         version numbers.
1157         * scripts/versions.awk: Use sort invocation which can handle
1158         multi-digit sub-version numbers.
1160 2008-12-04  Ulrich Drepper  <drepper@redhat.com>
1162         * locale/programs/ld-address.c (DEFINE_LANGUAGE_CODE2): Define.
1163         * locale/iso-639.def: Add Chhattisgarhi entry.
1165 2008-12-02  Ulrich Drepper  <drepper@redhat.com>
1167         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Recognize
1168         ESRCH return value.
1169         (_nss_dns_gethostbyname4_r): Likewise.
1170         * resolv/res_init.c (__res_vinit): Initialize nscount to zero.
1171         * sysdeps/posix/getaddrinfo.c (gaih_inet): In case we use
1172         gethostbyname4_r, we don't have a separate IPv6 status, so copy
1173         the no_data variable.
1175         * resolv/res_init.c (__res_vinit): Fill in IPv4 name server
1176         information at the correct index.
1178         * socket/sys/socket.h: Declare accept4.
1179         * socket/accept4.c: New file.
1180         * sysdeps/unix/sysv/linux/accept4.c: New file.
1181         * sysdeps/unix/sysv/linux/i386/accept4.S: New file.
1182         * socket/Makefile (routines): Add accept4.
1183         * socket/Versions: Export accept4 with version GLIBC_2.10.
1184         * socket/paccept.c: Removed.
1185         * sysdeps/unix/sysv/linux/paccept.c: Removed.
1186         * sysdeps/unix/sysv/linux/i386/paccept.S: Removed.
1187         * Versions.def: Define GLIBC_2.10 for libc.
1188         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_ACCEPT4.
1190         * nscd/connections.c: Use accept4.
1192         * sysdeps/unix/sysv/linux/i386/socket.S: Fix comment.
1194 2008-12-01  Ulrich Drepper  <drepper@redhat.com>
1196         * resolv/res_send.c (send_dg): Create sockets with non-blocking
1197         flag already set.
1199         * stdlib/setenv.c (unsetenv): Don't search environment if it does
1200         not exist.
1201         * stdlib/Makefile (tests): Add tst-unsetenv1.
1202         * stdlib/tst-unsetenv1.c: New file.
1204 2008-11-29  Ulrich Drepper  <drepper@redhat.com>
1206         * login/utmp_file.c (file_writable): New variable.
1207         (setutent_file): Don't try to open file for writing.
1208         (pututline_file): Before writing, make descriptor writable if
1209         necessary.
1211 2008-11-26  Ulrich Drepper  <drepper@redhat.com>
1213         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Only restrict search
1214         to IPv4 or IPv6 if an interface has been found.
1216 2008-11-26  Roland McGrath  <roland@redhat.com>
1218         * sysdeps/unix/sysv/linux/alpha/ipc_priv.h: Renamed to ...
1219         * sysdeps/unix/sysv/linux/powerpc/ipc_priv.h: ... here.
1221         * sysdeps/unix/sysv/linux/alpha/wordexp.c: Renamed to ...
1222         * sysdeps/unix/sysv/linux/ia64/wordexp.c: ... here.
1223         * sysdeps/unix/sysv/linux/sparc/sparc64/wordexp.c: Change #include.
1225         * elf/elf.h (NT_386_IOPERM): New macro.
1226         (NT_PPC_VSX): New macro.
1228 2008-11-25  Roland McGrath  <roland@redhat.com>
1230         * sysdeps/alpha, sysdeps/unix/bsd/osf/alpha,
1231         sysdeps/unix/bsd/Attic/osf1/alpha, sysdeps/unix/sysv/linux/alpha,
1232         sysdeps/unix/sysv/linux/alpha/alpha, sysdeps/unix/alpha,
1233         sysdeps/mach/alpha, sysdeps/mach/hurd/alpha:
1234         Subdirectories moved to ports repository.
1235         * configure.in (base_machine): Remove alpha case.
1237 2008-11-25  Thomas Schwinge  <tschwinge@gnu.org>
1239         * sysdeps/mach/strerror_l.c: New file.
1241 2008-11-13  Ryan S. Arnold  <rsa@us.ibm.com>
1243         [BZ #6411]
1244         * sysdeps/powerpc/fpu/Makefile: Added test case tst-setcontext-fpscr.
1245         * sysdeps/powerpc/fpu/feholdexcpt.c (_FPU_MASK_ALL): Define to replace
1246         magic numbers.
1247         * sysdeps/powerpc/fpu/fenv_libc.h (fesetenv_register): Dynamically
1248         choose mtfsf insn based on PPC_FEATURE_HAS_DFP.
1249         (relax_fenv_state): Same as above.
1250         (FPSCR_29): Reserve bit in ISA 2.05.
1251         (FPSCR_NI): Provide define for compat.
1252         * sysdeps/powerpc/fpu/fesetenv.c (_FPU_MASK_ALL): Define to replace
1253         magic numbers.
1254         * sysdeps/powerpc/fpu/feupdateenv.c (_FPU_MASK_ALL): Define to replace
1255         magic numbers.
1256         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c: New file.  Test case to
1257         test setcontext and swapcontext with dynamic 64-bit FPSCR detection.
1258         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp): Adjust
1259         access to hwcap to account for hwcap size increase to uint64_t.
1260         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S (__sigsetjmp ):
1261         Likewise.
1262         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S
1263         (*setcontext): Likewise.
1264         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/setcontext.S:
1265         New file.
1266         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/swapcontext.S:
1267         New file.
1268         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
1269         (*setcontext): dynamically select mtfsf insn based on
1270         PPC_FEATURE_HAS_DFP. Adjust access to hwcap to account for hwcap size
1271         increase to uint64_t.
1272         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
1273         (*swapcontext): dynamically select mtfsf insn based on
1274         PPC_FEATURE_HAS_DFP.  Adjust access to hwcap to account for hwcap size
1275         increase to uint64_t.
1276         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/setcontext.S:
1277         New file.
1278         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/swapcontext.S:
1279         New file.
1280         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
1281         (*setcontext): dynamically select mtfsf insn based on
1282         PPC_FEATURE_HAS_DFP.
1283         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
1284         (*swapcontext): dynamically select mtfsf insn based on
1285         PPC_FEATURE_HAS_DFP.
1287 2008-11-13  Ulrich Drepper  <drepper@redhat.com>
1289         * version.h: Bump for 2.9 release.
1290         * include/features.h (__GLIBC_MINOR__): Bump to 9.
1292         [BZ #7029]
1293         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_ALLOC_SIZE):
1294         Multiply with sizeof of __cpu_mask, not 8 unconditionally after
1295         all the rounding.
1297 2008-11-11  Ulrich Drepper  <drepper@redhat.com>
1299         [BZ #7009]
1300         * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): Don't abort for
1301         unknown request types for now.
1303 2008-11-11  Roland McGrath  <roland@redhat.com>
1305         * sysdeps/x86_64/configure: New file.
1307         * configure.in: Add AC_SUBST(libc_cv_cpp_asm_debuginfo).
1308         * configure: Regenerated.
1310 2008-11-03  Martin Schwidefsky  <schwidefsky@de.ibm.com>
1312         * sysdeps/s390/s390-64/dl-trampoline.S (_dl_runtime_profile): Use the
1313         correct instruction to remove the stack frame.
1315 2008-11-03  Michael Matz  <matz@suse.de>
1317         * sysdeps/s390/bits/atomic.h (__arch_compare_and_exchange_val_32_acq,
1318         __arch_compare_and_exchange_val_64_acq): Add "memory" clobber.
1320 2008-11-07  Jakub Jelinek  <jakub@redhat.com>
1322         * include/stdio.h (__builtin_fwrite, __builtin_fwrite_unlocked):
1323         Remove.
1325         * bits/libc-tsd.h (__libc_tsd_define, __libc_tsd_address,
1326         __libc_tsd_get, __libc_tsd_set): Add TYPE argument, use it as the type
1327         of the thread variable instead of void *.
1328         * sysdeps/mach/hurd/bits/libc-tsd.h (__libc_tsd_define,
1329         __libc_tsd_address, __libc_tsd_get, __libc_tsd_set): Likewise.
1330         * include/ctype.h (CTYPE_B, CTYPE_TOUPPER, CTYPE_TOLOWER): Adjust
1331         __libc_tsd_define arguments.
1332         (__ctype_b_loc, __ctype_toupper_loc, __ctype_tolower_loc): Adjust
1333         __libc_tsd_address arguments.  Remove union hack.
1334         * include/rpc/rpc.h (RPC_VARS): Adjust __libc_tsd_define arguments.
1335         * sunrpc/rpc_thread.c (RPC_VARS): Likewise.
1336         (__rpc_thread_destroy, rpc_thread_multi, __rpc_thread_variables):
1337         Adjust __libc_tsd_{set,get} arguments.
1338         * ctype/ctype-info.c (CTYPE_B, CTYPE_TOUPPER, CTYPE_TOLOWER): Adjust
1339         __libc_tsd_define arguments.
1340         * locale/uselocale.c (__uselocale): Adjust __libc_tsd_{set,get}
1341         arguments.
1342         * locale/lc-ctype.c (_nl_postload_ctype): Likewise.
1343         * locale/global-locale.c (__libc_tsd_LOCALE): Adjust type.
1344         (LOCALE): Adjust __libc_tsd_define arguments.
1345         * locale/localeinfo.h (_NL_CURRENT_LOCALE): Adjust __libc_tsd_get
1346         arguments.
1347         (LOCALE): Adjust __libc_tsd_define arguments.
1348         * sysdeps/mach/hurd/malloc-machine.h (MALLOC): Adjust __libc_tsd_define
1349         arguments.
1350         (tsd_setspecific, tsd_getspecific): Adjust __libc_tsd_{set,get}
1351         arguments.
1353 2008-11-02  Ulrich Drepper  <drepper@redhat.com>
1355         * malloc/malloc.c (public_rEALLOc): When new arena is used, copy
1356         really all bytes.  Patch by Denys Vlasenko <dvlasenk@redhat.com>.
1358 2008-11-01  Ulrich Drepper  <drepper@redhat.com>
1360         [BZ #6966]
1361         * misc/hsearch_r.c (hsearch_r): Fix secondary hash function.
1363 2008-10-24  Joseph Myers  <joseph@codesourcery.com>
1364             Ulrich Drepper  <drepper@redhat.com>
1366         * math/tgmath.h (__floating_type): Use __builtin_classify_type in
1367         definition for GCC 3.1 and later.
1369 2008-10-31  Jakub Jelinek  <jakub@redhat.com>
1371         * elf/dl-tls.c (__tls_get_addr): After calling _dl_update_slotinfo
1372         refetch dtv, as it might have changed.
1373         * elf/Makefile: Add rules to build and run tst-tls18.
1374         * elf/tst-tls18.c: New test.
1375         * elf/tst-tlsmod18a.c: New file.
1377 2008-09-09  Aurelien Jarno  <aurelien@aurel32.net>
1379         [BZ #6875]
1380         * iconvdata/gconv-modules: Add LATIN9 as an alias to ISO-8859-15.
1382 2008-10-31  Ulrich Drepper  <drepper@redhat.com>
1384         [BZ #6867]
1385         * sysdeps/powerpc/elf/rtld-global-offsets.sym: Fix typo.
1387         [BZ #6919]
1388         * posix/spawnattr_getschedparam.c (posix_spawnattr_getschedparam):
1389         Fix length of copy operation.
1391 2008-10-02  Pierre Habouzit <madcoder@debian.org>
1393         * sysdeps/unix/sysv/linux/eventfd.c (eventfd): Use the eventfd2 syscall
1394         and fix its calling convention.
1396 2008-10-07  Andreas Schwab  <schwab@suse.de>
1398         [BZ #6942]
1399         * resolv/res_send.c (send_vc): Fix last change.
1400         (send_dg): Align here as well.
1402 2008-10-31  Ulrich Drepper  <drepper@redhat.com>
1404         * sysdeps/unix/sysv/linux/ulimit.c (__ulimit): Handle UL_GETFSIZE
1405         return value in case rlimit is RLIM_INFINITY.
1407         [BZ #6947]
1408         * sysdeps/unix/sysv/linux/ulimit.c (__ulimit): Fix return value
1409         for UL_SETFSIZE.
1410         * resource/Makefile (tests): Add bug-ulimit1.
1411         * resource/bug-ulimit1.c: New file.
1413         [BZ #6974]
1414         * sunrpc/rpc_main.c (mkfile_output): Properly handle filename
1415         without dot.  Properly terminate the string with a null byte.
1416         Based on a patch by Aurelien Jarno <aurelien@aurel32.net>.
1418         [BZ #6980]
1419         * debug/getgroups_chk.c (__getgroups_chk): Return EINVAL error for
1420         negative sizees.
1421         * posix/bits/unistd.h (getgroups): Call __getgroups_chk for
1422         negative __size.
1424         [BZ #6995]
1425         * sysdeps/powerpc/powerpc32/dl-machine.c: Fix typo in message.
1427 2008-10-30  Ulrich Drepper  <drepper@redhat.com>
1429         * grp/initgroups.c (internal_getgrouplist): Don't prematurely
1430         abort if there is no initgroups_dyn function.
1432         * resolv/res_send.c (send_dg): On timeout, only return nonzero
1433         result if any of the queries really provided an answer.
1435 2008-10-28  Ulrich Drepper  <drepper@redhat.com>
1437         * po/lt.po: Update from translation team.
1439 2008-10-26  Ulrich Drepper  <drepper@redhat.com>
1441         * po/id.po: Update from translation team.
1443 2008-10-24  Ulrich Drepper  <drepper@redhat.com>
1445         * resolv/res_query.c (__libc_res_nquery): Add a few casts.
1446         Fix tests for existence of second reply.
1448 2008-10-23  Ulrich Drepper  <drepper@redhat.com>
1450         * po/id.po: New file.
1451         Contributed by the Indonesian translation team.
1453 2008-10-22  Dmitry V. Levin  <ldv@altlinux.org>
1455         * misc/syslog.c (openlog_internal): Fix __have_sock_cloexec
1456         initialization.
1458 2008-10-17  Jakub Jelinek  <jakub@redhat.com>
1460         * elf/Makefile: Add rules to build and run tst-tls17.
1461         * elf/tst-tls17.c: New test.
1462         * elf/tst-tlsmod17a.c: New file.
1463         * elf/tst-tlsmod17b.c: Likewise.
1465 2008-10-17  Ulrich Drepper  <drepper@redhat.com>
1467         * stdlib/divmod_1.c: Use correct type for dummy variable.
1468         * stdlib/mod_1.c: Likewise.
1470 2008-10-16  Ulrich Drepper  <drepper@redhat.com>
1472         * elf/dl-tls.c (_dl_update_slotinfo): Copy all of the initial DTV.
1474 2008-10-16  Jakub Jelinek  <jakub@redhat.com>
1476         * sysdeps/unix/sysv/linux/sys/signalfd.h (signalfd): Fix __THROW vs.
1477         __nonnull order for C++.
1478         * sysdeps/unix/sysv/linux/alpha/sys/signalfd.h (signalfd): Likewise.
1479         * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h (signalfd): Likewise.
1481 2008-10-01  Daniel Jacobowitz  <dan@codesourcery.com>
1483         * stdlib/longlong.h: Update from GCC.
1485 2008-10-09  Jakub Jelinek <jakub@redhat.com>
1486             David S. Miller  <davem@davemloft.net>
1488         * sysdeps/sparc/sparc64/sparcv9v/memcpy.S: When not USE_BPR,
1489         make sure any registers used with 64-bit 'branch-on-register'
1490         instructions have their top 32-bits clear.
1491         * sysdeps/sparc/sparc64/sparcv9v/memset.S: Likewise.
1492         * sysdeps/sparc/sparc64/sparcv9v2/memcpy.S: Likewise.
1494 2008-09-18  Andreas Schwab  <schwab@suse.de>
1496         [BZ #6942]
1497         * resolv/res_send.c (send_vc): Fix use of unaligned address.
1498         Properly handle partial reads.
1500 2008-10-01  Mark Shinwell  <shinwell@codesourcery.com>
1502         * elf/elf.h (STO_MIPS_PLT): New.
1503         (R_MIPS_COPY): New.
1504         (R_MIPS_JUMP_SLOT): New.
1505         (R_MIPS_NUM): Redefine to 128.
1506         (DT_MIPS_PLTGOT): New.
1507         (DT_MIPS_RWPLT): New.
1508         (DT_MIPS_NUM): Redefine to 0x35.
1510 2008-10-01  Ulrich Drepper  <drepper@redhat.com>
1512         * timezone/africa: Update from tzdata2008f.
1513         * timezone/asia: Likewise.
1514         * timezone/australasia: Likewise.
1515         * timezone/europe: Likewise.
1516         * timezone/leapseconds: Likewise.
1517         * timezone/northamerica: Likewise.
1518         * timezone/southamerica: Likewise.
1519         * timezone/zone.tab: Likewise.
1521 2008-09-30  Ulrich Drepper  <drepper@redhat.com>
1523         * nscd/connections.c: Disable use of paccept for now.
1525 2008-09-29  Ulrich Drepper  <drepper@redhat.com>
1527         * socket/Versions: Remove paccept export for GLIBC_2.9.
1528         * socket/Makefile (routines): Remove paccept.
1529         * socket/sys/socket.h: Remove paccept declaration.
1531         * po/sv.po: Update from translation team.
1533 2008-09-22  Deborah S. Townsend  <dstownse@us.ibm.com>
1535         * sysdeps/s390/s390-64/s390x-mcount.S: Replace ahi with aghi.
1536         * sysdeps/unix/sysv/linux/s390/s390-64/socket.S: Likewise.
1538 2008-09-16  Ulrich Drepper  <drepper@redhat.com>
1540         * dlfcn/dlopen.c (dlopen_doit): Allow __RTLD_SPROF flag.
1541         Patch by Olivier Fourdan <ofourdan@redhat.com>.
1543 2008-09-15  Ulrich Drepper  <drepper@redhat.com>
1545         * sunrpc/rpc/svc.h: Declare svcfd_create.
1546         Patch by Michael Solberg <msolberg@redhat.com>.
1548 2008-09-12  Flavio Leitner  <fleitner@redhat.com>
1549             Ulrich Drepper  <drepper@redhat.com>
1551         * malloc/malloc.c (public_vALLOc): Try other arenas in case
1552         _int_valloc fails.
1553         (public_pVALLOc): Likewise.
1555 2008-09-02  Andreas Jaeger  <aj@suse.de>
1557         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: Fix last
1558         commit.
1560 2008-08-26  Aurelien Jarno  <aurelien@aurel32.net>
1562         [BZ #6860]
1563         * hurd/hurd/signal.h (HURD_MSGPORT_RPC): Fix a typo.
1565 2008-07-18  Daniel Jacobowitz  <dan@codesourcery.com>
1567         * Makefile (check-data): Check data directory in add-ons.
1568         * elf/Makefile (check-data): Likewise.
1570 2008-08-18  Roland McGrath  <roland@redhat.com>
1572         * configure.in (--with-cpu): Check compiler support for -march/-mcpu.
1573         * configure: Regenerated.
1574         * config.make.in (cflags-cpu): New substituted variable.
1575         (with-cpu): Variable removed.
1576         * Makeconfig (+cflags): Use $(cflags-cpu), not $(with-cpu).
1578 2008-08-14  Ryan S. Arnold  <rsa@us.ibm.com>
1580         [BZ #6845]
1581         * sysdeps/powerpc/fpu/bits/mathinline.h (__signbitl): Copy new
1582         __signbitl definition and __LONG_DOUBLE_128__ guard from:
1583         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: Remove as
1584         redundant.  Functions which call floating point assembler operations
1585         should go into a sysdeps powerpc/fpu directory.
1587 2008-08-15  Ulrich Drepper  <drepper@redhat.com>
1589         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Define MAP_STACK.
1590         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Likewise.
1592 2008-08-14  Ulrich Drepper  <drepper@redhat.com>
1594         * sysdeps/x86_64/memset.S: Reduce size of tables for PIC.
1596         * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): Undo all
1597         change related to AT_EXECFN.  We cannot use that string.
1598         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Remove
1599         _dl_execfn member.
1600         * elf/dl-support.c: Remove _dl_execfn variable.
1601         (_dl_aux_init): Remove handling of AT_EXECFN.
1602         * elf/dl-sysdep.c (_dl_sysdep_start): Remove handling of AT_EXECFN.
1603         * elf/rtld.c (process_envvars): Remove use of __ASSUME_AT_EXECFN.
1605 2008-08-13  Ulrich Drepper  <drepper@redhat.com>
1607         [BZ #6544]
1608         * libio/fmemopen.c: Implement binary mode.  In this mode no NUL
1609         byte gets added to writes and seeks from the end use the length of
1610         the buffer and not the currently terminating NUL byte.
1612         [BZ #6634]
1613         * login/utmp_file.c (getutent_r_file): Take additional parameter.
1614         Set to true if locking failed.
1615         (getutid_r_file): Adjust caller.
1616         (pututline_file): Likewise.  Return NULL in this case.
1617         Patch mostly by halesh.s@gmail.com.
1619 2008-08-12  Ulrich Drepper  <drepper@redhat.com>
1621         [BZ #6589]
1622         * sysdeps/unix/sysv/linux/ifaddrs.c (struct sockaddr_ll_max):
1623         Define.
1624         (struct ifaddrs_storage): Use it instead of sockaddr_ll.
1626 2008-08-12  Ryan S. Arnold  <rsa@us.ibm.com>
1628         [BZ #6839]
1629         * sysdeps/powerpc/powerpc32/dl-machine.c (CHECK_STATIC_TLS): Remove
1630         macro since it is now available in elf/dynamic-link.h.
1632 2008-08-12  Roland McGrath  <roland@frob.com>
1634         * hurd/hurd/signal.h (HURD_MSGPORT_RPC): Avoid -Wparenthesis triggers,
1635         in case used outside of libc.
1636         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>
1638 2008-08-11  Ulrich Drepper  <drepper@redhat.com>
1640         * resolv/res_mkquery.c (res_nmkquery): Call ns_name_compress
1641         directly instead of going through dn_comp.
1643 2008-08-11  Aurelien Jarno  <aurel32@debian.org>
1645         * sysdeps/mach/i386/machine-lock.h (__spin_unlock, __spin_try_lock):
1646         Fix asm constraints.
1648 2008-08-07  Ulrich Drepper  <drepper@redhat.com>
1650         [BZ #6790]
1651         * sysdeps/unix/sysv/linux/bits/in.h (IP_PMTUDISC_PROBE): Define.
1652         (IPV6_PMTUDISC_PROBE): Likewise.
1654 2008-08-07  Pete Eberlein  <eberlein@us.ibm.com>
1656         [BZ #6791]
1657         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h (PROT_SAO): Define.
1659 2008-08-01  Steven Munroe  <sjmunroe@us.ibm.com>
1660             Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
1662         [BZ #6817]
1663         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags):
1664         Added the members 'vsx' and 'arch_2_06'.
1665         (_dl_powerpc_platforms): Add the member 'power7'.
1666         * sysdeps/powerpc/dl-procinfo.h: Modify _DL_HWCAP_FIRST
1667         to reflect the changes required by VSX and ISA 2.06.
1668         Modify _DL_PLATFORMS_COUNT to reflect the addition of
1669         'power7'.
1670         Defined PPC_PLATFORM_POWER7.
1671         (_dl_string_platform): Add support for POWER7.
1672         * sysdeps/powerpc/sysdep.h: Define bit masks for VSX
1673         capability and ISA 2.06.
1675 2008-08-07  Ulrich Drepper  <drepper@redhat.com>
1677         [BZ #6824]
1678         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: Use correct
1679         macro to detect use of 128 bit long double.
1680         Patch by Ryan S. Arnold <rsa@us.ibm.com>.
1682 2008-08-05  Ulrich Drepper  <drepper@redhat.com>
1684         * scripts/gen-as-const.awk: Use 32-bit values on 32-bit platforms.
1686         [BZ #5794]
1687         * sysdeps/i386/fpu/s_expm1l.S: Simply use exp implementation for large
1688         parameters.
1689         * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
1690         Patch by Denys Vlasenko <dvlasenk@redhat.com>.
1692 2008-08-03  Ulrich Drepper  <drepper@redhat.com>
1694         * nscd/connections.c (main_loop_poll): Pass a buffer which is
1695         guaranteed to be large enough to read inotify event.  Ignore
1696         EAGAIN error.  Better error message.  Add branch predicition.
1697         (main_loop_epoll): Likewise.
1699 2008-08-02  Roland McGrath  <roland@frob.com>
1701         * sysdeps/mach/i386/machine-lock.h (__spin_unlock, __spin_try_lock):
1702         Add memory clobbers.
1704 2008-08-02  Ulrich Drepper  <drepper@redhat.com>
1706         * manual/arith.texi: Avoid @strong{Note:}.
1707         * manual/creature.texi: Likewise.
1708         * manual/filesys.texi: Likewise.
1709         * manual/math.texi: Likewise.
1710         * manual/memory.texi: Likewise.
1711         * manual/resource.texi: Likewise.
1712         * manual/syslog.texi: Likewise.
1713         * manual/time.texi: Likewise.
1715         * sysdeps/posix/clock_getres.c (hp_timing_getres): Remove inline
1716         to prevent warning.
1718 2008-08-01  Ulrich Drepper  <drepper@redhat.com>
1720         * sysdeps/unix/sysv/linux/Versions: Fix changes due to old patch for
1721         new epoll_create1 interface.
1722         * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
1723         * sysdeps/unix/sysv/linux/sys/epoll.h: Likewise.
1724         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
1726         * include/arpa/nameser.h (NS_GET16): Use const pointer.
1727         (NS_GET32): Likewise.
1729         * sysdeps/unix/sysv/linux/kernel-features.h: s390 has the new
1730         syscalls, too.
1732         * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): We cannot
1733         use the AT_EXECFN value if it is no absolute path.
1734         * sysdeps/unix/sysv/linux/kernel-features.h: Never define
1735         __ASSUME_AT_EXECFN.
1737         * Versions.def: Add GLIBC_2.9 to libresolv.
1738         * include/resolv.h: Remove hidden proto declarations for __ns_*
1739         functions.  Add them for __dn_count_labels and __p_secstodate.
1740         * include/arpa/nameser.h: Add a number of hidden proto declarations.
1741         Define ns_msg_getflags macro here.
1742         * resolv/res_debug.c: Add hidden definition for __dn_count_labels
1743         and __p_secstodate.
1744         * resolv/Versions: Export functions from <arpa/nameser.h> from
1745         libresolv in version GLIBC_2.9.
1746         * resolv/ns_name.c: Integrate changes from bind 9.5.0.  Add necessary
1747         hidden definitions.
1748         * resolv/ns_netint.c: Likewise.
1749         * resolv/ns_parse.c: Likewise.
1750         * resolv/ns_print.c: Likewise.
1751         * resolv/ns_samedomain.c: Likewise.
1752         * resolv/ns_ttl.c: Likewise.
1753         * resolv/arpa/nameser_compat.h: Likewise.
1754         * resolv/arpa/nameser.h: Likewise.  Remove macros which redirect
1755         function calls.
1756         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Use __ns_get16
1757         instead of ns_get16.
1758         * resolv/nss_dns/dns-host.c (getanswer_r): Use __ns_get16 and
1759         __ns_get32 instead of ns_get16 and ns_get32 respectively.
1760         (gaih_getanswer_slice): Likewise.
1761         * resolv/Makefile (libresolv-routines): Add ns_date.
1762         * resolv/ns_date.c: New file.
1764         * elf/Makefile (check-localplt.out): Also check libresolv and
1765         libcrypt.
1767 2008-07-31  Ulrich Drepper  <drepper@redhat.com>
1769         * sysdeps/unix/sysv/linux/kernel-features.h: Define
1770         __ASSUME_O_CLOEXEC.
1772 2008-07-30  Ulrich Drepper  <drepper@redhat.com>
1774         * sysdeps/posix/getaddrinfo.c (gaih_inet): Raise size of initial
1775         buffer passed to NSS functions.
1777         * nscd/connections.c (nscd_init): Typo in preprocessor directive.
1779         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PACCEPT):
1780         Define.
1782         * misc/syslog.c (openlog_internal): Fix compile problem.
1784 2008-07-28  Roland McGrath  <roland@redhat.com>
1786         * elf/dl-sysdep.c (_dl_show_auxv): Add AT_EXECFN to the table.
1788 2008-07-28  Ulrich Drepper  <drepper@redhat.com>
1790         * io/ftw.c (add_object): Remove inline to avoid warning.
1792         * sysdeps/unix/sysv/linux/paccept.c: Fix compile problem.
1794         * resolv/res_send.c (__libc_res_nsend): Take additional parameter.
1795         Use it instead of locally defined resplen2 variable.
1796         (res_nsend): Adjust for __libc_res_nsend interface change.
1797         (send_vc): Initialize *resplen2 if necessary.  Read length of
1798         package into an appropriately aligned variable.  Store converted length
1799         in new variable and use it appropriately.
1800         Add branch prediction help.
1801         * resolv/res_query.c (__libc_res_nquery): Take additional parameter
1802         and pass it on to __libc_res_nsend.  Adjust all callers.
1803         (__libc_res_nsearch): Likewise.
1804         (__libc_res_nqeurydomain): Likewise.
1805         * resolv/nss_dns/dns-host.c: Adjust for __libc_res_nsearch interface
1806         change.
1807         (_nss_dns_gethostbyname4): Don't unconditionally allocate tmp array.
1808         Define resplen2 variable and pass it to __libc_res_nsearch and then
1809         to gaih_getanswer.
1810         (getanswer_r): In case of incorrect DNS data don't overread buffer.
1811         Add branch prediction.
1812         (gaih_getanswer_slice): Likewise.  Check for invalid data types.
1813         (gaih_getanswer): Don't decode second slice if first one failed due
1814         to a too small buffer.  Don't let not found status of second
1815         decoder shadow results of the first.
1816         * resolv/gethnamaddr.c (gethostbyname2): Adjust for __libc_res_nsearch
1817         and __libc_res_nquery interface changes
1818         (gethostbyaddr): Adjust for __libc_res_nquery interface change.
1819         * include/resolv.h: Adjust prototypes for __libc_res_nquery,
1820         __libc_res_nsearch, and __libc_res_nsend.
1821         * resolv/nss_dns/dns-canon.c: Adjust for __libc_res_nquery interface
1822         change.
1823         * resolv/nss_dns/dns-network.c: Adjust for __libc_res_nquery and
1824         __libc_res_nsearch interface changes.
1826 2008-07-27  Ulrich Drepper  <drepper@redhat.com>
1828         * libio/iopopen.c (_IO_new_proc_open): Remove unnecessary volatile.
1830         * posix/wordexp.c (exec_comm): Use pipe2 if possible to create
1831         file descriptors with close-on-exec set.
1832         (exec_comm_child): Fix the case where the write end of the pipe is
1833         STDOUT_FILENO already.  In case it is, clear close-on-exec.
1835         * sysdeps/unix/sysv/linux/syscalls.list: Add __pipe2 alias.
1836         * io/pipe2.c: Likewise.
1837         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PIPE2
1838         instead of __ASSUME_PACCEPT.
1839         * include/unistd.h: Declare __have_pipe2.
1840         * libio/iopopen.c: Implement "e" flag.
1841         * libio/Makefile (tests): Add tst-popen1.
1842         * libio/tst-popen1.c: New file.
1844         * sysdeps/unix/sysv/linux/bits/socket.h: Define PF_ISDN and AF_ISDN.
1845         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
1847 2008-07-26  Ulrich Drepper  <drepper@redhat.com>
1849         [BZ #6771]
1850         * libio/fileops.c (_IO_new_file_attach): Preserve errno around
1851         success call of _IO_SEEKOFF or calls which failed because the
1852         descriptor is for a pipe.
1854         * sunrpc/key_call.c (getkeyserv_handle): Use FD_CLOEXEC instead of
1855         magic number.
1857         * misc/syslog.c (openlog_internal): Use SOCK_CLOEXEC if possible.
1859         * malloc/mtrace.c (mtrace): Use 'e' flag in fopen call.  Drop
1860         F_SETFD use if we know fopen set the flag.
1862         * login/utmp_file.c (setutent_file): Minor optimization in case
1863         O_CLOEXEC is available.
1865 2008-07-24  Tom "spot" Callaway  <tcallawa@redhat.com>
1867         * Makeconfig: Define pie-ccflag and PIE-ccflag variables.
1868         * elf/Makefile: Use pie-ccflag variable.
1869         * nscd/Makefile: Likewise.
1870         * sysdeps/sparc/Makefile: Set $(pie-ccflag) to -fPIE.
1872 2008-07-21  Andreas Krebbel  <krebbel1@de.ibm.com>
1874         [BZ #6724]
1875         * Versions.def: Add GLIBC_2.9 version tag for libutil.
1876         * sysdeps/unix/sysv/linux/s390/bits/utmp.h: Copy of
1877         gnu/bits/utmp.h.  Check for __WORDSIZE_COMPAT32 removed.
1878         * sysdeps/unix/sysv/linux/s390/bits/utmpx.h: Copy of
1879         gnu/bits/utmpx.h.  Check for __WORDSIZE_COMPAT32 removed.
1880         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Add new files
1881         utmp32, utmpx32 and login32.
1882         * sysdeps/unix/sysv/linux/s390/s390-32/Versions: Add 2.9
1883         versions of struct utmp functions to libc and libutil.
1884         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-compat.h: New file.
1885         * sysdeps/unix/sysv/linux/s390/s390-32/getutent.c: New file.
1886         * sysdeps/unix/sysv/linux/s390/s390-32/getutent_r.c: New file.
1887         * sysdeps/unix/sysv/linux/s390/s390-32/getutid.c: New file.
1888         * sysdeps/unix/sysv/linux/s390/s390-32/getutid_r.c: New file.
1889         * sysdeps/unix/sysv/linux/s390/s390-32/getutline.c: New file.
1890         * sysdeps/unix/sysv/linux/s390/s390-32/getutline_r.c: New file.
1891         * sysdeps/unix/sysv/linux/s390/s390-32/getutmp.c: New file.
1892         * sysdeps/unix/sysv/linux/s390/s390-32/getutxent.c: New file.
1893         * sysdeps/unix/sysv/linux/s390/s390-32/getutxid.c: New file.
1894         * sysdeps/unix/sysv/linux/s390/s390-32/getutxline.c: New file.
1895         * sysdeps/unix/sysv/linux/s390/s390-32/login.c: New file.
1896         * sysdeps/unix/sysv/linux/s390/s390-32/login32.c: New file.
1897         * sysdeps/unix/sysv/linux/s390/s390-32/pututxline.c: New file.
1898         * sysdeps/unix/sysv/linux/s390/s390-32/updwtmp.c: New file.
1899         * sysdeps/unix/sysv/linux/s390/s390-32/updwtmpx.c: New file.
1900         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: New file.
1901         * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.c: New file.
1902         * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h: New file.
1903         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx-convert.h: New file.
1904         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.c: New file.
1905         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: New file.
1907 2008-07-26  Ulrich Drepper  <drepper@redhat.com>
1909         * scripts/gen-as-const.awk: Generate more widely usable code by
1910         using 64-bit arithmetic.
1912         * stdio-common/printf_fp.c (___printf_fp): Give wide outout code
1913         the same treatment as narrow output code in last patch.
1915         * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Namespace cleanup.
1917         [BZ #6763]
1918         * elf/dl-load.c (local_strdup): Remove inline.
1919         (_dl_map_object_from_fd): Don't allocate l_symbolic_searchlist.r_list.
1920         * elf/dl-object.c (_dl_new_object): Allocate symbolic searchlist as
1921         part of the object.
1923         * sysdeps/unix/sysv/linux/dl-origin.c: Add const to avoid warning.
1925 2008-07-25  Ulrich Drepper  <drepper@redhat.com>
1927         * sysdeps/unix/sysv/linux/kernel-features.h: IA-64 and SPARC have
1928         the new syscalls, too.
1930         * sysdeps/i386/i686/memcmp.S: Fix unwind information.
1931         Reported by Paul Pluzhnikov <ppluzhnikov@google.com>.
1933         [BZ #6698]
1934         * stdio-common/_i18n_number.h (_i18n_number_rewrite): Take additional
1935         parameter for end of buffer.  If temporary copy is too large use
1936         malloc.
1937         * stdio-common/vfprintf.c: Adjust for _i18n_number_rewrite
1938         interface change.
1939         * stdio-common/printf_fp.c (__printf_fp): Likewise..  Account for
1940         string rewrite when allocating buffer.
1942         * sysdeps/unix/sysv/linux/kernel-features.h: PPC has the new
1943         syscalls, too.
1945         * nscd/connections.c (nscd_init): Clean up fcntl call.
1947         * nscd/nscd_helper.c (open_socket): Use SOCK_CLOEXEC and
1948         SOCK_NONBLOCK if possible.
1950         * sysdeps/unix/sysv/linux/opensock.c (__opensock): Use
1951         SOCK_CLOEXEC if available.
1953         * include/rpc/clnt.h: Declare __libc_clntudp_bufcreate and
1954         __libc_clntudp_bufcreate_internal.
1955         * include/sys/socket.h: Declare __have_sock_cloexec.
1956         * socket/Makefile (aux): Add have_sock_cloexec.
1957         * socket/have_sock_cloexec.c: New file.
1958         * sunrpc/clnt_udp.h (clntudp_bufcreate): Now a wrapper around
1959         __libc_clntudp_bufcreate.
1960         (__libc_clntudp_bufcreate): Former implementation of clntudp_bufcreate
1961         which takes an additional parameter.  Create socket with non-blocking
1962         mode and close-on-exec flag set, if wanted.
1963         * sunrpc/Versions: Export __libc_clntudp_bufcreate@GLIBC_PRIVATE.
1964         * nis/ypclnt.c (yp_bind_client_create): Use __libc_clntpudp_bufcreate
1965         instead of clntudp_create.  The socket has already the close-on-exec
1966         flag set if SOCK_CLOEXEC is defined.
1968 2008-07-24  Ulrich Drepper  <drepper@redhat.com>
1970         * sysdeps/unix/sysv/linux/kernel-features.h: Define
1971         __ASSUME_PACCEPT, __ASSUME_IN_NONBLOCK, and __ASSUME_PACCEPT if
1972         appropriate.
1973         * nscd/connections.c: Avoid fcntl calls to set close-on-exec flag and
1974         non-blocking mode by using socket, paccept, and inotify_init1.
1976         * Versions.def (glibc): Add GLIBC_2.9.
1977         * io/Makefile (routines): Add dup3 and pipe2.
1978         * io/Versions [glibc] (GLIBC_2.9): Add dup3 and pipe2.
1979         * io/dup3.c: New file.
1980         * io/pipe2.c: New file.
1981         * posix/unistd.h: Declare dup3 and pipe2.
1982         * socket/Makefile (routines): Add paccept.
1983         * socket/Versions [glibc] (GLIBC_2.9): Add paccept.
1984         * socket/paccept.c: New file.
1985         * socket/sys/socket.h: Declare paccept.
1986         * sysdeps/unix/syscalls.list: Add entry for dup3.
1987         * sysdeps/unix/sysv/linux/Versions [glibc] (GLIBC_2.9): Add
1988         epoll_create2 and inotify_init1.
1989         * sysdeps/unix/sysv/linux/eventfd.c: Use eventfd1 syscall if possible.
1990         * sysdeps/unix/sysv/linux/paccept.c: New file.
1991         * sysdeps/unix/sysv/linux/signalfd.c: Use signalfd4 syscall if
1992         possible.
1993         * sysdeps/unix/sysv/linux/socketcall.h: Add SOCKOP_paccept.
1994         * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_create2,
1995         inotify_init1, and pipe2 entries.
1996         * sysdeps/unix/sysv/linux/alpha/sys/epoll.h: New file.
1997         * sysdeps/unix/sysv/linux/alpha/sys/eventfd.h: New file.
1998         * sysdeps/unix/sysv/linux/alpha/sys/inotify.h: New file.
1999         * sysdeps/unix/sysv/linux/alpha/sys/signalfd.h: New file.
2000         * sysdeps/unix/sysv/linux/alpha/sys/timerfd.h: New file.
2001         * sysdeps/unix/sysv/linux/bits/socket.h: Define SOCK_CLOEXEC and
2002         SOCK_NONBLOCK.
2003         * sysdeps/unix/sysv/linux/i386/paccept.S: New file.
2004         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: New file.
2005         * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: New file.
2006         * sysdeps/unix/sysv/linux/sparc/sys/inotify.h: New file.
2007         * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h: New file.
2008         * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: New file.
2009         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: New file.
2010         * sysdeps/unix/sysv/linux/sys/epoll.h: Define EPOLL_CLOEXEC and
2011         EPOLL_NONBLOCK.  Declare epoll_create2.
2012         * sysdeps/unix/sysv/linux/sys/eventfd.h: Define EFD_CLOEXEC and
2013         EFD_NONBLOCK.
2014         * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOEXEC and
2015         IN_NONBLOCK.  Declare inotify_init1.
2016         * sysdeps/unix/sysv/linux/sys/signalfd.h: Define SFD_CLOEXEC and
2017         SFD_NONBLOCK.
2018         * sysdeps/unix/sysv/linux/sys/timerfd.h: Define TFD_CLOEXEC and
2019         TFD_NONBLOCK.
2021         * elf/elf.h: Define AT_EXECFN.
2022         * elf/rtld.c [!__ASSUME_AT_EXECFN] (process_envvars): Don't handle
2023         LD_ORIGIN_PATH.
2024         * elf/dl-sysdep.c (_dl_sysdep_start): Handle AT_EXECFN.
2025         * elf/dl-support.c: Define _dl_execfn.  Don't define _dl_origin_path
2026         if __ASSUME_AT_EXECFN is defined.
2027         (_dl_aux_init): Handle AT_EXECFN.
2028         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_AT_EXECFN
2029         for 2.6.27 and up.
2030         * sysdeps/generic/ldsodefs.h (rtld_global_ro): Add _dl_execfn.
2031         Don't define _dl_origin_path if __ASSUME_AT_EXECFN is defined.
2032         * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): Use
2033         _dl_execfn if available and avoid compatibility code if
2034         __ASSUME_AT_EXECFN is defined.
2036         * sysdeps/unix/sysv/linux/dl-sysdep.h: Don't declare
2037         _dl_discover_osversion only for older kernels.
2039 2008-07-22  Roland McGrath  <roland@frob.com>
2041         * hurd/fd-read.c (_hurd_fd_read): Fix last change.
2043 2008-07-21  Roland McGrath  <roland@frob.com>
2045         * hurd/fd-read.c (_hurd_fd_read): Return EGRATUITOUS if the server
2046         returned too much data out of line.
2048 2008-07-20  Ulrich Drepper  <drepper@redhat.com>
2050         * locale/setlocale.c (setname): Remove inline to avoid compiler
2051         warning.
2053         [BZ #6712]
2054         * locale/setlocale.c (setlocale): Take the setlocale lock earlier.
2056 2008-07-15  Ulrich Drepper  <drepper@redhat.com>
2058         * stdio-common/vfprintf.c (_IO_helper_overflow): In case _IO_sputn
2059         doesn't manage to write anything, fail.
2061         * malloc/hooks.c (__malloc_check_init): Remove printf.
2063 2008-07-14  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2065         * sysdeps/mach/hurd/bits/fcntl.h: Include <sys/types.h>.
2067 2008-07-12  Ulrich Drepper  <drepper@redhat.com>
2069         * nscd/connections.c (main_loop_poll): Fix handling of read errors
2070         from inotify.
2071         (main_loop_epoll): Likewise.
2073 2008-07-09  Ulrich Drepper  <drepper@redhat.com>
2075         * resolv/res_send.c: Remove unnecessary res_pquery prototype.
2077         * resolv/res_query.c (__libc_res_nquery): Issue debug message only
2078         if DEBUG is defined.
2080         * resolv/res_query.c (__libc_res_nquery): Align buffer for T_AAAA
2081         query.  Adjust buffer size computation for padding.
2083 2008-07-08  Ulrich Drepper  <drepper@redhat.com>
2085         * stdio-common/Makefile: Add rules to build and run tst-setvbuf1.
2086         * stdio-common/tst-setvbuf1.c: New file.
2087         * stdio-common/tst-setvbuf1.expect: New file.
2089         [BZ #6719]
2090         * libio/iosetvbuf.c (_IO_setvbuf): Correctly clear buffering flags
2091         when selecting fully-buffered stream.
2092         Patch by Wang Xin <wxinee@gmail.com>.
2094 2008-07-06  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2096         * sysdeps/mach/hurd/open.c: Include <stdio.h>.
2097         (__open_2): New function.
2098         (__open64_2): New alias to __open_2.
2099         * sysdeps/mach/hurd/openat.c: Include <stdio.h>.
2100         (__openat_2): New function.
2101         (__openat64_2): New alias to __openat_2.
2103 2008-07-06  Ulrich Drepper  <drepper@redhat.com>
2105         [BZ #6723]
2106         * time/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
2108 2008-07-01  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2110         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Define MSG_NOSIGNAL.
2111         * hurd/hurd/fd.h (__hurd_sockfail): Add extern inline function.
2112         * sysdeps/mach/hurd/recv.c (__recv): Use __hurd_sockfail instead of
2113         __hurd_dfail.
2114         * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise.
2115         * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise.
2116         * sysdeps/mach/hurd/send.c (__send): Likewise.
2117         * sysdeps/mach/hurd/sendto.c (__sendfrom): Likewise.
2118         * sysdeps/mach/hurd/sendmsg.c (__sendmsg): Likewise.
2120 2008-03-04  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2122         * sysdeps/mach/hurd/recv.c (__recv): Initialize NPORTS.
2123         * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise.
2124         * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise.
2125         * hurd/fd-read.c (_hurd_fd_read): Initialize NREAD.
2126         * hurd/get-host.c (_hurd_get_host_config): Likewise.
2127         * sysdeps/mach/hurd/dl-sysdep.c (__libc_read): Likewise.
2129 2008-06-27  Ulrich Drepper  <drepper@redhat.com>
2131         [BZ #6657]
2132         * time/strptime_l.c: Don't clear s.era_cnt after successful match
2133         of %EY.
2134         Patch by Petr Baudis.
2136 2008-06-26  Ulrich Drepper  <drepper@redhat.com>
2138         * resolv/res_debug.c (__p_type_syms): Add ns_t_dname entry.
2139         Patch by Peter Jones <pjones@redhat.com>.
2141 2008-06-25  Ulrich Drepper  <drepper@redhat.com>
2143         [BZ #6654]
2144         * stdlib/canonicalize.c (__realpath): readlink can write too much
2145         into the buffer on platforms without PATH_MAX.
2147 2008-06-17  Carlos O'Donell  <carlos@codesourcery.com>
2149         [BZ #6653]
2150         * posix/tst-regex.c (main): Rename to...
2151         (do_test): ... this. Remove cmdline option processing.
2152         (TIMEOUT): Define.
2153         (TEST_FUNCTION): Define.
2154         (CMDLINE_OPTIONS): Define.
2156 2008-06-25  Ulrich Drepper  <drepper@redhat.com>
2158         [BZ #5210]
2159         * configure.in: Add -Werror to -fstack-protector test to catch
2160         unsupported architectures.
2161         Patch by Gilles Esponasse <g.esp@free.fr>.
2163 2008-06-17  Joseph Myers  <joseph@codesourcery.com>
2165         * stdlib/tst-setcontext.c: Set back_in_main before exit if
2166         getcontext returns ENOSYS.
2168 2008-06-18  Ulrich Drepper  <drepper@redhat.com>
2170         * nscd/connections.c (main_loop_poll): Fix test for read error.
2171         (main_loop_epoll): Likewise.
2173 2008-06-13  Ulrich Drepper  <drepper@redhat.com>
2175         * sysdeps/posix/getaddrinfo.c: Move _res_hconf_init call to a
2176         better place so it is not called when nscd is used.
2178         * nscd/connections.c: Also recognize and handle changes to the
2179         resolver configuration file.
2181 2008-06-12  Ulrich Drepper  <drepper@redhat.com>
2183         * time/strftime.c: Pass reference to tzset_called around to handle
2184         recursive calls.
2186         [BZ #6612]
2187         * time/strftime.c (__strftime_internal): Call tzset() only
2188         when printing timezone-dependent values.
2189         Based on a patch by Petr Baudis <pasky@suse.cz>.
2191         * resolv/nss_dns/dns-host.c (gaih_getanswer): Don't
2192         unconditionally use second gaih_getanswer_slice result.
2194         * sysdeps/posix/getaddrinfo.c (gai_inet): Remove unnecessary test.
2195         (getaddrinfo): RES must always be non-NULL.
2197 2008-06-12  Jakub Jelinek  <jakub@redhat.com>
2199         * sysdeps/powerpc/powerpc64/fpu/s_llround.S (__llround): Avoid using
2200         cr[34] registers.
2201         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S (__llroundf): Likewise.
2202         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S (__llround):
2203         Likewise.
2204         * sysdeps/powerpc/powerpc32/fpu/s_lround.S (__lround): Avoid using cr3
2205         register.
2207 2008-06-12  Ulrich Drepper  <drepper@redhat.com>
2209         * nscd/nscd.h (struct database_dyn): Add inotify_descr and clear_cache
2210         fields.
2211         * nscd/connections.c (inotify_fd): New variable.
2212         (nscd_init): Try to open an inotify descriptor.
2213         If successful, watch files for databases using inotify instead of
2214         having prune threads stat the files.
2215         (nscd_run_prune): Recognize clear_cache flag being set and call
2216         prune_cache appropriately.
2217         (main_loop_poll): Add inotify descriptor to wait set and handle the
2218         reported changes.
2219         (main_loop_epoll): Likewise.
2220         * nscd/cache.c (prune_cache): Don't stat files for databases if
2221         inotify is used.
2222         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd]
2223         (CFLAGS-connections.c): Add -DHAVE_INOTIFY.
2225         * nscd/grpcache.c (cache_addgr): Correctly compute size of
2226         fixed-size portion of the record.
2227         * nscd/servicescache.c (cache_addserv): Likewise.
2228         * nscd/pwdcache.c (cache_addpw): Likewise.
2229         * nscd/initgrcache.c (addinitgroupsX): Likewise.
2231 2008-06-11  Ulrich Drepper  <drepper@redhat.com>
2233         * nscd/mem.c (gc): Initialize obstack earlier so that if we jump
2234         out we don't use uninitialized memory.
2236         * nscd/hstcache.c (cache_addhst): Send correct number of bytes to
2237         the client.
2239 2008-06-10  Ulrich Drepper  <drepper@redhat.com>
2241         * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): Also log and
2242         ignore T_DNAME messages.
2243         * resolv/arpa/nameser_compat.h (T_DNAME): Define.
2245 2008-06-05  Jakub Jelinek  <jakub@redhat.com>
2247         * misc/regexp.h (compile): Use __REPB_PREFIX macro.
2248         Avoid segfault if first GETC returns eof/'\0'/'\n'.
2250 2008-06-03  Jakub Jelinek  <jakub@redhat.com>
2252         * nscd/nscd_getserv_r.c (__nscd_getservbyport_r): Pass cp
2253         instead of portstr to nscd_getserv_r.  Patch by
2254         Roman Kagan <rkagan@mail.ru>.
2256 2008-05-26  Jim Meyering  <meyering@redhat.com>
2258         Remove more useless "if" tests before "free".
2259         * include/inline-hashtab.h (htab_delete): Likewise.
2260         * libio/freopen.c (freopen): Likewise.
2261         * libio/freopen64.c (freopen64): Likewise.
2262         * locale/programs/ld-collate.c (collate_read): Likewise.
2263         * misc/fstab.c (libc_freeres_fn): Likewise.
2264         * posix/glob.c (globfree): Likewise.
2266 2008-05-24  Ulrich Drepper  <drepper@redhat.com>
2268         * string/Makefile (strop-tests): Add memmem.
2269         * string/test-memmem.c: New file.
2270         * string/test-string.h (BUF1PAGES): Define to 1 if undefined.
2271         (test_init): Size buf1 according to BUF1PAGES.
2273 2008-05-24  Jakub Jelinek  <jakub@redhat.com>
2275         * libio/stdio.h (vscanf): Fix -std=c99 redirect.
2276         * stdio-common/Makefile (tests): Add scanf16 and scanf17.
2277         (CFLAGS-scanf17.c): New.
2278         * stdio-common/scanf14.c (main): Add fscanf and scanf tests.
2279         * stdio-common/scanf15.c (main): Likewise.
2280         * stdio-common/scanf16.c: New file.
2281         * stdio-common/scanf17.c: New file.
2283 2008-05-24  Ulrich Drepper  <drepper@redhat.com>
2285         * resolv/res_send.c (send_dg): If we already have one of two
2286         answers and the server reports SERVFAIL, NOTIMP, or REFUSED, then
2287         use the one answer insted of failing.
2289 2008-02-20  Ryan S. Arnold  <rsa@us.ibm.com>
2291         * math/libm-test.inc (exp_test): Exclude expl(1000.0L) from
2292         being executed on PowerPC as the expected result exceeds IBM
2293         long double 128 __LDBL_MAX__.
2295 2008-05-21  Roland McGrath  <roland@redhat.com>
2297         * shlib-versions (sparc.*-.*-.*, sparc64.*-.*-.*): Add ABI lines.
2299         * Makefile (check-data): Use $(abi-name) before other guesses.
2300         Look in $(add-ons) dirs before scripts/data/.
2301         * elf/Makefile (check-data): Likewise.
2303         * scripts/soversions.awk: Grok ABI line.
2304         * Makeconfig ($(common-objpfx)soversions.mk): Likewise.
2305         Emit definition for abi-name variable.
2307 2008-05-21  Ulrich Drepper  <drepper@redhat.com>
2309         * string/endian.h: Define new fixed-size hto* and *toh macros only
2310         if [__USE_BSD].
2312         * iconvdata/Depend: Add localedata.
2314 2008-05-21  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2316         * bits/termios.h (ONLCR): Define under [__USE_XOPEN] too.
2318 2008-05-08  David S. Miller  <davem@davemloft.net>
2320         * sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S: Use
2321         HIDDEN_JUMPTARGET.
2322         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
2323         (__SYSCALL_CLOBBERS): Remove %g* registers.
2324         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
2325         (__SYSCALL_CLOBBERS): Likewise.
2326         * scripts/data/localplt-sparc-linux-gnu.data: New file.
2327         * scripts/data/localplt-sparc64-linux-gnu.data: New file.
2329 2008-05-21  Jakub Jelinek  <jakub@redhat.com>
2331         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
2332         (CALL_ERRNO_LOCATION): Define.
2333         (__SYSCALL_STRING, __CLONE_SYSCALL_STRING): Use it.
2334         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
2335         (CALL_ERRNO_LOCATION): Define.
2336         (__SYSCALL_STRING, __CLONE_SYSCALL_STRING): Use it.
2337         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S (__brk): Use
2338         HIDDEN_JUMPTARGET for __errno_location call in libc.so.
2340 2008-05-20  Ulrich Drepper  <drepper@redhat.com>
2342         * include/inline-hashtab.h (higher_prime_number): Fix type of mid
2343         variable.
2345 2008-05-20  Jakub Jelinek  <jakub@redhat.com>
2347         * sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h
2348         (FIRST_FRAME_POINTER): Define.
2350 2008-05-09  David S. Miller  <davem@davemloft.net>
2352         * sysdeps/sparc/sparc64/backtrace.c: New file.
2354 2008-05-14  David S. Miller  <davem@davemloft.net>
2356         * sysdeps/sparc/machine-gmon.h: New file.
2357         * sysdeps/sparc/sparc-mcount.S: Likewise.
2358         * sysdeps/sparc/Makefile: Add sparc-mcount target to
2359         sysdep_routines in gmon directory.
2361 2008-05-19  Jakub Jelinek  <jakub@redhat.com>
2363         * elf/soinit.c (__EH_FRAME_BEGIN__): Remove.
2365 2008-05-19  Ulrich Drepper  <drepper@redhat.com>
2367         * resolv/res_query.c (__libc_res_nquery): In case one of two
2368         answer was too short don't try to read that answer's header.
2370         * resolv/res_send.c (send_dg): In case of timeout and there are
2371         two queries and one has been answered, return value indicating
2372         success.
2374 2008-05-18  Ulrich Drepper  <drepper@redhat.com>
2376         * nscd/cache.c (cache_add): Take additional parameter specifying
2377         whether this is in response of a cache refill.  Check alignment
2378         of package data.  Revamp waking of pruning thread.
2379         (prune_cache): Small optimization.
2380         * nscd/nscd.h: Adjust cache_add prototypes.
2381         * nscd/aicache.c: Adjust cache_add calls.
2382         * nscd/grpcache.c: Likewise.
2383         * nscd/hstcache.c: Likewise.
2384         * nscd/initgrcache.c: Likewise.
2385         * nscd/pwdcache.c: Likewise.
2386         * nscd/servicescache.c: Likewise.
2387         * nscd/connections.c (restart): Really disable cache use before
2388         exec attempt.  If it fails, reenable cache.
2389         (nscd_run_prune): Initialize wakeup_time.  After wakeup, set wakeup
2390         time to max to be able to notice concurrent cache additions.  Unlock
2391         prune_lock while performing gc.  Afterwards compute wakeup time with
2392         current wakeup_time value in mind.
2394 2008-05-17  Ulrich Drepper  <drepper@redhat.com>
2396         * nscd/mem.c (gc): Avoid stack overflow when allocating move list.
2398         * nscd/mem.c (gc): Correctly determine highest used array element
2399         in mark.
2401         * nscd/mem.c (markrange): Add assert to check entries are all
2402         aligned.  Small cleanup in bitmap use.
2404         * nscd/nscd.h (mem_in_flight): Replace blockaddr field with
2405         blockoff of type nscd_ssize_t.
2406         * nscd/mem.c (gc): Simplify markrange call for on-flight blocks.
2407         (mempoll_alloc): Record block offset and not address.
2409         * nscd/mem.c (gc): Fix test for stack overuse.
2411         * nscd/aicache.c (addhstaiX): Fix a few small problems, cleanups,
2412         more asserts.
2414         * sysdeps/posix/getaddrinfo.c (gaih_inet): If nscd reports no
2415         entry is available, believe it.
2417         * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): If there are
2418         no answers return NSS_STATUS_NOTFOUND.
2419         (gaih_getanswer): Don't call gaih_getanswer_slice if the answer
2420         buffer does not have any content.
2422 2008-05-16  Ulrich Drepper  <drepper@redhat.com>
2424         * string/strcasestr.c (CMP_FUNC): Use __strncasecmp, not strncasecmp.
2426         * sysdeps/posix/getaddrinfo.c (gaih_inet): After gethostbyname4_r
2427         lookup, don't assign canon unconditionally.
2429 2008-05-14  Ulrich Drepper  <drepper@redhat.com>
2431         * string/Makefile (distribute): Add str-two-way.h.
2433 2008-03-29  Eric Blake  <ebb9@byu.net>
2435         Rewrite string searches to O(n) rather than O(n^2).
2436         * string/str-two-way.h: New file.  For linear fixed-allocation
2437         string searching.
2438         * string/memmem.c: New implementation.
2439         * string/strstr.c: New implementation.
2440         * string/strcasestr.c: New implementation.
2442 2008-04-11  Paolo Bonzini  <bonzini@gnu.org>
2444         * posix/regcomp.c (optimize_utf8): Add a note on why we test
2445         opr.ctx_type.
2446         (calc_first): Initialize constraint field.
2447         (duplicate_node_closure): Use it instead of special casing ANCHORS.
2448         Use search_duplicated_node to avoid loops.  Fix grammar.
2449         (duplicate_node): Merge constraint field for all node types.
2450         (calc_eclosure_iter): Look at constraint field for all node types.
2451         * posix/regex_internal.c (create_cd_newstate): Don't look at
2452         create_cd_newstate.
2454 2008-05-14  Ulrich Drepper  <drepper@redhat.com>
2456         [BZ #6428]
2457         * configure.in: Don't use $CFLAGS when assembling, use $ASFLAGS.
2459         [BZ #6442]
2460         * string/endian.h: Add macros for fixed-size endian conversion.
2461         * bits/byteswap.h: Allow inclusion from <endian.h>.
2462         * sysdeps/i386/bits/byteswap.h: Likewise.
2463         * sysdeps/ia64/bits/byteswap.h: Likewise.
2464         * sysdeps/s390/bits/byteswap.h: Likewise.
2465         * sysdeps/x86_64/bits/byteswap.h: Likewise.
2466         * string/Makefile (tests): Add tst-endian.
2467         * string/tst-endian.c: New file.
2469         * iconvdata/run-iconv-test.sh: Use = instead of == in test.
2470         Patch by Reuben Thomas.
2472 2008-05-14  Joseph Myers  <joseph@codesourcery.com>
2474         * iconvdata/Makefile (bug-iconv6-ENV, tst-iconv7-ENV): Define.
2476 2008-05-14  Ulrich Drepper  <drepper@redhat.com>
2478         * iconvdata/bug-iconv6.c (do_test): Use de_DE.UTF-8 locale.
2480         [BZ #6461]
2481         * iconv/gconv_simple.c (BODY for __gconv_transform_ascii_internal):
2482         Add missing braces.
2483         (BODY for __gconv_transform_internal_ascii): Likewise.
2485         [BZ #6472]
2486         * sysdeps/posix/getaddrinfo.c (get_scope): Loopback addresses have
2487         to be treated like link-local addresses.
2488         (match_prefix): Don't treat IPv4 loopback address special when
2489         converting to v4 mapped addressed.
2491         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Call _res_hconf_init
2492         if necessary.
2493         * posix/tst-rfc3484.c: Add dummy definition of _res_hconf_init.
2494         * posix/tst-rfc3484-2.c: Likewise.
2495         * posix/tst-rfc3484-3.c: Likewise.
2497         * sysdeps/posix/getaddrinfo.c: Implement handling of DCCP, UDPlite,
2498         and SCTP.
2500         * nss/getent.c (ahosts_keys_int): Handle all known socket types.
2502         * inet/netinet/in.h (IPPIPPROTO_DCCP, IPPROTO_UDPLITE): Define.
2504         * sysdeps/unix/sysv/linux/bits/socket.h (SOCK_DCCP): Define.
2506 2008-05-13  Ulrich Drepper  <drepper@redhat.com>
2508         * po/lt.po: New file.  From Lituanian translation team.
2510 2008-01-30  Alexandre Oliva  <aoliva@redhat.com>
2512         Introduce TLS descriptors for i386 and x86_64.
2513         * include/inline-hashtab.h: New file, copied from 2005's
2514         libiberty, with fix for memory leak imported afterwards by
2515         Glauber de Oliveira Costa.
2516         * elf/tlsdeschtab.h: New file.
2517         * elf/dl-reloc.c (_dl_try_allocate_static_tls): Extract from...
2518         (_dl_allocate_static_tls): ... here.  Rearrange failure path.
2519         (CHECK_STATIC_TLS): Move to...
2520         * elf/dynamic-link.h: ... this file.
2521         (TRY_STATIC_TLS): New macro.
2522         * elf/dl-conflict.c (CHECK_STATIC_TLS, TRY_STATIC_TLS): Override.
2523         * elf/elf.h (R_386_TLS_GOTDESC, R_386_TLS_DESC_CALL,
2524         R_386_TLS_DESC): Define.
2525         (R_X86_64_PC64, R_X86_GOTOFF64, R_X86_64_GOTPC32): Merge from
2526         binutils.
2527         (R_X86_64_GOTPC32_TLSDESC, R_X86_64_TLSDESC_CALL,
2528         R_X86_64_TLSDESC): Define.
2529         (R_386_NUM, R_X86_64_NUM): Adjust.
2530         * sysdeps/i386/Makefile (sysdep-dl-routines, sysdep_routines,
2531         sysdep-rtld-routines): Add tlsdesc and dl-tlsdesc for elf subdir.
2532         (gen-as-const-headers): Add tlsdesc.sym to csu subdir.
2533         * sysdeps/i386/dl-lookupcfg.h: New file.  Introduce _dl_unmap to
2534         release tlsdesc_table.
2535         * sysdeps/i386/dl-machine.h: Include dl-tlsdesc.h.
2536         (elf_machine_type_class): Mark R_386_TLS_DESC as PLT class.
2537         (elf_machine_rel): Handle R_386_TLS_DESC.
2538         (elf_machine_rela): Likewise.
2539         (elf_machine_lazy_rel): Likewise.
2540         (elf_machine_lazy_rela): Likewise.
2541         * sysdeps/i386/dl-tls.h (struct dl_tls_index): Name it.
2542         * sysdeps/i386/dl-tlsdesc.S: New file.
2543         * sysdeps/i386/dl-tlsdesc.h: New file.
2544         * sysdeps/i386/tlsdesc.c: New file.
2545         * sysdeps/i386/tlsdesc.sym: New file.
2546         * sysdeps/i386/bits/linkmap.h (struct link_map_machine): Add
2547         tlsdesc_table.
2548         * sysdeps/x86_64/Makefile (sysdep-dl-routines, sysdep_routines,
2549         sysdep-rtld-routines): Add tlsdesc and dl-tlsdesc for elf subdir.
2550         (gen-as-const-headers): Add tlsdesc.sym to csu subdir.
2551         * sysdeps/x86_64/dl-lookupcfg.h: New file.  Introduce _dl_unmap to
2552         release tlsdesc_table.
2553         * sysdeps/x86_64/dl-machine.h: Include dl-tlsdesc.h.
2554         (elf_machine_runtime_setup): Set up lazy TLSDESC GOT entry.
2555         (elf_machine_type_class): Mark R_X86_64_TLSDESC as PLT class.
2556         (elf_machine_rel): Handle R_X86_64_TLSDESC.
2557         (elf_machine_rela): Likewise.
2558         (elf_machine_lazy_rel): Likewise.
2559         * sysdeps/x86_64/dl-tls.h (struct dl_tls_index): Name it.
2560         (__tls_get_addr): Do not declare for non-shared compiles.
2561         * sysdeps/x86_64/dl-tlsdesc.S: New file.
2562         * sysdeps/x86_64/dl-tlsdesc.h: New file.
2563         * sysdeps/x86_64/tlsdesc.c: New file.
2564         * sysdeps/x86_64/tlsdesc.sym: New file.
2565         * sysdeps/x86_64/bits/linkmap.h (struct link_map_machine): Add
2566         tlsdesc_table for both 32- and 64-bit structs.
2568 2008-05-11  Ulrich Drepper  <drepper@redhat.com>
2570         * elf/dl-tls.c (__tls_get_addr): Optimize by moving slow path in
2571         its own function.  This reduces the frame setup costs and more.
2573 2008-02-11  Joseph Myers  <joseph@codesourcery.com>
2575         [BZ #3406]
2576         * sysdeps/ieee754/flt-32/w_expf.c (o_threshold): Correct value.
2577         * math/libm-test.inc (exp_test): Test 88.72269439697265625.
2579 2008-05-11  Ulrich Drepper  <drepper@redhat.com>
2581         * io/openat.c (__openat_2): Also pass fd to __openat.
2582         * io/openat64.c (__openat64_2): Also pass fd to __openat64.
2583         Patch by Kristian Van Der Vliet <vanders@liqwyd.com>.
2585         * string/tester.c (test_memcmp): Add a few more tests.
2586         Patch by Mats Erik Andersson <ynglingatal@comhem.se>.
2588 2008-05-10  Ulrich Drepper  <drepper@redhat.com>
2590         * nscd/cache.c (cache_add): Before returning with failure and this
2591         is the first use of the record, mark it as unusable.
2592         * nscd/aicache.c: Don't touch the dataset after cache_add returns
2593         reporting a failure.
2594         * nscd/grpcache.c: Likewise
2595         * nscd/hstcache.c: Likewise.
2596         * nscd/initgrcache.c: Likewise.
2597         * nscd/pwdcache.c: Likewise.
2598         * nscd/servicescache.c: Likewise.
2600 2008-05-10  Roland McGrath  <roland@redhat.com>
2602         [BZ #6505]
2603         * sysdeps/unix/sysv/linux/sys/user.h: Replace with #error stub.
2605 2008-05-08  David S. Miller  <davem@davemloft.net>
2607         * misc/truncate64.c (truncate64): Use __truncate not truncate.
2609         * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee751_j0l): Use __finitel.
2610         (__ieee754_y0l): Likewise.
2611         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
2612         (__ieee754_y1l): Likewise.
2613         * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Use __ldexpl.
2614         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Kill bogus prototypes for
2615         frexpl and ldexpl.  math_private.h provides them and the latter
2616         is not even used.
2617         (__log1pl): Use __frexpl.
2619 2008-05-10  Ulrich Drepper  <drepper@redhat.com>
2621         * include/resolv.h: Adjust __libc_res_nquery and __libc_res_nsend
2622         prototypes.
2623         * include/arpa/nameser_compat.h: Define T_UNSPEC.
2624         * nis/Versions (libnss_nis): Export _nss_nis_gethostbyname4_r.
2625         (libnss_nisplus): Export _nss_nisplus_gethostbyname4_r.
2626         * nis/nss_nis/nis-hosts.c (LINE_PARSER): Change to also handle
2627         af==AF_UNSPEC.
2628         (_nss_nis_gethostbyname4_r): New function.
2629         * nis/nss_nisplus/nisplus-hosts.c (_nss_nisplus_parse_hostent):
2630         Change to also handle af==AF_UNSPEC.
2631         (get_tablename): New function.  Use it to avoid duplication.
2632         (_nss_nisplus_gethostbyname4_r): New function.
2633         * nscd/aicache.c (addhstaiX): Use gethostbyname4_r function is
2634         available.
2635         * nss/Versions (libnss_files): Export _nss_files_gethostbyname4_r.
2636         * nss/nss.h: Define struct gaih_addrtuple.
2637         * nss/nss_files/files-hosts.c (LINE_PARSER): Change to also handle
2638         af==AF_UNSPEC.
2639         (_nss_files_gethostbyname4_r): New function.
2640         * resolv/Versions (libnss_dns): Export _nss_dns_gethostbyname4_r.
2641         * resolv/gethnmaddr.c: Adjust __libc_res_nsearch and __libc_res_nquery
2642         calls.
2643         * resolv/res_query.c (__libc_res_nquery): Take two additional
2644         parameters for second answer buffer.  Handle type=T_UNSPEC to mean
2645         look up IPv4 and IPv6.
2646         Change all callers.
2647         * resolv/res_send.c (__libc_res_nsend): Take five aditional parameters
2648         for an additional query and answer buffer.  Pass to send_vc and
2649         send_dg.
2650         (send_vc): Send possibly two requests and receive two answers.
2651         (send_dg): Likewise.
2652         * resolv/nss_dns/dns-host.c: Adjust calls to __libc_res_nsearch and
2653         __libc_res_nquery.
2654         (_nss_dns_gethostbyname4_r): New function.
2655         (gaih_getanswer_slice): Likewise.
2656         (gaih_getanswer): Likewise.
2657         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Adjust
2658         __libc_res_nquery call.
2659         * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyaddr_r): Likewise.
2660         (_nss_dns_getnetbyname_r): Adjust __libc_res_nsearch call.
2661         * sysdeps/posix/getaddrinfo.c: Use gethostbyname4_r function is
2662         available.
2664 2008-05-05  David S. Miller  <davem@davemloft.net>
2666         * sysdeps/sparc/sparc32/Makefile: Use -mcpu=v7 for initfini.s build.
2667         * sysdeps/sparc/sparc64/Makefile: Use -mcpu=v9 for initfini.s build.
2669 2007-09-14  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2671         Fix termios bit macros.
2672         Move *DLY definitions where they belong, in termios.h.
2673         Add *[0-3] definitions.
2674         Fixes confusion between VT and FF.
2675         * sysdeps/mach/hurd/bits/ioctls.h (NL0, NL1, TAB0, TAB1, TAB2, CR0,
2676         CR1, CR2, CR3, FF0, FF1, BS0, BS1): Undefine these at start if they
2677         are already defined to avoid collision with termios.h.
2678         (NLDLY, TABDLY, TAB3, CRDLY, VTDLY, BSDLY): Remove macros.
2679         * bits/termios.h [__USE_MISC || __USE_XOPEN] (NL0, NL1, TAB0,
2680         TAB1, TAB2, CR0, CR1, CR2, CR3, FF0, FF1, BS0, BS1): Likewise.
2681         [__USE_BSD || __USE_XOPEN] (OCRNL, ONOCR, ONLRET): New macros.
2682         [__USE_MISC || __USE_XOPEN] (NLDLY, NL0, NL1, TABDLY, TAB0, TAB1, TAB2,
2683         TAB3, CRDLY, CR0, CR1, CR2, CR3, FFDLY, FF0, FF1, BSDLY, BS0, BS1,
2684         VTDLY, VT0, VT1): New macros.
2685         [__USE_GNU] (OLCUC): Change value of macro.
2686         [__USE_XOPEN] (OFILL): New macro.
2687         [__USE_BSD] (CRTSCTS): Change value.
2688         (CRTS_IFLOW, CCTS_OFLOW): Change into compatibility macros.
2689         [__USE_BSD] (CDTRCTS, CHWFLOW): New macros.
2690         (B7200, B14400, B28800, B76800): New macros.
2692 2008-05-01  David S. Miller  <davem@davemloft.net>
2694         * sysdeps/unix/sysv/linux/sparc/sparc32/ucontext_i.sym: New file.
2695         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile [$(subdir) = stdlib]:
2696         (gen-as-const-headers): Add it.
2697         * sysdeps/unix/sysv/linux/sparc/sparc32/getcontext.S: New file.
2698         * sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c: Likewise.
2699         * sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S: Likewise.
2700         * sysdeps/unix/sysv/linux/sparc/sparc32/swapcontext.S: Likewise.
2702         * sysdeps/unix/sysv/linux/sparc/sparc32/syscall.S: Add support for
2703         six system call parameters.
2704         * sysdeps/unix/sysv/linux/sparc/sparc64/syscall.S: Likewise.
2706 2008-04-30  Ulrich Drepper  <drepper@redhat.com>
2708         * sysdeps/unix/sysv/linux/bits/resource.h: Define RUSAGE_THREAD and
2709         RUSAGE_LWP.
2710         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
2711         * sysdeps/unix/sysv/linux/alpha/bits/resource.h: Likewise.
2713 2008-04-30  Jakub Jelinek  <jakub@redhat.com>
2715         * stdlib/tst-setcontext.c: Include unistd.h.
2717 2008-04-25  David S. Miller  <davem@davemloft.net>
2719         * sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c (semctl):
2720         Pass "union semun" properly in to sys_ipc, it must be passed
2721         by value, not by reference.
2723 2008-04-22  Jakub Jelinek  <jakub@redhat.com>
2725         * nscd/Makefile (nscd-cflags): Set back to -fpie.
2726         * nscd/nscd.h (mem_in_flight): Add attribute_tls_model_ie.
2727         * nscd/connections.c (mem_in_flight): Likewise.
2729         * nscd/nscd.h (dbs): Make hidden.
2731         * sysdeps/unix/sysv/linux/times.c (__times): Fix check for EFAULT.
2732         Avoid returning -1, return 0 instead.
2734 2008-04-19  Ulrich Drepper  <drepper@redhat.com>
2736         * resolv/res_mkquery.c (__res_nopt): Use NS_PUT16 instead of ns_put16.
2738 2008-04-15  Ulrich Drepper  <drepper@redhat.com>
2740         [BZ #5209]
2741         * sysdeps/unix/sysv/linux/times.c: New file.
2743         [BZ #5381]
2744         * nscd/nscd.h: Define enum in_flight, mem_in_flight, and
2745         mem_in_flight_list variables.  Add new parameter to mempool_alloc
2746         prototype.
2747         * nscd/mem.c (mempool_alloc): Take additional parameter.  Initialize
2748         appropriate mem_in_flight element.
2749         (gc): Take allocations which have not yet been committed to the
2750         database into account.
2751         * nscd/cache.c (cache_add): Add new parameter to mempool_alloc call.
2752         Reset mem_in_flight before returning.
2753         * nscd/connections.c (nscd_run_worker): Initialize mem_in_flight and
2754         cue it up in mem_in_flight_list.
2755         * nscd/aicache.c: Adjust mempool_alloc call.
2756         * nscd/grpcache.c: Likewise.
2757         * nscd/hstcache.c: Likewise.
2758         * nscd/initgrcache.c: Likewise.
2759         * nscd/pwdcache.c: Likewise.
2760         * nscd/servicescache.c: Likewise.
2761         * nscd/Makefile (nscd-flags): Until ld is fixed, use -fpic instead
2762         of -fpie.
2764         * nscd/connections.c (handle_request): Provide better error message
2765         in case SELinux forbids the service.
2767         * version.h (VERSION): Bump to 2.8.90.
2769 2008-04-17  Jakub Jelinek  <jakub@redhat.com>
2771         * sysdeps/unix/sysv/linux/dl-osinfo.h: Include fcntl.h.
2773 2008-04-11  Ulrich Drepper  <drepper@redhat.com>
2775         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h (__signbitl):
2776         Also use for 32-bit.
2777         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c (__nearbyintl): Use
2778         __nextafter instead of nextafter to avoid local PLT.
2779         * sysdeps/powerpc/fpu/e_sqrt.c: Avoid call to fetestexcept.
2780         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
2782         * scripts/data/localplt-powerpc64-linux-gnu.data: New file.
2784         * sysdeps/powerpc/fpu/fenv_libc.h: Add libm_hidden_proto for
2785         __fe_nomask_env.
2786         * sysdeps/powerpc/fpu/fe_nomask.c: Add libm_hidden_def.  Include
2787         <fenv_libc.h> instead of <fenv.h>.
2788         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: Likewise.
2789         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: Likewise.
2791         * sysdeps/powerpc/bits/fenv.h: Make safe for C++.
2793         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: New file.
2794         * sysdeps/powerpc/fpu/fegetexcept.c (__fegetexcept): Rename
2795         function from fegetexcept and make old name weak alias.
2796         * include/fenv.h: Declare __fegetexcept.
2797         * sysdeps/powerpc/fpu/fedisblxcpt.c: Use __fegetexcept instead of
2798         fegetexcept.
2799         * sysdeps/powerpc/fpu/feenablxcpt.c: Likewise.
2800         * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Avoid call
2801         to fetestexcept.
2802         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Use __frexpl
2803         instead of frexpl to avoid local PLT.
2804         * math/s_significandl.c (__significandl): Use __ilogbl instead of
2805         ilogbl to avoid local PLT.
2806         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Use __ldexpl
2807         instead of ldexpl to avoid local PLT.
2808         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Use
2809         __roundl not roundl to avoid local PLT.
2810         * sysdeps/ieee754/ldbl-128/e_j0l.c: Use function names which avoid
2811         local PLTs.  Use __sincosl instead of separate sinl and cosl
2812         calls.
2813         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
2815         * sysdeps/unix/sysv/linux/configure.in: Bump minimal kernel
2816         version for ppc64 to 2.4.21 since without it makecontext will fail.
2818         * elf/tls-macros.h [__powerpc64__] (__TLS_GET_ADDR): Define according
2819         to the ABI in use.
2820         [__powerpc64__] (TLS_LD): Use __TLS_GET_ADDR instead of
2821         .__tls_get_addr.
2822         [__powerpc64__] (TLS_GD): Likewise.
2824 2007-11-20  Ryan S. Arnold  <rsa@us.ibm.com>
2826         [BZ #4997]
2827         * sysdeps/powerpc/powerpc32/fpu/s_lround.S (__lround): Fixed erroneous
2828         result when x is +/-nextafter(+/-0.5,-/+1) i.e. all 1's in the
2829         mantissa.
2830         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S (__llround):
2831         Likewise.  Also account for when x is an odd number between 2^52
2832         and 2^53-1.
2833         * sysdeps/powerpc/powerpc64/fpu/s_llround.S (__llround): Likewise.
2834         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S (__llroundf): Likewise.
2835         * math/libm-test.inc (lround_test, llround_test): Added test cases to
2836         detect aforementioned erroneous conditions.
2838 2008-04-11  Jakub Jelinek  <jakub@redhat.com>
2840         * configure.in: Check for -fno-section-anchors in addition to
2841         -fno-toplevel-reorder.
2843 2008-04-11  Ulrich Drepper  <drepper@redhat.com>
2845         * include/features.h (__GLIBC_MINOR__): Bump to 8.
2847         * sysdeps/powerpc/powerpc32/fpu/s_lroundf.S: Remove duplicate comment.
2848         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llroundf.S: Likewise.
2849         * sysdeps/powerpc/powerpc32/power6/fpu/s_llroundf.S: Likewise.
2850         * sysdeps/powerpc/powerpc64/fpu/s_lrint.S: Likewise.
2851         * sysdeps/powerpc/powerpc64/fpu/s_lround.S: Likewise.
2852         * sysdeps/powerpc/powerpc64/fpu/s_lroundf.S: Likewise.
2854 2008-04-11  Jakub Jelinek  <jakub@redhat.com>
2856         [BZ #5443]
2857         * time/era.c: Transform __libc_setlocale_lock into rwlock.
2858         * time/alt_digit.c: Likewise.
2859         * wcsmbs/wcsmbsload.c: Likewise.
2861 2008-04-10  Ulrich Drepper  <drepper@redhat.com>
2863         * version.h (VERSION): Bump to 2.8.
2865         * timzeone/asia: Update from tzdata2008b.
2866         * timezone/backward: Likewise.
2867         * timezone/europe: Likewise.
2868         * timezone/northamerica: Likewise.
2869         * timezone/southamerica: Likewise.
2870         * timezone/iso3166.tab: Likewise.
2871         * timezone/leapseconds: Likewise.
2872         * timezone/zone.tab: Likewise.
2873         * timezone/private.h: Update from tzcode2008a.
2874         * timezone/zdump.c: Likewise.
2875         * timezone/zic.c: Likewise.
2877 2008-01-24  Steven Munroe  <sjmunroe@us.ibm.com>
2879         [BZ #5741]
2880         * sysdeps/powerpc/powerpc64/dl-machine.h (PPC_DCBT, PPC_DCBF):
2881         Define additonal Data Cache Block instruction macros.
2882         (elf_machine_fixup_plt): Add dcbt for opd and plt entries.
2883         Replace dcbst with dcbf and sync with sync/isync.
2885 2008-02-21  Alan Modra  <amodra@bigpond.net.au>
2887         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_type_class):
2888         Always set ELF_RTYPE_CLASS_PLT.
2889         (elf_machine_lookup_noexec_p, elf_machine_lookup_noplt_p): Delete.
2891 2008-04-03  Steven Munroe  <sjmunroe@us.ibm.com>
2893         * sysdeps/powerpc/powerpc32/power4/hp-timing.c: New file.
2894         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: New file.
2895         * sysdeps/powerpc/powerpc64/hp-timing.h [_ARCH_PWR4] (HP_TIMING_NOW):
2896         For ISA 2.01 and later replace mftb with mfspr 268.
2898 2008-02-19  Steven Munroe  <sjmunroe@us.ibm.com>
2900         [BZ #5768]
2901         * sysdeps/powerpc/fpu/Makefile (libm-tests): Add test-powerpc-snan.
2902         * sysdeps/powerpc/fpu/test-powerpc-snan.c: New file.
2904 2008-02-18  Steven Munroe  <sjmunroe@us.ibm.com>
2906         [BZ #5768]
2907         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: New file.
2908         * sysdeps/powerpc/powerpc32/fpu/s_isnan.c: Removed.
2909         * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: New file.
2910         * sysdeps/powerpc/powerpc64/fpu/s_isnan.c: Removed.
2912 2008-04-10  Jakub Jelinek  <jakub@redhat.com>
2914         * stdlib/tst-makecontext.c (othervar): New variable.
2915         (cf): Test sign extending the argument to long.
2917 2008-03-03  Steven Munroe  <sjmunroe@us.ibm.com>
2919         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: New file.
2920         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnanf.S: New file.
2921         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: New file.
2922         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S: New file.
2923         * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: New file.
2924         * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: New file.
2925         * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: New file.
2927 2008-02-22  Alan Modra  <amodra@bigpond.net.au>
2929         * elf/Makefile (tests): Substitute tests-vis-yes here.
2930         (tests-vis-yes): Delete.
2931         (modules-name, modules-vis-yes): Similarly.
2933 2008-02-12  Pete Eberlein  <eberlein@us.ibm.com>
2935         [BZ #4407]
2936         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
2937         Preserve sign in signgamp when x is zero.
2939 2007-10-26  Steven Munroe  <sjmunroe@us.ibm.com>
2941         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: New File.
2942         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.c: Removed.
2943         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: New File.
2944         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.c: Removed.
2945         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: New File.
2946         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: New File.
2948 2008-04-09  Ulrich Drepper  <drepper@redhat.com>
2950         [BZ #4314]
2951         * sysdeps/i386/i686/memcpy.S: Optimize copying of equally aligned
2952         buffers.
2954         [BZ #5209]
2955         * sysdeps/unix/sysv/syscalls.list: The times syscall doesn't have
2956         a reserved error value.
2958         * stdlib/tst-makecontext.c: Change parameter to cf to negative
2959         value to check for correct sign extension.
2961         [BZ #5436]
2962         * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
2963         Copy 64-bit parameter values even though this is not required in
2964         the standard.
2966         * sysdeps/unix/sysv/linux/x86_64/vfork.S (__vfork): Record return
2967         PC save.
2969 2008-02-14  Daniel Jacobowitz  <dan@codesourcery.com>
2971         * sysdeps/unix/sysv/linux/i386/vfork.S (__vfork): Record return
2972         PC save.
2974 2008-04-09  Jakub Jelinek  <jakub@redhat.com>
2976         * nss_files/files-XXX.c (_nss_files_getXXent_r): Restore saved errno.
2978 2008-04-09  Ulrich Drepper  <drepper@redhat.com>
2980         [BZ #5998]
2981         * libio/iofwrite.c (_IO_fwrite): Return correct count if flushing
2982         in line-buffered stream failed.
2983         * libio/iofwrite_u.c (fwrite_unlocked): Likewise.
2985 2008-04-08  Ulrich Drepper  <drepper@redhat.com>
2987         [BZ #6024]
2988         * scripts/abi-versions.awk: If the version specified by
2989         --enable-oldest-abi is older than the first version for this
2990         architecture, use the default version.
2992         * locale/programs/ld-collate.c (collate_read): Ignore script lines
2993         as well when ignoring the whole category.
2995 2008-04-07  Ulrich Drepper  <drepper@redhat.com>
2997         [BZ #6042]
2998         * sysdeps/unix/sysv/linux/net/ethernet.h: Add a few more
2999         ETHERTYPE_* definitions.
3000         Patch partly by Aurelien Jarno <aurelien@aurel32.net>.
3002 2008-04-07  Jakub Jelinek  <jakub@redhat.com>
3004         * stdlib/mbtowc.c (__no_r_state): Remove.
3005         (mbtowc): New static state variable.  Use it instead of
3006         __no_r_state.
3007         * stdlib/wctomb.c (__no_r_state): Remove extern decl.
3008         (__wctomb_state): New hidden variable.
3009         (wctomb): Use __wctomb_state instead of __no_r_state.
3010         * debug/wctomb_chk.c (__no_r_state): Remove extern decl.
3011         (__wctomb_state): New extern decl.
3012         (__wctomb_chk): Use __wctomb_state instead of __no_r_state.
3014 2008-04-07  Ulrich Drepper  <drepper@redhat.com>
3016         [BZ #5475]
3017         * resolv/res_init.c: Handle scope IDs in resolv.conf.
3019 2008-04-07  Jakub Jelinek  <jakub@redhat.com>
3021         * malloc/mtrace.pl: Use $@ instead of $* to keep perl 5.10 quiet.
3023 2008-04-06  Ulrich Drepper  <drepper@redhat.com>
3025         * po/nl.po: Update from translation team.
3027 2008-03-31  Ulrich Drepper  <drepper@redhat.com>
3029         [BZ #6007]
3030         * string/strfry.c: Handle empty strings again.
3032 2008-03-30  Ulrich Drepper  <drepper@redhat.com>
3034         [BZ #5443]
3035         * intl/dcigettext.c (__dcigettext): Get reader lock for locale data
3036         before looking for translation.
3037         * locale/duplocale.c: Transform __libc_setlocale_lock into rwlock.
3038         * locale/freelocale.c: Likewise.
3039         * locale/newlocale.c: Likewise.
3040         * locale/setlocale.c: Likewise.
3041         Based partially on a patch by ryo@np.css.fujitsu.com.
3043 2008-03-30  Jakub Jelinek  <jakub@redhat.com>
3045         * intl/dcigettext.c (_nl_find_msg): Reread nconversions after
3046         acquiring wrlock.  Do conv_tab allocation while holding lock.
3047         * intl/Makefile: Add rules to build and run tst-gettext6.
3048         * intl/tst-gettext6.c: New test.
3049         * intl/tst-gettext6.sh: New file.
3051 2008-03-30  Ulrich Drepper  <drepper@redhat.com>
3053         * po/nl.po: Update from translation team.
3055         * sysdeps/unix/opendir.c (__alloc_dir): If allocation fails for size
3056         provided through st_blksize, try the default size before giving up.
3058 2008-03-29  Ulrich Drepper  <drepper@redhat.com>
3060         * stdio-common/vfprintf.c (vfprintf): Correct overflow test.
3062         [BZ #5939]
3063         * sysdeps/posix/tempname.c (__gen_tempname): Correct flag selection.
3065         * posix/getopt.c (_getopt_internal_r): Remove old POSIX-demanded
3066         error message.  POSIX today does not require the messages to be in
3067         a specific form.  Suggested by Jim Meyering <jim@meyering.net>.
3069         [BZ #5979]
3070         * sunrpc/auth_unix.c: Unify printed strings.
3071         * sunrpc/clnt_tcp.c: Likewise.
3072         * sunrpc/clnt_udp.c: Likewise.
3073         * sunrpc/clnt_unix.c: Likewise.
3074         * sunrpc/svc_tcp.c: Likewise.
3075         * sunrpc/svc_udp.c: Likewise.
3076         * sunrpc/svc_unix.c: Likewise.
3077         * sunrpc/xdr.c: Likewise.
3078         * sunrpc/xdr_array.c: Likewise.
3079         * sunrpc/xdr_rec.c: Likewise.
3080         * sunrpc/xdr_ref.c: Likewise.
3081         * locale/programs/ld-time.c (time_finish): Unify messages.
3082         * locale/programs/locfile.c (handle_copy): Fix typo.
3083         * nscd/nscd.c (options): Fix typo.
3085         [BZ #5995]
3086         * stdlib/strtod_l.c: Use correct sign for result in one more
3087         underflow case.
3088         Patch by Eric Blake <ebb9@byu.net>.
3090 2008-03-27  Jakub Jelinek  <jakub@redhat.com>
3092         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Add open
3093         and creat system calls.
3094         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove open system
3095         call.
3096         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Remove open and creat
3097         system calls.
3098         * sysdeps/unix/sysv/linux/powerpc/powerpc64/syscalls.list: Likewise.
3099         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
3100         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
3102 2008-03-27  Ulrich Drepper  <drepper@redhat.com>
3104         * sysdeps/unix/sysv/linux/bits/local_lim.h: Undefined ARG_MAX if
3105         <linux/limits.h> has defined it.
3106         * sysdeps/unix/sysv/linux/sys/param.h: Define NCARGS to the legacy
3107         ARG_MAX value and prevent ARG_MAX from being defined by the kernel
3108         headers.
3109         * sysdeps/unix/sysv/linux/sysconf.c: Define legacy_ARG_MAX and use
3110         it instead of ARG_MAX.
3112 2008-03-25  Jakub Jelinek  <jakub@redhat.com>
3114         * posix/gai.conf: Fix comment for scope nullbits.
3115         * sysdeps/posix/getaddrinfo.c (gaiconf_init): If /bits is not present,
3116         default to 128 bits for v4 mapped addresses.
3118 2008-03-07  Martin Schwidefsky  <schwidefsky@de.ibm.com>
3120         * sysdeps/s390/fpu/fegetenv.c (fegetenv): Remove PTRACE_PEEKUSER
3121         ptrace call to get the ieee_instruction_pointer from the kernel.
3122         * sysdeps/s390/fpu/fesetenv.c (fesetenv): Remove PTRACE_POKEUSER
3123         ptrace call to set the ieee_instructtion_pointer.
3124         * sysdeps/unix/sysv/linux/s390/sys/user.h (struct _user_regs_struct):
3125         Add comment that ieee_instruction_pointer is always 0.
3127 2008-03-09  Andreas Jaeger  <aj@suse.de>
3129         [BZ #5857]
3130         * sysdeps/ieee754/dbl-64/s_rint.c (__rint): Handle j0==18.
3131         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Likewise.
3132         Patch by Mark Elliott <mark.h.elliott@lmco.com>.
3134         * math/libm-test.inc (nearbyint_test): Add new test cases from #5857.
3135         (rint_test): Likewise.
3137 2008-03-24  Ulrich Drepper  <drepper@redhat.com>
3139         * nis/nis_call.c (nis_server_cache_search): Save errno around stat
3140         call.
3141         (__nisfind_server): Similar for open readColdStartFile call.
3142         Patch partially by Jim Meyering.
3143         * nss/nss_files/files-XXX.c (_nss_files_getXXent_r): Save errno
3144         around internal_setent call.
3146         * po/vi.po: New Vietnamese translation.
3148         * sysdeps/unix/sysv/linux/adjtime.c: Correctly use
3149         ADJ_OFFSET_SS_READ.
3151         * sysdeps/unix/sysv/linux/bits/sched.h: Add new CLONE_* flags,
3152         remove CLONE_STOPPED.
3154 2008-02-10  Jim Meyering  <meyering@redhat.com>
3156         Remove useless "if" before "free":
3157         * elf/ldconfig.c (parse_conf_include): Likewise.
3158         * gmon/gmon.c (weak_alias): Likewise.
3159         * iconv/gconv_conf.c (__gconv_get_path): Likewise.
3160         * inet/rcmd.c (__validuser2_sa): Likewise.
3161         * intl/bindtextdom.c (set_binding_values): Likewise.
3162         * intl/loadmsgcat.c (_nl_load_domain, _nl_unload_domain): Likewise.
3163         * libio/genops.c (save_for_backup): Likewise.
3164         * libio/wgenops.c (save_for_wbackup): Likewise.
3165         * locale/programs/ld-collate.c (collate_read): Likewise.
3166         * locale/programs/linereader.c (get_string): Likewise.
3167         * nis/nss_compat/compat-pwd.c (give_pwd_free): Likewise.
3168         * nis/nss_compat/compat-spwd.c (give_spwd_free): Likewise.
3169         * resolv/res_debug.c (do_section): Likewise.
3170         * sunrpc/xdr_sizeof.c (x_inline, xdr_sizeof): Likewise.
3171         * sysdeps/mach/hurd/if_index.c (libc_hidden_def): Likewise.
3172         * sysdeps/posix/sprofil.c (__sprofil): Likewise.
3173         * time/lc-time-cleanup.c (_nl_cleanup_time): Likewise.
3174         * time/tzset.c (tzset_internal): Likewise.
3176 2008-03-18  Jakub Jelinek  <jakub@redhat.com>
3178         * sysdeps/unix/sysv/linux/dl-sysdep.h: Use __ASSEMBLER__ instead
3179         of ASSEMBLER.
3181 2008-03-11  Ulrich Drepper  <drepper@redhat.com>
3183         [BZ #5903]
3184         * iconv/iconv_charmap.c (charmap_conversion): Pass name of output file
3185         not stream for output file.  Open output file here.
3186         * iconv/iconv_prog.c (process_lock): Take pointer to output stream
3187         and output file name.
3188         (process_fd): Likewise.
3189         (process_file): Likewise.
3190         (main): Adjust callers of changed functions.
3191         * iconv/iconv_prog.h: Adjust prototype.
3193 2008-03-09  Andreas Jaeger  <aj@suse.de>
3195         [BZ #5753]
3196         * sysdeps/ia64/ieee754.h: Use protected namespace
3197         __BIG_ENDIAN/__LITTLE_ENDIAN.
3198         * sysdeps/ieee754/ieee754.h: Likewise.
3199         Patch by Aurelien Jarno <aurelien@aurel32.net>.
3201 2008-03-08  Roland McGrath  <roland@frob.com>
3203         * hurd/hurdsig.c (_hurd_internal_post_signal): When normal rules would
3204         ignore a signal that came from a machine exception, treat it as a
3205         fatal core-dump signal instead.
3206         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
3208         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
3209         Clear DF bit in thread state's eflags.
3210         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
3212 2008-03-08  Ulrich Drepper  <drepper@redhat.com>
3214         [BZ #5774]
3215         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Consume closing brace
3216         of NAN(...) sequence.
3217         * stdlib/Makefile (tests): Add tst-strtod6.
3218         * stdlib/tst-strtod6.c: New file.
3220         * inet/inet6_opt.c (inet6_opt_init): Check extlen for overflow.
3222         [BZ #5762]
3223         * posix/getopt.c (_getopt_internal_r): Clarify error message by
3224         putting offending option character in quotes.  Clean up error
3225         messages.
3226         * po/be.po: Adjust msgstr in translation file.
3227         * po/bg.po: Likewise.
3228         * po/ca.po: Likewise.
3229         * po/cs.po: Likewise.
3230         * po/da.po: Likewise.
3231         * po/de.po: Likewise.
3232         * po/es.po: Likewise.
3233         * po/fr.po: Likewise.
3234         * po/hr.po: Likewise.
3235         * po/ko.po: Likewise.
3236         * po/nl.po: Likewise.
3237         * po/rw.po: Likewise.
3238         * po/sk.po: Likewise.
3239         * po/sv.po: Likewise.
3240         * po/tr.po: Likewise.
3241         * po/zh_CN.po: Likewise.
3242         * po/zh_TW.po: Likewise.
3244         [BZ #5760]
3245         * inet/inet6_opt.c (inet6_opt_init): Fix ip6h_len computation.
3246         Patch by Roland Bless <roland@bless.de>.
3248         * sysdeps/unix/sysv/linux/dl-sysdep.c: Avoid unnecessary code for
3249         .o file.
3250         * elf/Makefile (routines): Add dl-sysdep.
3251         (elide-routines.os): Likewise.
3253 2008-03-07  Ulrich Drepper  <drepper@redhat.com>
3255         [BZ #5786]
3256         * elf/dl-sysdep.c: Undefine ROUND after use.
3257         * sysdeps/generic/ldsodefs.h [HAVE_DL_DISCOVER_OSVERSION]
3258         (struct rtld_global_ro): Add _dl_tls_get_addr_soft element.
3259         * elf/rtld.c (rtld_global_ro): Initialize _dl_discover_osversion.
3260         * sysdeps/unix/sysv/linux/dl-osinfo.h: Move _dl_discover_osversion
3261         to ...
3262         * sysdeps/unix/sysv/linux/dl-sysdep.c: ...here.
3263         * sysdeps/unix/sysv/linux/dl-sysdep.h: Declare _dl_discover_osversion
3264         if necessary.
3265         * sysdeps/unix/sysv/linux/sysconf.c: Handle _SC_ARG_MAX here.
3267         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Add
3268         _dl_tls_get_addr_soft element.
3269         * elf/rtld.c (rtld_global_ro): Initialize _dl_tls_get_addr_soft.
3270         * elf/Versions (ld): Don't export _dl_tls_get_addr_soft.
3271         * dlfcn/dlinfo.c (dlinfo_doit): Access dl_tls_get_addr_soft through
3272         GLRO.
3273         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Likewise.
3274         * elf/dl-tls.c (_dl_tls_get_addr_soft): Use attribute_hidden instead
3275         of internal_function.
3277         * stdlib/Makefile (aux): Add tens_in_limb.
3278         * stdlib/strtod_l.c: Move _tens_in_limb definition to...
3279         * stdlib/tens_in_limb.c: ...here.  New file.
3281         [BZ #5778]
3282         * sysdeps/unix/sysv/linux/pathconf.h: Declare
3283         __statfs_chown_restricted.
3284         * sysdeps/unix/sysv/linux/fpathconf.c: Call __statfs_chown_restricted
3285         for _PC_CHOWN_RESTRICTED.
3286         * sysdeps/unix/sysv/linux/pathconf.c: Likewise.
3287         Implement __statfs_chown_restricted.
3288         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Change
3289         _POSIX_CHOWN_RESTRICTED value to zero.
3290         * io/tst-fchownat.c: Correctly handle _POSIX_CHOWN_RESTRICTED
3291         defined to zero.
3293         * sysdeps/x86_64/rtld-memset.c: New file.
3295 2008-02-26  Harsha Jagasia  <harsha.jagasia@amd.com>
3297         * sysdeps/x86_64/cacheinfo.c (NOT_USED_RIGHT_NOW): Remove ifdef guards.
3299         * sysdeps/x86_64/memset.S: Rewrite non-SSE code path as tuned for AMD
3300         Barcelona machine.  Make default fall through branch of
3301         __x86_64_preferred_memory_instruction check as the integer code path.
3303 2007-10-15  H.J. Lu  <hongjiu.lu@intel.com>
3305         * sysdeps/x86_64/cacheinfo.c
3306         (__x86_64_preferred_memory_instruction): New variable.
3307         (init_cacheinfo): Initialize __x86_64_preferred_memory_instruction.
3309         * sysdeps/x86_64/memset.S: Rewrite.
3311 2008-03-04  Jakub Jelinek  <jakub@redhat.com>
3313         * include/stdio.h (__asprintf_chk, __dprintf_chk,
3314         __obstack_printf_chk): New prototypes.
3315         (__vasprintf_chk, __vdprintf_chk,
3316         __obstack_vprintf_chk): Likewise.
3317         Add libc_hidden_proto.
3318         * libio/obprintf.c
3319         (_IO_obstack_jumps): No longer static, add attribute_hidden.
3320         * libio/bits/stdio-ldbl.h (__asprintf_chk, __dprintf_chk,
3321         __obstack_printf_chk, __vasprintf_chk, __vdprintf_chk,
3322         __obstack_vprintf_chk): Add __LDBL_REDIR_DECL.
3323         * libio/bits/stdio2.h (__asprintf_chk, __dprintf_chk,
3324         __obstack_printf_chk, __vasprintf_chk, __vdprintf_chk,
3325         __obstack_vprintf_chk): New prototypes.
3326         (asprintf, __asprintf, dprintf, obstack_printf, vasprintf, vdprintf,
3327         obstack_vprintf): New inlines.
3328         * debug/dprintf_chk.c: New file.
3329         * debug/vdprintf_chk.c: New file.
3330         * debug/asprintf_chk.c: New file.
3331         * debug/vasprintf_chk.c: New file.
3332         * debug/obprintf_chk.c: New file.
3333         * debug/tst-chk1.c (do_test): Add asprintf and obstack_printf tests.
3334         * debug/Versions (__asprintf_chk, __dprintf_chk, __obstack_printf_chk,
3335         __vasprintf_chk, __vdprintf_chk, __obstack_vprintf_chk): Export
3336         @@GLIBC_2.8.
3337         * debug/Makefile: Build asprintf_chk, vasprintf_chk, dprintf_chk,
3338         vdprintf_chk and obprintf_chk, set CFLAGS for them.
3339         * sysdeps/ieee754/ldbl-opt/nldbl-compat.c (__nldbl___vasprintf_chk,
3340         __nldbl___vdprintf_chk, __nldbl___obstack_vprintf_chk): Add
3341         libc_hidden_proto.
3342         * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl___vasprintf_chk,
3343         __nldbl___vdprintf_chk, __nldbl___obstack_vprintf_chk): New prototypes.
3344         * sysdeps/ieee754/ldbl-opt/Versions (__nldbl___asprintf_chk,
3345         __nldbl___vasprintf_chk, __nldbl___dprintf_chk, __nldbl___vdprintf_chk,
3346         __nldbl___obstack_printf_chk, __nldbl___obstack_vprintf_chk): Export
3347         @@GLIBC_2.8.
3348         * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add asprintf_chk,
3349         vasprintf_chk, dprintf_chk, vdprintf_chk, obstack_printf_chk and
3350         obstack_vprintf_chk.
3351         * sysdeps/ieee754/ldbl-opt/nldbl-obstack_vprintf_chk.c: New file.
3352         * sysdeps/ieee754/ldbl-opt/nldbl-dprintf_chk.c: New file.
3353         * sysdeps/ieee754/ldbl-opt/nldbl-obstack_printf_chk.c: New file.
3354         * sysdeps/ieee754/ldbl-opt/nldbl-asprintf_chk.c: New file.
3355         * sysdeps/ieee754/ldbl-opt/nldbl-vdprintf_chk.c: New file.
3356         * sysdeps/ieee754/ldbl-opt/nldbl-vasprintf_chk.c: New file.
3358 2008-03-04  Ulrich Drepper  <drepper@redhat.com>
3360         [BZ #5779]
3361         * misc/sys/queue.h: Add STAILQ_CONCAT and TAILQ_CONCAT definitions.
3362         Patch by Roy Marples <roy@marples.name>.
3364         [BZ #5736]
3365         * malloc/malloc.c: Fix typo in comment.
3367         [BZ #5627]
3368         * locale/iso-639.def: Add Shuswap.
3370 2008-02-25  Jakub Jelinek  <jakub@redhat.com>
3372         [BZ #5790]
3373         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r): Don't
3374         overwrite *h_errnop/*errnop values from getanswer_r in case of
3375         failure.
3377 2008-03-03  Ulrich Drepper  <drepper@redhat.com>
3379         [BZ #5818]
3380         * nscd/connections.c (dbs): Add initializers for .suggested_module.
3381         (verify_persistent_db): Remove one unnecessary test and add a new one
3382         for bad configuration.
3383         (nscd_init): Improve error reported when persistent database cannot
3384         be reused.
3385         * nscd/nscd.h (DEFAULT_SUGGESTED_MODULE): Define.
3386         * nscd/nscd_conf.c (nscd_parse_file): Provide default values for
3387         .suggested_module and .max_db_size and case config file says the
3388         values are zero.
3389         * nscd/nscd_helper.c (get_mapping): Fail if hash table module is zero.
3391         [BZ #5854]
3392         * nis/ypclnt.c (yp_order): Fix handling of return value of
3393         do_ypcall_tr call.
3394         Patch by Jeff Moyer <jmoyer@redhat.com>.
3396         * po/fr.po: Update from translation team.
3398 2008-02-22  Andreas Jaeger  <aj@suse.de>,
3399             Carlos O'Donell <carlos@systemhalted.org>
3401         [BZ #5012]
3402         * FAQ.in: Describe why glibc needs to be compiled with
3403         optimization.
3405 2008-02-19  Roland McGrath  <roland@redhat.com>
3407         * elf/elf.h (SHT_GNU_ATTRIBUTES): New macro.
3409 2008-02-15  Ulrich Drepper  <drepper@redhat.com>
3411         [BZ #5737]
3412         * resolv/netdb.h: Make NI_MAXHOST and NI_MAXSERV available when
3413         __USE_MISC is defined.
3415 2008-02-10  Ulrich Drepper  <drepper@redhat.com>
3417         * sysdeps/unix/sysv/linux/sys/timerfd.h: New file.
3418         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers): Add
3419         sys/timerfd.h.
3420         * sysdeps/unix/sysv/linux/syscalls.list: Add timerfd_create,
3421         timerfd_gettime, timerfd_settime.
3422         * sysdeps/unix/sysv/linux/Versions: Add timerfd_create,
3423         timerfd_gettime, timerfd_settime for GLIBC_2.8.
3425 2008-02-08  Roland McGrath  <roland@redhat.com>
3427         * elf/elf.h (NT_PPC_SPE): New macro.
3429 2008-02-06  Roland McGrath  <roland@redhat.com>
3431         * Makerules ($(common-objpfx)sysd-rules):
3432         Depend on $(sysdep-makeconfigs).
3434 2008-01-31  Roland McGrath  <roland@redhat.com>
3436         [BZ #5442]
3437         * configure.in: Use -print-file-name if it yields a directory,
3438         for each of include and include-fixed.
3439         * configure: Regenerated.
3441         * Makeconfig (sysd-rules-targets): New variable.
3442         * sysdeps/unix/make-syscalls.sh: Use it in the rules emitted.
3443         * sysdeps/unix/Makefile (omit-deps): Append variants for each target.
3445 2008-01-30  Roland McGrath  <roland@redhat.com>
3447         * manual/libc.texinfo: Update back-cover text.
3449         * elf/elf.h (NT_386_TLS): New macro.
3451 2008-01-29  Roland McGrath  <roland@redhat.com>
3453         * Makeconfig (sysd-rules-patterns): New variable.
3454         * Makerules ($(common-objpfx)sysd-rules): Drive the loop from that.
3455         (check-inhibit-asm): New canned sequence, replaces ...
3456         (open-check-inhibit-asm, close-check-inhibit-asm): ... these, removed.
3457         * elf/rtld-Rules ($(objpfx)rtld-%.os): Use $(rtld-CPPFLAGS) in commands.
3458         (rtld-CPPFLAGS): Renamed from CPPFLAGS-rtld.
3459         (CFLAGS-rtld): Variable removed.
3461 2008-01-24  Roland McGrath  <roland@redhat.com>
3463         * configure.in: Let configure fragments set base_os.
3464         * configure: Regenerated.
3466 2008-01-22  Ulrich Drepper  <drepper@redhat.com>
3468         * po/ko.po: Update from translation team.
3470 2008-01-12  H.J. Lu  <hongjiu.lu@intel.com>
3472         * sysdeps/i386/fpu/ftestexcept.c (fetestexcept): Use short for fnstsw.
3474 2008-01-12  Andreas Jaeger  <aj@suse.de>
3476         [BZ #5040]
3477         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h (enum EPOLL_EVENTS):
3478         Add EPOLLRDHUP.
3480 2008-01-20  Samuel Thibault  <samuel.thibault@ens-lyon.org>
3482         * hurd/hurdsock.c (_hurd_socket_server): Return the standard
3483         error EAFNOSUPPORT rather than non-standard EPFNOSUPPORT.
3484         * sunrpc/bindrsvprt.c (bindresvport): Likewise.
3486 2007-10-23  Alexandre Oliva  <aoliva@redhat.com>
3488         * include/link.h (FORCED_DYNAMIC_TLS_OFFSET): Define.
3489         * elf/dl-close.c (_dl_close): Check for it.
3490         * elf/dl-reloc.c (CHECK_STATIC_TLS): Likewise.
3491         (_dl_allocate_static_tls): Likewise.
3492         * elf/dl-tls.c (_dl_allocate_tls_init): Likewise.
3493         (__tls_get_addr): Protect from race conditions in setting l_tls_offset
3494         to it.
3495         * elf/tst-tls16.c: New file.
3496         * elf/tst-tlsmod16a.c: New file.
3497         * elf/tst-tlsmod16b.c: New file.
3498         * elf/Makefile: Add rules to build and run tst-tls16.
3500 2008-01-16  Ulrich Drepper  <drepper@redhat.com>
3502         [BZ #5628]
3503         * bits/shm.h: Fix comment describing shmid_ds.
3504         * sysdeps/gnu/bits/shm.h: Likewise.
3505         * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Likewise.
3506         * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
3507         * sysdeps/unix/sysv/linux/ia64/bits/shm.h: Likewise.
3508         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
3509         * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
3510         * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
3511         * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
3512         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Likewise.
3513         Patch by Hareesh Nagarajan <hareesh.nagarajan@gmail.com>.
3515         [BZ #5607]
3516         * conform/data/fcntl.h-data: Fix posix_fadvise and posix_fallocate
3517         prototypes.
3518         * conform/data/limits.h-data: Adjust limits changed in v6 and add
3519         additional suffixes.
3520         * conform/data/mqueue.h-data: Fix typo in mq_curmsgs entry.
3521         Add optional functions mq_timedreceive and mq_timedsend.
3522         * conform/data/netdb.h-data: Add more AI_* and EAI_* constants.
3523         * conform/data/pthread.h-data: Fix prototype of
3524         pthread_condattr_setclock.  pthread_sigmask is not required in v6.
3525         * conform/data/semaphore.h-data: Allow time.h definitions.
3526         * conform/data/signal.h-data: Likewise.
3527         * conform/data/stdio.h-data: getw and putw are not required in v6.
3528         * conform/data/stdlib.h-data: Change setstate prototype.
3529         * conform/data/string.h-data: Fix strerror_r prototype.
3530         * conform/data/time.h-data: Fix typo in TIMER_ABSTIME definition.
3531         * conform/data/unistd.h-data: pthread_atfork not required in v6.
3532         Fix readlink prototype.
3533         * conform/data/netinet/in.h-data: Add const to in6addr_any and
3534         in6addr_loopback.
3535         * inet/netinet/in.h: Cleanup namespace.
3536         * posix/regex.h: Likewise.
3537         * resolv/netdb.h: Likewise.
3538         * sysdeps/unix/sysv/linux/bits/in.h: Likewise.
3539         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
3540         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
3541         * sysdeps/posix/getaddrinfo.c (default_labels): Adjust for change
3542         of names of in in6_addr.
3543         (default_precedence): Likewise.
3544         * sysdeps/unix/sysv/linux/cmsg_nxthdr.c: Include <stddef.h> for
3545         NULL definition.
3547 2008-01-15  Ulrich Drepper  <drepper@redhat.com>
3549         * conform/data/fmtmsg.h-data: Add missing allows.
3550         * conform/data/ftw.h-data: Likewise.
3551         * conform/data/inttypes.h-data: Likewise.
3552         * conform/data/math.h-data: Likewise.
3553         * conform/data/signal.h-data: Likewise.
3554         * conform/data/net/if.h-data: Likewise.
3555         * conform/data/netinet/in.h-data: Likewise.
3556         * conform/data/sys/socket.h-data: Likewise.
3558         [BZ #5614]
3559         * string/bits/string2.h (__strtok_r_1c): Always update *__NEXTP.
3560         (__strtok_r): Simplify.
3561         * string/tester.c (test_strtok_r): Add test case for futile search
3562         with single-character seach string.
3564 2008-01-12  Ulrich Drepper  <drepper@redhat.com>
3566         * po/ko.po: Update from translation team.
3568 2008-01-11  Andreas Jaeger  <aj@suse.de>
3570         [BZ #5600]
3571         * sysdeps/unix/sysv/linux/sys/signalfd.h (struct
3572         signalfd_siginfo): Use 64-bit type for ssi_ptr to sync with Linux
3573         kernel header.
3575 2008-01-10  Ulrich Drepper  <drepper@redhat.com>
3577         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Store result of
3578         native interface lookup in all the relevant places.
3580 2008-01-10  Jakub Jelinek  <jakub@redhat.com>
3581             Ulrich Drepper  <drepper@redhat.com>
3583         * sysdeps/posix/getaddrinfo.c (sort_results): Remove service_order
3584         field.  Use sockaddr_in6 for source_addr.
3585         (get_scope): Change type of parameter to sockaddr_in6.  Adjust.
3586         (match_prefix): Likewise.
3587         (get_label): Likewise.
3588         (get_precedence): Likewise.
3589         (rfc3484_sort): Change to use indirect access to results array.
3590         Adjust to use of sockaddr_in6.  Replace service_order test with
3591         simple index comparison.
3592         (getaddrinfo): Define order array.  Initialize it.  Don't initialize
3593         service_order field.  Adjust qsort_t calls.  Access sorted result
3594         array indirectly through order array.
3595         * posix/tst-rfc3484.c: Adjust for change of rfc3484_sort.
3596         * posix/tst-rfc3484-2.c: Likewise.
3597         * posix/tst-rfc3484-3.c: Likewise.
3599 2008-01-09  Ulrich Drepper  <drepper@redhat.com>
3601         [BZ #5541]
3602         * sunrpc/rpc_thread.c (__rpc_thread_destroy): Also free xports and
3603         pollfd structures.
3604         Patch by André Cruz.
3606         [BZ #5545]
3607         * sunrpc/clnt_perr.c (clnt_sperror): Don't use fixed size buffer.
3608         (clnt_spcreateerror): Likewise.
3610         [BZ #5553]
3611         * malloc/malloc.c (public_mALLOc): Set ar_ptr when trying main_arena.
3612         (public_mEMALIGn): Likewise.
3613         Patch mostly by Daniel Jacobowitz.
3615 2008-01-09  Jakub Jelinek  <jakub@redhat.com>
3617         * sysdeps/unix/sysv/linux/i386/makecontext.S (__makecontext): Avoid
3618         clobbering memory at or above uc_stack.ss_sp + uc_stack.ss_size.
3619         * stdlib/Makefile: Add rules to build and run tst-makecontext2.
3620         * stdlib/tst-makecontext2.c: New test.
3622 2008-01-08  Jakub Jelinek  <jakub@redhat.com>
3624         * iconv/loop.c (UPDATE_PARAMS): Define to empty statement if not
3625         defined.
3626         (REINIT_PARAMS): Likewise.  Undefine before end of file.
3627         (STANDARD_TO_LOOP_ERR_HANDLER): Use UPDATE_PARAMS before calling
3628         transliteration hooks and REINIT_PARAMS afterwards.
3629         * iconvdata/iso-2022-jp.c (BODY): Use a separate variable for
3630         status.
3631         (REINIT_PARAMS): Define.
3632         * iconvdata/ibm1364.c (REINIT_PARAMS): Likewise.
3633         * iconvdata/ibm930.c (REINIT_PARAMS): Likewise.
3634         * iconvdata/ibm933.c (REINIT_PARAMS): Likewise.
3635         * iconvdata/ibm935.c (REINIT_PARAMS): Likewise.
3636         * iconvdata/ibm937.c (REINIT_PARAMS): Likewise.
3637         * iconvdata/ibm939.c (REINIT_PARAMS): Likewise.
3638         * iconvdata/iso-2022-cn.c (REINIT_PARAMS): Likewise.
3639         * iconvdata/iso-2022-cn-ext.c (REINIT_PARAMS): Likewise.
3640         * iconvdata/iso-2022-jp-3.c (REINIT_PARAMS): Likewise.
3641         * iconvdata/iso-2022-kr.c (REINIT_PARAMS): Likewise.
3642         * iconvdata/Makefile: Add rules to build and run tst-iconv7.c.
3643         * iconvdata/tst-iconv7.c: New test.
3645 2008-01-07  Ulrich Drepper  <drepper@redhat.com>
3647         * libio/stdio.h (vscanf): Fix definition for loser compilers.
3649 2008-01-05  Jakub Jelinek  <jakub@redhat.com>
3651         [BZ #5112]
3652         * nscd/connections.c (restart): Fix condition.
3654 2008-01-03  Jakub Jelinek  <jakub@redhat.com>
3656         * ctype/ctype.h (__ctype_b_loc, __ctype_tolower_loc,
3657         __ctype_toupper_loc): Add __THROW.
3659 2008-01-02  Ulrich Drepper  <drepper@redhat.com>
3661         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Fix
3662         recognition of interface family.
3664         * posix/getconf.c: Update copyright year.
3665         * nss/getent.c: Likewise.
3666         * iconv/iconvconfig.c: Likewise.
3667         * iconv/iconv_prog.c: Likewise.
3668         * elf/ldconfig.c: Likewise.
3669         * catgets/gencat.c: Likewise.
3670         * csu/version.c: Likewise.
3671         * elf/ldd.bash.in: Likewise.
3672         * elf/sprof.c (print_version): Likewise.
3673         * locale/programs/locale.c: Likewise.
3674         * locale/programs/localedef.c: Likewise.
3675         * nscd/nscd.c (print_version): Likewise.
3676         * debug/xtrace.sh: Likewise.
3677         * malloc/memusage.sh: Likewise.
3678         * malloc/mtrace.pl: Likewise.
3679         * debug/catchsegv.sh: Likewise.
3681 2007-12-26  Ulrich Drepper  <drepper@redhat.com>
3683         * nss/nsswitch.c (__nss_lookup): Actually use alternative name in
3684         second lookup.
3686 2007-12-23  Ulrich Drepper  <drepper@redhat.com>
3688         * sysdeps/x86_64/cacheinfo.c (intel_02_known): New entry 0x3f.
3689         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
3691 2007-12-17  Roland McGrath  <roland@redhat.com>
3693         * inet/ether_line.c (ether_line): Remove unused variable.
3695 2007-12-17  Samuel Thibault  <samuel.thibault@ens-lyon.org>
3697         * login/forkpty.c (forkpty): Add const qualifier to parameters termp
3698         and winp.
3699         * login/openpty.c (openpty): Likewise.
3700         * login/pty.h (openpty, forkpty): Likewise.
3701         * manual/terminal.texi (openpty, forkpty): Likewise.
3703 2007-12-17  Ulrich Drepper  <drepper@redhat.com>
3705         * malloc/malloc.c (public_cALLOc): For arenas other than
3706         main_arena, count all bytes inside the mprotect_size range of the
3707         heap as uninitialized.
3709 2007-12-16  Ulrich Drepper  <drepper@redhat.com>
3711         * elf/tst-execstack.c (do_test): Don't fail if SELinux forbids
3712         executable stacks.
3714         * malloc/malloc.c (public_mTRIm): Iterate over all arenas and call
3715         mTRIm for all of them.
3716         (mTRIm): Additionally iterate over all free blocks and use madvise
3717         to free memory for all those blocks which contain at least one
3718         memory page.
3719         * malloc/tst-trim1.c: New file.
3720         * malloc/Makefile (tests): Add tst-trim1.
3722         * malloc/malloc.c (do_check_malloc_state): Minimal cleanups.
3724 2007-12-14  Ulrich Drepper  <drepper@redhat.com>
3726         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
3727         First cast argument to long
3728         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_gettimeofday):
3729         Return long.
3730         (__vdso_clock_gettime): Likewise.
3731         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Functions
3732         return long.
3734 2007-12-13  Ulrich Drepper  <drepper@redhat.com>
3736         * locale/nl_langinfo.c (nl_langinfo): Just call __nl_langinfo_l.
3737         * locale/nl_langinfo_l.c: Real implementation, copied from
3738         nl_langinfo.c.
3739         * include/langinfo.h: Add libc_hidden_proto for __nl_langinfo_l.
3741 2007-12-01  Jim Meyering  <meyering@redhat.com>
3743         * posix/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
3744         that would inhibit utf8-optimization of a regexp containing line-
3745         or buffer-anchors, e.g., `^', `$'.
3747 2007-12-12  Ulrich Drepper  <drepper@redhat.com>
3749         * time/bug-getdate1.c (do_test): Don't use century values which
3750         aren't valid on 32-bit systems.
3752 2007-12-12  Jakub Jelinek  <jakub@redhat.com>
3754         * sysdeps/i386/i486/bits/string.h (memmove): Define as macro.
3755         (memmove): Rename to __memmove_g, with __asm__ ("memmove").
3756         * sysdeps/s390/bits/string.h (__strlen_g, __strcpy_g, __strncpy_g,
3757         __strcat_g, __strncat_g): Add __asm__.
3759 2007-12-12  Ulrich Drepper  <drepper@redhat.com>
3761         [BZ #5477]
3762         * io/fchmodat.c: Fix typo in stub_warning use.
3763         Patch by Petr Salinger.
3765 2007-12-11  Ulrich Drepper  <drepper@redhat.com>
3767         * iconvdata/hp-thai8.c: New file.
3768         * iconvdata/Makefile: Add rules for hp-thai8.c.
3769         * iconvdata/tst-tables.sh: Add entry for HP-THAI8.
3770         * iconvdata/gconv-modules: Likewise.
3772         [BZ #5464]
3773         * iconvdata/hp-greek8.c: New file.
3774         * iconvdata/Makefile: Add rules for hp-greek8.c.
3775         * iconvdata/tst-tables.sh: Add entry for HP-GREEK8.
3776         * iconvdata/gconv-modules: Likewise.
3778         [BZ #5463]
3779         * iconvdata/hp-turkish8.c: New file.
3780         * iconvdata/Makefile: Add rules for hp-turkish8.c.
3781         * iconvdata/tst-tables.sh: Add entry for HP-TURKISH8.
3782         * iconvdata/gconv-modules: Likewise.
3784         * malloc/arena.c (grow_heap): Split out code to shrink heap into...
3785         (shrink_heap): ... this new function.
3786         (heap_trim): Call shrink_heap instead of grow_heap.
3788         * malloc/malloc.c (_int_malloc): sYSMALLOc might fail, in this
3789         case don't call alloc_perturb.
3791 2007-12-10  Ulrich Drepper  <drepper@redhat.com>
3793         * sysdeps/unix/sysv/linux/adjtime.c: Use ADJ_OFFSET_SS_READ if
3794         possible.
3795         * sysdeps/unix/sysv/linux/kernel-features.h
3796         (__ASSUME_ADJ_OFFSET_SS_READ): Define for 2.6.24.
3797         * sysdeps/unix/sysv/linux/sys/timex.h (ADJ_OFFSET_SS_READ): Define.
3799 2007-12-08  Ulrich Drepper  <drepper@redhat.com>
3801         [BZ #5424]
3802         * stdio-common/vfprintf.c: Do not overflow when adding to done.
3803         * stdio-common/Makefile (tests): Add bug22.
3804         * stdio-common/bug22.c: New file.
3806         [BZ #5451]
3807         * time/getdate.c: Fix filling in default values.
3808         * time/bug-getdate1.c: New file.
3809         * time/Makefile: Add rules to build and run bug-getdate1.
3811         * iconvdata/ebcdic-is-friss.c: Use 8bit-gap instead of 8bit-generic.
3812         * iconvdata/ebcdic-es.c: Likewise.
3813         * iconvdata/ebcdic-es-a.c: Likewise.
3814         * iconvdata/ebcdic-uk.c: Likewise.
3815         * iconvdata/iso8859-16.c: Likewise.
3816         * iconvdata/viscii.c: Likewise.
3817         * iconvdata/iso8859-9e.c: Likewise.
3818         * iconvdata/Makefile: Adjust appropriately.
3820         [BZ #5428]
3821         * wcsmbs/wchar.h: Unconditionally undefine __need_mbstate and
3822         __need_wint_t.
3824 2007-12-07  Ulrich Drepper  <drepper@redhat.com>
3826         [BZ #5427]
3827         * iconvdata/hp-roman9.c: New file.
3828         * iconvdata/Makefile: Add rules for hp-roman9.c.
3829         * iconvdata/tst-tables.sh: Add HP-ROMAN9.
3830         * iconvdata/gconv-modules: Likewise.
3832         * iconvdata/hp-roman8.c: Use 8bit-gap instead of 8bit-generic.
3833         * iconvdata/Makefile: Adjust appropriately.
3835         [BZ #5441]
3836         * stdio-common/vfscanf.c (_IO_vfwscanf): Don't free ptrs_to_free
3837         structure, it's allocated with alloca.
3838         * stdio-common/Makefile (tests): Add bug21.
3839         * stdio-common/bug21.c: New file.
3841 2007-12-06  Aurelien Jarno  <aurelien@aurel32.net>
3843         [BZ #5452]
3844         * sysdeps/unix/sysv/linux/bits/sched.h: Use __extension__
3845         keyword for gcc's braced-groups.
3847 2007-12-07  Ulrich Drepper  <drepper@redhat.com>
3849         [BZ #5454]
3850         * inet/ether_line.c: Strip hostname of whitespaces.
3851         * inet/Makefile (tests): Add tst-ether_line.
3852         * inet/tst-ether_line.c: New file.
3854 2007-12-03  Ulrich Drepper  <drepper@redhat.com>
3856         [BZ #5439]
3857         * sysdeps/unix/sysv/linux/sys/signalfd.h: Fix use of __nonnull.
3859         [BZ #5435]
3860         * sysdeps/unix/sysv/linux/i386/makecontext.S: Align stack.
3862         * stdlib/tst-setcontext.c: Catch the case where the links gets
3863         messed up and we do not reach main again.
3865         * po/ca.po: Update from translation team.
3867 2007-11-26  Ulrich Drepper  <drepper@redhat.com>
3869         * posix/unistd.h: Declare fsync also for __USE_XOPEN2K.
3870         * posix/regex.h (REG_ENOSYS): Likewise.
3871         * wcsmbs/wchar.h: Define __need_file also for __USE_XOPEN2K.
3873 2007-11-25  Ulrich Drepper  <drepper@redhat.com>
3875         * nscd/nscd.h (MAX_STACK_USE): Define.
3876         * nscd/mem.c (MAX_STACK_USE): Remove definition here.
3877         (gc): Initialize stack_used based on allocation in prune_cache.
3878         * nscd/cache.c (prune_cache): Use heap for mark array if necessary.
3879         Clear array before use.
3881         * nscd/aicache.c (addhstaiX): Update statistics counter in case
3882         memory allocation failed.
3883         * nscd/hstcache.c (cache_addhst): Likewise.
3884         * nscd/grpcache.c (cache_addgr): Likewise.
3885         * nscd/servicescache.c (cache_addserv): Likewise.
3886         * nscd/pwdcache.c (cache_addpw): Likewise.
3887         * nscd/initgrcache.c (addinitgroupsX): Likewise.
3889 2007-11-23  Ulrich Drepper  <drepper@redhat.com>
3891         * sysdeps/unix/sysv/linux/powerpc/powerpc64/syscalls.list: Add open
3892         and creat system calls.
3894         * sysdeps/unix/sysv/linux/check_native.c: Include <asm/types.h>.
3896 2007-11-23  Martin Schwidefsky  <schwidefsky@de.ibm.com>
3898         * sysdeps/unix/sysv/linux/Makefile [subdir=inet] (sysdep_headers):
3899         Add netiucv/iucv.h.
3900         * sysdeps/unix/sysv/linux/netiucv/iucv.h: New file.
3901         * sysdeps/unix/sysv/linux/opensock.c (__opensock): Add AF_IUCV
3902         protocol.
3903         * sysdeps/unix/sysv/linux/sa_len.c (__libc_sa_len): Likewise.
3904         * sysdeps/unix/sysv/linux/s390/opensock.c: New file.
3905         * sysdeps/unix/sysv/linux/s390/sa_len.c: New file.
3907 2007-11-22  Martin Schwidefsky  <schwidefsky@de.ibm.com>
3909         * sysdeps/s390/bits/string.h (strlen, strcpy, strncpy, strcat,
3910         strncat): Define as macros to avoid compile errors.
3912         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list:  Add open and
3913         creat entries.
3915 2007-11-22  Ulrich Drepper  <drepper@redhat.com>
3917         [BZ #5382]
3918         * nscd/nscd.h (NSCD_THREAD_STACKSIZE): Define.
3919         * nscd/connections.c (start_threads): Use NSCD_THREAD_STACKSIZE.
3920         * nscd/mem.c (gc): Don't allocate arrays on the stack if they can
3921         overflow it.
3922         Partially based on a patch by Petr Baudis <pasky@suse.cz>.
3924         * sysdeps/unix/sysv/linux/nscd_setup_thread.c (setup_thread):
3925         Return zero in case the thread library is not NPTL.
3927         [BZ #5375]
3928         * resolv/res_hconf.c (_res_hconf_reorder_addrs): Fix locking when
3929         initializing interface list.
3931         [BZ #5378]
3932         * nis/nss_compat/compat-initgroups.c (getgrent_next_nss): Don't
3933         use result of nss_getgrgid_r if nothing was found.  For other
3934         error return with a failure.
3935         Partially based on a patch by Petr Baudis <pasky@suse.cz>.
3937         * locale/programs/ld-collate.c (collate_read): Fix loop to match
3938         macro name.
3940 2007-11-19  Ulrich Drepper  <drepper@redhat.com>
3942         * sysdeps/posix/getaddrinfo.c (defaults_scopes, scopes): New variables.
3943         (get_scope): For IPv4 scope, use scopes table.
3944         (fini): Free scopes table if necessary.
3945         (free_scopelist): New function.
3946         (scopecmp): New function.
3947         (gaiconf_init): Also handle scopev4 entries.
3948         * posix/tst-rfc3484.c (do_test): Initialize scopes.
3949         * posix/tst-rfc3484-2.c (do_test): Likewise.
3950         * posix/gai.conf: Document scopev4 defaults.
3951         * posix/Makefile (tests): Add tst-rfc3484-3.
3952         * posix/tst-rfc3484-3.c: New file.
3954         * sysdeps/posix/getaddrinfo.c (default_labels): Describe entry for
3955         Teredo tunnels.
3956         * posix/gai.conf: Update for current default tables.
3958 2007-11-19  Ulrich Drepper  <drepper@redhat.com>
3960         * po/tr.po: Update from translation team.
3962 2007-11-18  Roland McGrath  <roland@frob.com>
3964         * manual/arith.texi (Remainder Functions): Spelling fix.
3965         From Shaun Silk <genix@mysoul.com.au>.
3967         * sysdeps/mach/hurd/bits/fcntl.h (O_CLOEXEC): Fix value.
3969 2007-11-17  Ulrich Drepper  <drepper@redhat.com>
3971         * po/zh_CN.po: Update from translation team.
3973         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers):
3974         Add sys/signalfd.h and sys/eventfd.h.
3976 2007-11-15  Bruno Haible  <bruno@clisp.org>
3978         [BZ #5346]
3979         * intl/dcigettext.c (struct known_translation_t): Turn msgid into a
3980         union.
3981         (transcmp): Use the appropriate part of s1->msgid and s2->msgid.
3982         (DCIGETTEXT): Change the allocation of the 'search' variable so that
3983         it needs only fixed stack space. Delay the initialization of
3984         msgid_len until it is needed.
3986 2007-11-15  Andreas Jaeger  <aj@suse.de>
3988         * sysdeps/ieee754/dbl-64/sincos.tbl: Fix size of union.
3989         Reported by Christoph Quirin Lauter <christoph.lauter@ens-lyon.fr>.
3991 2007-11-15  Ulrich Drepper  <drepper@redhat.com>
3993         * po/ko.po: Update from translation team.
3995 2007-11-14  Ulrich Drepper  <drepper@redhat.com>
3997         * sysdeps/unix/sysv/linux/check_native.c (__check_native): Simplify
3998         significantly.  The device type is also part of the ifinfomsg data.
4000         * po/sv.po: Update from translation team.
4001         * po/nl.po: Likewise.
4003         * nscd/cache.c (prune_cache): If cache is empty, instruct caller
4004         to wake up in 24 hours.
4006         * nscd/gai.c (__ioctl): Define.  Include check_native.c.
4008 2007-11-13  Ulrich Drepper  <drepper@redhat.com>
4010         * po/cs.po: Update from translation team.
4011         * po/pl.po: Likewise.
4013         * include/ifaddrs.h: Remove in6ai_temporary.
4014         (struct in6addrinfo): Add index element.
4015         Declare __check_native.
4016         * inet/Makefile (aux): Add check_native.
4017         * sysdeps/unix/sysv/linux/check_native.c: New file.
4018         * sysdeps/unix/sysv/linux/check_pf.c: No need to recognize
4019         IFA_F_TEMPORARY.  Pass back ifa_index.
4020         * sysdeps/posix/getaddrinfo.c: Remove netlink compatibility code.
4021         (rfc3484_sort): Add new parameter.  Implement rule 7 correctly:
4022         call __check_native if necessary.
4023         (getaddrinfo): Fill in index field.  Use qsort_r instead of qsort
4024         to sort addresses.  Pass information about the results.
4025         * posix/tst-rfc3484.c: Adjust for addition of index field and change
4026         of rfc3484_sort interface.
4027         * posix/tst-rfc3484-2.c: Likewise.
4029         * stdlib/stdlib.h: Define __compar_d_fn_t.  Declare qsort_r.
4030         * include/stdlib.h: Add hidden_proto for qsort_t and adjust protoype
4031         for _quicksort.
4032         * stdlib/msort.c (qsort): Now a wrapper around qsort_r.
4033         (qsort_r): Renamed from qsort.  Take additional parameter and pass it
4034         on as third parameter to compare function and _quicksort.
4035         * stdlib/qsort.c (_quicksort): Take additional parameter and pass on
4036         to the compare function.
4037         * stdlib/Versions [libc] (GLIBC_2.8): Add qsort_r.
4038         * Versions.def: Add GLIBC_2.8 for libc.
4040         * posix/tst-rfc3484.c: Adjust for addition of prefixlen field.
4041         * posix/tst-rfc3484-2.c: Likewise.
4043         * include/kernel-features.h: Moved to...
4044         * sysdeps/mach/hurd/kernel-features.h: ...here.
4046 2007-09-13  H.J. Lu  <hongjiu.lu@intel.com>
4048         * sysdeps/i386/i586/memcpy_chk.S: New file.
4049         * sysdeps/i386/i586/mempcpy_chk.S: Likewise.
4050         * sysdeps/i386/i586/memset_chk.S: Likewise.
4052 2007-11-12  Ulrich Drepper  <drepper@redhat.com>
4054         * include/ifaddrs.c (struct in6addrinfo): Add prefixlen field.
4055         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Always return
4056         list of interfaces.  Also store prefix length.
4057         * sysdeps/posix/getaddrinfo.c (sort_result): Add prefixlen element.
4058         (rfc3484_sort): In rule 9, for IPv4 addresses count only matching
4059         prefix if source and destination address are in the same subnet.
4060         (getaddrinfo): Always call __check_pf.  Fill in prefixlen field.
4061         Always look for matching record in in6ai list.
4062         Correct source_addr_len value for IPv6->IPv4 converted records.
4064 2007-11-11  Roland McGrath  <roland@frob.com>
4066         * include/kernel-features.h: New file.
4068 2007-11-10  Ulrich Drepper  <drepper@redhat.com>
4070         * sysdeps/pthread/aio_misc.c (handle_fildes_io): Avoid unnecessary
4071         complications for 64-bit platforms.
4073         * sysdeps/unix/sysv/linux/open64.c: Move __open64_2 implementation to..
4074         * sysdeps/unix/sysv/linux/open64_2.c: ...here.  New file.
4075         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines): Add
4076         open64_2.
4077         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Add open and creat
4078         entries.
4079         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
4080         * sysdeps/wordsize-64/alphasort.c: New file.
4081         * sysdeps/wordsize-64/alphasort64.c: New file.
4082         * sysdeps/wordsize-64/fseeko.c: New file.
4083         * sysdeps/wordsize-64/fseeko64.c: New file.
4084         * sysdeps/wordsize-64/ftello.c: New file.
4085         * sysdeps/wordsize-64/ftello64.c: New file.
4086         * sysdeps/wordsize-64/ftw.c: New file.
4087         * sysdeps/wordsize-64/ftw64.c: New file.
4088         * sysdeps/wordsize-64/iofgetpos.c: New file.
4089         * sysdeps/wordsize-64/iofgetpos64.c: New file.
4090         * sysdeps/wordsize-64/iofopen.c: New file.
4091         * sysdeps/wordsize-64/iofopen64.c: New file.
4092         * sysdeps/wordsize-64/iofsetpos.c: New file.
4093         * sysdeps/wordsize-64/iofsetpos64.c: New file.
4094         * sysdeps/wordsize-64/lockf.c: New file.
4095         * sysdeps/wordsize-64/lockf64.c: New file.
4096         * sysdeps/wordsize-64/mkostemp.c: New file.
4097         * sysdeps/wordsize-64/mkostemp64.c: New file.
4098         * sysdeps/wordsize-64/mkstemp.c: New file.
4099         * sysdeps/wordsize-64/mkstemp64.c: New file.
4100         * sysdeps/wordsize-64/scandir.c: New file.
4101         * sysdeps/wordsize-64/scandir64.c: New file.
4102         * sysdeps/wordsize-64/tmpfile.c: New file.
4103         * sysdeps/wordsize-64/tmpfile64.c: New file.
4104         * sysdeps/wordsize-64/versionsort.c: New file.
4105         * sysdeps/wordsize-64/versionsort64.c: New file.
4106         * sysdeps/unix/sysv/linux/wordsize-64/aio_read.c: New file.
4107         * sysdeps/unix/sysv/linux/wordsize-64/aio_read64.c: New file.
4108         * sysdeps/unix/sysv/linux/wordsize-64/aio_write.c: New file.
4109         * sysdeps/unix/sysv/linux/wordsize-64/aio_write64.c: New file.
4110         * sysdeps/unix/sysv/linux/wordsize-64/creat64.c: New file.
4111         * sysdeps/unix/sysv/linux/wordsize-64/getdirentries.c: New file.
4112         * sysdeps/unix/sysv/linux/wordsize-64/getdirentries64.c: New file.
4113         * sysdeps/unix/sysv/linux/wordsize-64/lio_listio.c: New file.
4114         * sysdeps/unix/sysv/linux/wordsize-64/lio_listio64.c: New file.
4115         * sysdeps/unix/sysv/linux/wordsize-64/open64.c: New file.
4116         * sysdeps/unix/sysv/linux/wordsize-64/openat.c: New file.
4117         * sysdeps/unix/sysv/linux/wordsize-64/openat64.c: New file.
4119         * crypt/sha256-crypt.c: Fix a comment.
4120         * crypt/sha512-crypt.c: Likewise.
4122 2007-11-07  H.J. Lu  <hongjiu.lu@intel.com>
4124         * sysdeps/x86_64/memset.S: Add sfence after movnti.
4126 2007-11-07  Ulrich Drepper  <drepper@redhat.com>
4128         [BZ #5277]
4129         * iconv/loop.c (STANDARD_TO_LOOP_ERR_HANDLER): If conversion failed
4130         because output buffer is too small break, don't loop.
4131         * iconvdata/Makefile (tests): Add bug-iconv6.
4132         * iconvdata/bug-iconv6.c: New file.
4134 2007-11-06  Ulrich Drepper  <drepper@redhat.com>
4136         * stdio-common/vfprintf.c (vfprintf): Compute necessary buffer size
4137         with size_t type.
4138         * stdio-common/printf_fp.c (__print_fp): Change chars_needed type to
4139         size_t.  Add casts where needed.
4141         * nscd/selinux.c (nscd_request_avc_has_perm): When compiled with
4142         old headers, don't call avc_has_perm if we don't have the
4143         permission information.
4145 2007-11-05  Daniel Jacobowitz  <dan@codesourcery.com>
4147         * elf/rtld.c (dl_main): Use the page size to find the map start.
4149 2007-11-05  Ulrich Drepper  <drepper@redhat.com>
4151         * time/tzfile.c (__tzfile_read): Fix check for version 0 data files.
4152         Patch by Szymon Siwek <sls@poczta.wp.pl>.
4154         * nscd/aicache.c (addhstaiX): Check herrno after IPv4 lookup only
4155         when the lookup call failed.
4157         * nscd/nscd.h (struct database_dyn): Rename prunelock to prune_lock.
4158         Add prune_cond and wakeup_time.
4159         (CACHE_PRUNE_INTERNAL): Define.
4160         Update declarations of prune_cache and setup_thread.
4161         * nscd/connections.c (dbs): Update initializers.
4162         (CACHE_PRUNE_INTERNAL): Moved to nscd.h.
4163         (nscd_init): Default number of threads is now 4.
4164         (invalidate_cache): Take lock before calling prune_cache.
4165         (handle_request): If SELinux forbids the request, say so.
4166         (readylist_cond): Use static initializer.
4167         (nscd_run_prune): New function.  Used only by pruning threads.
4168         (nscd_run_worder): Renamed from nscd_run.  Remove support for pruning
4169         here.
4170         (fd_ready): Update nscd_run reference.
4171         (start_threads): No need to initialize readylist_cond.
4172         Start pruning threads separately.
4173         * nscd/nscd_setup_thread.c: Change return value type to int and always
4174         return 0.
4175         * sysdeps/unix/sysv/linux/nscd_setup_thread.c: Change return value type
4176         to int and return nonzero value if we can use the TID address hack.
4177         * nscd/cache.c (cache_add): If next wakeup time of cleanup thread for
4178         the database is later than the new entry's timeout, update the
4179         wakeup time and wake the cleanup thread.
4180         (prune_cache): Return seconds the next entry in the database is still
4181         valid.  Remove locking for pruning here.
4182         * nscd/nscd.conf: Document default number of threads.
4184 2007-10-31  Ulrich Drepper  <drepper@redhat.com>
4186         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Make sure
4187         stack is properly aligned for the target function.
4188         Correct unwind info.
4190         * elf/rtld.c (dl_main): Initialize stack and pointer guard early
4191         when using auditing libraries.
4193 2007-10-29  Ulrich Drepper  <drepper@redhat.com>
4195         * resolv/Versions [libresolv] (GLIBC_PRIVATE): Add
4196         _nss_dns_getnetbyaddr2_r.
4197         * resolv/nss_dns/dns-host.c: Define _nss_dns_getnetbyaddr2_r.  Pass
4198         extra parameter to getanswer_r.
4199         (_nss_dns_getnetbyaddr_r): Now a wrapper around
4200         _nss_dns_getnetbyaddr2_r.
4202         * nscd/Makefile (nscd-modules): Replace gethstbynm2_r with
4203         gethstbynm3_r.
4204         * nscd/gethstbynm2_r.c: Remove.
4205         * nscd/gethstbynm3_r.c: New file.
4206         * nscd/aicache.c (addhstaiX): Use __gethostbyaddr2_r instead of
4207         __gethostbyaddr_r.
4208         * nscd/gethstbyad_r.c: Generate __gethostbyaddr2_r function.  Define
4209         __gethostbyaddr_r compatibility wrapper.
4210         * nscd/hstcache.c (cache_addhst): Add ttl parameter.  Use it when
4211         determining timeout of entry.
4212         (lookup): Take new parameter and pass it to __gethostbyname3_r and
4213         __gethostbyaddr2_r.
4214         (addhstbyX): Pass reference to variable for TTL to lookup and
4215         cache_addhst.
4216         * nss/Versions [glibc] (GLIBC_PRIVATE): Export __nss_passwd_lookup2,
4217         __nss_group_lookup2, __nss_hosts_lookup2, __nss_services_lookup2,
4218         and __nss_next2.  Remove __nss_services_lookup.
4219         * nss/XXX-lookup.c: Name function now *_lookup2.  Add new parameter.
4220         Add compat wrapper.
4221         * nss/getXXbyYY_r.c: Changes to call new *_lookup2 functions and
4222         __nss_next2.
4223         * nss/getXXent_r.c: Likewise.
4224         * nss/getnssent_r.c: Likewise.
4225         * nss/nsswitch.c (__nss_lookup): Add new parameter.  If first function
4226         does not exist in module, try the optional second name.
4227         (__nss_next2): New function.
4228         (__nss_next): Now wrapper around __nss_next2.
4229         * nss/nsswitch.h: Adjust __nss_lookup prototype.
4230         Declare __nss_next2.
4231         Adjust definition of db_lookup_function type.
4232         * nss/service-lookup.c: Define NO_COMPAT.
4233         * include/netdb.h: Declare __gethostbyaddr2_r and __gethostbyname3_r.
4234         * inet/ether_hton.c: Use __nss_next2 instead of __nss_next.
4235         * inet/ether_ntoh.c: Likewise.
4236         * sunrpc/netname.c: Likewise.
4237         * sunrpc/publickey.c: Likewise.
4238         * inet/getnetgrent.c: Likewise.  Adjust calls to __nss_lookup.
4239         * inet/gethstbyad_r.c (DB_LOOKUP_FCT): Change to __nss_hosts_lookup2.
4240         * inet/gethstbynm2_r.c (DB_LOOKUP_FCT): Likewise.
4241         * inet/gethstbynm_r.c (DB_LOOKUP_FCT): Likewise.
4242         * inet/gethstent_r.c (DB_LOOKUP_FCT): Likewise.
4244         * nscd/aicache.c (addhstaiX): Fix default TTL handling.
4246         * inet/getnetgrent_r.c (setup): Encrypt static pointer.
4248 2007-10-28  Ulrich Drepper  <drepper@redhat.com>
4250         [BZ #5204]
4251         * crypt/sha256c-test.c: Define TIMEOUT to 6 for ancient hardware.
4252         * crypt/sha512c-test.c: Likewise.
4254         [BZ #5225]
4255         * stdio-common/vfscanf.c (_IO_vfwscanf): Don't misuse wp pointer
4256         to keep track of end of %[ format string element.
4257         * stdio-common/Makefile (tests): Add bug20.
4258         * stdio-common/bug20.c: New file.
4260         [BZ #5222]
4261         * elf/dl-load.c (_dl_rtld_di_serinfo): Correct handling of short
4262         path elements in counting mode.
4264 2007-10-27  Andreas Jaeger  <aj@suse.de>
4266         [BZ #5040]
4267         * sysdeps/unix/sysv/linux/sys/epoll.h (EPOLLRDHUP): Add value.
4269         [BZ #3112]
4270         * sysdeps/ia64/backtrace.c (init): Free shared library if incorrect.
4271         (__cleanup): Free shared library when exiting.
4272         * sysdeps/i386/backtrace.c (init): Free shared library if incorrect.
4273         (__cleanup): Free shared library when exiting.
4275 2006-04-14  H.J. Lu  <hongjiu.lu@intel.com>
4277         [BZ #2549]
4278         * math/libm-test.inc (check_float_internal): Support
4279         denormalized return.
4281 2007-10-23  Andreas Jaeger  <aj@suse.de>
4283         [BZ #5208]
4284         * sysdeps/unix/sysv/linux/readahead.c (__readahead): Use
4285         __LONG_LONG_PAIR to handle little endian byte order.
4286         Suggested by abhishekrai@google.com
4288 2007-10-27  Ulrich Drepper  <drepper@redhat.com>
4290         * malloc/arena.c [!NO_THREADS]: Use ATFORK_MEM if defined.
4292 2007-10-26  Ulrich Drepper  <drepper@redhat.com>
4294         * nscd/cache.c (prune_cache): Move test for modified file outside
4295         of locking.
4297 2007-10-21  Andreas Jaeger  <aj@suse.de>
4299         * manual/texinfo.tex: Update to latest version.
4301         * manual/sysinfo.texi (System Parameters): Fix Formatting.
4303         * manual/arith.texi (Status bit operations): Fix formatting.
4305         * manual/errno.texi (Error Messages): Fix formatting.
4307         * manual/sysinfo.texi (System Parameters): Fix formatting.
4309         * manual/libc.texinfo: Update VERSION and UPDATED.
4311 2007-10-19  Roland McGrath  <roland@redhat.com>
4313         * elf/Makefile ($(objpfx)ld.so): Use $(AWK).
4315 2007-10-06  David S. Miller  <davem@davemloft.net>
4317         * configure.in: Add sparcv9v2 and sparc64v2.
4318         * scripts/config.sub: Likewise.
4319         * configure: Regenerate.
4320         * elf/elf.h (HWCAP_SPARC_N2): New.
4321         * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Bump to 8.
4322         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add 'v9v2'.
4323         (HWCAP_IMPORTANT): Add HWCAP_SPARC_N2.
4324         * sysdeps/sparc/sparc32/sparcv9/sparcv9v2/memcpy.S: New file.
4325         * sysdeps/sparc/sparc32/sparcv9/sparcv9v2/memset.S: New file.
4326         * sysdeps/sparc/sparc64/sparcv9v2/memcpy.S: New file.
4327         * sysdeps/sparc/sparc64/sparcv9v2/memset.S: New file.
4329 2007-10-18  Ulrich Drepper  <drepper@redhat.com>
4331         * sunrpc/clnt_udp.c (clntudp_call): Don't block in recvfrom call
4332         even if the poll result indicates there is data to read.
4333         Patch by Jeff Moyer <jmoyer@redhat.com>.
4335 2007-10-18  Roland McGrath  <roland@redhat.com>
4337         * elf/elf.h (NT_PPC_VMX): New macro.
4339 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
4341         * version.h (VERSION): Set to 2.7.90.
4343 2007-10-17  Jakub Jelinek  <jakub@redhat.com>
4345         * sysdeps/x86_64/memset.S (bzero): Renamed to __bzero.  Add
4346         weak_alias.
4348 2007-10-17  Roland McGrath  <roland@frob.com>
4350         * sysdeps/mach/hurd/bits/fcntl.h [__USE_GNU__] (F_DUPFD_CLOEXEC): New.
4351         * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Implement it.
4353 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
4355         * version.h (VERSION): Bump to 2.7.
4356         * include/features.h (__GLIBC_MINOR__): Bump to 7.
4358         [BZ #5186]
4359         * time/tzset.c (__tz_convert): Don't force testing for a change of
4360         TZ if not called from localtime.  But then also see whether the
4361         file changed, in case __use_tzfile is set.
4363         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define F_DUPFD_CLOEXEC.
4364         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
4365         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
4366         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
4367         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
4368         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
4369         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h:  Likewise.
4370         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
4372 2007-10-17  Jakub Jelinek  <jakub@redhat.com>
4374         * sysdeps/posix/getaddrinfo.c (getaddrinfo): When sorting addresses
4375         and admin selects to be able to replace the gai.conf file, lock
4376         data structures around the qsort call.
4378 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
4380         * sysdeps/x86_64/cacheinfo.c: Comment out code added in support of
4381         new memset.
4382         * sysdeps/x86_64/memset.S: Revert to old version for now.  The cost is
4383         too high for the improvements.  Implement bzero unconditionally for
4384         use in libc.
4386 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
4387             Jakub Jelinek  <jakub@redhat.com>
4389         * time/tzfile.c (__tzfile_read): Read POSIX TZ string if available
4390         even when time_t is 32-bit.
4391         (__tzfile_compute): Override POSIX TZ string STD/DST zone names if
4392         timezone data read by __tzfile_default.  Ensure __tzname[0] is
4393         always set after the search.
4395 2007-10-16  Ulrich Drepper  <drepper@redhat.com>
4397         * time/tzfile.c (__tzfile_read): Help the compiler recognize
4398         unreachable code on 32-bit machines.
4400 2007-10-16  Jakub Jelinek  <jakub@redhat.com>
4402         [BZ #5184]
4403         * time/strftime_l.c: Include stdbool.h.
4404         (my_strftime): New wrapper, old function renamed to...
4405         (__strftime_internal): ... new function.  Add tzset_called
4406         argument, pass it down to recursive calls, don't call tzset ()
4407         if already true, set to true after call to tzset ().
4409 2007-10-16  Ulrich Drepper  <drepper@redhat.com>
4411         * time/tzfile.c (__tzfile_read): Take extra memory requested by caller
4412         into account when copying TZ string.
4414 2007-10-16  Jakub Jelinek  <jakub@redhat.com>
4416         * time/tzfile.c (__tzfile_compute): For use_last case set i to
4417         num_transition rather than num_transitions - 1.
4419 2007-10-16  Jakub Jelinek  <jakub@redhat.com>
4421         * sysdeps/x86_64/memset.S (memset): Fix sse2_nt_move
4422         PIC indirect jump.
4424         * sysdeps/x86_64/memset.S: Jump from bzero to memset using
4425         a local label rather than HIDDEN_JUMPTARGET.
4427 2007-10-15  Ulrich Drepper  <drepper@redhat.com>
4429         * sysdeps/x86_64/cacheinfo.c (__x86_64_shared_cache_size): Define.
4430         (init_cacheinfo): Initialize it.
4431         * sysdeps/x86_64/memset.S: Use __x86_64_shared_cache_size.
4432         Always define bzero.
4433         Remove non-glibc code.
4434         * sysdeps/x86_64/bzero.S: Make an empty file.
4436 2007-10-15  H.J. Lu  <hongjiu.lu@intel.com>
4438         * sysdeps/x86_64/cacheinfo.c
4439         (__x86_64_preferred_memory_instruction): New.
4440         (init_cacheinfo): Initialize __x86_64_preferred_memory_instruction.
4442         * sysdeps/x86_64/memset.S: Rewrite.
4444 2007-10-15  Roland McGrath  <roland@redhat.com>
4446         * po/libc.pot: Regenerated.
4448 2007-10-15  Ulrich Drepper  <drepper@redhat.com>
4450         * nss/getXXbyYY_r.c (REENTRANT_NAME): Mangle startp and start_fct
4451         pointers.
4453         [BZ #3425]
4454         * resolv/nss_dns/dns-host.c (getanswer_r): Fail with
4455         NSS_STATUS_NOTFOUND if the server replied with only a CNAME and no
4456         address record to T_A/T_AAAA requests.
4458 2007-10-14  Ulrich Drepper  <drepper@redhat.com>
4460         * posix/glob.c: Reimplement link_exists_p to use fstatat64.
4462         * posix/glob.c: Add some branch prediction throughout.
4464         * nscd/nscd_getgr_r.c (nscd_getgr_r): Store result of successful
4465         read from nscd.
4467         * sysdeps/posix/getaddrinfo.c (struct sort_result): Add
4468         service_order.
4469         (rfc3484_sort): Make sure that even if qsort doesn't support
4470         stable sorting out sorting here is stable by comparing service_order.
4471         (getaddrinfo): Initialize service_order.
4472         * posix/tst-rfc3484.c (do_test): Adjust for addition of
4473         service_order field to sorting structure.
4474         * posix/tst-rfc3484-2.c (do_test): Likewise.
4476         * include/time.h: Declare __tzset_parse_tz and __tzset_compute.
4477         * time/tzset.c (tzset_internal): Break TZ string parsing out into
4478         __tzset_parse_tz and updating of daylight, timezone, tzname into
4479         update_vars.
4480         (__tz_compute): Renamed from tz_compute.  Take additional parameters.
4481         (__tz_convert): Updating of tm_isdst, tm_zone, and tm_gmtoff now
4482         happens in __tz_compute.
4483         * time/tzfile.c (__tzfile_read): Also read TZ string.
4484         (find_transition): Fold into __tzfile_compute.
4485         (__tzfile_compute): For times beyond the last transition try to
4486         use the TZ string.
4487         * timezone/tst-timezone.c: Information in daylight and tzname does
4488         change for Asia/Tokyo timezone with more concrete information.
4489         Remove the test.
4491         * include/stdio.h: Add libc_hidden_proto for ftello.
4492         * libio/ftello.c: Add libc_hidden_def.
4494         [BZ #1140]
4495         * time/tzfile.c (__tzfile_compute): Compute tzname[] values based
4496         on the specified time and not the last entries in the file.  Move
4497         code to determine tzname[] to...
4498         (find_transition): ...here.  Add ugly guess for times before the
4499         first transition.
4501 2007-10-13  Ulrich Drepper  <drepper@redhat.com>
4503         [BZ #3195]
4504         * nscd/nscd_getai.c (__nscd_getai): Set errno to 0 in case we found
4505         no entry.
4506         * nscd/nscd_getgr.c (nscd_getgr_r): Likewise.
4507         * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
4508         * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
4509         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
4511         * nscd/nscd_getgr_r.c (nscd_getgr_r): Optimize a bit: use simpler
4512         read mechanism when there are no group members and avoid no-op
4513         read syscall in this case.
4515         [BZ #3242]
4516         * nscd/nscd_helper.c (wait_on_socket): Take timeout as parameter.
4517         (__readall): If reading failed due to EAGAIN error wait a bit
4518         and possibly try again.
4519         (__readvall): Likewise.
4521 2007-10-13  Bruno Haible  <bruno@clisp.org>
4523         * intl/dcigettext.c (_nl_find_msg): Unlock the conversions_lock
4524         when we cannot recode the message.
4526 2007-10-13  Ulrich Drepper  <drepper@redhat.com>
4528         [BZ #4359]
4529         * libio/__freading.c (__freading): Don't return true for
4530         write-only streams.  For read/write streams, check whether we
4531         performed a read operation already.
4532         * libio/Makefile (tests): Add tst-ext2.
4533         * libio/tst-ext2.c: New file.
4535 2007-10-12  Ulrich Drepper  <drepper@redhat.com>
4537         * locale/programs/repertoire.c (repertoire_read): Always free
4538         memory for repertoire file name [Coverity CID 270].
4540         * elf/cache.c (save_aux_cache): Free memory allocated for
4541         temporary file name [Coverity CID 267].
4543 2007-10-12  Jakub Jelinek  <jakub@redhat.com>
4545         * misc/Makefile (headers): Add bits/error.h.
4547 2007-10-12  Ulrich Drepper  <drepper@redhat.com>
4549         * posix/fnmatch_loop.c: Take rule index returned as part of
4550         findidx return value into account when accessing weights.
4551         * posix/regcomp.c: Likewise.
4552         * posix/regexec.c: Likewise.
4554         * locale/programs/ld-collate.c (collate_read): Optimize a bit.
4555         (skip_to): Fix problems with parameter of elifdef/elifndef.
4557 2007-10-11  Ulrich Drepper  <drepper@redhat.com>
4559         * iconv/gconv_simple.c: Add some branch prediction.
4561 2007-10-12  Jakub Jelinek  <jakub@redhat.com>
4563         * locale/programs/ld-collate.c (collate_read): If ignore_content
4564         and nowtok is tok_define, eat any tok_eol tokens.
4566 2007-10-11  Jakub Jelinek  <jakub@redhat.com>
4568         * sysdeps/gnu/netinet/tcp.h: Include sys/socket.h if __USE_MISC.
4569         (struct tcp_md5sig): Change tcpm_addr type to struct sockaddr_storage.
4571         * inet/netinet/in.h: Don't include bits/socket.h.
4572         * sysdeps/unix/sysv/linux/bits/socket.h: Only check _SYS_SOCKET_H
4573         macro.
4574         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
4576 2007-10-10  Ulrich Drepper  <drepper@redhat.com>
4578         * locale/programs/locfile-token.h: Remove tok_elif, add tok_elifdef
4579         and tok_elifndef.
4580         * locale/programs/locfile-kw.gperf: Likewise.
4581         * locale/programs/ld-collate.c: Implement primitive preprocessor.
4583 2007-10-10  Jakub Jelinek  <jakub@redhat.com>
4585         * stdio-common/printf-parse.h: Include string.h and wchar.h.
4586         (__find_specwc): Change into __extern_always_inline function.
4587         (__find_specmb): Likewise.  Remove ps argument.  Use __strchrnul.
4588         (__parse_one_specmb): Remove ps argument.
4589         * stdio-common/vfprintf.c (vfprintf): Remove mbstate variable.
4590         Adjust __find_specmb and __parse_one_specmb callers.
4591         * stdio-common/printf-prs.c (parse_printf_format): Likewise.
4592         * stdio-common/printf-parsemb.c (__find_specwc, __find_specmb):
4593         Removed.
4594         (__parse_one_specmb): Remove ps argument, adjust __find_specmb
4595         caller.
4597 2007-10-09  Ulrich Drepper  <drepper@redhat.com>
4599         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Work around problem
4600         with some Pentium Ds.
4602 2007-10-08  Ulrich Drepper  <drepper@redhat.com>
4604         * sysdeps/unix/sysv/linux/eventfd_read.c (eventfd_read): Use
4605         __read not read.
4606         * sysdeps/unix/sysv/linux/eventfd_write.c (eventfd_write): Use
4607         __write not write.
4609 2007-10-07  Ulrich Drepper  <drepper@redhat.com>
4611         [BZ #181]
4612         * locale/C-time.c: Set week_1stday data to 19971201.
4613         * locale/programs/ld-time.c (time_finish): Default for
4614         first_workday is Monday.
4616         [BZ #2633]
4617         * wcsmbs/wchar.h: Move many C99 functions into std namespace.
4619         [BZ #5103]
4620         * posix/glob.c (glob): Recognize patterns starting \/.
4621         * posix/tst-gnuglob.c (find_file): Handle absolute path names.
4622         (main): Add test for pattern starting \/.
4624         * misc/error.h: Use __const instead of const.
4625         * misc/bits/error.h: Likewise.
4627 2007-10-07  Andreas Jaeger  <aj@suse.de>
4629         * include/bits/error.h: New file.
4631         * misc/bits/error.h (error_at_line): Fix prototype.
4633 2007-10-06  Ulrich Drepper  <drepper@redhat.com>
4635         [BZ #3924]
4636         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Fix a few
4637         more little bugs in creating the stack frame when pltexit has to
4638         be called.
4640         * nscd/nscd_helper.c (__nscd_cache_search): Prevent endless loops.
4641         * nscd/connections.c (verify_persistent_db): Recognize circular lists.
4643         [BZ #4407]
4644         * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Fix *signgamp for -0.0.
4645         * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
4646         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
4647         * math/libm-test.inc: Add test for this case.
4649         [BZ #5010]
4650         * sunrpc/svc.c (struct svc_callout): Add sc_mapped element.
4651         (svc_register): Initialize sc_mapped.  Set to TRUE if call to
4652         map service succeeded.
4653         (svc_is_mapped): New function.
4654         (svc_unregister): Use it before trying to unmap service.
4656 2007-10-05  Ulrich Drepper  <drepper@redhat.com>
4658         * timezone/zic.c: Update from tzcode2007h.
4660         [BZ #5063]
4661         * timezone/africa: Update from tzdata2007h.
4662         * timezone/antarctica: Likewise.
4663         * timezone/asia: Likewise.
4664         * timezone/australasia: Likewise.
4665         * timezone/europe: Likewise.
4666         * timezone/leapseconds: Likewise.
4667         * timezone/northamerica: Likewise.
4668         * timezone/southamerica: Likewise.
4669         * timzeone/zone.tab: Likewise.
4671         [BZ #5104]
4672         * elf/do-lookup.h (do_lookup_x): Don't ignore STT_COMMON symbols.
4674         [BZ #5113]
4675         * string/bits/string2.h (__strdup): Cast parameters to calloc to
4676         avoid warning with -Wconversion.
4677         (__strndup): Likewise.
4678         Half the patch by Christian Iseli <christian.iseli@licr.org>.
4680         [BZ #5112]
4681         * nscd/connections.c (restart): Don't resync if database is
4682         disabled.  Patch mostly by Brian De Wolf <bldewolf@csupomona.edu>.
4684         * sysdeps/gnu/netinet/tcp.h: Define TCP_MD5SIG, TCP_MD5SIG_MAXKEYLEN,
4685         struct tcp_md5sig.  Extend struct tcp_info according to recent kernels.
4687         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add eventfd,
4688         evetnfd_read, eventfd_write.
4689         * sysdeps/unix/sysv/linux/eventfd.c: New file.
4690         * sysdeps/unix/sysv/linux/eventfd_read.c: New file.
4691         * sysdeps/unix/sysv/linux/eventfd_write.c: New file.
4692         * sysdeps/unix/sysv/linux/sys/eventfd.h: New file.
4693         * sysdeps/unix/sysv/linux/Versions: Export eventfd, eventfd_read,
4694         eventfd_write for GLIBC_2.7.
4696         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add signalfd.
4697         * sysdeps/unix/sysv/linux/signalfd.c: New file.
4698         * sysdeps/unix/sysv/linux/sys/signalfd.h: New file.
4699         * sysdeps/unix/sysv/linux/Versions: Export signalfd for GLIBC_2.7.
4701 2007-10-04  Jakub Jelinek  <jakub@redhat.com>
4703         * stdlib/msort.c: Include stdint.h.
4704         (struct msort_param): New type.
4705         (msort_with_tmp): Use struct msort_param pointer for unchanging
4706         parameters.  Add optimized handling for several common sizes
4707         and indirect sorting mode.
4708         (qsort): Adjust msort_with_tmp callers.  For big S use indirect
4709         sorting.
4710         Suggested by Belazougui Djamel .
4712         * stdlib/Makefile (tests): Add tst-qsort2.
4713         * stdlib/tst-qsort2.c: New test.
4715 2007-10-04  Ulrich Drepper  <drepper@redhat.com>
4717         * login/login_tty.c (login_tty): The Linux kernel can return EBUSY
4718         for dup2 in case another thread races with the current one.  Retry
4719         in this case.
4721         * misc/error.h: Remove support for use outside of libc.  We have to
4722         include <features.h> now.  Include <bits/error.h> if possible.
4723         * misc/bits/error.h: New file.
4725 2007-10-03  Jakub Jelinek  <jakub@redhat.com>
4727         * string/bits/string3.h (memcpy, memmove, mempcpy, memset, bcopy,
4728         bzero, strcpy, stpcpy, strncpy, strcat, strncat): Use
4729         __extern_always_inline functions unconditionally, drop macros.
4731         * misc/sys/cdefs.h (__REDIRECT_LDBL, __REDIRECT_NTH_LDBL): New macros.
4732         * wcsmbs/bits/wchar2.h (__swprintf_alias, __vswprintf_alias): Use
4733         __REDIRECT_NTH_LDBL macro rather than __REDIRECT_NTH.
4735         * misc/sys/cdefs.h (__extern_always_inline): For GCC 4.3+
4736         add __artificial__ attribute.
4738 2007-10-02  Ulrich Drepper  <drepper@redhat.com>
4740         * string/strcoll_l.c (STRCOLL): Correct handling of switching from
4741         backward to forward direction.
4743         * string/strcoll_l.c (STRCOLL): Correct test for alloca use.
4745         [BZ #645]
4746         * locale/programs/ld-collate.c (collate_finish): Compare against last
4747         used section which is known to have rules defined.
4748         (collate_read): After order_start, correctly record order of sections
4749         and queue sections up.
4751 2007-10-01  Ulrich Drepper  <drepper@redhat.com>
4753         [BZ #5071]
4754         * malloc/malloc.c (mremap_chunk): Avoid resizing of new block has
4755         the same number of pages.
4756         Patch by Tomash Brechko <tomash.brechko@gmail.com>.
4758         * locale/programs/ld-collate.c (collate_read): After initial copy
4759         statement, continue in state 0.
4761         * include/stdio_ext.h (__fsetlocking): Define as macro.
4763 2007-09-30  Ulrich Drepper  <drepper@redhat.com>
4765         * locale/programs/ld-collate.c (collate_finish): Compare all bytes
4766         of section order.
4768         * po/pt_BR.po: Fix typo.
4770 2007-09-29  Ulrich Drepper  <drepper@redhat.com>
4772         * iconvdata/Makefile (modules): Add ISO8859-9E.
4773         (distribute): Add iso8859-9e.c.
4774         (gen-8bit-gap-modules): Add iso8859-9e.
4775         * iconvdata/iso8859-9e.c: New file.
4776         * iconvdata/gconv-modules: Add entries for ISO-8859-9E.
4777         * iconvdata/TESTS: Likewise.
4778         * iconvdata/tst-tables.sh: Likewise.
4780         * iconvdata/koi8-r.c (HAS_HOLES): Define to 0.
4782         * locale/iso-639.def: Add several new entries.
4784 2007-09-24  Jakub Jelinek  <jakub@redhat.com>
4786         * sysdeps/generic/ldsodefs.h (struct dl_scope_free_list): Store
4787         void * pointers instead of struct link_map **.
4788         (_dl_scope_free): Change argument type to void *.
4789         * include/link.h (struct link_map): Change type of l_reldeps
4790         to struct link_map_reldeps, move l_reldepsact into that
4791         struct too.
4792         * elf/dl-deps.c: Include atomic.h.
4793         (_dl_map_object_deps): Only change l->l_initfini when it is
4794         fully populated, use _dl_scope_free for freeing it.  Optimize
4795         removal of libs from reldeps by using l_reserved flag, when
4796         some removal is needed, allocate a new list instead of
4797         reallocating and free the old with _dl_scope_free.  Adjust
4798         for l_reldeps and l_reldepsact changes.
4799         * elf/dl-lookup.c (add_dependency): Likewise.  Reorganize to allow
4800         searching in l_initfini and l_reldeps without holding dl_load_lock.
4801         * elf/dl-fini.c (_dl_sort_fini): Adjust for l_reldeps and
4802         l_reldepsact changes.
4803         * elf/dl-close.c (_dl_close_worker): Likewise.
4804         * elf/dl-open.c (_dl_scope_free): Change argument type to void *.
4806 2007-09-28  Ulrich Drepper  <drepper@redhat.com>
4808         * iconvdata/Makefile (modules): Add KOI8-RU.
4809         (distribute): Add koi8-ru.c.
4810         (gen-8bit-gap-modules): Add koi8-ru.
4811         * iconvdata/koi8-ru.c: New file.
4812         * iconvdata/gconv-modules: Add entries for KOI8-RU.
4813         * iconvdata/TESTS: Likewise.
4814         * iconvdata/tst-tables.sh: Likewise.
4816         * iconvdata/koi8-r.c (HAS_HOLES): Define to 0.
4818 2007-09-26  Jakub Jelinek  <jakub@redhat.com>
4820         * misc/sys/cdefs.h (__warndecl, __errordecl): For GCC 4.3+ define
4821         with __warning__/__error__ attributes.
4822         (__warnattr): Define.
4823         * stdlib/bits/stdlib.h (__realpath_chk_warn, __ptsname_r_chk_warn,
4824         __mbstowcs_chk_warn, __wcstombs_chk_warn): New aliases with
4825         __warnattr.
4826         (realpath, ptsname_r, mbstowcs, wcstombs): Call __*_chk_warn instead
4827         of __*_chk if compile time detectable overflow is found.
4828         * libio/bits/stdio2.h (__fgets_chk_warn, __fread_chk_warn,
4829         __fgets_unlocked_chk_warn, __fread_unlocked_chk_warn): New aliases
4830         with __warnattr.
4831         (fgets, fread, fgets_unlocked, fread_unlocked): Call __*_chk_warn
4832         instead of __*_chk if compile time detectable overflow is found.
4833         (__gets_alias): Rename to...
4834         (__gets_warn): ... this.  Add __warnattr.
4835         (gets): Call __gets_warn instead of __gets_alias.
4836         * socket/bits/socket2.h (__recv_chk_warn, __recvfrom_chk_warn): New
4837         aliases with __warnattr.
4838         (recv, recvfrom): Call __*_chk_warn instead of __*_chk if compile
4839         time detectable overflow is found.
4840         * posix/bits/unistd.h (__read_chk_warn, __pread_chk_warn,
4841         __pread64_chk_warn, __readlink_chk_warn, __readlinkat_chk_warn,
4842         __getcwd_chk_warn, __confstr_chk_warn, __getgroups_chk_warn,
4843         __ttyname_r_chk_warn, __getlogin_r_chk_warn, __gethostname_chk_warn,
4844         __getdomainname_chk_warn): New aliases with __warnattr.
4845         (read, pread, pread64, readlink, readlinkat, getcwd, confstr,
4846         getgroups, ttyname_r, getlogin_r, gethostname, getdomainname): Call
4847         __*_chk_warn instead of __*_chk if compile time detectable overflow
4848         is found.
4849         (__getgroups_chk): Rename argument to __listlen from listlen.
4850         (__getwd_alias): Rename to...
4851         (__getwd_warn): ... this.  Add __warnattr.
4852         (getwd): Call __getwd_warn instead of __getwd_alias.
4853         * wcsmbs/bits/wchar2.h (__wmemcpy_chk_warn, __wmemmove_chk_warn,
4854         __wmempcpy_chk_warn, __wmemset_chk_warn, __wcsncpy_chk_warn,
4855         __wcpncpy_chk_warn, __fgetws_chk_warn, __fgetws_unlocked_chk_warn,
4856         __mbsrtowcs_chk_warn, __wcsrtombs_chk_warn, __mbsnrtowcs_chk_warn,
4857         __wcsnrtombs_chk_warn): New aliases with __warnattr.
4858         (wmemcpy, wmemmove, wmempcpy, wmemset, mbsrtowcs, wcsrtombs,
4859         mbsnrtowcs, wcsnrtombs): Call __*_chk_warn instead of __*_chk if
4860         compile time detectable overflow is found.
4861         (wcsncpy, wcpncpy): Likewise.  For constant __n fix check whether
4862         to use __*_chk or not.
4863         (fgetws, fgetws_unlocked): Divide __bos by sizeof (wchar_t), both
4864         in comparisons which function should be called and in __*_chk*
4865         arguments.  Call __*_chk_warn instead of __*_chk if compile time
4866         detectable overflow is found.
4867         (swprintf, vswprintf): Divide __bos by sizeof (wchar_t) in
4868         __*_chk argument.
4869         * debug/tst-chk1.c (do_test): Add a few more tests.
4871 2007-09-24  Ulrich Drepper  <drepper@redhat.com>
4873         [BZ #5058]
4874         * intl/gettextP.h (struct loaded_domain): Add conversions_lock member.
4875         * intl/loadmsgcat.c (_nl_load_domain): Initialize conversions_lock.
4876         (_nl_unload_domain): Finalize conversions_lock.
4877         * intl/dcigettext.c (_nl_find_msg): Take conversions_lock before
4878         handling table of known conversions.
4880 2007-09-24  Jakub Jelinek  <jakub@redhat.com>
4882         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Use
4883         close_not_cancel_no_status instead of close.
4885 2007-09-13  Aurelien Jarno  <aurelien@aurel32.net>
4887         [BZ #5028]
4888         * posix/regcomp.c (lookup_collation_sequence_value): Check that
4889         nrules != 0 for multibyte chars.
4891 2007-09-23  Ulrich Drepper  <drepper@redhat.com>
4893         * resolv/ns_print.c (ns_sprintrrf): Handle ns_t_a6 and ns_t_opt.
4894         Provide better error message in case the type is unknown.
4896         [BZ #4963]
4897         * wcsmbs/wcsnlen.c: Don't reference before checking the length.
4898         * string/stratcliff.c: Make usable to test wide char functions.
4899         * wcsmbs/wcsatcliff.c: New file.
4900         * wcsmbs/Makefiel (tests): Add wcsatcliff.
4902         [BZ #4972]
4903         * iconvdata/Makefile (modules): Add MAC-CENTRALEUROPE.
4904         (distribute): Add mac-centraleurope.c.
4905         (gen-8bit-gap-modules): Add mac-centraleurope.
4906         * iconvdata/mac-centraleurope.c: New file.
4907         * iconvdata/gconv-modules: Add entries for MAC-CENTRALEUROPE.
4908         * iconvdata/TESTS: Likewise.
4909         * iconvdata/tst-tables.sh: Likewise.
4911         [BZ #5043]
4912         * iconv/iconv_open.c (iconv_open): For large codeset names use malloc.
4914 2007-09-21  Ulrich Drepper  <drepper@redhat.com>
4916         * sysdeps/x86_64/cacheinfo.c (__x86_64_data_cache_size_half): Renamed
4917         from __x86_64_core_cache_size_half.
4918         (init_cacheinfo): Compute shared cache size for AMD processors with
4919         shared L3 correctly.
4920         * sysdeps/x86_64/memcpy.S: Adjust for __x86_64_data_cache_size_half
4921         name change.
4922         Patch in large parts by Evandro Menezes.
4924 2007-09-19  Ulrich Drepper  <drepper@redhat.com>
4926         * elf/dl-lookup.c (add_dependency): Handle failing memory
4927         allocation for dependency list.  Remove unnecessary check.
4929         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Avoid unnecessary
4930         open/close when determining source addresses.
4932         * crypt/Makefile (libcrypt-routines): Add sha256-crypt, sha256,
4933         sha512-crypt, and sha512.
4934         (tests): Add sha256test, sha256c-test, sha512test, and sha512c-test.
4935         (distribute): Add sha256.h and sha512.h.
4936         * crypt/crypt-entry.c (crypt): Recognize the new $5$ and $6$ prefixes
4937         and call the appropriate code.
4938         * crypt/sha256-crypt.c: New file.
4939         * crypt/sha256.c: New file.
4940         * crypt/sha256.h: New file.
4941         * crypt/sha256c-test.c: New file.
4942         * crypt/sha256test.c: New file.
4943         * crypt/sha512-crypt.c: New file.
4944         * crypt/sha512.c: New file.
4945         * crypt/sha512.h: New file.
4946         * crypt/sha512c-test.c: New file.
4947         * crypt/sha512test.c: New file.
4949 2007-09-19  Jakub Jelinek  <jakub@redhat.com>
4951         * misc/bits/syslog.h (syslog): Remove extraneous argument from
4952         the inline, pass __USE_FORTIFY_LEVEL - 1 as second argument to
4953         __syslog_chk.
4955 2007-09-18  Jakub Jelinek  <jakub@redhat.com>
4957         * locale/programs/charmap-dir.c (charmap_aliases): Use %ms instead of
4958         %as in fscanf format strings.
4960         * sysdeps/sparc/sparc32/elf/start.S: Remove cfi_* markup.
4961         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
4962         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__thread_start):
4963         Likewise.
4964         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__thread_start):
4965         Likewise.
4967         * sysdeps/generic/ldsodefs.h (DL_LOOKUP_GSCOPE_LOCK): New definition.
4968         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Or in
4969         DL_LOOKUP_GSCOPE_LOCK into flags after THREAD_GSCOPE_SET_FLAG ().
4970         * elf/dl-sym.c (do_sym): Likewise.
4971         * include/link.h (struct link_map): Add l_serial field.
4972         * elf/dl-object.c (_dl_new_object): Initialize l_serial.
4973         * elf/dl-lookup.c (add_dependency): Add flags argument.
4974         Remember map->l_serial, if DL_LOOKUP_GSCOPE_LOCK is among
4975         flags, use THREAD_GSCOPE_RESET_FLAG before and
4976         THREAD_GSCOPE_SET_FLAG after
4977         __rtld_lock_lock_recursive (GL(dl_load_lock)) to avoid deadlock.
4978         Don't dereference map until it has been found on some list.
4979         If map->l_serial changed, return -1.
4981 2007-09-17  Jakub Jelinek  <jakub@redhat.com>
4983         * include/stdio.h (__isoc99_fscanf, __isoc99_scanf,
4984         __isoc99_sscanf, __isoc99_vscanf): New prototypes.
4985         (__isoc99_vsscanf, __isoc99_vfscanf): New prototypes, add
4986         libc_hidden_proto.
4987         * include/wchar.h (__isoc99_fwscanf, __isoc99_wscanf,
4988         __isoc99_swscanf, __isoc99_vwscanf): New prototypes.
4989         (__isoc99_vswscanf, __isoc99_vfwscanf): New prototypes,
4990         add libc_hidden_proto.
4991         * libio/stdio.h (fscanf, scanf, sscanf, vfscanf, vscanf,
4992         vsscanf): Redirect to __isoc99_* if strict ISO C99 or POSIX
4993         conformance requested.
4994         * wcsmbs/wchar.h (fwscanf, wscanf, swscanf, vfwscanf, vwscanf,
4995         vswscanf): Redirect to __isoc99_* if strict ISO C99 or POSIX
4996         conformance requested.
4997         * libio/bits/stdio-ldbl.h (fscanf, scanf, sscanf, vfscanf, vscanf,
4998         vsscanf): Redirect to __nldbl___isoc99_* if strict ISO C99 or POSIX
4999         conformance requested.
5000         * wcsmbs/bits/wchar-ldbl.h (fwscanf, wscanf, swscanf, vfwscanf,
5001         vwscanf, vswscanf): Redirect to __nldbl___isoc99_* if strict
5002         ISO C99 or POSIX conformance requested.
5003         * stdio-common/Versions (libc): Export __isoc99_scanf@@GLIBC_2.7,
5004         __isoc99_vscanf@@GLIBC_2.7, __isoc99_fscanf@@GLIBC_2.7,
5005         __isoc99_vfscanf@@GLIBC_2.7, __isoc99_sscanf@@GLIBC_2.7
5006         and __isoc99_vsscanf@@GLIBC_2.7.
5007         * stdio-common/Makefile (routines): Add isoc99_scanf, isoc99_vscanf,
5008         isoc99_fscanf, isoc99_vfscanf, isoc99_sscanf and isoc99_vsscanf.
5009         (tests): Add scanf14.
5010         (CFLAGS-vfprintf.c, CFLAGS-fprintf.c, CFLAGS-printf.c,
5011         CFLAGS-vfwprintf.c, CFLAGS-vfscanf.c, CFLAGS-vfwscanf.c,
5012         CFLAGS-fscanf.c, CFLAGS-scanf.c, CFLAGS-isoc99_vfscanf.c,
5013         CFLAGS-isoc99_vscanf.c, CFLAGS-isoc99_fscanf.c,
5014         CFLAGS-isoc99_scanf.c): Add $(exceptions).
5015         (CFLAGS-scanf15.c): Add various -I paths to prevent the compiler
5016         from using internal headers.
5017         * wcsmbs/Versions (libc): Export __isoc99_wscanf@@GLIBC_2.7,
5018         __isoc99_vwscanf@@GLIBC_2.7, __isoc99_fwscanf@@GLIBC_2.7,
5019         __isoc99_vfwscanf@@GLIBC_2.7, __isoc99_swscanf@@GLIBC_2.7
5020         and __isoc99_vswscanf@@GLIBC_2.7.
5021         * wcsmbs/Makefile (routines): Add isoc99_wscanf, isoc99_vwscanf,
5022         isoc99_fwscanf, isoc99_vfwscanf, isoc99_swscanf and isoc99_vswscanf.
5023         (CFLAGS-isoc99_wscanf.c, CFLAGS-isoc99_fwscanf.c,
5024         CFLAGS-isoc99_vwscanf.c, CFLAGS-isoc99_vfwscanf.c): Add $(exceptions).
5025         (CPPFLAGS): Add -D_IO_MTSAFE_IO if needed.
5026         * stdio-common/isoc99_scanf.c: New file.
5027         * stdio-common/isoc99_vsscanf.c: New file.
5028         * stdio-common/isoc99_vscanf.c: New file.
5029         * stdio-common/isoc99_vfscanf.c: New file.
5030         * stdio-common/isoc99_fscanf.c: New file.
5031         * stdio-common/isoc99_sscanf.c: New file.
5032         * wcsmbs/isoc99_fwscanf.c: New file.
5033         * wcsmbs/isoc99_vswscanf.c: New file.
5034         * wcsmbs/isoc99_swscanf.c: New file.
5035         * wcsmbs/isoc99_wscanf.c: New file.
5036         * wcsmbs/isoc99_vwscanf.c: New file.
5037         * wcsmbs/isoc99_vfwscanf.c: New file.
5038         * libio/libio.h (_IO_FLAGS2_SCANF_STD): Define.
5039         * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): Also
5040         clear _IO_FLAGS2_SCANF_STD bit from _flags2.
5041         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Don't
5042         handle %as, %aS and %a[ if _IO_FLAGS2_SCANF_STD is set in _flags2.
5043         * stdio-common/scanf14.c: New test.
5044         * stdio-common/scanf15.c: New test.
5045         * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add
5046         isoc99_scanf, isoc99_fscanf, isoc99_sscanf,
5047         isoc99_vscanf, isoc99_vfscanf, isoc99_vsscanf,
5048         isoc99_wscanf, isoc99_fwscanf, isoc99_swscanf,
5049         isoc99_vwscanf, isoc99_vfwscanf and isoc99_vswscanf.
5050         * sysdeps/ieee754/ldbl-opt/Versions (libc): Export
5051         __nldbl___isoc99_scanf@@GLIBC_2.7,
5052         __nldbl___isoc99_fscanf@@GLIBC_2.7,
5053         __nldbl___isoc99_sscanf@@GLIBC_2.7,
5054         __nldbl___isoc99_vscanf@@GLIBC_2.7,
5055         __nldbl___isoc99_vfscanf@@GLIBC_2.7,
5056         __nldbl___isoc99_vsscanf@@GLIBC_2.7,
5057         __nldbl___isoc99_wscanf@@GLIBC_2.7,
5058         __nldbl___isoc99_fwscanf@@GLIBC_2.7,
5059         __nldbl___isoc99_swscanf@@GLIBC_2.7,
5060         __nldbl___isoc99_vwscanf@@GLIBC_2.7,
5061         __nldbl___isoc99_vfwscanf@@GLIBC_2.7
5062         and __nldbl___isoc99_vswscanf@@GLIBC_2.7.
5063         * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__isoc99_scanf,
5064         __isoc99_fscanf, __isoc99_sscanf, __isoc99_vscanf,
5065         __isoc99_vfscanf, __isoc99_vsscanf, __isoc99_wscanf,
5066         __isoc99_fwscanf, __isoc99_swscanf, __isoc99_vwscanf,
5067         __isoc99_vfwscanf, __isoc99_vswscanf): Add NLDBL_DECL.
5068         * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
5069         (__nldbl___isoc99_scanf, __nldbl___isoc99_fscanf,
5070         __nldbl___isoc99_sscanf, __nldbl___isoc99_vscanf,
5071         __nldbl___isoc99_vfscanf, __nldbl___isoc99_vsscanf,
5072         __nldbl___isoc99_wscanf, __nldbl___isoc99_fwscanf,
5073         __nldbl___isoc99_swscanf, __nldbl___isoc99_vwscanf,
5074         __nldbl___isoc99_vfwscanf, __nldbl___isoc99_vswscanf): New
5075         functions.
5076         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vfscanf.c: New file.
5077         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_swscanf.c: New file.
5078         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vwscanf.c: New file.
5079         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_wscanf.c: New file.
5080         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_scanf.c: New file.
5081         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_sscanf.c: New file.
5082         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vsscanf.c: New file.
5083         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_fwscanf.c: New file.
5084         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vfwscanf.c: New file.
5085         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vswscanf.c: New file.
5086         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vscanf.c: New file.
5087         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_fscanf.c: New file.
5089         * stdio-common/Makefile (tests): Add scanf13.
5090         (scanf13-ENV): New.
5091         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Handle
5092         m modifier followed by l.
5093         (STRING_ARG): Add width argument.
5094         (_IO_vfscanf_internal) <case L_('c')>: Handle %mc.
5095         <case L_('C')>: Handle %mlc and %mC.
5096         <case L_('s'), case L_('S'), case L_('[')>: Adjust STRING_ARG
5097         arguments.
5098         * stdio-common/scanf13.c: New test.
5100         * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): Clear
5101         the _IO_FLAGS2_FORTIFY bit from _flags2 rather than _flags.
5103 2007-09-18  Ulrich Drepper  <drepper@redhat.com>
5105         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Correct return value
5106         type and __THROW marker of splice, vmsplice, and tee.
5107         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
5108         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
5109         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
5110         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
5111         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
5112         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
5113         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
5114         * sysdeps/unix/sysv/linux/syscalls.list: Mark splice, vmsplice, and tee
5115         as cancellation points.
5117 2003-11-01  Daniel Jacobowitz  <dan@debian.org>
5119         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion): Don't
5120         parse more than three parts of the version number.
5122 2007-09-15  Ulrich Drepper  <drepper@redhat.com>
5124         * stdio-common/vfscanf.c (_IO_vfwscanf): Add support for 'm'
5125         modifier.  Patch by Jakub Jelinek.
5127 2007-08-26  Jakub Jelinek  <jakub@redhat.com>
5129         * sysdeps/unix/sysv/linux/i386/Makefile (sysdep_routines): Add
5130         call_fallocate in misc subdir.
5131         * sysdeps/unix/sysv/linux/i386/call_fallocate.S: New file.
5132         * sysdeps/unix/sysv/linux/i386/syscalls.list (fallocate64): Remove.
5133         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c: Use __call_fallocate
5134         instead of __fallocate64.
5135         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c: Likewise.
5137 2007-09-15  Jakub Jelinek  <jakub@redhat.com>
5139         * rt/Versions (librt): Export __mq_open_2@@GLIBC_2.7.
5140         * rt/Makefile (headers): Add bits/mqueue2.h.
5141         * rt/mqueue.h: Include bits/mqueue2.h if -D_FORTIFY_SOURCE=2,
5142         optimizing with GCC and __va_arg_pack_len is defined.
5143         * rt/bits/mqueue2.h: New file.
5144         * rt/mq_open.c (__mq_open): Renamed from mq_open.
5145         (mq_open): New strong_alias.
5146         (__mq_open_2): New function.
5147         * sysdeps/unix/sysv/linux/mq_open.c (__mq_open): Renamed from mq_open.
5148         (mq_open): New strong_alias.
5149         (__mq_open_2): New function.
5150         * debug/Versions (libc): Export __fortify_fail@@GLIBC_PRIVATE.
5151         * Versions.def (librt): Add GLIBC_2.7 version.
5152         * debug/fortify_fail.c (__fortify_fail): Add libc_hidden_def.
5153         * include/stdio.h (__fortify_fail): Add libc_hidden_proto.
5155         * misc/sys/cdefs.h (__errordecl, __va_arg_pack_len): Define.
5156         * io/fcntl.h: Include bits/fcntl2.h when __va_arg_pack_len
5157         is defined rather than when not C++.
5158         * io/bits/fcntl2.h (__open_alias, __open64_alias, __openat_alias,
5159         __openat64_alias): New redirects.
5160         (__open_too_many_args, __open_missing_mode, __open64_too_many_args,
5161         __open64_missing_mode, __openat_too_many_args, __openat_missing_mode,
5162         __openat64_too_many_args, __openat64_missing_mode): New __errordecls.
5163         (open, open64, openat, openat64): Rewrite as __extern_always_inline
5164         functions instead of function-like macros.
5166 2007-09-14  H.J. Lu  <hongjiu.lu@intel.com>
5168         * sysdeps/i386/i586/memcpy.S (__memcpy_chk): New definition.
5169         * sysdeps/i386/i586/mempcpy.S (__memcpy_chk): New definition.
5170         * sysdeps/i386/i586/memset.S (__memset_chk): New definition.
5172 2007-09-15  Mike Frysinger  <vapier@gentoo.org>
5174         * inet/inet_net.c: Reset digit to 0 for inputs starting with "0x".
5175         * inet/tst-network.c (tests): Add edge case tests for "0", "0x", "0x0".
5177 2007-09-14  Mike Frysinger  <vapier@gentoo.org>
5179         * inet/tst-network.c: Increment ERRORS for failing tests.
5181 2007-09-07  Jakub Jelinek  <jakub@redhat.com>
5183         * misc/sys/cdefs.h (__va_arg_pack): Define for GCC 4.3+.
5184         * misc/bits/syslog.h (syslog): When __va_arg_pack is defined,
5185         implement as __extern_always_inline function.
5186         (vsyslog): Define as __extern_always_inline function unconditionally.
5187         * libio/bits/stdio2.h (sprintf, snprintf, printf, fprintf):
5188         When __va_arg_pack is defined, implement as __extern_always_inline
5189         functions.
5190         (vsprintf, vsnprintf, vprintf, vfprintf): Define as
5191         __extern_always_inline functions unconditionally.
5192         * libio/bits/stdio.h (vprintf): Ifdef out the inline when
5193         bits/stdio2.h will be included.
5194         * wcsmbs/bits/wchar2.h (__swprintf_alias): New redirect.
5195         (swprintf, wprintf, fwprintf): When __va_arg_pack is defined,
5196         implement as __extern_always_inline functions.
5197         (vswprintf, vwprintf, vfwprintf): Define as
5198         __extern_always_inline functions unconditionally.
5199         * debug/tst-chk1.c (do_test): Enable remaining tests for C++.
5201 2007-09-03  Jakub Jelinek  <jakub@redhat.com>
5203         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline): Only
5204         define in C++ for GCC 4.3+, in C++ always use __gnu_inline__
5205         attribute.
5206         * include/features.h (__USE_EXTERN_INLINES): Define only when
5207         __extern_inline is defined.
5208         * stdlib/stdlib.h: Include bits/stdlib.h when __extern_always_inline
5209         is defined instead of when not __cplusplus.
5210         * misc/sys/syslog.h: Include bits/syslog.h when __extern_always_inline
5211         is defined instead of when not __cplusplus.
5212         * socket/sys/socket.h: Include bits/socket2.h when
5213         __extern_always_inline is defined instead of when not __cplusplus.
5214         * libio/stdio.h: Include bits/stdio2.h when __extern_always_inline
5215         is defined instead of when not __cplusplus.
5216         * posix/unistd.h: Include bits/unistd.h when __extern_always_inline
5217         is defined instead of when not __cplusplus.
5218         * string/string.h: Include bits/string3.h when __extern_always_inline
5219         is defined instead of when not __cplusplus.
5220         * wcsmbs/wchar.h: Include bits/wchar2.h when __extern_always_inline
5221         is defined instead of when not __cplusplus.
5222         (btowc, wctob): Don't guard the inlines with ifndef __cplusplus.
5223         * io/fcntl.h: Don't include bits/fcntl2.h if __extern_always_inline
5224         is not defined.
5225         * misc/bits/syslog-ldbl.h: Guard *_chk stuff with
5226         defined __extern_always_inline instead of !defined __cplusplus.
5227         * libio/bits/stdio-ldbl.h: Likewise.
5228         * wcsmbs/bits/wchar-ldbl.h: Likewise.
5229         * misc/bits/syslog.h (syslog): Don't define for C++.
5230         (vsyslog): Use __extern_always_inline function for C++ instead of
5231         a macro.
5232         * libio/bits/stdio.h (__STDIO_INLINE): Define to __extern_inline
5233         whenever that macro is defined.
5234         (vprintf): Don't provide the inline for C++.
5235         (fread_unlocked, fwrite_unlocked): Don't define the macros for C++.
5236         * libio/bits/stdio2.h (sprintf, snprintf, printf, fprintf): Don't
5237         define the macros for C++.
5238         (vsprintf, vsnprintf, vprintf, vfprintf): Define as
5239         __extern_always_inline functions for C++.
5240         * io/sys/stat.h (stat, lstat, fstat, fstatat, mknod, mknodat,
5241         stat64, lstat64, fstat64, fstatat64): Don't define if not
5242         __USE_EXTERN_INLINES.
5243         * wcsmbs/bits/wchar2.h: Fix #error message.
5244         (swprintf, wprintf, fwprintf): Don't define the macros for C++.
5245         (vswprintf, vwprintf, vfwprintf): Define using
5246         __extern_always_inline functions for C++.
5247         * string/bits/string3.h: Don't #undef macros if __cplusplus.
5248         (memcpy, memmove, mempcpy, memset, bcopy, bzero, strcpy, stpcpy,
5249         strncpy, strcat, strncat): Define as __extern_always_inline
5250         functions instead of macros for C++.
5251         * math/bits/cmathcalls.h: Guard __extern_inline routines with
5252         defined __extern_inline.
5253         * sysdeps/alpha/fpu/bits/mathinline.h (__MATH_INLINE): Define
5254         to __extern_inline whenever that macro is defined.
5255         * sysdeps/ia64/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5256         * sysdeps/i386/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5257         * sysdeps/i386/i486/bits/string.h (__STRING_INLINE): Likewise.
5258         * sysdeps/s390/bits/string.h (__STRING_INLINE): Likewise.
5259         * sysdeps/s390/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5260         * sysdeps/powerpc/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5261         * sysdeps/x86_64/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5262         * sysdeps/sparc/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5263         * sysdeps/unix/sysv/linux/sys/sysmacros.h (gnu_dev_major,
5264         gnu_dev_minor, gnu_dev_makedev): Remove __extern_inline from
5265         prototypes.  Only provide __extern_inline routines if
5266         __USE_EXTERN_INLINES.
5267         * debug/Makefile: Add rules to build and run tst-{,lfs}chk{4,5,6}
5268         tests.
5269         * debug/tst-chk1.c (do_prepare, do_test): Allow compilation as C++.
5270         For now avoid some *printf tests in C++.  Skip all testing
5271         if __USE_FORTIFY_LEVEL is defined, but __extern_always_inline macro
5272         is not.
5273         * debug/tst-chk4.cc: New file.
5274         * debug/tst-chk5.cc: New file.
5275         * debug/tst-chk6.cc: New file.
5276         * debug/tst-lfschk4.cc: New file.
5277         * debug/tst-lfschk5.cc: New file.
5278         * debug/tst-lfschk6.cc: New file.
5279         * include/wchar.h (__vfwprintf_chk, __vswprintf_chk): Avoid
5280         prototypes in C++.
5281         * include/stdio.h (__sprintf_chk, __snprintf_chk, __vsprintf_chk,
5282         __vsnprintf_chk, __printf_chk, __fprintf_chk, __vprintf_chk,
5283         __vfprintf_chk, __fgets_unlocked_chk, __fgets_chk): Likewise.
5285 2007-09-13  Ulrich Drepper  <drepper@redhat.com>
5287         * po/cs.po: Update from translation team.
5289 2007-09-11  Roland McGrath  <roland@redhat.com>
5291         * posix/Makefile ($(objpfx)getconf.speclist): Make it empty if cross
5292         compiling.
5294 2007-09-07  Samuel Thibault  <samuel.thibault@ens-lyon.org>
5296         * sysdeps/mach/hurd/bits/ioctls.h (TAB3): New macro.
5298 2007-09-05  Roland McGrath  <roland@redhat.com>
5300         * manual/signal.texi (Signaling Another Process): Typo fix.
5301         From Karl Berry <karl@freefriends.org>.
5303 2007-08-29  Ulrich Drepper  <drepper@redhat.com>
5305         * sysdeps/unix/sysv/linux/check_pf.c (IFA_F_OPTIMISTIC): Define to
5306         zero if not defined.
5307         (make_request): Recognize optimistic addresses and treat them like
5308         deprecated addresses.
5309         Reported by Neil Horman <nhorman@redhat.com>.
5311 2007-08-28  Ulrich Drepper  <drepper@redhat.com>
5313         * nscd/connections.c (send_ro_fd): Also transfer file size.
5314         * nscd/nscd_helper.c (get_mapping): If nscd also transfers the
5315         file size don't call fstat.
5317         * nscd/nscd_helper.c (get_mapping): Avoid the pread call, just go
5318         ahead and map the file.  This should always be correct and we can
5319         catch problems later.
5321 2007-08-28  Jakub Jelinek  <jakub@redhat.com>
5323         * libio/bits/stdio2.h (__fread_chk, __fread_unlocked_chk): New
5324         prototypes.
5325         (__fread_alias, __fread_unlocked_alias): New aliases.
5326         (fread): New extern inline.
5327         (fread_unlocked): Likewise.  Undef macro before definition of
5328         the inline function.
5329         * debug/Makefile (routines): Add fread_chk and fread_u_chk.
5330         (CFLAGS-fread_chk.c, CFLAGS-fread_u_chk.c): Add.
5331         * debug/Versions (libc): Export __fread_chk@@GLIBC_2.7
5332         and __fread_unlocked_chk@@GLIBC_2.7.
5333         * debug/fread_chk.c: New file.
5334         * debug/fread_u_chk.c: New file.
5335         * debug/tst-chk1.c (do_test): Add fread and fread_unlocked tests.
5337 2007-08-27  Jakub Jelinek  <jakub@redhat.com>
5339         * sysdeps/unix/sysv/linux/syscalls.list
5340         (personality): Change caller to EXTRA.
5342 2007-08-25  Ulrich Drepper  <drepper@redhat.com>
5344         * iconvdata/iso-2022-kr.c (BODY): Fake initialization of array buf
5345         to keep gcc quiet.
5346         * iconvdata/iso-2022-cn.c (BODY): Likewise.
5348         * locale/programs/ld-collate.c (collate_output): Avoid warning if
5349         NDEBUG is defined.
5351         * Makerules: Use -p option with mkdir.
5353         * sunrpc/key_prot.c (xdr_unixcred): Work around gcc alias warning.
5354         * nis/nis_xdr.c (_xdr_nis_server): Likewise.
5355         (_xdr_directory_obj): Likewise.
5356         (xdr_entry_obj): Likewise.
5357         (xdr_group_obj): Likewise.
5358         (xdr_link_obj): Likewise.
5359         (xdr_table_obj): Likewise.
5360         (_xdr_nis_result): Likewise.
5361         (_xdr_ns_request): Likewise.
5362         (_xdr_ib_request): Likewise.
5363         (_xdr_nis_taglist): Likewise.
5364         (xdr_cback_data): Likewise.
5365         * nis/yp_xdr.c (xdr_ypmaplist): Likewise.
5366         (xdr_ypresp_maplist): Likewise.
5368         * stdio-common/Makefile: Avoid format string warning for tst-sprint.
5370         * posix/regex_internal.h: Prevent some declarations and definitions
5371         to be seen when used in tests.
5373         * posix/tst-rfc3484.c (__idna_to_unicode_lzlz): Initialize *OUTPUT.
5374         * posix/tst-rfc3484-2.c (__idna_to_unicode_lzlz): Likewise.
5376         * debug/Makefile: Disable format checking when compiling tst-chk?.c.
5378         * config.make.in (datarootdir): Add to shut up configure.
5380         * sysdeps/x86_64/cacheinfo.c (handle_amd): Fix computation of
5381         associativity for fully-associative caches.
5383         * sysdeps/x86_64/cacheinfo.c (handle_amd): Handle L3 cache
5384         requests.  Fill on more associativity values for L2.
5385         Patch mostly by Evandro Menezes.
5387 2007-08-24  Ulrich Drepper  <drepper@redhat.com>
5389         * sysdeps/unix/sysv/linux/x86_64/init-first.c
5390         (_libc_vdso_platform_setup): Avoid using exported variable by using
5391         alias.
5393         * resolv/arpa/nameser.h (NS_OPT_DNSSEC_OK): Define.
5395         * sysdeps/unix/sysv/linux/i386/syscalls.list: No reason to mark
5396         fallocate64 as EXTRA.  It is not referenced if the symbol isn't
5397         defined.
5399 2007-08-23  Ulrich Drepper  <drepper@redhat.com>
5401         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Correctly
5402         align stack for call if pltexit is to be used.
5404         [BZ #3924]
5405         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Correctly
5406         align for function call in case pltexit has to be called later.
5408         * sysdeps/i386/dl-trampoline.S (_dl_runtime_resolve): Avoid
5409         implicit atomic operation when storing function pointer.
5410         (_dl_runtime_profile): Likewise.
5412 2007-08-17  Jakub Jelinek  <jakub@redhat.com>
5414         * nis/nis_table.c (nis_list): Don't fail if __follow_path returned
5415         NIS_NOTFOUND.
5417 2007-08-21  Ulrich Drepper  <drepper@redhat.com>
5419         [BZ #4566]
5420         * string/strtok.c: Fix typo in comment.
5422         [BZ #4582]
5423         * debug/segfault.c: Fix typos in comments.
5425         [BZ #4588]
5426         * stdio-common/tempnam.c: Fix comment, it is not checked that
5427         TMPDIR points to a writable directory.
5429         [BZ #4726]
5430         * resolv/res_send.c (__libc_res_nsend): Initialize all of the
5431         memory allocated for the name server address.
5433         [BZ #4946]
5434         * nscd/connections.c (handle_request): Using sendfile always
5435         requires that mmap is used for the database.
5436         Patch by Petr Baudis <pasky@suse.cz>.
5438         [BZ #4905]
5439         * nscd/hstcache.c (cache_addhst): When reloading an entry which
5440         suddenly has two or more addresses, ignore it and remove the old
5441         entry.
5443         [BZ #4814]
5444         * resolv/res_hconf.c: Prepare for compiling outside libc.
5445         * nscd/res_hconf.c: New file.
5446         * nscd/Makefile (nscd-modules): Add res_hconf.  Add rules to build
5447         the new file.
5448         * nscd/gethstbynm2_r.c (NEED__RES_HCONF): Define.
5449         * nscd/gethstbyad_r.c (NEED__RES_HCONF): Likewise.
5451         * nscd/hstcache.c (cache_addhst): Minimal optimization.
5453         [BZ #4925]
5454         * debug/pcprofiledump.c: Turn on internationalization by calling
5455         setlocale.  Patch mostly by Benno Schulenberg.
5457         [BZ #4936]
5458         * iconv/gconv.c (__gconv): If flush was successful, clear rest of
5459         the state.
5460         * iconvdata/Makefile: Add rules to build and run bug-iconv5.
5461         * iconvdata/bug-iconv5.c: New file.
5463 2007-08-04  Carlos O'Donell  <carlos@systemhalted.org>
5465         [BZ #4896]
5466         * elf/elf.h: Define R_PARISC_PLABEL21L, R_PARISC_PLABEL14R,
5467         R_PARISC_GNU_VTENTRY, R_PARISC_GNU_VTINHERIT, R_PARISC_TLS_GD21L,
5468         R_PARISC_TLS_GD14R, R_PARISC_TLS_GDCALL, R_PARISC_TLS_LDM21L,
5469         R_PARISC_TLS_LDM14R, R_PARISC_TLS_LDMCALL, R_PARISC_TLS_LDO21L,
5470         R_PARISC_TLS_LDO14R, R_PARISC_TLS_DTPMOD32, R_PARISC_TLS_DTPMOD64,
5471         R_PARISC_TLS_DTPOFF32, R_PARISC_TLS_DTPOFF64, R_PARISC_TLS_LE21L,
5472         R_PARISC_TLS_LE14R, R_PARISC_TLS_IE21L, R_PARISC_TLS_IE14R,
5473         R_PARISC_TLS_TPREL32, R_PARISC_TLS_TPREL64.
5475 2007-08-21  Ulrich Drepper  <drepper@redhat.com>
5477         [BZ #4937]
5478         * elf/do-lookup.h (do_lookup_x): Minimal improvement in hash
5479         lookup loop.  Suggested by John Reiser.
5481 2007-08-21  Jakub Jelinek  <jakub@redhat.com>
5483         * sysdeps/unix/sysv/linux/alpha/sysdep.h: Include tls.h.
5485 2007-08-20  Ulrich Drepper  <drepper@redhat.com>
5487         * csu/libc-start.c: Don't handle VDSO_SETUP here.
5488         * sysdeps/unix/sysv/linux/init-first.c: Handle it here instead.
5489         * sysdeps/unix/sysv/linux/x86_64/libc-start.c: Renamed to...
5490         * sysdeps/unix/sysv/linux/x86_64/init-first.c: ...this.  New file.
5491         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Move VDSO_SETUP code
5492         to...
5493         * sysdeps/unix/sysv/linux/x86_64/init-first.c: ...here.  New file.
5495 2007-08-18  Ulrich Drepper  <drepper@redhat.com>
5497         * po/nl.po: Update from translation team.
5499 2007-08-16  Andreas Jaeger  <aj@suse.de>
5501         * locale/localeinfo.h: Make _nl_category_name_idxs extern.
5502         Reported by Peter Festner <peter.festner@ewetel.net>.
5504 2007-08-17  Jakub Jelinek  <jakub@redhat.com>
5506         * login/tst-grantpt.c (test_einval): Add 3rd argument to open.
5508 2007-08-16  Jakub Jelinek  <jakub@redhat.com>
5510         * elf/Makefile ($(objpfx)ld.so): Use readelf -s and awk instead of nm -u
5511         to check for undefined symbols.
5513         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone):
5514         If the syscall fails, set errno to the actual returned error number
5515         rather than EINVAL.
5516         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__clone): If
5517         arguments are incorrect, set errno to EINVAL, if the syscall
5518         fails, set errno to the actual returned error number.
5520         * stdlib/bits/stdlib-ldbl.h (__strtold_internal): Remove.
5521         * wcsmbs/bits/wchar-ldbl.h (__wcstold_internal): Remove.
5523         * sysdeps/sparc/sparc32/sparcv9b/memcpy.S: Moved to...
5524         * sysdeps/sparc/sparc32/sparcv9/sparcv9b/memcpy.S: ... here.  New
5525         file.
5526         (ASI_PNF, ASI_BLK_P): Don't define.
5527         * sysdeps/sparc/sparc32/sparcv9v/memcpy.S: Moved to...
5528         * sysdeps/sparc/sparc32/sparcv9/sparcv9v/memcpy.S: ... here.  New
5529         file.
5530         * sysdeps/sparc/sparc32/sparcv9v/memset.S: Moved to...
5531         * sysdeps/sparc/sparc32/sparcv9/sparcv9v/memset.S: ... here.  New
5532         file.
5534 2007-08-15  Jakub Jelinek  <jakub@redhat.com>
5536         * sysdeps/sparc/fpu/fraiseexcpt.c (__feraiseexcept): Fix raising
5537         FE_UNDERFLOW on Niagara CPUs.
5539         * sysdeps/sparc/fpu/feholdexcpt.c (feholdexcept): Clear all
5540         exceptions.
5542 2007-08-14  Jakub Jelinek  <jakub@redhat.com>
5544         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_runtime_setup): No
5545         need to check GLRO(dl_hwcap) & HWCAP_SPARC_FLUSH on sparcv9.
5546         (sparc_fixup_plt): Add do_flush argument instead of figuring whether
5547         flush should be used or not inside of the function.
5548         (elf_machine_fixup_plt, elf_machine_rela): Adjust caller.
5550         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone,
5551         __thread_start): Use HIDDEN_JUMPTARGET.
5552         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__clone,
5553         __thread_start): Likewise.
5554         * sysdeps/unix/sysv/linux/sparc/sysdep.h (JUMPTARGET): Define.
5556         * sysdeps/ieee754/ldbl-64-128/strtold_l.c (__STRTOF): Declare.
5557         Add libc_hidden_proto.
5558         (STRTOF): Add libc_hidden_proto.
5559         (___new_strtold_l, ___new_wcstold_l): New weak aliases.
5560         (strtold_l, wcstold_l): Use them as second argument for
5561         long_double_symbol.
5563 2007-08-14  Ulrich Drepper  <drepper@redhat.com>
5565         * elf/dl-misc.c: Undo last change.  The kernel won't allow it.
5567 2007-08-13  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
5569         * stdlib/strtold_l.c: Include wchar.h if needed.  Add libc_hidden_def.
5571 2007-08-14  Ulrich Drepper  <drepper@redhat.com>
5573         * po/bg.po: New file.  From the translation team.
5575 2007-08-13  Jakub Jelinek  <jakub@redhat.com>
5577         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PSELECT,
5578         __ASSUME_PPOLL, __ASSUME_ATFCTS, __ASSUME_SET_ROBUST_LIST,
5579         __ASSUME_UTIMENSAT, __ASSUME_FALLOCATE): Update per-arch conditions
5580         when each feature was introduced.
5582         * sysdeps/unix/sysv/linux/dl-vdso.c: Don't include dl-hash.h.
5583         * sysdeps/unix/sysv/linux/dl-vdso.h: Don't include dl-hash.h if NDEBUG.
5584         (CHECK_HASH): New macro.
5585         (PREPARE_VERSION): Use it.
5587         * sysdeps/unix/sysv/linux/pselect.c (__generic_pselect): Only provide
5588         prototype if not __ASSUME_PSELECT.
5589         * sysdeps/unix/sysv/linux/ppoll.c (__generic_ppoll): Only provide
5590         prototype if not __ASSUME_PPOLL.
5592         * sysdeps/unix/sysv/linux/dl-osinfo.h (ROUND): #undef after use.
5594         * sysdeps/unix/clock_settime.c (freq, __pthread_clock_settime,
5595         hp_timing_settime): Don't define or declare if HANDLED_CPUTIME
5596         is defined.
5598 2007-08-13  Ulrich Drepper  <drepper@redhat.com>
5600         * sysdeps/unix/sysv/linux/x86_64/libc-start.c
5601         (_libc_vdso_platform_setup): If vDSO is not available point
5602         __vdso_gettimeofday to the vsyscall.
5603         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S [SHARED]: Use
5604         __vdso_gettimeofday instead of vsyscall.
5606 2007-08-13  Jakub Jelinek  <jakub@redhat.com>
5608         * nscd/servicescache.c: Include kernel-features.h.
5609         * nscd/gai.c: Likewise.
5610         * sysdeps/unix/sysv/linux/statfs64.c: Likewise.
5611         * sysdeps/unix/sysv/linux/fstatfs64.c: Likewise.
5612         * sysdeps/unix/sysv/linux/fxstatat.c: Likewise.
5613         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S: Likewise.
5614         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: Likewise.
5615         * sysdeps/unix/sysv/linux/xstatconv.c: Likewise.
5616         * sysdeps/unix/sysv/linux/if_index.c: Likewise.
5617         * sysdeps/unix/sysv/linux/sparc/sparc64/xstat.c: Likewise.
5618         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
5620 2007-08-12  Ulrich Drepper  <drepper@redhat.com>
5622         * elf/dl-dst.h: No need for _dl_dst_count, _dl_dst_substitute,
5623         and _dl_get_origin defines anymore.
5625         * sysdeps/unix/sysv/linux/clock_gettime.c (maybe_syscall_gettime_cpu):
5626         Build fix for systems which might lack POSIX timer support.
5628         * sysdeps/unix/sysv/linux/x86_64/libc-start.c
5629         (_libc_vdso_platform_setup): Mangle function pointers before storing
5630         them.
5631         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INLINE_VSYSCALL):
5632         Demangle vdso pointer before use.
5633         (INTERNAL_VSYSCALL): Likewise.
5635         * elf/cache.c (primes): Mark as const.
5636         Noted by Roland McGrath.
5638 2007-08-01  Andreas Jaeger  <aj@suse.de>
5639             Jakub Jelinek  <jakub@redhat.com>
5641         * elf/ldconfig.c (opt_ignore_aux_cache): Add new option.
5642         (options): Add option.
5643         (parse_opt): Handle option.
5644         (manual_link): Adjust process_file caller.  Call implicit_soname.
5645         (search_dir): Formatting.  Use and populate auxiliary cache.
5646         (main): Load and save auxiliary cache.
5647         * elf/readlib.c (process_file): Add stat_buf argument.  Pass struct
5648         stat64 from fstat64 to caller.
5649         (implicit_soname): New function.
5650         * elf/readelflib.c (process_elf_file): If DT_SONAME is not present,
5651         leave *soname as NULL.
5652         * elf/cache.c: Include libgen.h.
5653         (print_entry, print_cache, compare, save_cache, add_to_cache):
5654         Formatting and cleanups.
5655         (aux_cache_entry_id, aux_cache_entry, aux_cache_file_entry,
5656         aux_cache_file): New structures.
5657         (AUX_CACHEMAGIC): Define.
5658         (primes): New array.
5659         (aux_hash_size, aux_hash): New variables.
5660         (aux_cache_entry_id_hash, nextprime, init_aux_cache,
5661         search_aux_cache, insert_to_aux_cache, add_to_aux_cache,
5662         load_aux_cache, save_aux_cache): New functions.
5663         * sysdeps/generic/ldconfig.h (_PATH_LDCONFIG_AUX_CACHE): Define.
5664         (init_aux_cache, search_aux_cache, add_to_aux_cache,
5665         load_aux_cache, save_aux_cache, implicit_soname): New prototypes.
5666         (process_file): Adjust prototype.
5668 2007-08-12  Jakub Jelinek  <jakub@redhat.com>
5670         * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h: Include stddef.h
5671         with __need_size_t.
5673 2007-08-12  Ulrich Drepper  <drepper@redhat.com>
5675         * sysdeps/unix/sysv/linux/dl-vdso.c (_dl_vdso_vsym): Expect
5676         r_found_version structure as second parameter.
5677         * sysdeps/unix/sysv/linux/dl-vdso.h (PREPARE_VERSION): Define.
5678         (_dl_vdso_vsym): Change type of second parameter accordingly.
5679         * sysdeps/unix/sysv/linux/x86-64/libc-start.c
5680         (_libc_vdso_platform_setup): Adjust.
5681         * sysdeps/unix/sysv/linux/powerpc/libc-start.c
5682         (_libc_vdso_platform_setup): Likewise.
5684         * sysdeps/unix/sysv/linux/powerpc/dl-vdso.c: Move to...
5685         * sysdeps/unix/sysv/linux/dl-vdso.c: ...here.
5686         * sysdeps/unix/sysv/linux/powerpc/dl-vdso.h: Move to...
5687         * sysdeps/unix/sysv/linux/dl-vdso.h: ...here.
5688         * csu/libc-start.c: Pretty printing.
5689         Use VDSO_SETUP if defined.
5690         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Define VDSO_SETUP
5691         and let generic code call into _libc_vdso_platform_setup.
5692         * sysdeps/unix/sysv/linux/x86_64/libc-start.c: New file.
5693         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: New file.
5694         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Pretty printing.
5695         Define INLINE_VSYSCALL and INTERNAL_VSYSCALL.
5696         * sysdeps/unix/sysv/linux/x86_64/Versions: Export __vdso_clock_gettime
5697         for GLIBC_PRIVATE.
5698         * sysdeps/unix/sysv/linux/x86_64/Makefile [subdir=elf]
5699         (sysdep_rountines): Add dl-vdso.
5701         * sysdeps/unix/sysv/linux/powerpc/Makefile: Use sysdep_routines instead
5702         of routines.
5704         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Add
5705         attribute_hidden to __vdso_gettimeofday prototype.
5707 2007-08-12  Roland McGrath  <roland@redhat.com>
5709         * manual/stdio.texi (Variable Arguments Output): Fix xref to gcc manual.
5710         From: Karl Berry <karl@freefriends.org>.
5712 2007-08-11  Ulrich Drepper  <drepper@redhat.com>
5714         * elf/dl-misc.c (_dl_sysdep_read_whole_file): We really don't need
5715         an atime update for the files we read.
5717 2007-08-10  Ulrich Drepper  <drepper@redhat.com>
5719         * shadow/lckpwdf.c (__lckpwdf): Use O_CLOEXEC if possible.
5721         * nscd/connections.c: Use O_CLOEXEC if possible.  Use mkostemp
5722         instead of mkstemp.
5724         * misc/Makefile (routines): Add mkostemp and mkostemp64.
5725         * misc/Versions: Export mkostemp and mkostemp64 for GLIBC_2.7.
5726         * misc/mkostemp.c: New file.
5727         * misc/mkostemp64.c: New file.
5728         * stdlib/stdlib.h: Declare the new functions.
5729         * sysdeps/posix/tempname.c: Add new parameter which is added to
5730         the flags for open.  Remove __GT_BIGFILE handling.
5731         * stdio-common/tempname.c: Likewise.
5732         * include/stdio.h: Adjust __gen_tempname prototype.
5733         Renumber __GT_* constants.
5734         * libio/oldtmpfile.c: Adjust for __gen_tempname interface change.
5735         * misc/mkdtemp.c: Likewise.
5736         * misc/mkstemp.c: Likewise.
5737         * misc/mkstemp64.c: Likewise.
5738         * misc/mktemp.c: Likewise.
5739         * stdio-common/tempnam.c: Likewise.
5740         * stdio-common/tmpfile.c: Likewise.
5741         * stdio-common/tmpfile64.c: Likewise.
5742         * stdio-common/tmpnam.c: Likewise.
5743         * stdio-common/tmpnam_r.c: Likewise.
5745 2007-08-10  Roland McGrath  <roland@frob.com>
5747         * sysdeps/mach/hurd/bits/ioctls.h (NLDLY, TABDLY, BSDLY, VTDLY):
5748         New macros.
5749         (NLDELAY, CRDELAY, TBDELAY, BSDELAY, VTDELAY): Define to those.
5750         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
5752 2007-08-10  Ulrich Drepper  <drepper@redhat.com>
5754         * nss/nss_files/files-XXX.c (internal_setent): Use O_CLOEXEC if
5755         possible.
5756         * nss/nss_files/files-alias.c (internal_setent): Likewise.
5757         * nss/Makefile (libnss_files-routines): Add files-have_o_cloexec.
5758         * nss/nss_files/files-have_o_cloexec.c: New file.
5760         * sysdeps/unix/sysv/linux/shm_open.c (shm_open): Use O_CLOEXEC if
5761         available.
5763 2007-08-10  Jakub Jelinek  <jakub@redhat.com>
5765         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c (___new_strtold_l,
5766         ___new_wcstold_l): New weak aliases.
5767         (strtold_l, wcstold_l): Use them as second argument for
5768         long_double_symbol.
5770 2007-08-09  Ulrich Drepper  <drepper@redhat.com>
5772         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Use correct
5773         register in test for error.
5775         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_CLOEXEC): Define.
5776         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_CLOEXEC): Likewise.
5778         * po/sv.po: Update from translation team.
5780 2007-08-06  Roland McGrath  <roland@redhat.com>
5782         * include/stdlib.h: Add libc_hidden_proto for strto*, __strto*_l.
5783         Remove __strto*_l inlines.
5784         * include/wchar.h: Add libc_hidden_proto for wcsto*, __wcsto*_l.
5785         * stdlib/strtod.c: Add libc_hidden_def.
5786         * stdlib/strtod_l.c: Likewise.
5787         * stdlib/strtold.c [__LONG_DOUBLE_MATH_OPTIONAL]: Add libc_hidden_proto
5788         for __new_strtold and __new_wcstold.
5789         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Add libc_hidden_proto for
5790         __STRTOF, STRTOF.
5791         * stdlib/strtol.c: Add libc_hidden_def.
5792         * stdlib/strtol_l.c: Likewise.
5793         * sysdeps/wordsize-64/strtol.c: Add libc_hidden_ver for strtoll and
5794         strtoq.
5796         * scripts/data/localplt-powerpc-linux-gnu.data: New file.
5798         * scripts/data/localplt-x86_64-linux-gnu.data: File renamed to ...
5799         * scripts/data/localplt-generic.data: ... here.
5800         * elf/Makefile (check-data): Get generic file if no other.
5801         ($(objpfx)check-localplt.out): Make target unconditional.
5803         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion):
5804         Use ElfW(Nhdr).
5806 2007-08-05  Ulrich Drepper  <drepper@redhat.com>
5808         * po/zh_CN.po: Updated translation from translation team.
5810 2007-08-05  Jakub Jelinek  <jakub@redhat.com>
5812         * sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S (__socket):
5813         Don't use CGOTSETUP and CGOTRESTORE macros.
5815 2007-08-04  Roland McGrath  <roland@redhat.com>
5817         * posix/Makefile ($(objpfx)getconf.speclist): Fix typo.
5819 2007-08-04  Jakub Jelinek  <jakub@redhat.com>
5821         * io/bits/fcntl2.h (open, open64, openat, openat64): Add
5822         __extension__ around the whole statement expression.
5824 2007-08-04  Ulrich Drepper  <drepper@redhat.com>
5826         * sysdeps/unix/opendir.c (__alloc_dir): Correct order of DIR
5827         elements during initialization.
5829         * po/pl.po: Updated translation from translation team.
5830         * po/tr.po: Likewise.
5831         * po/nl.po: Likewise.
5833 2007-08-03  Ulrich Drepper  <drepper@redhat.com>
5835         * rt/aio.h: Add __nonnull attributes.
5837 2007-08-03  Jakub Jelinek  <jakub@redhat.com>
5839         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Properly handle -0.
5840         * stdlib/Makefile (tests): Add tst-strtod5.
5841         (tst-strtod5-ENV): New.
5842         * stdlib/tst-strtod5.c: New file.
5844         * intl/dcigettext.c (_nl_find_msg): Free encoding if __gconv_open
5845         failed.
5846         * intl/finddomain.c (_nl_find_domain): Free normalized_codeset
5847         on failure.
5849         * elf/dl-load.c (decompose_rpath): Free copy if result couldn't be
5850         allocated.
5852 2007-08-03  Jakub Jelinek  <jakub@redhat.com>
5854         * rt/mqueue.h (mq_timedreceive, mq_timedsend): Fix nonnull argument
5855         numbers.
5857 2007-08-02  Ulrich Drepper  <drepper@redhat.com>
5859         * io/Makefile (aux): Add have_o_cloexec.
5860         * include/fcntl.h: Declare __have_o_cloexec.
5861         * io/have_o_cloexec.c: New file.
5862         * sysdeps/unix/opendir.c (__opendir): Use O_CLOEXEC is available.
5863         (__alloc_dir): If O_CLOEXEC has been used, don't duplicate the
5864         fcntl call if not necessary.
5865         * login/utmp_file.c (setutent_file): Use __have_o_cloexec instead
5866         of local variable.
5868         * sysdeps/unix/opendir.c (__alloc_dir): Don't initialize ->data.
5869         Avoid memset, add explicit initialization.
5870         * sysdeps/unix/dirstream.h (struct __dirstream): Move data elemtn
5871         to the end and change into zero-sized array.
5872         Move lock member to fill a hole on 64-bit platforms.
5874         * stdlib/stdlib.h: Remove __strto*_internal prototypes and strto*
5875         inline functions.
5876         * include/stdlib.h: Add __strto*_internal prototypes here.
5877         * wcsmbs/wchar.h: Remove __wcsto*_internal prototypes and wcsto*
5878         inline functions.
5879         * include/wchar.h: Add __wcsto*_internal prototypes.
5880         * sysdeps/generic/inttypes.h: No need to protect the declaration
5881         of the __strto*_internal and __wcsto*_internal members here.
5883         * rt/mqueue.h: Change const to __const and add nonnull attributes.
5885 2007-08-02  Roland McGrath  <roland@redhat.com>
5887         * posix/Makefile ($(inst_libexecdir)/getconf): Make hard links to
5888         $(inst_bindir)/getconf if possible.
5890         * posix/Makefile ($(objpfx)getconf.speclist): New target.
5891         (generated): Add it.
5892         ($(inst_libexecdir)/getconf): Use it.
5894 2007-08-01  Ulrich Drepper  <drepper@redhat.com>
5896         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Using
5897         /proc is faster and sufficient.  /sys is still needed for
5898         __get_nprocs_conf.
5900 2007-08-01  Jakub Jelinek  <jakub@redhat.com>
5902         * sysdeps/unix/sysv/linux/i386/syscalls.list (fallocate): Add fallocate
5903         syscall as __fallocate64.
5904         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c: New file.
5905         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c: New file.
5907 2007-07-30  Jakub Jelinek  <jakub@redhat.com>
5909         * stdlib/tst-strtod2.c (do_test): Use %tu in fmt string for ptrdiff_t
5910         value.
5912         * stdio-common/tst-fmemopen2.c (do_test): Avoid fmt string warning
5913         if off_t is different rank from size_t.
5915         * sysdeps/generic/unwind-dw2.c (extract_cie_info, execute_cfa_program,
5916         uw_frame_state_for): Avoid type punning warnings.
5917         * sysdeps/generic/unwind-dw2-fde-glibc.c
5918         (_Unwind_IteratePhdrCallback): Likewise.
5919         * sysdeps/generic/unwind-dw2-fde.c (_Unwind_Find_FDE): Likewise.
5920         (binary_search_single_encoding_fdes, binary_search_mixed_encoding_fdes,
5921         get_cie_encoding, linear_search_fdes): Don't mix char and unsigned char
5922         pointers.
5924 2007-07-31  Ulrich Drepper  <drepper@redhat.com>
5926         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs_conf): Count
5927         total processors using sysfs.
5928         (__get_nprocs): Use sysfs to determine which processors are online.
5930 2007-07-31  Jakub Jelinek  <jakub@redhat.com>
5932         * sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate): Fix
5933         syscall arguments count.
5935         * stdio-common/tfformat.c (sprint_doubles): Add 12 new tests.
5937 2007-07-30  Roland McGrath  <roland@redhat.com>
5939         * manual/libc.texinfo: Update copyrights, formatting magic, and
5940         @dircategory.  From Karl Berry <karl@freefriends.org>.
5942 2007-07-29  Ulrich Drepper  <drepper@redhat.com>
5944         [BZ #4860]
5945         * io/Makefile (headers): Add bits/fcntl2.h.
5947         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_ZERO_S): Optimize
5948         using gcc builtin.
5949         (__CPU_EQUAL_S): Likewise.
5951         * posix/Makefile (routines): Add sched_cpualloc and sched_cpufree.
5952         (tests): Add tst-cpuset.
5953         * posix/sched_cpualloc.c: New file.
5954         * posix/sched_cpufree.c: New file.
5955         * posix/tst-cpuset.c: New file.
5956         * posix/Versions: Export __sched_cpualloc and __sched_cpufree for
5957         GLIBC_2.7.
5958         * sysdeps/unix/sysv/linux/bits/sched.h: Define __CPU_*_S macros.
5959         * posix/sched.h: Define old CPU_* macros in temers of __CPU_*_S
5960         macros.  Define CPU_*_S macros.
5962 2007-07-28  Ulrich Drepper  <drepper@redhat.com>
5964         * posix/getconf.c (vars): Add missing _SC_LEVEL4_CACHE_LINESIZE
5965         entry.
5967         [BZ #4858]
5968         * stdio-common/printf_fp.c (___printf_fp): Fix special case of
5969         #.0g and value rounded to 1.0.
5970         * stdio-common/tfformat.c (sprint_doubles): Add two new tests.
5972 2007-07-26  Jakub Jelinek  <jakub@redhat.com>
5974         * locale/programs/ld-monetary.c (monetary_finish): Avoid range check
5975         for int_frac_digits and frac_digits.
5977         * login/logout.c (logout): Avoid aliasing violation.
5978         * login/logwtmp.c (logwtmp): Likewise.
5980         * libio/genops.c (_IO_un_link): Avoid aliasing violation.
5982         * nscd/selinux.c (preserve_capabilities): Initialize new_caps
5983         to avoid warning.
5984         * iconv/gconv_open.c (__gconv_open): Initialize ptr to avoid
5985         warning.
5986         * nis/nis_subr.c (nis_getnames): Initialize saveptr to avoid
5987         warning.
5988         * resolv/inet_ntop.c (inet_ntop6): Initialize best.len and cur.len
5989         to avoid warnings.
5991         * nss/nsswitch.c (__nss_lookup_function): Don't cast &ni->known to
5992         void **.
5993         * nss/nsswitch.h (service_user): Use void * type for KNOWN field.
5995         * nss/nss_files/files-hosts.c (LINE_PARSER): Cast host_addr to
5996         char * to avoid warning.
5997         * nis/nss_nis/nis-hosts.c (LINE_PARSER): Likewise.
5999         * timezone/Makefile (CFLAGS-zdump.c): Add -fwrapv.
6001         * locale/programs/ld-ctype.c (ctype_finish, set_class_defaults,
6002         allocate_arrays): Cast second argument to charmap_find_symbol
6003         to char * to avoid warnings.
6005         * locale/programs/repertoire.c (repertoire_new_char): Change
6006         from_nr, to_nr and cnt to unsigned long, adjust printf format
6007         string.
6009         * locale/programs/ld-collate.c (insert_value, handle_ellipsis):
6010         Cast second argument to new_element to char * to avoid warnings.
6012         * locale/weightwc.h (findidx): Cast &extra[-i] to const int32_t *.
6014         * intl/gettextP.h (struct loaded_domain): Change plural to const
6015         struct expression *.
6016         * intl/plural-eval.c (plural_eval): Change first argument to
6017         const struct expression *.
6018         * intl/plural-exp.c (EXTRACT_PLURAL_EXPRESSION): Change first
6019         argument to const struct expression **.
6020         * intl/plural-exp.h (EXTRACT_PLURAL_EXPRESSION, plural_eval): Adjust
6021         prototypes.
6022         * intl/loadmsgcat (_nl_unload_domain): Cast away const
6023         in call to __gettext_free_exp.
6025         * posix/fnmatch.c (fnmatch): Rearrange code to avoid maybe
6026         unitialized wstring/wpattern var warnings.
6028         * posix/runtests.c (struct a_test): Make data field const char *.
6030         * stdio-common/tst-sprintf2.c (main): Don't declere u, v and buf
6031         vars if not LDBL_MANT_DIG >= 106.
6033         * stdio-common/Makefile (CFLAGS-vfwprintf.c): Add -Wno-unitialized.
6035         * stdio-common/vfprintf.c (vfprintf): Cast first arugment to
6036         __find_specmb to avoid warning.
6038         * rt/tst-mqueue1.c (do_one_test): Add casts to avoid warnings.
6040         * debug/test-strcpy_chk.c (do_tests, do_random_tests): Add casts
6041         to avoid warnings.
6043         * sysdeps/ieee754/ldbl-96/s_roundl.c (huge): Add L suffix to
6044         initializer.
6046         * sysdeps/unix/clock_gettime.c (clock_gettime): Only define
6047         tv var when it will be actually used.
6049         * sunrpc/rpc_cmsg.c (xdr_callmsg): Cast IXDR_PUT_* to void
6050         to avoid warnings.
6052         * iconvdata/gbk.c (BODY): Make buf and cp char instead of unsigned
6053         char array resp. pointer.
6054         * iconvdata/iso-2022-kr.c (BODY): Make buf unsigned char instead of
6055         char array.
6056         * iconvdata/cns11643.h (cns11643_to_ucs4): Change first argument
6057         to const unsigned char **.
6058         (ucs4_to_cns11643): Change second argument to unsigned char *.
6059         * iconvdata/euc-tw.c (BODY): Change endp type to
6060         const unsigned char *.
6061         * iconvdata/iso-ir-165.h (ucs4_to_isoir165): Change second argument
6062         to unsigned char *.
6063         * iconvdata/ibm1008_420.c (LOOP_NEED_FLAGS): Don't define.
6064         * iconvdata/iso-2022-cn.c (BODY): Change buf to unsigned char array.
6065         * iconvdata/iso-2022-cn-ext.c (BODY): Change buf, tmpbuf, tmp
6066         types to unsigned char pointers/arrays instead of char.
6067         * iconvdata/jis0201.h (ucs4_to_jisx0201): Change second argument
6068         to unsigned char *.
6069         * iconvdata/jis0208.h (ucs4_to_jisx0208): Likewise.
6070         * iconvdata/jis0212.h: Include assert.h.
6071         (ucs4_to_jisx0212): Change second argument to unsigned char *.
6072         assert that if cp[0] is not '\0', cp[1] is not '\0' either instead
6073         of trying to handle that.
6074         * iconvdata/euc-kr.c (euckr_from_ucs4): Initialize also cp[1] to
6075         shut up a warning.
6076         * iconvdata/euc-jp-ms.c (from_ucs4_lat1, from_ucs4_greek,
6077         from_ucs4_cjk, from_ucs4_cjkcpt, from_ucs4_extra): Change type to
6078         two dimensional const unsigned char arrays.
6079         (BODY): Cast "" to (const unsigned char *) for assignment to cp.
6080         Initialize endp to inptr to shut up a warning.
6082 2007-07-20  Jakub Jelinek  <jakub@redhat.com>
6084         [BZ #4772]
6085         * time/strptime_l.c (__strptime_internal): Silently ignore
6086         strftime modifiers and field width in recursive calls.
6088         * include/time.h (enum ptime_locale_status): Remove.
6089         (__strptime_internal): Remove decided and era_cnt arguments,
6090         add statep argument.
6091         * time/strptime_l.c (__strptime_internal): Remove decided
6092         and era_cnt arguments, add statep argument.  Don't recompute
6093         any fields in recursive calls, only update caller's tm
6094         and state, if recursive call fails, don't change tm nor
6095         any state.
6096         (get_alt_number): Adjust.
6097         (recursive): Adjust caller.
6098         (strptime): Likewise.
6099         * time/strptime.c (strptime): Likewise.
6101 2007-07-19  Jakub Jelinek  <jakub@redhat.com>
6103         * iconv/gconv_int.h (__GCONV_NULCONV): New internal only error code.
6104         * iconv/gconv_cache.c (__gconv_lookup_cache): Return __GCONV_NULCONV
6105         if from and to charsets are the same.
6106         * iconv/gconv_db.c (__gconv_find_transform): Likewise.
6107         * intl/dcigettext.c (_nl_find_msg): Return NULL even if __gconv_open
6108         returns __GCONV_NOCONV, but not for __GCONV_NULCONV.
6110 2007-07-17  Jakub Jelinek  <jakub@redhat.com>
6112         * wcsmbs/wchar.h: Only define wint_t if __need_wint_t.
6113         Don't define wint_t when __need_mbstate_t unless it
6114         is necessary.
6115         (__mbstate_t): Use __WINT_TYPE__ rather than wint_t
6116         in the typedef if possible.
6117         * wctype/wctype.h (wint_t): Define by including
6118         wchar.h with __need_wint_t instead of including stddef.h
6119         with __need_wint_t and as fallback definining it ourselves.
6120         * iconv/gconv.h (__need_wint_t): Define before including
6121         wchar.h.
6122         * sysdeps/gnu/_G_config.h: Don't include gconv.h if not _LIBC
6123         or _GLIBCPP_USE_WCHAR_T.
6124         (__need_wchar_t): Don't define
6125         if not _LIBC or _GLIBCPP_USE_WCHAR_T.
6126         (__need_wint_t): Don't define before including stddef.h,
6127         define before including wchar.h only if _LIBC or
6128         _GLIBCPP_USE_WCHAR_T.
6129         (_G_iconv_t): Don't define if not _LIBC or _GLIBCPP_USE_WCHAR_T.
6130         * sysdeps/mach/hurd/_G_config.h: Likewise.
6131         * sysdeps/generic/_G_config.h: Likewise.
6132         * libio/libio.h (__wunderflow, __wuflow, __woverflow): Only
6133         prototype if _LIBC or _GLIBCPP_USE_WCHAR_T.
6134         (_IO_getwc_unlocked, _IO_putwc_unlocked): Only define
6135         if _LIBC or _GLIBCPP_USE_WCHAR_T.
6137 2007-07-28  Ulrich Drepper  <drepper@redhat.com>
6139         * sysdeps/posix/posix_fallocate64.c: Undefine
6140         __posix_fallocate64_l64 before alias handling.
6141         * sysdeps/unix/sysv/linux/posix_fallocate.c: New file.
6142         * sysdeps/unix/sysv/linux/posix_fallocate64.c: New file.
6143         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c: New file.
6144         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate64.c: New file.
6146         * io/tst-posix_fallocate.c: Include <fcntl.h>.
6148 2007-07-23  Jakub Jelinek  <jakub@redhat.com>
6150         * locale/programs/ld-collate.c (atwc): New variable.
6151         (add_to_tablewc): New toplevel function, moved from collate_output.
6152         (collate_output): Remove add_to_tablewc nested function.
6154         * iconv/iconvconfig.c (hash_table, hash_size): New toplevel vars.
6155         (name_insert): New function.
6156         (write_output): Remove hash_table and hash_size vars and name_insert
6157         nested function.
6159 2007-07-24  Roland McGrath  <roland@redhat.com>
6161         * Makerules (install-others-programs-nosubdir): New target.
6162         (install-no-libc.a-nosubdir): Depend on it.
6164         * iconv/Makefile (install-others-programs): Set this instead of
6165         install-others.
6166         * login/Makefile (install-others-programs): Likewise.
6167         * posix/Makefile (install-others-programs): Likewise.
6169         * Makerules (install-no-libc.a-nosubdir): Clean up conditional
6170         dependencies.
6172 2007-07-23  Ulrich Drepper  <drepper@redhat.com>
6174         * io/Makefile (tests): Add tst-posix_fallocate.
6175         * io/tst-posix_fallocate.c: New file.
6177         * sysdeps/unix/sysv/linux/kernel-features.h: Define
6178         __ASSUME_FALLOCATE.
6180 2007-07-22  Roland McGrath  <roland@frob.com>
6182         * hurd/getdport.c: Add missing copyright year update.
6184         * sysdeps/mach/hurd/bits/fcntl.h [__USE_GNU] (O_CLOEXEC): New macro.
6185         * hurd/port2fd.c (_hurd_port2fd): Implement O_CLOEXEC.
6187 2007-07-22  Ulrich Drepper  <drepper@redhat.com>
6189         * login/utmp_file.c (setutent_file): Use O_CLOEXEC if possible.
6191         * libio/fileops.c (_IO_new_file_fopen): Recognize 'e' flag and set
6192         O_CLOEXEC is needed.
6193         * nis/nss_compat/compat-grp.c: Use 'e' flag when opening file.
6194         Avoid additional fcntl to set O_CLOEXEC if not needed.
6195         * nis/nss_compat/compat-initgroups.c: Likewise.
6196         * nis/nss_compat/compat-pwd.c: Likewise.
6197         * nis/nss_compat/compat-spwd.c: Likewise.
6199 2007-07-21  Samuel Thibault  <samuel.thibault@ens-lyon.org>
6201         [BZ #3665]
6202         * manual/errno.texi: Change ECANCELED value to 119.
6204         [BZ #4610]
6205         * mach/lock-intern.h: Include <sys/cdefs.h>.
6207         [BZ #4178]
6208         * sysdeps/mach/hurd/sigaction.c (__sigaction): Check ACT != NULL before
6209         reading A.
6211         [BZ #4126]
6212         * sysdeps/mach/hurd/sigsuspend.c (sigsuspend_not_cancel): Define alias
6213         to __sigsuspend.
6215         * sysdeps/mach/i386/sysdep.h: Include <dl-sysdep.h> and <tls.h>.
6217 2006-06-13  Thomas Schwinge  <tschwinge@gnu.org>
6219         * sysdeps/mach/hurd/tls.h: Change `ASSEMBLER' conditional to
6220         `__ASSEMBLER__'.
6221         * sysdeps/mach/hurd/i386/tls.h: Likewise.
6223 2007-07-21  Ulrich Drepper  <drepper@redhat.com>
6225         * nscd/nscd_helper.c (get_mapping): Use MSG_CMSG_CLOEXEC for
6226         descriptor received from nscd.
6228         * sysdeps/unix/sysv/linux/bits/socket.h: Define MSG_CMSG_CLOEXEC.
6230         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_CLOEXEC.
6231         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
6232         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
6233         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
6234         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
6235         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
6237 2007-07-20  Jakub Jelinek  <jakub@redhat.com>
6239         [BZ #4816]
6240         * manual/signal.texi (Non-atomic Example): Make memory var volatile.
6242         [BZ #4813]
6243         * login/forkpty.c (forkpty): Close master and slave fds on
6244         fork failure.  Patch by
6245         Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>.
6247 2007-07-18  Jakub Jelinek  <jakub@redhat.com>
6249         * include/features.h (__USE_ISOC95): New define.
6250         * wcsmbs/wchar.h (fwprintf, fwscanf, wprintf, wscanf, swprintf,
6251         swscanf, vfwprintf, vwprintf, vswprintf, fwide): Define even
6252         for -std=iso9899:199409.
6253         * CONFORMANCE: Remove comments about unsupported AMD1.
6255 2007-07-17  Jakub Jelinek  <jakub@redhat.com>
6257         * sysdeps/ia64/sched_cpucount.c: New file.
6258         * sysdeps/powerpc/sched_cpucount.c: New file.
6260         * sysdeps/unix/sysv/linux/bits/sched.h (__sched_cpucount): Add
6261         __BEGIN_DECLS/__END_DECLS around the prototype.
6262         * bits/sched.h (__sched_cpucount): Likewise.  Make second argument
6263         pointer to const cpu_set_t.
6265         * bits/types.h: Don't include stddef.h, don't define __need_size_t.
6266         * signal/signal.h <__USE_BSD || __USE_XOPEN_EXTENDED>: Define
6267         __need_size_t and include stddef.h.
6268         * sysvipc/sys/msg.h: Likewise.
6269         * posix/sched.h: Likewise.
6270         * hurd/hurd/signal.h (__need_size_t): Define.
6272         * CONFORMANCE: ctype.h and wctype.h no longer define size_t,
6273         neither does signal.h in pedantic ISO C namespaces.  stdio.h
6274         no longer defines wint_t or wchar_t.
6276         * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): New function.
6277         * debug/vfwprintf_chk.c (__vfwprintf_chk): Use
6278         _IO_acquire_lock_clear_flags2 instead of _IO_acquire_lock.
6279         * debug/vprintf_chk.c (__vprintf_chk): Likewise.
6280         * debug/vwprintf_chk.c (__vwprintf_chk): Likewise.
6281         * debug/vfprintf_chk.c (__vfprintf_chk): Likewise.
6282         * debug/fwprintf_chk.c (__fwprintf_chk): Likewise.
6283         * debug/printf_chk.c (__printf_chk): Likewise.
6284         * debug/fprintf_chk.c (__fprintf_chk): Likewise.
6285         * debug/wprintf_chk.c (__wprintf_chk): Likewise.
6287         * sysdeps/pthread/bits/stdio-lock.h (_IO_acquire_lock_clear_flags2):
6288         Define.
6290         * bits/confname.h (_CS_POSIX_V6_WIDTH_RESTRICTED_ENVS): Define.
6291         * posix/getconf.c (vars): Add POSIX_V6_WIDTH_RESTRICTED_ENVS.
6293 2007-07-16  Jakub Jelinek  <jakub@redhat.com>
6295         [BZ #4792]
6296         * stdlib/stdlib.h (realloc): Remove __attribute_malloc__.
6297         * malloc/malloc.h (realloc): Likewise.
6299         * libio/iopopen.c (_IO_new_proc_open): Don't close child_std_end
6300         if one of proc_file_chain streams has that fileno.
6301         * stdio-common/Makefile (tests): Add tst-popen2.
6302         * stdio-common/tst-popen2.c: New test.
6304 2007-07-14  Jakub Jelinek  <jakub@redhat.com>
6306         * elf/ldconfig.c: Allow GPLv2 or any later version.
6307         * elf/readlib.c: Likewise.
6308         * elf/chroot_canon.c: Likewise.
6309         * elf/cache.c: Likewise.
6310         * nscd/mem.c: Likewise.
6311         * nscd/getpwuid_r.c: Likewise.
6312         * nscd/grpcache.c: Likewise.
6313         * nscd/aicache.c: Likewise.
6314         * nscd/getsrvbynm_r.c: Likewise.
6315         * nscd/nscd.c: Likewise.
6316         * nscd/servicescache.c: Likewise.
6317         * nscd/getsrvbypt_r.c: Likewise.
6318         * nscd/initgrcache.c: Likewise.
6319         * nscd/gethstbyad_r.c: Likewise.
6320         * nscd/gethstbynm2_r.c: Likewise.
6321         * nscd/getgrnam_r.c: Likewise.
6322         * nscd/nscd_setup_thread.c: Likewise.
6323         * nscd/getpwnam_r.c: Likewise.
6324         * nscd/gai.c: Likewise.
6325         * nscd/connections.c: Likewise.
6326         * nscd/dbg_log.c: Likewise.
6327         * nscd/cache.c: Likewise.
6328         * nscd/hstcache.c: Likewise.
6329         * nscd/nscd_conf.c: Likewise.
6330         * nscd/getgrgid_r.c: Likewise.
6331         * nscd/pwdcache.c: Likewise.
6332         * catgets/gencat.c: Likewise.
6333         * locale/programs/linereader.h: Likewise.
6334         * locale/programs/locarchive.c: Likewise.
6335         * locale/programs/ld-paper.c: Likewise.
6336         * locale/programs/locfile-kw.h: Likewise.
6337         * locale/programs/ld-address.c: Likewise.
6338         * locale/programs/xmalloc.c: Likewise.
6339         * locale/programs/ld-time.c: Likewise.
6340         * locale/programs/localedef.c: Likewise.
6341         * locale/programs/simple-hash.c: Likewise.
6342         * locale/programs/xstrdup.c: Likewise.
6343         * locale/programs/ld-numeric.c: Likewise.
6344         * locale/programs/locfile-kw.gperf: Likewise.
6345         * locale/programs/ld-collate.c: Likewise.
6346         * locale/programs/charmap-kw.gperf: Likewise.
6347         * locale/programs/charmap.h: Likewise.
6348         * locale/programs/charmap-kw.h: Likewise.
6349         * locale/programs/config.h: Likewise.
6350         * locale/programs/locfile.c: Likewise.
6351         * locale/programs/ld-ctype.c: Likewise.
6352         * locale/programs/charmap.c: Likewise.
6353         * locale/programs/ld-messages.c: Likewise.
6354         * locale/programs/repertoire.h: Likewise.
6355         * locale/programs/locale.c: Likewise.
6356         * locale/programs/ld-name.c: Likewise.
6357         * locale/programs/linereader.c: Likewise.
6358         * locale/programs/locfile.h: Likewise.
6359         * locale/programs/3level.h: Likewise.
6360         * locale/programs/ld-monetary.c: Likewise.
6361         * locale/programs/ld-measurement.c: Likewise.
6362         * locale/programs/charmap-dir.c: Likewise.
6363         * locale/programs/ld-identification.c: Likewise.
6364         * locale/programs/localedef.h: Likewise.
6365         * locale/programs/charmap-dir.h: Likewise.
6366         * locale/programs/repertoire.c: Likewise.
6367         * locale/programs/simple-hash.h: Likewise.
6368         * locale/programs/ld-telephone.c: Likewise.
6369         * locale/programs/locale-spec.c: Likewise.
6370         * locale/programs/locfile-token.h: Likewise.
6371         * posix/getconf.c: Likewise.
6372         * iconv/dummy-repertoire.c: Likewise.
6373         * iconv/iconv_charmap.c: Likewise.
6374         * iconv/iconvconfig.c: Likewise.
6375         * iconv/iconv_prog.c: Likewise.
6376         * malloc/memusagestat.c: Likewise.
6377         * sysdeps/unix/sysv/linux/nscd_setup_thread.c: Likewise.
6379 2007-07-06  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
6381         * sysdeps/sh/bsd-setjmp.S (setjmp): Use correct argument registers.
6382         * sysdeps/sh/bsd-_setjmp.S (_setjmp): Likewise.
6383         * sysdeps/unix/sysv/linux/sh/clone.S (__clone): Do correct sanity
6384         check for the first argument.
6386 2007-07-12  Jakub Jelinek  <jakub@redhat.com>
6388         [BZ #4775]
6389         * math/tgmath.h (__tgmath_real_type_sub): Formatting.
6390         (__tgmath_real_type): Fix if expr is const int or other const
6391         qualified integral type.
6392         (__TGMATH_UNARY_REAL_ONLY): Rewritten to avoid using statement
6393         expressions and handle const qualified arguments.
6394         (__TGMATH_BINARY_FIRST_REAL_ONLY, __TGMATH_UNARY_REAL_IMAG,
6395         __TGMATH_UNARY_REAL_IMAG_RET_REAL): Likewise.
6396         (__TGMATH_UNARY_REAL_RET_ONLY): Rewritten to avoid using
6397         statement expressions.
6398         (__TGMATH_BINARY_REAL_ONLY, __TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY,
6399         __TGMATH_TERNARY_REAL_ONLY, __TGMATH_BINARY_REAL_IMAG): Likewise.
6400         (__TGMATH_UNARY_IMAG): Define.
6401         (conj, cproj): Use __TGMATH_UNARY_IMAG macro.
6402         * math/Makefile (tests): Add test-tgmath2.
6403         (CFLAGS-test-tgmath2.c): Add.
6404         * math/test-tgmath.c (fy, dy, ly, fz, dz, lz, count_cdouble,
6405         count_cfloat, count_cldouble): New variables.
6406         (NCCALLS): Define.
6407         (main): Check number of complex calls as well.
6408         (F(compile_test)): Add complex tests and tests with const qualified
6409         arguments.
6410         (y, z, ccount): Define.
6411         (F(cacos), F(casin), F(catan), F(ccos), F(csin), F(ctan), F(cacosh),
6412         F(casinh), F(catanh), F(ccosh), F(csinh), F(ctanh), F(cexp), F(clog),
6413         F(csqrt), F(cpow), F(cabs), F(carg), F(creal), F(cimag), F(conj),
6414         F(cproj)): New functions.
6415         * math/test-tgmath2.c: New test.
6417 2007-07-11  Jakub Jelinek  <jakub@redhat.com>
6419         [BZ #4776]
6420         * elf/dl-load.c (_dl_rtld_di_serinfo): Output / in LD_LIBRARY_PATH,
6421         RPATH etc. as "/" rather than "", don't segfault on empty paths,
6422         instead output ".".
6423         * dlfcn/Makefile (distribute): Add glreflib3.c.
6424         (module-names): Add glreflib3.
6425         ($(objpfx)tst-dlinfo.out): Depend on glreflib3.so rather than
6426         glreflib1.so.
6427         (LDFLAGS_glreflib3.so): New.
6428         * dlfcn/tst-dlinfo.c (do_test): Load glreflib3.so instead of
6429         glreflib1.so.
6430         * dlfcn/glreflib3.c: New file.
6432         * intl/finddomain.c (_nl_find_domain): If _nl_explode_name
6433         returned -1, return NULL.
6434         * intl/explodename.c (_nl_explode_name): Return -1 if
6435         _nl_normalize_codeset failed.
6437 2007-07-07  Steven Munroe  <sjmunroe@us.ibm.com>
6439         * sysdeps/powerpc/powerpc32/power6/memset.S: Update comments.
6440         Specify .machine power6 to get ISA-V2.0 branch hints.  Unroll loops
6441         and avoid branch misspredicts for > 31 bytes memset case.
6442         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
6443         Remove toc ref to __cache_line_size.
6445         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Specify .machine power4
6446         to get ISA-V2.0 branch hints.
6447         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Likewise
6448         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise
6449         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
6450         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
6451         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
6452         * sysdeps/powerpc/powerpc64/power4/memset.S: Likewise.
6453         Remove toc ref to __cache_line_size.
6455         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S:
6456         Include math_ldbl_opt.h.
6458 2007-07-10  Ulrich Drepper  <drepper@redhat.com>
6460         [BZ #4773]
6461         * time/strptime_l.c (__strptime_internal): Implement greedy
6462         matching of weekday and month names.
6464 2007-07-09  Roland McGrath  <roland@redhat.com>
6466         * elf/elf.h (NT_GNU_ABI_TAG): New macro.
6467         (ELF_NOTE_ABI): Use it.
6468         (NT_GNU_HWCAP, NT_GNU_BUILD_ID): New macros.
6470 2007-07-09  Ulrich Drepper  <drepper@redhat.com>
6472         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Add new entries.
6473         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
6475 2007-07-07  Ulrich Drepper  <drepper@redhat.com>
6477         [BZ #4745]
6478         * stdio-common/vfscanf.c (_IO_vfscanf): Add additional test for EOF
6479         in loop to look for conversion specifier to avoid testing of
6480         wrong errno value.
6481         * stdio-common/Makefile (tests): Add bug18, bug18a, bug19, bug19a.
6482         * stdio-common/bug18.c: New file.
6483         * stdio-common/bug18a.c: New file.
6484         * stdio-common/bug19.c: New file.
6485         * stdio-common/bug19a.c: New file.
6487 2007-07-05  Mike Frysinger  <vapier@gentoo.org>
6489         * Makeconfig ($(common-objpfx)gnu/lib-names.stmp): Use LC_ALL=C when
6490         running awk script.
6492 2007-07-01  Jakub Jelinek  <jakub@redhat.com>
6494         * elf/dl-sysdep.c (_dl_important_hwcaps): Add integer overflow check.
6495         * elf/dl-minimal.c (__libc_memalign): Likewise.  Handle malloc (0).
6496         Return NULL if mmap failed instead of asserting it does not.
6497         (calloc): Check for integer overflow.
6499         * elf/dl-minimal.c (__strtoul_internal): Fix parsing of numbers bigger
6500         than LONG_MAX / 10.
6502 2007-07-03  Jakub Jelinek  <jakub@redhat.com>
6504         [BZ #4702]
6505         * nis/nss-default.c: Include errno.h.
6506         (init): Preserve errno.
6508 2007-07-02  Ulrich Drepper  <drepper@redhat.com>
6510         * sysdeps/unix/sysv/linux/bits/socket.h (PF_UNIX): Update comment.
6512 2007-06-30  Ulrich Drepper  <drepper@redhat.com>
6514         * sysdeps/unix/sysv/linux/bits/socket.h: Add PF_RXRPC and AF_RXRPC.
6516 2007-06-29  Martin Schwidefsky  <schwidefsky@de.ibm.com>
6518         * sysdeps/unix/sysv/linux/bits/socket.h: Add PF_IUCV and AF_IUCV.
6520 2007-06-29  Martin Schwidefsky  <schwidefsky@de.ibm.com>
6522         * sysdeps/s390/dl-procinfo.c: New file.
6523         * sysdeps/s390/dl-procinfo.h: New file.
6524         * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: New file.
6526 2007-06-29  Jakub Jelinek  <jakub@redhat.com>
6528         * elf/dl-load.c (open_verify): Find .note.ABI-tag notes even
6529         in PT_NOTE segments with multiple notes.
6530         * elf/readelflib.c (process_elf_file): Likewise.
6532 2007-06-22  Ulrich Drepper  <drepper@redhat.com>
6534         * nis/nis_domain_of.c (__nis_domain_of): Make the code a bit more
6535         ISO C compliant.
6537 2007-06-19  Ulrich Drepper  <drepper@redhat.com>
6539         * elf/dl-close.c (free_mem): Free _dl_scope_free_list.
6541 2007-06-13  Jakub Jelinek  <jakub@redhat.com>
6543         * include/link.h: Don't include rtld-lowlevel.h.
6544         (struct link_map): Remove l_scope_lock.
6545         * sysdeps/generic/ldsodefs.h: Don't include rtld-lowlevel.h.
6546         (_dl_scope_free_list): New field (variable) in _rtld_global.
6547         (DL_LOOKUP_SCOPE_LOCK): Remove.
6548         (_dl_scope_free): New prototype.
6549         * elf/dl-runtime.c (_dl_fixup): Don't use __rtld_mrlock_*lock.
6550         Don't pass DL_LOOKUP_SCOPE_LOCK to _dl_lookup_symbol_x.
6551         (_dl_profile_fixup): Likewise.
6552         * elf/dl-sym.c (do_sym): Likewise.  Use wrapped _dl_lookup_symbol_x
6553         whenever !RTLD_SINGLE_THREAD_P, use THREAD_GSCOPE_SET_FLAG and
6554         THREAD_GSCOPE_RESET_FLAG around it.
6555         * elf/dl-close.c (_dl_close_worker): Don't use
6556         __rtld_mrlock_{change,done}.  Call _dl_scope_free on the old
6557         scope.  Make sure THREAD_GSCOPE_WAIT () happens if any old
6558         scopes were queued or if l_scope_mem has been abandoned.
6559         * elf/dl-open.c (_dl_scope_free): New function.
6560         (dl_open_worker): Use it.  Don't use __rtld_mrlock_{change,done}.
6561         * elf/dl-support.c (_dl_scope_free_list): New variable.
6562         * elf/dl-lookup.c (add_dependency): Remove flags argument.
6563         Remove DL_LOOKUP_SCOPE_LOCK handling.
6564         (_dl_lookup_symbol_x): Adjust caller.  Remove DL_LOOKUP_SCOPE_LOCK
6565         handling.
6566         * elf/dl-object.c (_dl_new_object): Don't use
6567         __rtld_mrlock_initialize.
6569 2007-06-19  Ulrich Drepper  <drepper@redhat.com>
6571         * sysdeps/generic/ldsodefs.h (rtld_global): Reorder some elements
6572         to fill in holes
6573         (rtld_global_ro): Likewise.
6575 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
6577         * elf/dl-addr.c (_dl_addr): Skip PT_LOAD checking if l_contiguous.
6578         Move PT_LOAD checking to...
6579         (_dl_addr_inside_object): ... here, new function.
6580         * elf/dl-sym.c (do_sym): If not l_contiguous,
6581         call _dl_addr_inside_object.
6582         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Likewise.
6583         * dlfcn/dlinfo.c (dlinfo_doit): Likewise.
6584         * elf/dl-open.c (dl_open_worker): Likewise.
6585         (_dl_addr_inside_object): New function if IS_IN_rtld.
6586         * elf/dl-load.c (_dl_map_object_from_fd): Set l_contiguous if no
6587         holes are present or are PROT_NONE protected.
6588         * include/link.h (struct link_map): Add l_contiguous field.
6589         * sysdeps/generic/ldsodefs.h (_dl_addr_inside_object): New prototype.
6591 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
6592             Tomas Janousek  <tjanouse@redhat.com>
6593             Ulrich Drepper  <drepper@redhat.com>
6595         [BZ #4647]
6596         * resolv/res_send.c (send_dg): Remove socket_pf.  Use ipv6_unavail
6597         member in __res_state, only convaddr4to6 if nssocks[ns] is a PF_INET6
6598         socket.
6599         * resolv/resolv.h (__res_state): Add ipv6_unavail member.  Make
6600         unused member a bitmap.
6601         * resolv/res_init.c (__res_vinit): Reset ipv6_unavail if IPv6
6602         servers are configured.
6604 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
6606         * elf/rtld.c (dl_main): Don't call init_tls more than once.
6608 2007-06-17  Andreas Schwab  <schwab@suse.de>
6610         * sysdeps/generic/initfini.c: Tell gcc about the nonstandard sections.
6612 2007-06-16  Andreas Jaeger  <aj@suse.de>
6614         [BZ #4125]
6615         * sysdeps/unix/sysv/linux/sys/ptrace.h
6616         (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK,
6617         PTRACE_O_TRACEVFORK, PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC,
6618         PTRACE_O_TRACEVFORKDONE, PTRACE_O_TRACEEXIT, PTRACE_O_MASK,
6619         PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK, PTRACE_EVENT_CLONE,
6620         PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE, PTRACE_EVENT_EXIT):
6621         Define.
6622         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
6623         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
6624         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
6625         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
6627 2007-06-16  Ulrich Drepper  <drepper@redhat.com>
6629         [BZ #4599]
6630         * sysdeps/unix/sysv/linux/check_pf.c (make_request): When
6631         determining whether there are IPv4/IPv6 addresses, ignore loopback
6632         addresses.
6634 2007-06-14 Uros Bizjak <ubizjak@gmail.com>
6636         * soft-fp/soft-fp.h (CMPtype): Define to "int" if undefined.
6637         * soft-fp/eqdf2.c (__eqdf2): Use CMPtype instead of int
6638         as the return type.  Change type of "r" variable to CMPtype.
6639         * soft-fp/eqsf2.c (__eqsf2): Likewise.
6640         * soft-fp/eqtf2.c (__eqtf2): Likewise.
6641         * soft-fp/gedf2.c (__gedf2): Likewise.
6642         * soft-fp/gesf2.c (__gesf2): Likewise.
6643         * soft-fp/getf2.c (__getf2): Likewise.
6644         * soft-fp/ledf2.c (__ledf2): Likewise.
6645         * soft-fp/lesf2.c (__lesf2): Likewise.
6646         * soft-fp/letf2.c (__letf2): Likewise.
6647         * soft-fp/unorddf2 (__unorddf2): Likewise.
6648         * soft-fp/unordsf2 (__unordsf2): Likewise.
6649         * soft-fp/unordtf2 (__unordtf2): Likewise.
6651 2007-06-09  Ulrich Drepper  <drepper@redhat.com>
6653         * elf/do-lookup.h (do_lookup_x): Read r_nlist before r_list and
6654         make sure gcc doesn't mess around with this.
6656 2007-06-08  Ulrich Drepper  <drepper@redhat.com>
6658         * elf/dl-lookup.c (_dl_lookup_symbol_x): Remove use of r_nlist.
6660 2007-06-08  Jakub Jelinek  <jakub@redhat.com>
6662         * elf/dl-close.c (_dl_close_worker): Remove all to be removed
6663         libraries from the global scope at once and call THREAD_GSCOPE_WAIT
6664         at most once per _dl_close_worker.
6666 2007-06-08  Ulrich Drepper  <drepper@redhat.com>
6668         * sysdeps/unix/sysv/linux/bits/sched.h: Make second parameter of
6669         __sched_cpucount as const.
6670         * posix/sched_cpucount.c: Adjust.
6672         * posix/sched_cpucount.c (__sched_cpucount): Allow using special
6673         instruction for counting bits.
6674         * sysdeps/x86_64/sched_cpucount.c: New file.
6676 2007-06-07  Ulrich Drepper  <drepper@redhat.com>
6678         * configure.in: Avoid variable named BASH.
6679         * config.make.in: Likewise.
6680         Patch in part by Mike Frysinger.
6682 2007-06-06  Jakub Jelinek  <jakub@redhat.com>
6684         [BZ #4586]
6685         * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Treat
6686         pseudo-zeros as zero.
6687         * sysdeps/x86_64/ldbl2mpn.c: New file.
6688         * sysdeps/ia64/ldbl2mpn.c: New file.
6690 2007-06-04  Jakub Jelinek  <jakub@redhat.com>
6692         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (nextafterl): Remove
6693         unused ily variable.  Fix nextafterl on +-__LDBL_MAX__ and +-Inf.
6694         Remove unreachable code at the end.
6696 2007-06-01  Steven Munroe  <sjmunroe@us.ibm.com>
6698         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Correct description of
6699         ldbl-128ibm in comment.
6700         (fpclassifyl): Correct classification of denormals.
6701         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (nextafterl): Correct
6702         return value for MIN denormal. Rewrite using long double math too
6703         correctly handle denormals and canonicalize the results.
6705 2007-06-05  Jakub Jelinek  <jakub@redhat.com>
6707         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c
6708         (__mpn_construct_long_double): Fix conversion where result ought
6709         to be smaller than __LDBL_MIN__, or the low double should be
6710         denormal.  Fix decision where to negate low double - honor round
6711         to even rules.
6712         * stdio-common/tst-sprintf2.c: Include string.h.
6713         (COMPARE_LDBL): Define.
6714         (TEST): Also test whether a string hexadecimal float representation
6715         can be parsed back to the number.
6716         (main): Add a couple of further tests.
6718 2007-06-04  Jakub Jelinek  <jakub@redhat.com>
6720         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c
6721         (PRINT_FPHEX_LONG_DOUBLE): Fix printing numbers where lower double
6722         is non-zero, but smaller than 2 * __DBL_MIN__.
6723         * stdio-common/tst-sprintf2.c: New test.
6724         * stdio-common/Makefile (tests): Add tst-sprintf2.
6726         * math/test-misc.c (main): Don't run last batch of tests with
6727         IBM long double format.
6729 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
6731         * sysdeps/powerpc/powerpc32/970/fpu/Implies: New file.
6732         * sysdeps/powerpc/powerpc32/power5/fpu/Implies: New file.
6733         * sysdeps/powerpc/powerpc32/power5+/fpu/Implies: New file.
6734         * sysdeps/powerpc/powerpc32/power6/fpu/Implies: New file.
6735         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
6736         * sysdeps/powerpc/powerpc64/970/fpu/Implies: New file.
6737         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: New file.
6738         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: New file.
6739         * sysdeps/powerpc/powerpc64/power6/fpu/Implies: New file.
6740         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: New file.
6741         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/fpu/Implies: New file.
6742         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/fpu/Implies:
6743         New file.
6744         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/fpu/Implies:
6745         New file.
6746         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/fpu/Implies:
6747         New file.
6748         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/Implies:
6749         New file.
6750         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/fpu/Implies:
6751         New file.
6752         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/fpu/Implies: New file.
6753         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/fpu/Implies:
6754         New file.
6755         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/fpu/Implies:
6756         New file.
6757         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/fpu/Implies:
6758         New file.
6759         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/Implies:
6760         New file.
6761         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/fpu/Implies:
6762         New file.
6764 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
6766         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S: Move.
6767         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: To here.
6768         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrintf.S: Move.
6769         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: To here.
6770         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llround.S: Move.
6771         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: To here.
6772         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llroundf.S: Move.
6773         * sysdeps/powerpc/powerpc32/power4/fpu/s_llroundf.S: To here.
6775 2007-05-22  Steven Munroe  <sjmunroe@us.ibm.com>
6777         * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S
6778         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
6779         * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S
6780         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
6781         * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S
6782         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
6783         * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S
6784         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
6786 2007-05-21  Steven Munroe  <sjmunroe@us.ibm.com>
6788         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: New file.
6789         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.c: New file.
6790         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: New file.
6791         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: New file.
6793 2007-03-15  Steven Munroe  <sjmunroe@us.ibm.com>
6795         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S
6796         [LONG_DOUBLE_COMPAT]: Add compat_symbol for llrintl@@GLIBC_2_1.
6798 2006-02-13  Steven Munroe  <sjmunroe@us.ibm.com>
6800         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: New File
6801         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: New File
6802         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: New File
6803         * sysdeps/powerpc/powerpc32/power6/fpu/s_llroundf.S: New File
6805 2006-10-20  Steven Munroe  <sjmunroe@us.ibm.com>
6807         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: New file.
6808         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: New file.
6810 2006-10-03  Steven Munroe  <sjmunroe@us.ibm.com>
6812         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llround.S: New file.
6813         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llroundf.S: New file.
6815         * sysdeps/powerpc/powerpc32/powerpc64/fpu/Makefile: Moved.
6816         * sysdeps/powerpc/powerpc32/powerpc64/fpu/mpa.c: Likewise.
6817         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile: To here.
6818         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
6820 2006-09-29  Steven Munroe  <sjmunroe@us.ibm.com>
6822         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S: New file.
6823         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: New file.
6824         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: New file.
6825         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: New file.
6827 2006-09-28  Steven Munroe  <sjmunroe@us.ibm.com>
6829         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: New file.
6830         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llroundf.S: New file.
6831         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: New file.
6832         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
6833         * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: New file.
6834         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: New file.
6836 2006-08-31  Steven Munroe  <sjmunroe@us.ibm.com>
6838         * sysdeps/powerpc/powerpc32/powerpc64/fpu/Makefile: New file.
6839         * sysdeps/powerpc/powerpc32/powerpc64/fpu/mpa.c: New file.
6840         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile: New file.
6841         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: New file.
6843 2006-06-15  Steven Munroe  <sjmunroe@us.ibm.com>
6845         * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S: New file.
6846         * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S: New file.
6847         * sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S: New file.
6848         * sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S: New file.
6849         * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S: New file.
6850         * sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S: New file.
6851         * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S: New file.
6852         * sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S: New file.
6853         * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S: New file.
6854         * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S: New file.
6855         * sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S: New file.
6856         * sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S: New file.
6857         * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S: New file.
6858         * sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S: New file.
6859         * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S: New file.
6860         * sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S: New file.
6862 2006-03-20  Steven Munroe  <sjmunroe@us.ibm.com>
6864         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S: New file.
6865         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrintf.S: New file.
6867 2007-06-01  Steven Munroe  <sjmunroe@us.ibm.com>
6869         * sysdeps/powerpc/powerpc32/power6/memset.S: New file.
6870         * sysdeps/powerpc/powerpc64/power6/memset.S: New file.
6872 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
6874         * sysdeps/powerpc/powerpc32/970/Implies: New file.
6875         * sysdeps/powerpc/powerpc32/power5/Implies: New file.
6876         * sysdeps/powerpc/powerpc32/power5+/Implies: New file.
6877         * sysdeps/powerpc/powerpc32/power6/Implies: New file.
6878         * sysdeps/powerpc/powerpc32/power6x/Implies: New file.
6879         * sysdeps/powerpc/powerpc64/970/Implies: New file.
6880         * sysdeps/powerpc/powerpc64/power5/Implies: New file.
6881         * sysdeps/powerpc/powerpc64/power5+/Implies: New file.
6882         * sysdeps/powerpc/powerpc64/power6/Implies: New file.
6883         * sysdeps/powerpc/powerpc64/power6x/Implies: New file.
6885 2007-05-21  Steven Munroe  <sjmunroe@us.ibm.com>
6887         * sysdeps/powerpc/powerpc32/power4/memset.S: New file
6889 2007-03-13  Steven Munroe  <sjmunroe@us.ibm.com>
6891         * sysdeps/powerpc/powerpc64/memcpy.S: Improve aligned loop to minimize
6892         branch miss-predicts. Ensure that cache line crossing does not impact
6893         dispatch grouping.
6895 2006-12-13  Steven Munroe  <sjmunroe@us.ibm.com>
6897         * sysdeps/powerpc/powerpc64/power4/memcopy.h: Replace with include
6898         "../../powerpc32/power4/memcopy.h".
6899         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: Replace with include
6900         "../../powerpc32/power4/wordcopy.c".
6902 2006-10-03  Steven Munroe  <sjmunroe@us.ibm.com>
6904         * sysdeps/powerpc/powerpc32/powerpc64/Makefile: Moved.
6905         * sysdeps/powerpc/powerpc32/powerpc64/memcopy.h: Likewise.
6906         * sysdeps/powerpc/powerpc32/powerpc64/wordcopy.c: Likewise.
6907         * sysdeps/powerpc/powerpc32/power4/Makefile: To here.
6908         * sysdeps/powerpc/powerpc32/power4/memcopy.h: Likewise.
6909         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Likewise.
6911 2006-09-10  Steven Munroe  <sjmunroe@us.ibm.com>
6913         * sysdeps/powerpc/powerpc32/power6/memcpy.S: New file.
6915 2006-08-31  Steven Munroe  <sjmunroe@us.ibm.com>
6917         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: New file.
6918         * sysdeps/powerpc/powerpc32/powerpc64/Makefile: New file.
6919         * sysdeps/powerpc/powerpc32/powerpc64/memcopy.h: New file.
6920         * sysdeps/powerpc/powerpc32/powerpc64/wordcopy.c: New file.
6921         * sysdeps/powerpc/powerpc64/power4/Makefile: New file.
6922         * sysdeps/powerpc/powerpc64/power4/memcopy.h: New file.
6923         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: New file.
6924         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: New file.
6926 2006-07-06  Steven Munroe  <sjmunroe@us.ibm.com>
6928         * sysdeps/powerpc/powerpc64/power6/memcpy.S: New file.
6930 2006-03-20  Steven Munroe  <sjmunroe@us.ibm.com>
6932         * sysdeps/powerpc/powerpc32/power4/memcmp.S: New file.
6933         * sysdeps/powerpc/powerpc32/power4/memcpy.S: New file.
6934         * sysdeps/powerpc/powerpc32/power4/memset.S: New file.
6935         * sysdeps/powerpc/powerpc32/power4/strncmp.S: New file.
6936         * sysdeps/powerpc/powerpc64/power4/memcmp.S: New file.
6937         * sysdeps/powerpc/powerpc64/power4/memcpy.S: New file.
6938         * sysdeps/powerpc/powerpc64/power4/strncmp.S: New file.
6940 2007-05-29  Roland McGrath  <roland@redhat.com>
6942         * po/Makefile (po-sed-cmd): New variable.
6943         (libc.pot.files): Move sed command text in there, avoid \ inside ''.
6945 2007-05-29  Ulrich Drepper  <drepper@redhat.com>
6947         * crypt/md5-crypt.c: Fix comment.
6949         * nscd/nscd_helper.c (get_mapping): Handle short replies instead
6950         of crashing.  When this is the case or if the reply is malformed,
6951         don't try to close the new file descriptor since it does not
6952         exist.
6953         Patch in part by Guillaume Chazarain <guichaz@yahoo.fr>.
6955 2007-05-28  Jakub Jelinek  <jakub@redhat.com>
6957         * sysdeps/unix/sysv/linux/futimes.c (miss_utimensat): Don't define
6958         if __NR_utimensat is not defined.
6960 2007-05-26  Ulrich Drepper  <drepper@redhat.com>
6962         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Include <sysdep.h>.
6964 2007-05-25  Jakub Jelinek  <jakub@redhat.com>
6966         * io/bits/fcntl2.h (__open_2): Add nonnull attribute.
6967         (open): Fix comment typos.  Don't call __open_2 if flags
6968         is a compile time constant without O_CREAT.
6969         (__open64_2): Add nonnull attribute.
6970         (open64): Fix comment typos.  Don't call __open64_2 if flags
6971         is a compile time constant without O_CREAT.
6972         (__openat_2): Add nonnull attribute, fix nonnull attribute
6973         on redirect.
6974         (openat): Fix comment typos.  Don't call __openat_2 if flags
6975         is a compile time constant without O_CREAT.
6976         (__openat64_2): Add nonnull attribute, fix nonnull attribute
6977         on redirect.
6978         (openat64): Fix comment typos.  Don't call __openat64_2 if flags
6979         is a compile time constant without O_CREAT.
6981 2007-05-24  Ulrich Drepper  <drepper@redhat.com>
6983         * Makerules (sysd-rules): Define PTW for ptw-* files.
6984         * Versions: Define GLIBC_2.7 for libc.
6985         * include/stdio.h: Declare __fortify_fail.
6986         * debug/fortify_fail.c: New file.
6987         * debug/Makefile (routines): Add fortify_fail.
6988         * debug/chk_fail.c: Use __fortify_fail.
6989         * debug/stack_chk_fail.c: Likewise.
6990         * io/Versions: Export __open_2, __open64_2, __openat_2, and
6991         __openat64_2 for GLIBC_2.7.
6992         * io/fcntl.h: When compiling with fortification, include bits/fcntl2.h.
6993         * io/open.c: Define *_2 variant of function which checks for O_CREAT
6994         and fails if necessary.
6995         * io/open64.c: Likewise.
6996         * io/openat.c: Likewise.
6997         * io/openat64.c: Likewise.
6998         * sysdeps/unix/sysv/linux/open64.c: Likewise.
6999         * sysdeps/unix/sysv/linux/openat.c: Likewise.
7000         * sysdeps/unix/sysv/linux/openat64.c: Likewise.
7001         * io/bits/fcntl2.h: New file.
7002         * include/fcntl.h: Declare __open_2, __open64_2, __openat_2, and
7003         __openat64_2.
7004         * include/bits/fcntl2.h: New file.
7005         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
7006         Add open_2.
7007         * sysdeps/unix/sysv/linux/open_2.c: New file.
7009 2007-05-21  Ulrich Drepper  <drepper@redhat.com>
7011         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Pass correct value
7012         as second parameter to handle_intel.
7014         * nscd/aicache.c (addhstaiX): If reported TTL is zero don't cache
7015         the entry.
7017         * sysdeps/unix/sysv/linux/x86_64/sysconf.c: Move cache information
7018         handling to ...
7019         * sysdeps/x86_64/cacheinfo.c: ... here.  New file.
7020         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
7021         cacheinfo.
7022         * sysdeps/x86_64/memcpy.S: Complete rewrite.
7023         * sysdeps/x86_64/mempcpy.S: Adjust appropriately.
7024         Patch by Evandro Menezes <evandro.menezes@amd.com>.
7026         * sysdeps/unix/sysv/linux/i386/epoll_pwait.S: New file.
7028 2007-05-21  Jakub Jelinek  <jakub@redhat.com>
7030         [BZ #4525]
7031         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add epoll_pwait.
7032         * sysdeps/unix/sysv/linux/epoll_pwait.c: New file.
7033         * sysdeps/unix/sysv/linux/syscalls.list (epoll_pwait): Remove.
7035         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h (epoll_pwait): Declare.
7037         [BZ #4514]
7038         * stdio-common/vfprintf.c (vfprintf): Don't shadow workstart variable,
7039         reinitialize workend at the start of each do_positional format spec
7040         loop, free workstart before do_positional loops.
7041         (printf_unknown): Fix size of work_buffer.
7042         * stdio-common/tst-sprintf.c (main): Add 3 new testcases.
7044         * malloc/hooks.c (MALLOC_STATE_VERSION): Bump.
7045         (public_sET_STATe): If ms->version < 3, put all chunks into
7046         unsorted chunks and clear {fd,bk}_nextsize fields of largebin
7047         chunks.
7049         * malloc/malloc.c [MALLOC_DEBUG]: Revert 2007-05-13 changes.
7050         * malloc/hooks.c: Likewise.
7051         * malloc/arena.c: Likewise.
7052         * malloc/malloc.c (do_check_malloc_state): Don't assert
7053         n_mmaps is not greater than n_mmaps_max.  This removes the need
7054         for the previous change.
7056         * malloc/Makefile (CFLAGS-malloc.c): Revert accidental
7057         2007-05-07 commit.
7059 2007-05-19  Ulrich Drepper  <drepper@redhat.com>
7061         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PRIVATE_FUTEX):
7062         Define for kernel >= 2.6.22.
7064 2007-05-18  Ulrich Drepper  <drepper@redhat.com>
7066         * elf/dl-close.c (_dl_close_worker): When removing object from
7067         global scope, wait for all lookups to finish afterwards.
7068         * elf/dl-open.c (add_to_global): When global scope array must
7069         grow, allocate a new one and free old array only after all
7070         lookups finish.
7071         * elf/dl-runtime.c (_dl_fixup): Protect using global scope.
7072         (_dl_lookup_symbol_x): Likewise.
7073         * elf/dl-support.c: Define _dl_wait_lookup_done.
7074         * sysdeps/generic/ldsodefs.h (struct rtld_global): Add
7075         _dl_wait_lookup_done.
7077         * malloc/malloc.c (do_check_chunk): Correct check for mmaped block
7078         not overlapping with arena.
7080         * malloc/mcheck.c (reallochook): If size==0, free the block.
7082         * rt/tst-shm.c: Use fstat64 instead of fstat.
7084         * sysdeps/unix/sysv/linux/i386/sync_file_range.S: Fix case where
7085         __NR_sync_file_range is not defined.
7087 2007-05-17  Ulrich Drepper  <drepper@redhat.com>
7089         Dummy files to prevent stub versions from being used.
7090         * sysdeps/x86_64/fpu/k_cosl.c: New file.
7091         * sysdeps/x86_64/fpu/k_rem_pio2l.c: New file.
7092         * sysdeps/x86_64/fpu/k_sinl.c: New file.
7093         * sysdeps/x86_64/fpu/k_tanl.c: New file.
7095         * version.h (VERSION): Set to 2.6.90.
7097 2007-05-14  Ulrich Drepper  <drepper@redhat.com>
7099         * version.h (VERSION): Define to 2.6.
7100         * include/features.h (__GLIBC_MINOR__): Define to 6.
7102         * malloc/malloc.c: Use all small bin slots on 64-bit archs.
7104         * malloc/malloc.c (largebin_index): Really have 32 buckets with 64
7105         sizes.
7107 2007-05-13  Ulrich Drepper  <drepper@redhat.com>
7109         * malloc/malloc.c [MALLOC_DEBUG]: Keep track of current maximum
7110         number of mmaps.  n_mmaps_max is the target.
7111         * malloc/hooks.c: Likewise.
7112         * malloc/arena.c: Likewise.
7114 2007-05-12  Andreas Jaeger  <aj@suse.de>
7116         * sysdeps/unix/sysv/linux/tst-getcpu.c: Include <unistd.h> for
7117         getpid.
7119 2007-05-11  Ulrich Drepper  <drepper@redhat.com>
7121         * elf/dl-close.c (_dl_close_worker): Help gcc to optimize by
7122         adding new variables.
7124         * elf/dl-open.c (add_to_global): Introduce variable ns to help gcc
7125         optimize.  Completely extend global scope array before making the
7126         new entries visible.
7128 2007-05-10  Ulrich Drepper  <drepper@redhat.com>
7130         * sysdeps/unix/sysv/linux/tst-getcpu.c: New file.
7131         * sysdeps/unix/sysv/linux/Makefile [subdir=posix] (tests): Add
7132         tst-getcpu.
7134         * include/link.h: Move l_version and l_nversion members around to
7135         fill gaps.
7137         * scripts/check-c++-types.sh: Don't use -fnu89-inline option.
7139         * sysdeps/unix/sysv/linux/sched_setaffinity.c
7140         (__sched_setaffinity_new): If syscall was successful and
7141         RESET_VGETCPU_CACHE is defined, use it before returning.
7142         * sysdeps/unix/sysv/linux/x86_64/sched_setaffinity.c: New file.
7144         * io/sys/stat.h: Make sure struct timespec is defined for
7145         __USE_ATFILE.
7147         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Define UTIME_NOW and
7148         UTIME_OMIT.
7149         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
7150         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
7151         * sysdeps/unix/sysv/linux/alpha/bits/stat.h: Likewise.
7152         * sysdeps/unix/sysv/linux/ia64/bits/stat.h: Likewise.
7153         * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
7154         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
7155         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_UTIMENSAT.
7156         * io/sys/stat.h: Declare utimensat, futimens.
7157         * io/utimensat.c: New file.
7158         * io/futimens.c: New file.
7159         * sysdeps/unix/sysv/linux/utimensat.c: New file.
7160         * sysdeps/unix/sysv/linux/futimens.c: New file.
7161         * io/Makefile (routines): Add utimensat, futimens.
7162         * io/Versions: Add utimensat, futimens to GLIBC_2.6.
7163         * sysdeps/unix/sysv/linux/lutimes.c: New file.
7164         * sysdeps/unix/sysv/linux/futimes.c: Use utimensat syscall if
7165         available.
7167         * include/sys/cdefs.h: Redefine __nonnull so that test for
7168         incorrect parameters in the libc code itself are not omitted.
7170 2007-05-09  Jakub Jelinek  <jakub@redhat.com>
7172         * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow
7173         exception in addition to inexact when asked to raise only FE_INEXACT.
7175         [BZ #3427]
7176         * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Don't clear exceptions
7177         in *envp.
7179 2007-05-07  Ulrich Drepper  <drepper@redhat.com>
7181         [BZ #4403]
7182         * string/strfry.c (strfry): Make result more random.
7184 2007-05-07  Richard Henderson  <rth@redhat.com>
7186         * sysdeps/alpha/fpu/bits/mathinline.h (__isnanl): Don't define
7187         if __NO_LONG_DOUBLE_MATH.
7188         * sysdeps/unix/sysv/linux/alpha/ioperm.c: If BWX insns not
7189         available in the compiler, add .arch directive to the assembly.
7191 2007-05-07  Jakub Jelinek  <jakub@redhat.com>
7193         * sysdeps/alpha/fpu/s_nearbyint.c (nearbyintl): Fix version on
7194         compat_symbol to GLIBC_2_1.
7195         * sysdeps/alpha/fpu/s_fmin.S (fminl): Likewise.
7196         * sysdeps/alpha/fpu/s_trunc.c (truncl): Likewise.
7197         * sysdeps/alpha/fpu/s_fmax.S (fmaxl): Likewise.
7198         * sysdeps/alpha/fpu/s_lrint.c (lrintl, llrintl): Likewise.
7199         * sysdeps/alpha/fpu/s_lround.c (lroundl, llroundl): Likewise.
7200         * sysdeps/alpha/fpu/s_round.c (roundl): Likewise.
7201         * sysdeps/alpha/fpu/s_isnan.c (isnanl): Provide compat_symbol in
7202         libc, not libm.
7203         (__isnanl): New compat_symbol.
7205 2007-05-07  Ulrich Drepper  <drepper@redhat.com>
7206             Jakub Jelinek  <jakub@redhat.com>
7208         * malloc/arena.c (heap_info): Add mprotect_size field, adjust pad.
7209         (new_heap): Initialize mprotect_size.
7210         (grow_heap): When growing, only mprotect from mprotect_size till
7211         new_size if mprotect_size is smaller.  When shrinking, use PROT_NONE
7212         MMAP for __libc_enable_secure only, otherwise use MADV_DONTNEED.
7214 2007-04-30  Steven Munroe  <sjmunroe@us.ibm.com>
7215             Peter Bergner  <bergner@us.ibm.com>
7217         * sysdeps/powerpc/bits/fenv.h: Declare __fe_mask_env extern.
7218         Define FE_NOMASK_ENV as FE_EANBLED_ENV.  Define FE_MASK_ENV.
7219         * sysdeps/powerpc/fpu/Makefile: Add fe_mask to libm-support.
7220         * sysdeps/powerpc/fpu/fe_mask.c: New file.
7221         * sysdeps/powerpc/fpu/fe_nomask.c: Correct comment.
7222         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept):
7223         Call __fe_mask_env() if all FP exceptions disabled.
7224         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Copy high 32-bits
7225         from old FPSCR to new fenv to propagate DFP rounding modes.
7226         Call __fe_mask_env() if FP exceptions previously enabled.
7227         * sysdeps/powerpc/fpu/fesetenv.c (fesetenv): Change mask to merge
7228         exceptions from env.  Use __fe_nomask_env() or __fe_mask_env() when
7229         transitioning from all exceptions disabled to any exception enabled
7230         or visa versa.
7231         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Change mask to
7232         merge exceptions from env.  Call __fe_nomask_env or __fe_mask_env
7233         when transitioning from all exceptions disabled to any exception
7234         enabled or visa versa.
7235         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fe_nomask.c: Moved to...
7236         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: ...here.
7237         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c: Moved to...
7238         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: ...here.
7239         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c: New file.
7240         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c: New file.
7242 2007-05-06  Ulrich Drepper  <drepper@redhat.com>
7244         [BZ #4465]
7245         * posix/unistd.h: Remove __THROW from fdatasync.
7247 2007-05-06  Mike Frysinger  <vapier@gentoo.org>
7249         [BZ #4465]
7250         * sysdeps/unix/sysv/linux/syscalls.list (fdatasync): Add "C" to args.
7252 2007-05-06  Ulrich Drepper  <drepper@redhat.com>
7254         * stdio-common/vfprintf.c (process_string_arg): Optimize
7255         ridiculous precision in wide char code printing multi-byte string.
7256         Reported by Jim Meyering <jim@meyering.net>.
7258         [BZ #4131]
7259         * elf/dl-addr.c (_dl_addr): Compare address with actual segment
7260         boundaries to work around systems with overlapping binary loading.
7261         Based on a patch by Suzuki <suzuki@in.ibm.com>.
7263 2007-05-04  Ulrich Drepper  <drepper@redhat.com>
7265         * stdio-common/vfprintf.c (process_string_arg): Adjust call to
7266         __mbsnrtowcs after last change.
7268         * locale/programs/linereader.c (get_symname): Fix adding final NUL.
7269         (get_ident): Likewise.
7271 2007-05-03  Jakub Jelinek  <jakub@redhat.com>
7273         * soft-fp/op-common.h (FP_TRUNC): Replace raising of FP_EX_INEXACT
7274         with setting the sticky bit.
7275         * math/test-misc.c (main): Add more truncation tests.
7277 2007-04-14  Uros Bizjak  <ubizjak@gmail.com>
7279         * soft-fp/floatunsidf.c (__floatunsidf): Use DFtype instead of
7280         double in the function declaration.
7281         * soft-fp/floatundidf.c (__floatundidf): Use DFtype instead of
7282         double in the function declaration.
7283         * soft-fp/floatunsisf.c (__floatunsisf): Use SFtype instead of
7284         float in the function declaration.
7285         * soft-fp/floatunsisf.c (__floatunsisf): Use SFtype instead of
7286         float in the function declaration.
7288         * soft-fp/extended.h (FP_UNPACK_RAW_E): Do not increase X##_e for
7289         denormal operands.  Do not generate FP_EX_DENORM exception.
7290         (FP_UNPACK_RAW_EP): Ditto.
7291         (FP_UNPACK_SEMIRAW_E): Use FP_UNPACK_RAW_E instead of
7292         undefined _FP_UNPACK_RAW_E.
7293         (FP_UNPACK_SEMIRAW_EP): Use FP_UNPACK_RAW_EP instead of
7294         undefined _FP_UNPACK_RAW_EP.
7295         (FP_PACK_SEMIRAW_E): Use FP_PACK_RAW_E instead of
7296         undefined _FP_PACK_RAW_E.
7297         (FP_PACK_SEMIRAW_EP): Use FP_PACK_RAW_EP instead of
7298         undefined _FP_PACK_RAW_EP.
7300         * soft-fp/op-2.h (_FP_FRAC_COPY_2_2): Define as alias to
7301         _FP_FRAC_COPY_2.
7302         * soft-fp/op-4.h (_FP_FRAC_COPY_2_2): Define as alias to
7303         _FP_FRAC_COPY_4.
7305 2007-04-16  Uros Bizjak  <ubizjak@gmail.com>
7306             Jakub Jelinek  <jakub@redhat.com>
7308         * soft-fp/op-common.h (FP_EXTEND): Do not abort when
7309         _FP_EXPBIAS_##dfs == _FP_EXPBIAS_##sfs.  Handle denormals for
7310         this case.
7311         * soft-fp/op-common.h (FP_TRUNC): Ditto.
7313 2007-05-03  Jakub Jelinek  <jakub@redhat.com>
7315         * math/test-misc.c (main): Add tests for rounding long double
7316         values close to smallest double denormalized value to double.
7318 2007-04-30  Joseph Myers  <joseph@codesourcery.com>
7320         * soft-fp/op-common.h (FP_TRUNC): Correct off-by-one error in
7321         condition for truncating to 0.  Set sticky bit for such
7322         truncation.
7324 2007-05-02  Jakub Jelinek  <jakub@redhat.com>
7326         * stdio-common/vfprintf.c (process_string_arg): Use a VLA rather than
7327         fixed length array for ignore.
7329 2007-04-30  Ulrich Drepper  <drepper@redhat.com>
7331         [BZ #4438]
7332         * stdio-common/vfprintf.c (process_string_arg): Don't overflow the
7333         stack for large precisions.
7334         * stdio-common/test-vfprintf.c (main): Add test for large
7335         precision.
7337 2007-04-30  Jakub Jelinek  <jakub@redhat.com>
7339         * stdio-common/printf_fp.c (___printf_fp): Don't print negative sign
7340         for exponent 0.
7341         * stdio-common/tfformat.c (sprint_doubles): Add a new test.
7343         [BZ #4439]
7344         * resolv/inet_ntop.c (inet_ntop4): Take terminating '\0' into
7345         account in the size check.
7346         * resolv/tst-inet_ntop.c: New test.
7347         * resolv/Makefile (tests): Add tst-inet_ntop.
7349 2007-04-30  Ulrich Drepper  <drepper@redhat.com>
7350             Jakub Jelinek  <jakub@redhat.com>
7352         [BZ #4349]
7353         * malloc/malloc.c: Keep separate list for first blocks on the bin
7354         lists with a given size.  This helps skipping over list elements
7355         we know won't fit in two places.
7356         Inspired by a patch by Tomash Brechko <tomash.brechko@gmail.com>.
7358 2007-04-28  Ulrich Drepper  <drepper@redhat.com>
7360         [BZ #4102]
7361         * sysdeps/posix/getaddrinfo.c (default_labels): Assign separate
7362         label to Teredo tunnel addresses 2001://32.
7364 2007-04-27  Ulrich Drepper  <drepper@redhat.com>
7366         * locale/programs/ld-collate.c (collate_read): Allow order_start
7367         after copy.
7369         * locale/programs/ld-collate.c (collate_read): Fix printing of
7370         error message.
7372         [BZ #3213]
7373         * locale/C-translit.h.in: Add entry for U2044.
7375         [BZ #4342]
7376         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Allow
7377         hexa-decimal floats without exponent.
7378         * stdio-common/tstscanf.c (main): Adjust Test 8 test for success.
7380 2007-04-25  Ulrich Drepper  <drepper@redhat.com>
7382         * sysdeps/unix/sysv/linux/bits/sched.h: Declare sched_getcpu.
7383         * sysdeps/unix/sysv/linux/sched_getcpu.c: New file.
7384         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: New file.
7385         * sysdeps/unix/sysv/linux/Versions: Export sched_getcpu for
7386         GLIBC_2.6.
7387         * sysdeps/unix/sysv/linux/Makefile [subdir=posix] (sysdep_routines):
7388         Add sched_getcpu.
7390 2007-04-25  Jakub Jelinek  <jakub@redhat.com>
7392         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Return -1 instead
7393         of 0 after the out_fail label.
7395 2007-04-25  Ulrich Drepper  <drepper@redhat.com>
7397         [BZ #4406]
7398         * iconv/gconv_charset.h (strip): Allow ':'.
7399         * iconv/iconv_open.c (iconv_open): Adjust comment.
7401 2007-04-25  Jakub Jelinek  <jakub@redhat.com>
7403         * libio/bits/stdio.h (fgetc_unlocked): Add extern inline optimized
7404         version.
7406 2007-04-23  Jakub Jelinek  <jakub@redhat.com>
7408         [BZ #4381]
7409         * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Ensure sufficient
7410         alignment of buffer and tmp_buffer.
7411         * nis/nss_nis/nis-hosts.c (internal_nis_gethostent_r,
7412         internal_gethostbyname2_r, _nss_nis_gethostbyaddr_r): Ensure sufficient
7413         alignment of buffer.
7414         * resolv/nss_dns/dns-hosts.c (getanswer_r): Likewise.  Handle buflen
7415         bigger than INT_MAX.
7416         * resolv/nss_dns/dns-network.c (getanswer_r): Likewise.  Add errnop and
7417         h_errnop arguments.  Fail if buflen is too small.
7418         (_nss_dns_getnetbyname_r, _nss_dns_getnetbyaddr_r): Adjust callers.
7420 2007-04-23  Jakub Jelinek  <jakub@redhat.com>
7422         [BZ #4405]
7423         * iconvdata/gconv-modules (E13B): Add a missing slash to the alias
7424         name.  Patch by Aurelien Jarno <aurelien@aurel32.net>.
7426 2007-04-22  Roland McGrath  <roland@redhat.com>
7428         * elf/elf.h (NT_PRXFPREG): New macro.
7430 2007-04-19  Andreas Jaeger  <aj@suse.de>
7432         [BZ #3905]
7433         * bits/in.h (IPV6_ROUTER_ALERT, IPV6_MTU_DISCOVER, IPV6_MTU,
7434         IPV6_RECVERR, IPV6_V6ONLY, IPV6_JOIN_ANYCAST, IPV6_LEAVE_ANYCAST):
7435         Added.
7437 2007-04-19  Ulrich Drepper  <drepper@redhat.com>
7439         * include/sys/mman.h: Mark madvise hidden.
7440         * misc/madvise.c: Add libc_hidden_def.
7442 2007-04-06  Jakub Jelinek  <jakub@redhat.com>
7444         * nis/nis_domain_of.c (__nis_domain_of): New function.
7445         * include/rpcsvc/nislib.h (__nis_domain_of): New prototype.
7446         * nis/nis_lookup.c (nis_lookup): Use __nis_domain_of.
7447         * nis/nis_call.c (rec_dirsearch): Likewise.
7448         (first_shoot): Likewise.  Remove search_parent_first argument.
7449         (struct nis_server_cache): Rename search_parent_first field
7450         to search_parent.
7451         (nis_server_cache_search, nis_server_cache_add): Rename
7452         search_parent_first argument to search_parent.
7453         (__nisfind_server): Likewise.  If search_parent, call
7454         __nis_domain_of.
7456 2007-04-18  Ulrich Drepper  <drepper@redhat.com>
7458         * sysdeps/posix/getaddrinfo.c: Remove commented-out code.
7460 2007-04-17  Ulrich Drepper  <drepper@redhat.com>
7462         [BZ #4368]
7463         * stdlib/stdlib.h: Remove obsolete part of comment for realpath.
7465 2007-04-16  Ulrich Drepper  <drepper@redhat.com>
7467         [BZ #4364]
7468         * posix/unistd.h (_XOPEN_VERSION): Define appropriately for SUSv3.
7470 2007-04-15  Jakub Jelinek  <jakub@redhat.com>
7472         * locale/programs/locarchive.c (INITIAL_NUM_NAMES,
7473         INITIAL_SIZE_STRINGS, INITIAL_NUM_LOCREC): Update to accomodate
7474         current number of locales in SUPPORTED.
7475         (create_archive): Initialize serial.
7476         (enlarge_archive): Preserve aliases rather than duplicating
7477         their locrecs.
7479 2007-04-13  Jakub Jelinek  <jakub@redhat.com>
7481         * libio/genops.c (_IO_default_finish): Call _IO_lock_fini
7482         after _IO_un_link, not before it.
7484         * stdio-common/printf_fp.c (___printf_fp): Fix exponent -4
7485         special case handling when wcp == wstartp + 1.  Fix a comment typo.
7486         * stdio-common/tfformat.c (sprint_doubles): Add a new testcase.
7488 2007-03-30  Jakub Jelinek  <jakub@redhat.com>
7490         * libio/libio.h (__underflow, __uflow, __overflow, __wunderflow,
7491         __wuflow, __woverflow, _IO_getc, _IO_putc, _IO_peekc_locked, _IO_padn,
7492         _IO_sgetn, _IO_seekoff, _IO_seekpos, _IO_getwc, _IO_putwc, _IO_wpadn):
7493         Remove __THROW.
7494         * libio/fileops.c (new_do_write, _IO_file_xsgetn_mmap,
7495         _IO_file_xsgetn_maybe_mmap): Likewise.
7496         * libio/oldfileops.c (old_do_write): Likewise.
7497         * libio/libioP.h (_IO_switch_to_get_mode, _IO_switch_to_wget_mode,
7498         _IO_init_marker, _IO_init_wmarker, _IO_default_uflow,
7499         _IO_wdefault_uflow, _IO_default_setbuf, _IO_default_seekpos,
7500         _IO_do_write, _IO_new_do_write, _IO_old_do_write, _IO_wdo_write,
7501         _IO_flush_all_lockp, _IO_flush_all, _IO_cleanup,
7502         _IO_flush_all_linebuffered, _IO_new_fgetpos, _IO_old_fgetpos,
7503         _IO_new_fsetpos, _IO_old_fsetpos, _IO_new_fgetpos64,
7504         _IO_old_fgetpos64, _IO_new_fsetpos64, _IO_old_fsetpos64,
7505         _IO_file_setbuf, _IO_file_seekoff, _IO_file_xsputn, _IO_file_xsgetn,
7506         _IO_file_underflow, _IO_file_underflow_mmap,
7507         _IO_file_underflow_maybe_mmap, _IO_file_overflow, _IO_file_attach,
7508         _IO_file_open, _IO_file_fopen, _IO_file_write, _IO_file_read,
7509         _IO_file_sync, _IO_file_close_it, _IO_file_finish,
7510         _IO_new_file_attach, _IO_new_file_close_it, _IO_new_file_finish,
7511         _IO_new_file_fopen, _IO_new_file_setbuf, _IO_file_setbuf_mmap,
7512         _IO_new_file_sync, _IO_new_file_underflow, _IO_new_file_overflow,
7513         _IO_new_file_seekoff, _IO_new_file_write, _IO_new_file_xsputn,
7514         _IO_old_file_setbuf, _IO_old_file_seekoff, _IO_old_file_xsputn,
7515         _IO_old_file_underflow, _IO_old_file_overflow, _IO_old_file_attach,
7516         _IO_old_file_fopen, _IO_old_file_write, _IO_old_file_sync,
7517         _IO_old_file_close_it, _IO_old_file_finish, _IO_wfile_xsputn,
7518         _IO_wfile_setbuf, _IO_wfile_sync, _IO_wfile_underflow,
7519         _IO_wfile_overflow, _IO_wfile_seekoff, _IO_old_proc_open,
7520         _IO_old_proc_close, _IO_getdelim, _IO_flush_all_internal,
7521         _IO_adjust_column_internal, _IO_default_uflow_internal,
7522         _IO_default_xsgetn_internal, _IO_wdefault_xsputn_internal,
7523         _IO_wdefault_xsgetn_internal, _IO_wdefault_uflow_internal,
7524         _IO_file_setbuf_internal, _IO_file_seekoff_internal,
7525         _IO_file_xsputn_internal, _IO_file_xsgetn_internal,
7526         _IO_file_close_it_internal, _IO_file_underflow_internal,
7527         _IO_file_overflow_internal, _IO_file_attach_internal,
7528         _IO_file_fopen_internal, _IO_file_sync_internal,
7529         _IO_file_finish_internal, _IO_wfile_xsputn_internal,
7530         _IO_wfile_seekoff_internal, _IO_wfile_sync_internal,
7531         _IO_switch_to_wget_mode_internal, _IO_padn_internal,
7532         _IO_switch_to_get_mode_internal, _IO_seekoff_unlocked,
7533         _IO_seekpos_unlocked): Likewise.
7534         (_IO_strtod, _IO_dtoa, _IO_outfloat, _IO_read, _IO_write,
7535         _IO_lseek, _IO_close, _IO_fstat): Remove unused prototypes.
7537 2007-04-16  Jakub Jelinek  <jakub@redhat.com>
7539         * locale/programs/locarchive.c (show_archive_content): Fix sizeof
7540         argument in xmalloc size computation.
7542 2007-04-01  Jakub Jelinek  <jakub@redhat.com>
7544         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Use
7545         math_opt_barrier and math_force_eval macros.
7547 2007-03-27  Jakub Jelinek  <jakub@redhat.com>
7549         [BZ #3306]
7550         * math/math_private.h (math_opt_barrier, math_force_eval): Define.
7551         * sysdeps/i386/fpu/math_private.h: New file.
7552         * sysdeps/x86_64/fpu/math_private.h: New file.
7553         * math/s_nexttowardf.c (__nexttowardf): Use math_opt_barrier and
7554         math_force_eval macros.  Use "+m" constraint on asm rather than
7555         "=m" and "m".
7556         * math/s_nextafter.c (__nextafter): Likewise.
7557         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward):
7558         Likewise.
7559         * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
7560         * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward): Likewise.
7561         * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
7562         * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Use
7563         math_opt_barrier and math_force_eval macros.
7564         * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl): Likewise.
7565         * sysdeps/ieee754/ldbl-96/s_nextafterl.c (__nextafterl): Likewise.
7566         * sysdeps/i386/fpu/s_nexttoward.c: Include float.h.
7567         (__nexttoward): Use math_opt_barrier and
7568         math_force_eval macros.  Use "+m" constraint on asm rather than
7569         "=m" and "m".  Only use asm to force double result if
7570         FLT_EVAL_METHOD is 2.
7571         * sysdeps/i386/fpu/s_nexttowardf.c: Include float.h.
7572         (__nexttowardf): Use math_opt_barrier and
7573         math_force_eval macros.  Use "+m" constraint on asm rather than
7574         "=m" and "m".  Only use asm to force double result if
7575         FLT_EVAL_METHOD is not 0.
7576         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Include float.h.
7577         (__nexttowardf): Use math_opt_barrier and
7578         math_force_eval macros.  If FLT_EVAL_METHOD is not 0, force
7579         x to float using asm.
7580         * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c: Include float.h.
7581         (__nldbl_nexttowardf): Use math_opt_barrier and
7582         math_force_eval macros.  If FLT_EVAL_METHOD is not 0, force
7583         x to float using asm.
7584         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Include float.h.
7585         (__nexttowardf): Use math_opt_barrier and math_force_eval
7586         macros.  If FLT_EVAL_METHOD is not 0, force x to float using asm.
7587         * math/bug-nextafter.c (zero, inf): New variables.
7588         (main): Add new tests.
7589         * math/bug-nexttoward.c (zero, inf): New variables.
7590         (main): Add new tests.
7592 2007-03-22  Jakub Jelinek  <jakub@redhat.com>
7594         [BZ #3427]
7595         * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Clear all
7596         exceptions both in SW and MXCSR.
7597         * sysdeps/x86_64/fpu/feupdateenv.c: New file.
7598         * sysdeps/x86_64/fpu/feenablxcpt.c (feenableexcept): Remove dead code.
7599         * sysdeps/x86_64/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
7600         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
7601         in MXCSR if SSE is available.
7602         * sysdeps/i386/fpu/feupdateenv.c: Include unistd.h, dl-procinfo.h
7603         and ldsodefs.h.
7604         (__feupdateenv): Query exceptions also from MXCSR if SSE is available.
7605         Fix comment typo.
7606         * sysdeps/ia64/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions.
7607         Return 0 rather than 1.
7608         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Fix comment typo.
7609         Remove incorrect part of a comment.  Fix argument to feraiseexcept.
7610         * math/test-fenv.c (feholdexcept_tests): New function.
7611         (main): Call it.
7613 2007-01-05  Richard B. Kreckel  <kreckel@ginac.de>
7615         [BZ #3427]
7616         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
7617         in SW.
7619 2007-04-13  Jakub Jelinek  <jakub@redhat.com>
7621         [BZ #4344]
7622         * elf/ldconfig.c (search_dir): Fix 2 off-by-2 errors.
7623         Reported by David Anderson <davea42@earthlink.net>.
7625 2007-04-07  Ulrich Drepper  <drepper@redhat.com>
7627         * posix/sys/wait.h: Remove unnecessary forward declaration.
7629 2007-04-05  Jakub Jelinek  <jakub@redhat.com>
7631         * nis/nis_call.c (__nisfind_server): Replace (*dir)->do_servers
7632         with obj->do_servers after first_shoot.
7634 2007-04-03  Ulrich Drepper  <drepper@redhat.com>
7636         * posix/Makefile (routines): Add sched_cpucount.
7637         (tests): Add tst-cpucount.
7638         * posix/sched_cpucount.c: New file.
7639         * posix/tst-cpucount.c: New file.
7640         * posix/Versions: Export __sched_cpucount with version GLIBC_2.6.
7641         * bits/sched.h: Define __CPU_COUNT.  Declare __sched_cpucount.
7642         * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
7643         * posix/sched.h: Define CPU_COUNT.
7645 2007-03-27  Jakub Jelinek  <jakub@redhat.com>
7647         * posix/fnmatch.c (STRUCT): Define.
7648         (fnmatch): Pass NULL as last argument to internal_fn{,w}match.
7649         * posix/fnmatch_loop.c (struct STRUCT): New type.
7650         (FCT): Add ends argument.  If ends != NULL and normal * is
7651         seen in the pattern, store current pattern and string pointers
7652         and return.  Adjust recursive calls.
7653         (EXT): Adjust FCT callers.
7654         (STRUCT): Undef at the end of the file.
7655         * posix/Makefile (tests): Add tst-fnmatch2.
7656         * posix/tst-fnmatch2.c: New test.
7658 2007-04-01  Jakub Jelinek  <jakub@redhat.com>
7660         * sysdeps/ia64/fpu/fesetround.c (fesetround): Return 0 on success
7661         and 1 on failure.
7663         * sysdeps/unix/sysv/linux/sync_file_range.c (sync_file_range):
7664         Change last argument to unsigned int.
7666 2007-03-23  Jakub Jelinek  <jakub@redhat.com>
7668         * scripts/check-local-headers.sh: Filter out sys/capability.h.
7670 2007-03-22  Jakub Jelinek  <jakub@redhat.com>
7672         * config.h.in (HAVE_LIBCAP): Add.
7673         * nscd/selinux.h: Include sys/capability.h rather than non-existent
7674         sys/capabilities.h.
7675         * nscd/selinux.c (preserve_capabilities): Use cap_free instead of
7676         free_caps.  Cast away const from 4th cap_set_flag argument.
7678 2007-03-26  Ulrich Drepper  <drepper@redhat.com>
7680         * sysdeps/unix/sysv/linux/Versions: Move sync_file_range to
7681         GLIBC_2.6.
7682         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
7683         Add sync_file_range.
7684         Reported by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
7686 2007-03-19  Steven Munroe  <sjmunroe@us.ibm.com>
7688         * sysdeps/powerpc/bits/atomic.h
7689         [!MUTEX_HINT_ACQ]: Define MUTEX_HINT_ACQ.
7690         [!MUTEX_HINT_REL]: Define MUTEX_HINT_REL.
7691         (__arch_compare_and_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
7692         (__arch_compare_and_exchange_val_32_rel): Add MUTEX_HINT_REL to lwarx.
7693         (__arch_atomic_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
7694         (__arch_atomic_exchange_rel_32_rel): Add MUTEX_HINT_REL to lwarx.
7695         * sysdeps/powerpc/powerpc32/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6X]:
7696         Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
7697         (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
7698         (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
7699         * sysdeps/powerpc/powerpc64/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6D]:
7700         Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
7701         (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
7702         (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
7703         (__arch_compare_and_exchange_bool_64_acq): Add MUTEX_HINT_ACQ to lwarx.
7704         (__arch_compare_and_exchange_bool_64_rel): Add MUTEX_HINT_REL to lwarx.
7705         (__arch_compare_and_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
7706         (__arch_compare_and_exchange_val_64_rel): Add MUTEX_HINT_REL to lwarx.
7707         (__arch_atomic_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
7708         (__arch_atomic_exchange_rel_64_rel): Add MUTEX_HINT_REL to lwarx.
7710 2007-03-20  Jakub Jelinek  <jakub@redhat.com>
7712         * sysdeps/unix/sysv/linux/powerpc/libc-start.c
7713         (__cache_line_size): Define the variable here.  Add
7714         attribute_hidden, remove weak_extern.
7715         (__libc_start_main): Set __cache_line_size
7716         unconditionally.
7717         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
7718         (__cache_line_size): Define the variable here.  Add
7719         attribute_hidden, remove weak_extern.
7720         (DL_PLATFORM_AUXV): Set __cache_line_size
7721         unconditionally.
7722         * sysdeps/powerpc/powerpc32/dl-machine.c (__cache_line_size): Remove
7723         weak_extern, add attribute_hidden.
7724         (__elf_machine_runtime_setup): Assume __cache_line_size is always
7725         defined in ld.so.
7726         * sysdeps/powerpc/powerpc32/memset.S (__cache_line_size): Remove
7727         definition.
7728         * sysdeps/powerpc/powerpc64/memset.S (__cache_line_size): Likewise.
7730 2007-03-26  Jakub Jelinek  <jakub@redhat.com>
7732         [BZ #4276]
7733         * timezone/africa: Update from tzdata2007d.
7734         * timezone/asia: Likewise.
7735         * timezone/australasia: Likewise.
7736         * timezone/backward: Likewise.
7737         * timezone/europe: Likewise.
7738         * timezone/iso3166.tab: Likewise.
7739         * timezone/leapseconds: Likewise.
7740         * timezone/northamerica: Likewise.
7741         * timezone/southamerica: Likewise.
7742         * timezone/zone.tab: Likewise.
7744         * timezone/private.h: Update from tzcode2007d.
7745         * timezone/zdump.c: Likewise.
7746         * timezone/zic.c: Likewise.
7748 2007-03-21  Jakub Jelinek  <jakub@redhat.com>
7750         * nis/nis_call.c: Include bits/libc-lock.h, sys/stat.h, unistd.h.
7751         (nis_server_cache, nis_server_cache_lock, nis_cold_start_mtime): New
7752         variables.
7753         (nis_server_cache_search, nis_server_cache_add): New functions.
7754         (__nisfind_server): Use them.  Add dbp and flags argument, if
7755         call __nisbind_create.
7756         (__nisbind_create): Add server_used and current_ep arguments,
7757         only call __nis_findfastest if server_used is ~0.
7758         (__do_niscall2, __prepare_niscall): Adjust callers.
7759         (ckey_cache, ckey_cache_size, ckey_cache_allocated, ckey_cache_pid,
7760         ckey_cache_euid, ckey_cache_lock): New variables.
7761         (get_ckey): New function.
7762         (__nisbind_connect): If not dbp->use_udp, pass IPPROTO_TCP to
7763         __pmap_getnisport.  Save __pmap_getnisport result in
7764         dbp->addr.sin_port if non-zero.  Use get_ckey to create conversation
7765         key.
7766         * nis/nis_lookup.c (nis_lookup): Likewise.
7767         * nis/nis_table.c (nis_list): Likewise.
7768         * nis/rpcsvc/nislib.h (__nisbind_create, __nisfind_server): Adjust
7769         prototypes.
7771         * nis/nss_nisplus/nisplus-pwd.c (_nss_nisplus_getpwnam_r,
7772         _nss_nisplus_getpwuid_r): Pass USE_DGRAM flag to nis_list.
7773         * nis/nss_nisplus/nisplus-service.c (_nss_nisplus_getservbyname_r,
7774         _nss_nisplus_getservbyport_r): Likewise.
7775         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r,
7776         _nss_nisplus_getnetbyaddr_r): Likewise.
7777         * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_getspnam_r): Likewise.
7778         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r,
7779         _nss_nisplus_getntohost_r): Likewise.
7780         * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r,
7781         _nss_nisplus_getrpcbynumber_r): Likewise.
7783 2007-03-20  Jakub Jelinek  <jakub@redhat.com>
7785         * configure.in (libc_cv_gnu89_inline): Only do compile test.
7786         * configure: Rebuilt.
7788         * soft-fp/double.h (_FP_UNION_D): Use _FP_W_TYPE for frac
7789         bit-fields.
7790         * soft-fp/extended.h (_FP_UNION_E): Likewise.
7792 2006-06-07  Joseph Myers  <joseph@codesourcery.com>
7794         [BZ #2831]
7795         * soft-fp/quad.h (_FP_UNION_Q): Use _FP_W_TYPE for frac
7796         bit-fields.
7798 2007-03-18  Jakub Jelinek  <jakub@redhat.com>
7800         * nscd/gai.c: Include alloca.h.
7801         (__libc_use_alloca): Define.
7803 2007-03-16  Jakub Jelinek  <jakub@redhat.com>
7805         * elf/dl-open.c (dl_open_worker): Declare l in 2 different
7806         smaller scopes.
7807         * elf/dl-dst.h (DL_DST_REQ_STATIC): Add l as macro argument.
7808         (DL_DST_REQUIRED): Adjust user.
7810         * include/dlfcn.h (struct link_map): New forward decl.
7812         * inet/getnameinfo.c: Include stddef.h.
7813         (getnameinfo): Use offsetof.
7815         * time/tst-mktime2.c (do_test): Don't rely on signed wrap.
7817         * stdio-common/vfprintf.c (_itoa): Undef before redefining.
7819         * string/strerror_l.c: Include stdlib.h.
7821         * configure.in (libc_cv_gnu89_inline): Test for -fgnu89-inline.
7822         * config.make.in (gnu89-inline-CFLAGS): New variable.
7823         * Makeconfig (CFLAGS): Use $(gnu89-inline-CFLAGS) together with
7824         -std=gnu99.
7825         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline): Define.
7826         * argp/argp.h: Use it.
7827         * bits/mathinline.h: Likewise.
7828         * bits/sigset.h: Likewise.
7829         * bits/string.h: Likewise.
7830         * ctype/ctype.h: Likewise.
7831         * hurd/hurd.h: Likewise.
7832         * hurd/hurd/fd.h: Likewise.
7833         * hurd/hurd/port.h: Likewise.
7834         * hurd/hurd/signal.h: Likewise.
7835         * hurd/hurd/threadvar.h: Likewise.
7836         * hurd/hurd/userlink.h: Likewise.
7837         * io/sys/stat.h: Likewise.
7838         * libio/bits/stdio.h: Likewise.
7839         * libio/bits/stdio2.h: Likewise.
7840         * mach/lock-intern.h: Likewise.
7841         * mach/mach/mig_support.h: Likewise.
7842         * math/bits/cmathcalls.h: Likewise.
7843         * posix/bits/unistd.h: Likewise.
7844         * socket/bits/socket2.h: Likewise.
7845         * stdlib/bits/stdlib.h: Likewise.
7846         * stdlib/stdlib.h: Likewise.
7847         * string/argz.h: Likewise.
7848         * string/bits/string2.h: Likewise.
7849         * string/bits/string3.h: Likewise.
7850         * sysdeps/alpha/fpu/bits/mathinline.h: Likewise.
7851         * sysdeps/generic/inttypes.h: Likewise.
7852         * sysdeps/generic/machine-lock.h: Likewise.
7853         * sysdeps/generic/machine-sp.h: Likewise.
7854         * sysdeps/i386/fpu/bits/mathinline.h: Likewise.
7855         * sysdeps/i386/i486/bits/string.h: Likewise.
7856         * sysdeps/ia64/fpu/bits/mathinline.h: Likewise.
7857         * sysdeps/mach/alpha/machine-lock.h: Likewise.
7858         * sysdeps/mach/alpha/machine-sp.h: Likewise.
7859         * sysdeps/mach/i386/machine-lock.h: Likewise.
7860         * sysdeps/mach/powerpc/machine-lock.h: Likewise.
7861         * sysdeps/mach/powerpc/machine-sp.h: Likewise.
7862         * sysdeps/powerpc/fpu/bits/mathinline.h: Likewise.
7863         * sysdeps/s390/bits/string.h: Likewise.
7864         * sysdeps/s390/fpu/bits/mathinline.h: Likewise.
7865         * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
7866         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
7867         * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
7868         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
7869         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Likewise.
7870         * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
7871         * wcsmbs/bits/wchar2.h: Likewise.
7872         * wcsmbs/wchar.h: Likewise.
7873         * stdlib/gmp.h: Likewise.  Include <features.h> to get
7874         __extern_inline definition.
7876 2007-03-15  Jakub Jelinek  <jakub@redhat.com>
7878         * locale/programs/ld-ctype.c (find_translit): Return NULL if ctype is
7879         NULL.
7881         [BZ #3919]
7882         * math/libm-test.inc (log_test): Test -Inf and NaN.
7883         (log10_test, log1p_test, log2_test): Test -Inf.
7884         * sysdeps/i386/fpu/e_log.S (__ieee754_log): Don't raise
7885         FE_INVALID when argument is qNaN.
7886         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
7887         * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
7888         * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
7889         * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Replace
7890         andb $1, %ah with testb $1, %ah, don't test for parity, instead
7891         testb $4, %ah and jump if non-zero.
7892         * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Likewise.
7893         * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Likewise.
7895         [BZ #4101]
7896         * argp/argp-help.c (hol_cluster_cmp): Fix comparisons used to find
7897         ancestors with the same depths.
7898         Patch by Niels Moeller <nisse@lysator.liu.se>.
7899         (filter_doc): Don't crash if argp is NULL.
7900         * argp/Makefile (tests): Add tst-argp2.
7901         * argp/tst-argp2.c: New test.
7903         [BZ #4130]
7904         * login/utmp_file.c (setutent_file): Use O_LARGEFILE for
7905         open_not_cancel_2.
7906         (updwtmp_file): Likewise.
7908         [BZ #4181]
7909         * inet/inet6_opt.c (add_padding): Only insert padding if npad > 0.
7910         (inet6_opt_append): Don't check extlen is big enough if extbuf
7911         is NULL.
7912         (inet6_opt_finish): Likewise.
7913         * inet/Makefile (tests): Add test-inet6_opt.
7914         * inet/test-inet6_opt.c: New test.
7916         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Never
7917         reallocate the buffer, instead fail for MSG_TRUNC or for EBUSY
7918         NLMSG_ERR.  Instead use a page sized buffer.
7919         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use page sized
7920         buffer.
7922 2007-03-14  Richard Henderson  <rth@redhat.com>
7924         * sysdeps/alpha/fpu/s_llround.c: New file.
7925         * sysdeps/alpha/fpu/s_llroundf.c: New file.
7926         * sysdeps/alpha/fpu/s_lround.c: New file.
7927         * sysdeps/alpha/fpu/s_lroundf.c: New file.
7928         * sysdeps/alpha/fpu/s_round.c: New file.
7929         * sysdeps/alpha/fpu/s_roundf.c: New file.
7930         * sysdeps/alpha/fpu/s_trunc.c: New file.
7931         * sysdeps/alpha/fpu/s_truncf.c: New file.
7933         * sysdeps/alpha/fpu/s_ceil.c: Rewrite without branches.
7934         * sysdeps/alpha/fpu/s_ceilf.c: Likewise.
7935         * sysdeps/alpha/fpu/s_floor.c: Likewise.
7936         * sysdeps/alpha/fpu/s_floorf.c: Likewise.
7937         * sysdeps/alpha/fpu/s_rint.c: Likewise.
7938         * sysdeps/alpha/fpu/s_rintf.c: Likewise.
7940         * sysdeps/alpha/fpu/s_fmax.S: New file.
7941         * sysdeps/alpha/fpu/s_fmaxf.S: New file.
7942         * sysdeps/alpha/fpu/s_fmin.S: New file.
7943         * sysdeps/alpha/fpu/s_fminf.S: New file.
7944         * sysdeps/alpha/fpu/s_isnan.c: New file.
7945         * sysdeps/alpha/fpu/s_isnanf.c: New file.
7946         * sysdeps/alpha/fpu/s_llrint.c: New file.
7947         * sysdeps/alpha/fpu/s_llrintf.c: New file.
7948         * sysdeps/alpha/fpu/s_lrint.c: New file.
7949         * sysdeps/alpha/fpu/s_lrintf.c: New file.
7950         * sysdeps/alpha/fpu/s_nearbyint.c: New file.
7951         * sysdeps/alpha/fpu/s_nearbyintf.c: New file.
7953         * sysdeps/alpha/fpu/bits/mathinline.h (__floorf, __floor): Remove.
7954         (__fdimf, fdimf, __fdim, fdim): Remove.
7955         (__signbitf, __signbit, __signbitl): Use gcc builtin if available.
7956         (__isnanf, __isnan, __isnanl): New.
7958 2007-03-13  Richard Henderson  <rth@redhat.com>
7960         * sysdeps/ieee754/ldbl-128/Makefile: New file.
7962 2007-03-13  Richard Henderson  <rth@redhat.com>
7964         * sysdeps/alpha/Makefile (sysdep-CFLAGS): Force dynamic rounding.
7965         * sysdeps/alpha/fpu/bits/mathinline.h (__signbitl): New.
7966         * sysdeps/alpha/fpu/libm-test-ulps: Regenerate.
7967         * sysdeps/unix/sysv/linux/alpha/alphaev6/fpu/Implies: New file.
7968         * sysdeps/unix/sysv/linux/alpha/alphaev67/fpu/Implies: New file.
7969         * sysdeps/unix/sysv/linux/alpha/fpu/Implies: New file.
7971 2007-03-13  Richard Henderson  <rth@redhat.com>
7973         * elf/dl-support.c (_dl_aux_init): Honor DL_PLATFORM_AUXV.
7974         * sysdeps/unix/sysv/linux/alpha/dl-auxv.h: New file.
7975         * sysdeps/unix/sysv/linux/alpha/dl-support.c: New file.
7976         * sysdeps/unix/sysv/linux/alpha/dl-sysdep.c (__libc_alpha_cache_shape):
7977         Move to dl-auxv.h; initialize instead of extern weak.
7978         (DL_PLATFORM_AUXV): Move to dl-auxv.h; don't test for undef
7979         weak symbol.
7980         * sysdeps/unix/sysv/linux/alpha/sysconf.c (__libc_alpha_cache_shape):
7981         Extern instead of initialized.
7983 2007-03-13  Richard Henderson  <rth@redhat.com>
7985         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S: Add support for
7986         __sigsuspend_nocancel.
7988 2007-03-06  Ulrich Drepper  <drepper@redhat.com>
7990         * sysdeps/posix/getaddrinfo.c (get_scope): Correct test for
7991         172.16/12 address range.
7993 2007-03-02  Jakub Jelinek  <jakub@redhat.com>
7995         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Retry with
7996         a new netlink socket if NLMSG_ERR -EBUSY is seen after some MSG_TRUNC
7997         message.
7999 2007-03-01  Jakub Jelinek  <jakub@redhat.com>
8001         [BZ #4069]
8002         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Check for NaN
8003         earlier.
8004         * math/libm-test.inc (pow_test): Add more tests involving NaNs.
8006         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Avoid invalid exception
8007         for x qNaN and y either +-inf or non-integer value.
8008         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Likewise.
8009         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
8010         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
8012 2007-02-10  Mike Frysinger  <vapier@gentoo.org>
8014         * sysdeps/unix/sysv/linux/sh/Makefile: Remove sys/io.h
8015         from sysdep_headers.
8017 2007-02-28  Jakub Jelinek  <jakub@redhat.com>
8019         * time/tzfile.c (find_transition): Instead of a linear search try to
8020         guess the transition index, use a linear search if the result is at
8021         most 10 transitions away from the guess or binary search otherwise.
8023 2007-02-27  Jakub Jelinek  <jakub@redhat.com>
8025         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Fix
8026         memory reallocation.
8028 2007-02-21  Ulrich Drepper  <drepper@redhat.com>
8030         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Add branch predictions
8031         and fix some typos.
8032         Optimize use of TOLOWER.
8034         [BZ #3325]
8035         * sysdeps/i386/fpu/e_fmodf.S: Revert last changes, keep using fprem.
8036         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
8037         * sysdeps/i386/fpu/e_fmod.S: Likewise.
8039         [BZ #3458]
8040         * sysdeps/unix/sysv/linux/posix_madvise.c: New file.
8041         * sysdeps/unix/sysv/linux/syscalls.list: Remove posix_madvise entry.
8043         [BZ #4076]
8044         * io/ftw.c (ftw_startup): Handle special case of FTW_CHDIR in /.
8045         (open_dir_stream): Likewise.
8046         * io/Makefile (tests): Add bug-ftw5.
8047         * io/bug-ftw5.c: New file.
8049         * nscd/hstcache.c (cache_addhst): Remove unnecessary conditional.
8050         * nscd/servicescache.c (cache_addserv): Likewise.
8052         * nscd/grpcache.c (cache_addgr): In case a record changed on
8053         refresh, adjust key_copy.
8055         [BZ #4074]
8056         * nscd/pwdcache.c (cache_addpw): In case a record changed on
8057         refresh, adjust key_copy.
8059         [BZ #4070]
8060         * stdio-common/printf_fp.c (___printf_fp): Handle a few more
8061         special cases.
8062         * stdio-common/tfformat.c (sprint_doubles): Some more tests.
8064 2007-02-19  Ulrich Drepper  <drepper@redhat.com>
8066         * stdio-common/printf_fp.c (___printf_fp): Cleanups and minor
8067         optimization.
8069         * stdio-common/vfscanf.c: Small cleanups throughout.
8071 2007-02-18  Ulrich Drepper  <drepper@redhat.com>
8073         [BZ #3325]
8074         * sysdeps/i386/fpu/e_fmodf.S: Use fprem1 instead of fprem.
8075         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
8076         * sysdeps/i386/fpu/e_fmod.S: Likewise.
8077         Patch by Jared Casper <jaredcasper@gmail.com>.
8079         * sysdeps/unix/closedir.c: Outside libc don't use locking.
8080         * sysdeps/unix/opendir.c: Likewise.
8081         * sysdeps/unix/readdir.c: Likewise.
8083         [BZ #2211]
8084         * stdio-common/vfscanf.c: Handle localized digits etc for floating
8085         point numbers.
8086         Patch mostly by Hamed Malek <hamed@farsiweb.info>.
8088         * stdio-common/vfscanf.c: Fix problems in width accounting.
8089         * stdio-common/tst-sscanf.c (double_tests): New tests.
8090         (main): Hook them up.
8092         * stdio-common/vfscanf.c: Remove unused WIDTH handling.
8093         More simplifications of floating-point reader.
8095         * stdio-common/Makefile (tests): Add tst-swscanf.
8096         * stdio-common/tst-sscanf.c: Make tests usable for swscanf
8097         testing.
8098         * stdio-common/tst-swscanf.c: New file.
8100 2007-02-17  Ulrich Drepper  <drepper@redhat.com>
8102         [BZ #2633]
8103         * libio/stdio.h: Define struct _IO_FILE in global namespace.
8104         * setjmp/setjmp.h: Define __jmp_buf_tag in global namespace.
8105         Remove using for __jmp_buf_tag.
8106         * locale/locale.h (struct lconv): Also define in std namespace.
8107         * wcsmbs/wchar.h: Move using declaration for tm out of namespace.
8109         [BZ #3842]
8110         * sysdeps/posix/euidaccess.c [_LIBC] (euidaccess): Remove shortcut
8111         using __libc_enable_secure.
8113         [BZ #3818]
8114         * sysdeps/unix/sysv/linux/sys/acct.h (struct acct_v3): Define.
8116         [BZ #3745]
8117         * locale/programs/ld-collate.c (handle_ellipsis): Fix generation
8118         of names for ellipsises.
8120         [BZ #3348]
8121         * malloc/memusage.sh: Cleanups.
8122         * debug/xtrace.sh: Quoting and trap changes.
8124 2007-02-16  Ulrich Drepper  <drepper@redhat.com>
8126         * locale/iso-3166.def: Add Jersey, Guernsey, and Isle Of Man entries.
8128         * locale/iso-3166.def: Update entry for Serbia.
8129         * locale/iso-4217.def: Define RSD, remove CSD.
8131         * sysdeps/x86_64/bits/atomic.h: One more change, this time for 16-
8132         and 64-bit operations.
8134         [BZ #4040]
8135         * sysdeps/i386/i486/bits/atomic.h: One more change, this time for
8136         16-bit operations.
8138         * nscd/nscd.c (parse_opt): One more conversion to use send instead
8139         of writev.
8141 2007-02-15  Ulrich Drepper  <drepper@redhat.com>
8143         [BZ #3991]
8144         * assert/assert.h (assert): Simplify.
8145         (assert_perror): Likewise.
8146         Patch by Israel G. Lugo <ilugo@bridonsecurity.com>.
8148         * nscd/nscd_helper.c (open_socket): Don't send padding bytes from
8149         reqdata.
8151         * sysdeps/unix/sysv/linux/x86_64/send.c (__libc_send): Cosmetic
8152         change: don't pass NULL in place of an integer.
8154 2007-02-02  Bruno Haible  <bruno@clisp.org>
8156         [BZ #3954]
8157         * iconvdata/ksc5601.c (__ksc5601_sym_to_ucs, __ksc5601_sym_from_ucs):
8158         Add mapping for U+327E.
8159         * iconvdata/ksc5601.h (KSC5601_SYMBOL): Increment.
8160         * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
8161         mapping of 0xD9 0xE8.
8162         * iconvdata/uhc.c (BODY for FROM_LOOP, BODY for TO_LOOP): Disable
8163         mapping of U+327E.
8164         Reported by Jungshik Shin <jungshik@google.com>.
8166         [BZ #3955]
8167         * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
8168         mapping of 0xD9 0xE6 and of 0xD9 0xE7.
8169         Reported by Jungshik Shin <jungshik@google.com>.
8171 2007-02-14  Ulrich Drepper  <drepper@redhat.com>
8173         * sysdeps/x86_64/bits/atomic;h: Fix asm parameters for some
8174         byte variants.
8176         [BZ #4040]
8177         * sysdeps/i386/i486/bits/atomic.h: Fix asm parameters for some
8178         byte variants.  Patch mostly be tom@tommay.net.
8180 2007-02-14  Jakub Jelinek  <jakub@redhat.com>
8182         [BZ #3996]
8183         * posix/glob.c (attribute_hidden): Define if not defined.
8184         (glob): Unescape dirname, filename or username when needed and not
8185         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
8186         is NULL.  Handle unescaped [ in pattern without closing ].
8187         Don't pass GLOB_CHECK down to recursive glob for directories.
8188         (__glob_pattern_type): New function.
8189         (__glob_pattern_p): Implement using __glob_pattern_type.
8190         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
8191         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
8192         Remove unreachable code.
8193         * posix/globtest.sh: Add a couple of new tests.
8195 2007-02-13  Ulrich Drepper  <drepper@redhat.com>
8197         * po/ru.po: Update from translation team.
8199 2007-02-12  Jakub Jelinek  <jakub@redhat.com>
8201         * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __amdfam10__
8202         to the list of i486+ CPUs.
8203         * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
8205 2007-02-12  Ulrich Drepper  <drepper@redhat.com>
8207         * elf/rtld.c (RESOLVE_MAP): Always return bootstrap_map reference.
8208         * elf/Makefile ($(objpfx)ld.so): Check that ld.so has no undefined
8209         references.
8211 2007-02-09  Ulrich Drepper  <drepper@redhat.com>
8213         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Remove incorrect comment.
8215         * resolv/res_init.c (res_setoptions): Recognize edns0 option.
8216         * resolv/res_mkquery.c: Define __res_nopt.
8217         * resolv/res_query.c (__libc_res_nquery): If RES_USE_EDNS0 is set
8218         try adding EDNS0 record.
8219         * resolv/res_send.c (send_dg): If request failed with FORMERR and
8220         EDNS0 record was send make sure we don't try it again.
8221         * resolv/resolv.h: Define RES_F_EDNS0ERR and RES_USE_EDNS0.
8222         * include/resolv.h: Declare __res_nopt.
8224 2007-02-08  Jakub Jelinek  <jakub@redhat.com>
8226         [BZ #3944]
8227         * time/strptime_l.c (__strptime_internal): Set have_mon for
8228         %b/%B/%h.  Set have_mon and have_mday if tm_mon and tm_mday
8229         have been computed from tm_yday and tm_year.  Don't crash
8230         in day_of_the_week or day_of_the_year if not have_mon
8231         and tm_mon contains bogus value.
8232         * time/Makefile (tests): Add tst-strptime3.
8233         * time/tst-strptime3.c: New test.
8235 2007-02-05  Jakub Jelinek  <jakub@redhat.com>
8237         [BZ #3957]
8238         * posix/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
8239         bit for RE_HAT_LISTS_NOT_NEWLINE.
8240         (build_charclass_op): Remove bogus comment.
8241         * posix/Makefile (tests): Add bug-regex27 and bug-regex28.
8242         * posix/bug-regex27.c: New test.
8243         * posix/bug-regex28.c: New test.
8245 2007-02-03  Ulrich Drepper  <drepper@redhat.com>
8247         * po/sv.po: Update from translation team.
8249 2007-02-02  Ulrich Drepper  <drepper@redhat.com>
8251         * nscd/nscd_helper.c (open_socket): Minor size optimization.
8253 2007-02-02  Jakub Jelinek  <jakub@redhat.com>
8255         * include/locale.h (__uselocale): Add libc_hidden_proto.
8256         * locale/uselocale.c (__uselocale): Add libc_hidden_def.
8258         * nscd/nscd_helper.c (open_socket): Use __gettimeofday instead of
8259         gettimeofday.
8261 2007-02-01  Ulrich Drepper  <drepper@redhat.com>
8263         * sysdeps/unix/sysv/linux/i386/sysdep.h (PTR_MANGLE): Roll value before
8264         returning.
8265         (PTR_DEMANGLE): Real definition now that it's not the same as
8266         PRT_MANGLE anymore.
8267         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
8269         * string/strerror_l.c: New file.
8270         * string/Makefile (routines): Add strerror_l.
8271         * string/string.h: Declare strerror_l.
8272         * string/Versions: Export strerror_l for GLIBC_2.6.
8274 2007-01-31  Ulrich Drepper  <drepper@redhat.com>
8276         * nscd/nscd_helper.c (open_socket): Now takes request type and key
8277         as parameter.  Construct request record.  Try sending request
8278         before the first poll use, it usually succeeds.  Adjust all
8279         callers.
8280         * nscd/nscd-client.h: Define MAXKEYLEN.
8281         * nscd/connections.c (nscd_run): Don't define MAXKEYLEN here.
8283 2007-01-31  Jakub Jelinek  <jakub@redhat.com>
8285         * nscd/nscd-client.h (__nscd_cache_search): Remove const qualifier
8286         from return value.
8287         * nscd/nscd_helper.c: Include string.h.
8288         (__nscd_cache_search): Remove const qualifier from return value.
8289         On strict alignment architectures check hash entry and data head
8290         alignment.
8291         * nscd/nscd_getpw_r.c (nscd_getpw_r): Don't crash or fail because
8292         mmapped data during GC cycle contains garbage.  If
8293         __nscd_drop_map_ref fails, decrement mapped->counter when returning
8294         error or if retrying with NO_MAPPING, only __nscd_unmap if counter
8295         dropped to 0.
8296         * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
8297         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
8298         * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
8299         * nscd/nscd_getai.c (__nscd_getai): Likewise.
8300         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
8302 2007-01-30  Ulrich Drepper  <drepper@redhat.com>
8304         * misc/hsearch_r.c (hdestroy_r): Remove unnecessary test.
8306 2007-01-26  Ulrich Drepper  <drepper@redhat.com>
8308         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Use register
8309         names not numbers in cfi_*.
8311 2007-01-26  Andreas Jaeger  <aj@suse.de>
8313         * sysdeps/unix/sysv/linux/sys/personality.h (ADDR_NO_RANDOMIZE,
8314         ADDR_LIMIT_3GB, PER_LINUX_32BIT, PER_LINUX32_3GB): Add.
8315         Correct values of PER_HPUX and PER_OSF4.
8317 2007-01-24  Ulrich Drepper  <drepper@redhat.com>
8319         * elf/dl-minimal.c: Undefine _itoa first.
8320         * stdio-common/_itoa.h: Define _itoa and _fitoa for 64-bit platforms.
8321         * malloc/mtrace.c: Revert last change.
8322         * posix/wordexp.c: Likewise.
8324 2007-01-24  Jakub Jelinek  <jakub@redhat.com>
8326         * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __nocona__, __core2__
8327         and __geode__ to the list of i486+ CPUs.
8328         * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
8330 2007-01-23  Ulrich Drepper  <drepper@redhat.com>
8332         * stdio-common/_itoa.c: Include <limits.h>.
8333         * stdio-common/_itowa.c: Likewise.
8335 2007-01-22  Ulrich Drepper  <drepper@redhat.com>
8337         * stdio-common/_itowa.c: Don't compile _itowa for 64-bit
8338         platforms.
8339         * stdio-common/_itoa.c: Don't compile in _itoa and _fitoa for
8340         64-bit platforms.
8341         * malloc/mtrace.c (tr_where): Use _fitoa_word instead of _fitoa if
8342         possible.
8343         * posix/wordexp.c (parse_arith): Use _itoa_word instead of _itoa
8344         if possible.
8346         [BZ #3902]
8347         * stdio-common/_itoa.c (_itoa): Make sure at least a zero is emitted.
8348         * stdio-common/Makefile (tests): Add bug17.
8349         * stdio-common/bug17.c: New file.
8351 2007-01-19  Ulrich Drepper  <drepper@redhat.com>
8353         * iconvdata/brf.c: New file.
8354         * iconvdata/testdata/BRF: New file.
8355         * iconvdata/testdata/BRF..UTF8: New file.
8356         Contributed by Samuel Thibault <samuel.thibault@ens-lyon.org>.
8357         * iconvdata/Makefile: Add rules to build BRF.
8358         * iconvdata/TESTS: Add BRF entry.
8359         * iconvdata/gconv-modules: Likewise.
8360         * iconvdata/tst-tables.sh: Likewise.
8362 2007-01-18  Anton Nikishaev  <anton.nik@gmail.com>
8364         * wcsmbs/wchar.h (wcstoll): Fix comment, function returns value of
8365         type `long long int', not `long int'.
8366         (wcstoq): Likewise.
8368 2007-01-18  Ulrich Drepper  <drepper@redhat.com>
8370         * scripts/gen-as-const.awk: Add cast to long to avoid int promotion
8371         of values on 64-bit platforms which are too large.
8373 2007-01-12  Steven Munroe  <sjmunroe@us.ibm.com>
8374             Joe Kerian  <jkerian@us.us.ibm.com>
8376         [BZ #2749]
8377         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Include
8378         <math_ldbl_opt.h>.  Remove weak_alias.  Use long_double_symbol macro.
8379         (__copysignl): Use signbit() for comparison.
8380         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Correct parms for
8381         SET_LDOUBLE_WORDS64.
8383         [BZ #2423, #2749]
8384         * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Don't include <fenv_libc.h>.
8385         (__ceill): Remove calls to fegetround(), fesetround().
8386         * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
8387         * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
8388         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
8390 2007-01-17  Jakub Jelinek  <jakub@redhat.com>
8392         * nscd/nscd_getserv_r.c (nscd_getserv_r): Fix pastos.
8394         * sysdeps/unix/sysv/linux/getdents.c (offsetof): Remove.
8396 2007-01-17  Ulrich Drepper  <drepper@redhat.com>
8398         * sysdeps/unix/sysv/linux/fatal-prepare.h: Use PTHFCT_CALL to
8399         demangle pointer.
8400         * csu/libc-start.c: Likewise.
8402 2007-01-16  Ulrich Drepper  <drepper@redhat.com>
8404         * sysdeps/posix/system.c: Remove NO_WAITPID support, it cannot
8405         really work anyway.
8407 2007-01-15  Ulrich Drepper  <drepper@redhat.com>
8409         * nscd/connections.c (servinfo): Renamed to reqinfo.  Change all
8410         users.
8411         (handle_request): Remove unnecessary tests.
8413         * nscd/cache.c (cache_add): Record the failure to add to the cache.
8415 2007-01-15  Jakub Jelinek  <jakub@redhat.com>
8417         * soft-fp/op-common.h (FP_TRUNC): When truncating a NaN, clear
8418         workbits in semi-raw fraction.
8420         * math/test-misc.c: Add new tests.
8422 2007-01-14  Steven Munroe  <sjmunroe@us.ibm.com>
8424         * math/basic-test.c: Include test-skeleton.c.
8425         (TEST_TRUNC): Define.
8426         (truncdfsf_test, trunctfsf_test, trunctfdf_test): New.
8427         (main): Rename to ...
8428         (do_test): ...this.  Run new tests.
8429         (TEST_FUNCTION): Define.
8431 2006-10-05  Steven Munroe  <sjmunroe@us.ibm.com>
8432             Joe Kerian  <jkerian@us.us.ibm.com>
8434         [BZ #2749]
8435         * soft-fp/op-4.h (__FP_FRAC_SUB_3, __FP_FRAC_SUB_4): Correct borrow
8436         handling for high words.
8437         * soft-fp/op-common.h (_FP_OVERFLOW_SEMIRAW): Always set inexact
8438         and overflow for infinity.
8440 2007-01-15  Ulrich Drepper  <drepper@redhat.com>
8442         * nscd/connections.c (handle_request): Add a __builtin_expect.
8444         * nscd/connections.c (serv2db): Change type into structure which
8445         also says whether this is a request for data.  Renamed to
8446         servinfo.  All users changed.
8447         (handle_request): Much simpler test whether we should search the cache.
8449         * nscd/connections.c (handle_request): Fix thinko in selinux test
8450         invocation.
8452         * sysdeps/generic/ldsodefs.h: Define DL_LOOKUP_SCOPE_LOCK.
8453         * elf/dl-lookup.c (add_dependency): If scope map is locked, unlock
8454         it before getting dl_load_lock and then relock.
8455         (_dl_lookup_symbol_x): Pass flags to add_dependency.
8456         When rerunning _dl_lookup_symbol_x, compute symbol_scope again in
8457         case we unlocked the scope.
8458         * elf/dl-runtime.c (_dl_fixup): Pass DL_LOOKUP_SCOPE_LOCK to
8459         _dl_lookup_symbol_x in case we locked the scope.
8460         (_dl_profile_fixup): Likewise.
8461         * elf/dl-sym.c (do_sym): In flags passed to call_dl_lookup, also
8462         set DL_LOOKUP_SCOPE_LOCK.
8464 2007-01-13  Ulrich Drepper  <drepper@redhat.com>
8466         * inet/Makefile: Define CFLAGS-getsrvbynm_r.c and
8467         CFLAGS-getsrvbynpt_r.c.
8468         * nscd/getsrvbynm_r.c: New file.
8469         * nscd/getsrvbypt_r.c: New file.
8470         * nscd/nscd_getserv_r.c: New file.
8471         * nscd/servicescache.c: New file.
8472         * nscd/Makefile (routines): Add nscd_getserv_r.
8473         (nscd-modules): Add getsrvbynm_r, getsrvbypt_r, and servicescache.
8474         Define CFLAGS-servicescache.c, CFLAGS-getsrvbynm_r.c, and
8475         CFLAGS-getsrvbypt_r.c.
8476         * nscd/cache.c (prune_cache): Rewrite to get re-add function from
8477         table.  Add entries for services database.
8478         * nscd/connections.c (serv2str): Mark as const.  Add entries for
8479         services database.
8480         (dbs): Add .reset_res and servdb initialization.
8481         (serv2db): Add entries for services database.
8482         (verify_persistent_db): Accept dbnr == servdb.
8483         (invalidate_cache): Rewrite database name recognition to use a table.
8484         Call res_init() if .reset_res is set for database.
8485         (handle_request): Add code to handle services database.
8486         * nscd/gai.c: Don't define __getservbyname_r.
8487         * nscd/nscd-client.h (request_type): Remove LASTDBREQ, add
8488         GETSERVBYNAME, GETSERVBYPORT, GETFDSERV.
8489         (serv_response_header): Define.
8490         (struct datahead): Add serv_response_header member.
8491         * nscd/nscd.c (parse_opt): Rewrite parsing of -i parameter value
8492         using table.
8493         * nscd/nscd.conf: Add entries for services database.
8494         * nscd/nscd.h: Adjust declaration of dbnames and serv2str.
8495         Declare serv_iov_disabled.
8496         Declare addservbyname, readdservbyname, addservbyport, and
8497         readdservbyport.
8498         * nscd/nscd_conf.c (dbnames): Mark as const.  Add services entry.
8499         (find_db): Fix error message.
8500         * nscd/nscd_proto.h: Declare __nss_not_use_nscd_services,
8501         __nscd_getservbyname_r, and __nscd_getservbyport_r.
8502         * nscd/selinux.c (perms): Add entries for services database.
8503         * nss/Versions: Export __nss_services_lookup with GLIBC_PRIVATE.
8504         * nss/nsswitch.c (__nss_disable_nscd): Also disable services database.
8506         * nscd/grpcache.c: Remove obsolete code.  Cleanups.
8507         * nscd/hstcache.c: Likewise.
8508         * nscd/pwdcache.c: Likewise.
8510         * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r): Correct
8511         computation of keylen.
8513         * include/string.h: Only redefine strndupa if this is really for
8514         libc code.
8516 2007-01-12  Ulrich Drepper  <drepper@redhat.com>
8518         * nscd/nscd_gethst_r.c: Minor cleanups.
8520         * nscd/connections.c (handle_request): Check selinux permissions
8521         for all non-admin commands.
8523         * sysdeps/i386/i486/bits/atomic.h: Define
8524         atomic_compare_and_exchange_val_acq,
8525         atomic_compare_and_exchange_bool_acq, and atomic_exchange_and_add
8526         using __sync_* built-ins for gcc >= 4.1.
8527         * sysdeps/x86_64/bits/atomic.h: Likewise.
8529         [BZ #3840]
8530         * scripts/check-local-headers.sh: Restrict to testing .o.d, .os.d,
8531         and .oS.d files.
8533 2007-01-05  Steven Munroe  <sjmunroe@us.ibm.com>
8535         * stdlib/tst-makecontext.c: Include errno.h.  Change main()
8536         to do_test().  Define TEST_FUNCTION. Include test-skeleton.c.
8537         (do_test): Check errno and exit(0) if ENOSYS.
8539 2007-01-11  Jakub Jelinek  <jakub@redhat.com>
8541         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix handling of multi-byte
8542         thousands separators.
8543         * stdlib/Makefile: Add rules to build and run tst-strtod4.
8544         * stdlib/tst-strtod4.c: New test.
8546         [BZ #3855]
8547         * stdlib/strtod_l.c (____STRTOF_INTERNAL): 0x. not followed by
8548         hexadecimal digit should accept just the initial 0.
8549         * stdlib/tst-strtod2.c (tests): New variable.
8550         (do_test): Run several tests rather than just one.
8552 2007-01-11  Jakub Jelinek  <jakub@redhat.com>
8554         * sysdeps/i386/soft-fp/sfp-machine.h: Remove.
8555         * sysdeps/x86_64/soft-fp/sfp-machine.h: Likewise.
8557 2007-01-10  Ulrich Drepper  <drepper@redhat.com>
8559         * io/fts.c: Make sure fts_cur is always valid after return from
8560         fts_read.
8561         Patch by Miloslav Trmac <mitr@redhat.com>.
8563 2006-10-27  Richard Sandiford  <richard@codesourcery.com>
8565         * elf/elf.h (R_MIPS_GLOB_DAT): Define.
8566         (R_MIPS_NUM): Bump by 1.
8568 2007-01-03  Jakub Jelinek  <jakub@redhat.com>
8570         * posix/execvp.c: Include alloca.h.
8571         (allocate_scripts_argv): Renamed to...
8572         (scripts_argv): ... this.  Don't allocate buffer here nor count
8573         arguments.
8574         (execvp): Use alloca if possible.
8575         * posix/Makefile: Add rules to build and run tst-vfork3 test.
8576         * posix/tst-vfork3.c: New test.
8578 2007-01-03  Ulrich Drepper  <drepper@redhat.com>
8580         * string/Makefile (tst-strxfrm2-ENV): Define.
8581         * stdlib/Makefile (tst-strtod3-ENV): Define.
8583 2007-01-02  Ulrich Drepper  <drepper@redhat.com>
8585         * posix/getconf.c: Update copyright year.
8586         * nss/getent.c: Likewise.
8587         * iconv/iconvconfig.c: Likewise.
8588         * iconv/iconv_prog.c: Likewise.
8589         * elf/ldconfig.c: Likewise.
8590         * catgets/gencat.c: Likewise.
8591         * csu/version.c: Likewise.
8592         * elf/ldd.bash.in: Likewise.
8593         * elf/sprof.c (print_version): Likewise.
8594         * locale/programs/locale.c: Likewise.
8595         * locale/programs/localedef.c: Likewise.
8596         * nscd/nscd.c (print_version): Likewise.
8597         * debug/xtrace.sh: Likewise.
8598         * malloc/memusage.sh: Likewise.
8599         * malloc/mtrace.pl: Likewise.
8600         * debug/catchsegv.sh: Likewise.
8602 2006-12-24  Ulrich Drepper  <drepper@redhat.com>
8604         * malloc/malloc.c (sYSMALLOc): Remove some unnecessary alignment
8605         attempts.
8607 2006-12-23  Ulrich Drepper  <drepper@redhat.com>
8609         * posix/wordexp.c: Remove some unnecessary tests.
8611 2006-12-22  Gavin Romig-Koch  <gavin@redhat.com>
8613         * nis/nss_compat/compat-grp.c (internal_getgrgid_r): Don't
8614         blacklist the group till after we look it up.
8616 2006-12-21  Ulrich Drepper  <drepper@redhat.com>
8618         * include/atomic.h (atomic_forced_read): New macro.
8620 2006-12-20  SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
8622         * sysdeps/unix/sysv/linux/sh/bits/shm.h: New file.
8624 2006-12-19  Jakub Jelinek  <jakub@redhat.com>
8626         * nss/getXXbyYY_r.c: Include atomic.h.
8627         (INTERNAL (REENTRANT_NAME)): Write startp after start_fct,
8628         add atomic_write_barrier () in between.
8630         * stdlib/Makefile (tests): Add tst-makecontext.
8631         * stdlib/tst-makecontext.c: New test.
8633         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
8634         (__makecontext): Don't realign uc_mcontext.uc_regs.
8636 2006-11-28  Jakub Jelinek  <jakub@redhat.com>
8638         * elf/dl-support.c: Include dl-procinfo.h.
8639         * sysdeps/powerpc/dl-procinfo.h (PPC_PLATFORM_POWER4,
8640         PPC_PLATFORM_PPC970, PPC_PLATFORM_POWER5, PPC_PLATFORM_POWER5_PLUS,
8641         PPC_PLATFORM_POWER6, PPC_PLATFORM_CELL_BE, PPC_PLATFORM_POWER6X):
8642         Define.
8643         (_dl_string_platform): Use PPC_PLATFORM_* macros instead of
8644         hardcoded constants.
8645         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platform): Use
8646         PPC_PLATFORM_* macros for array designators.
8648 2006-11-11  Steven Munroe  <sjmunroe@us.ibm.com>
8650         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 3 new cap
8651         names to the beginning.
8652         (_dl_powerpc_platforms): Add "power6x".
8653         * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
8654         (HWCAP_IMPORTANT): Add PPC_FEATURE_HAS_DFP.
8655         (_DL_PLATFORMS_COUNT): Increase.
8656         (_dl_string_platform): Handle power6x case.
8657         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_PA6T, PPC_FEATURE_HAS_DFP,
8658         PPC_FEATURE_POWER6_EXT): Define.
8659         (PPC_FEATURE_POWER5, PPC_FEATURE_POWER5_PLUS): Correct Comment.
8661 2006-12-18  Jakub Jelinek  <jakub@redhat.com>
8663         [BZ #3747]
8664         * stdlib/jrand48_r.c (__jrand48_r): Make sure result is in the
8665         [-2^31 .. 2^31) range.
8666         * stdlib/tst-rand48.c (main): Fix expected values for 64-bit
8667         targets.
8668         * stdlib/tst-rand48-2.c: New test.
8669         * stdlib/Makefile (tests): Add tst-rand48-2.
8671 2006-12-14  Jakub Jelinek  <jakub@redhat.com>
8673         * misc/tst-pselect.c (do_test): Fix sigblock argument.
8675 2006-12-14  Ulrich Drepper  <drepper@redhat.com>
8677         * misc/tst-pselect.c (do_test): Make sure the helper process is
8678         terminating when the test is aborted.
8680 2006-12-13  Ulrich Drepper  <drepper@redhat.com>
8682         * sysdeps/unix/sysv/linux/bits/statvfs.h: Define ST_RELATIME.
8683         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
8684         Handle relatime mount option.
8686         [BZ #2337]
8687         * libio/Makefile (tests): Add tst-setvbuf1.
8688         * libio/tst-setvbuf1.c: New file.
8690 2006-12-08  Jakub Jelinek  <jakub@redhat.com>
8692         [BZ #2337]
8693         * libio/genops.c (__uflow): Fix a typo.
8694         * libio/wfiledoalloc.c (_IO_wfile_doallocate): Don't stat
8695         nor set _IO_LINE_BUF bit here.  Size the wide buffer based on
8696         the narrow buffer size.
8698 2006-11-24  Jakub Jelinek  <jakub@redhat.com>
8700         [BZ #2337]
8701         * libio/libio.h (_IO_FLAGS2_USER_WBUF): Define.
8702         * libio/wgenops.c (_IO_wsetb, _IO_wdefault_finish): Test and set
8703         _IO_FLAGS2_USER_WBUF bit in _flags2 instead of _IO_USER_BUF bit
8704         in _flags.
8705         * libio/wstrops.c (_IO_wstr_overflow, enlarge_userbuf,
8706         _IO_wstr_finish): Likewise.
8707         * libio/wmemstream.c (open_wmemstream): Likewise.
8708         * libio/fileops.c (_IO_new_file_close_it): Call _IO_set[bgp]
8709         even for wide streams.
8711 2006-12-13  Jakub Jelinek  <jakub@redhat.com>
8713         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Include
8714         kernel-features.h.
8716 2006-12-11  Ulrich Drepper  <drepper@redhat.com>
8718         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Parse thousand
8719         separators also if no non-zero digits found.
8720         * stdlib/Makefile (tests): Add tst-strtod3.
8722 2006-12-09  Ulrich Drepper  <drepper@redhat.com>
8724         [BZ #3632]
8725         * include/features.h: Fix comment about default value for
8726         _POSIX_C_SOURCE.
8728         [BZ #3664]
8729         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix test to recognize
8730         empty parsed strings.
8731         * stdlib/Makefile (tests): Add tst-strtod2.
8732         * stdlib/tst-strtod2.c: New file.
8734         [BZ #3673]
8735         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix exp_limit
8736         computation.
8737         * stdlib/Makefile (tests): Add tst-atof2.
8738         * stdlib/tst-atof2.c: New file.
8740         [BZ #3674]
8741         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Adjust exponent value
8742         correctly if removing trailing zero of hex-float.
8743         * stdlib/Makefile (tests): Add tst-atof1.
8744         * stdlib/tst-atof1.c: New file.
8746 2006-12-09  Jakub Jelinek  <jakub@redhat.com>
8748         * misc/mntent_r.c (__hasmntopt): Check p[optlen] even when p == rest.
8749         Start searching for next comma at p rather than rest.
8750         * misc/Makefile (tests): Add tst-mntent2.
8751         * misc/tst-mntent2.c: New test.
8753         * misc/getusershell.c (initshells): Check for integer overflows.
8754         Make strings buffer one bigger as fgets always succeeds when second
8755         argument is 1.  Don't use calloc for shells array.  Disallow
8756         / as shell.
8758 2006-12-08  Ulrich Drepper  <drepper@redhat.com>
8760         * malloc/memusage.c: Handle realloc with new size of zero and
8761         non-NULL pointer correctly.
8762         (me): Really write first record twice.
8763         (struct entry): Make format bi-arch safe.
8764         (dest): Write out more realloc statistics.
8765         * malloc/memusagestat.c (struct entry): Make format bi-arch safe.
8767 2006-12-05  Jakub Jelinek  <jakub@redhat.com>
8769         * nis/nis_subr.c (nis_getnames): Revert last change.
8771 2006-12-04  Jakub Jelinek  <jakub@redhat.com>
8773         * sysdeps/unix/sysv/linux/ttyname.c: Include termios.h.
8774         (ttyname): Use tcgetattr instead of isatty, don't set errno to ENOTTY.
8775         * sysdeps/unix/sysv/linux/ttyname_r.c: Include termios.h.
8776         (__ttyname_r): Use tcgetattr instead of isatty, don't set errno to
8777         ENOTTY.
8778         * io/Makefile: Add rules to build and run tst-ttyname_r test.
8779         * io/tst-ttyname_r.c: New test.
8781 2006-12-03  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
8783         * sysdeps/unix/sysv/linux/sh/sys/io.h: Removed.
8785 2006-11-30  H.J. Lu  <hongjiu.lu@intel.com>
8787         * sysdeps/i386/i686/memcmp.S: Use jump table as the base of
8788         jump table entries.
8790 2006-11-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
8792         * sysdeps/unix/sysv/linux/i386/clone.S: Provide CFI for the outermost
8793         `clone' function to ensure proper unwinding stop of gdb.
8794         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
8796 2006-12-01  Ulrich Drepper  <drepper@redhat.com>
8798         * nscd/nscd.init: Remove obsolete and commented-out -S option
8799         handling.
8801 2006-11-23  Jakub Jelinek  <jakub@redhat.com>
8803         [BZ #3514]
8804         * manual/string.texi (strncmp): Fix pastos from wcscmp description.
8806         [BZ #3515]
8807         * manual/string.texi (strtok): Remove duplicate paragraph.
8809 2006-12-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
8811         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Fix compatibility with
8812         libgcc not supporting `rflags' unwinding (register # >= 17).
8814 2006-11-30  Jakub Jelinek  <jakub@redhat.com>
8816         * sunrpc/svc_run.c (svc_run): Set my_pollfd to new_pollfd if realloc
8817         succeeded.
8819 2006-11-29  Daniel Jacobowitz  <dan@codesourcery.com>
8820             Jakub Jelinek  <jakub@redhat.com>
8821             Jan Kratochvil  <jan.kratochvil@redhat.com>
8823         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (restore_rt): Add correct
8824         unwind information.
8825         * sysdeps/unix/sysv/linux/x86_64/Makefile: Provide symbols for
8826         'restore_rt' even in the 'signal' directory.
8827         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.sym: Extend the regs list.
8829 2006-11-27  Jakub Jelinek  <jakub@redhat.com>
8831         [BZ #3559]
8832         * sunrpc/svc_run.c (svc_run): Fail instead of segfaulting if
8833         malloc crashed.  Don't allocate memory unnecessarily in each
8834         loop.
8836 2006-10-21  Jakub Jelinek  <jakub@redhat.com>
8838         * resolv/mapv4v6addr.h (map_v4v6_address): Fix last change.
8840 2006-11-20  Ulrich Drepper  <drepper@redhat.com>
8842         * resolv/mapv4v6addr.h (map_v4v6_address): Optimize a bit.
8844 2006-11-18  Bruno Haible  <bruno@clisp.org>
8846         * sysdeps/unix/sysv/linux/i386/getgroups.c (__getgroups): Invoke
8847         __sysconf only after having tried to call getgroups32.
8849 2006-11-19  Ulrich Drepper  <drepper@redhat.com>
8851         * nss/nss_files/files-hosts.c (LINE_PARSER): Support IPv6-style
8852         addresses for IPv4 queries if they can be mapped.
8854 2006-11-16  Jakub Jelinek  <jakub@redhat.com>
8856         * sysdeps/x86_64/fpu/s_copysignf.S (__copysignf): Switch to .text.
8857         * sysdeps/x86_64/fpu/s_copysign.S (__copysign): Likewise.
8858         (signmask): Add .size directive.
8859         (othermask): Add .type directive.
8861 2006-11-14  Ulrich Drepper  <drepper@redhat.com>
8863         * po/nl.po: Update from translation team.
8865         * timezone/zdump.c: Redo fix for BZ #3137.
8867 2006-11-14  Jakub Jelinek  <jakub@redhat.com>
8869         * nss/nss_files/files-alias.c (get_next_alias): Set line back
8870         to first_unused after parsing :include: file.
8872 2006-11-10  Ulrich Drepper  <drepper@redhat.com>
8874         * timezone/africa: Update from tzdata2006o.
8875         * timezone/antarctica: Likewise.
8876         * timezone/asia: Likewise.
8877         * timezone/australasia: Likewise.
8878         * timezone/backward: Likewise.
8879         * timezone/europe: Likewise.
8880         * timezone/iso3166.tab: Likewise.
8881         * timezone/northamerica: Likewise.
8882         * timezone/southamerica: Likewise.
8883         * timezone/zone.tab: Likewise.
8885         * time/tzfile.c (__tzfile_read): Extend to handle new file format
8886         on machines with 64-bit time_t.
8888         * timezone/checktab.awk: Update from tzcode2006o.
8889         * timezone/ialloc.c: Likewise.
8890         * timezone/private.h: Likewise.
8891         * timezone/scheck.c: Likewise.
8892         * timezone/tzfile.h: Likewise.
8893         * timezone/tzselect.ksh: Likewise.
8894         * timezone/zdump.c: Likewise.
8895         * timezone/zic.c: Likewise.
8897         [BZ #3483]
8898         * elf/ldconfig.c (main): Call setlocale and textdomain.
8899         Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
8901         [BZ #3480]
8902         * manual/argp.texi: Fix typos.
8903         * manual/charset.texi: Likewise.
8904         * manual/errno.texi: Likewise.
8905         * manual/filesys.texi: Likewise.
8906         * manual/lang.texi: Likewise.
8907         * manual/maint.texi: Likewise.
8908         * manual/memory.texi: Likewise.
8909         * manual/message.texi: Likewise.
8910         * manual/resource.texi: Likewise.
8911         * manual/search.texi: Likewise.
8912         * manual/signal.texi: Likewise.
8913         * manual/startup.texi: Likewise.
8914         * manual/stdio.texi: Likewise.
8915         * manual/sysinfo.texi: Likewise.
8916         * manual/syslog.texi: Likewise.
8917         * manual/time.texi: Likewise.
8918         Patch by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8920         [BZ #3465]
8921         * sunrpc/clnt_raw.c: Minimal message improvements.
8922         * sunrpc/pm_getmaps.c: Likewise.
8923         * nis/nss_nisplus/nisplus-publickey.c: Likewise.
8924         * nis/nis_print_group_entry.c: Likewise.
8925         * locale/programs/repertoire.c: Likewise.
8926         * locale/programs/charmap.c: Likewise.
8927         * malloc/memusage.sh: Likewise.
8928         * elf/dl-deps.c: Likewise.
8929         * locale/programs/ld-collate.c: Likewise.
8930         * libio/vswprintf.c: Likewise.
8931         * malloc/memusagestat.c: Likewise.
8932         * sunrpc/auth_unix.c: Likewise.
8933         * sunrpc/rpc_main.c: Likewise.
8934         * nscd/cache.c: Likewise.
8935         * locale/programs/repertoire.c: Unify output messages.
8936         * locale/programs/charmap.c: Likewise.
8937         * locale/programs/ld-ctype.c: Likewise.
8938         * locale/programs/ld-monetary.c: Likewise.
8939         * locale/programs/ld-numeric.c: Likewise.
8940         * locale/programs/ld-time.c: Likewise.
8941         * elf/ldconfig.c: Likewise.
8942         * nscd/selinux.c: Likewise.
8943         * elf/cache.c: Likewise.
8944         Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
8946         [BZ #3451]
8947         * sysdeps/i386/fpu/bits/mathinline.h (floor): Make rounding mode
8948         change atomic.
8949         (ceil): Likewise.
8951 2006-11-10  Jakub Jelinek  <jakub@redhat.com>
8953         * string/strxfrm_l.c (STRXFRM): Fix trailing \1 optimization
8954         if N is one bigger than return value.
8955         * string/tst-strxfrm2.c (do_test): Also test strxfrm with l1 + 1
8956         and l1 last arguments, if buf is defined, verify the return value
8957         equals to strlen (buf) and verify no byte beyond passed length
8958         is modified.
8960 2006-11-10  Ulrich Drepper  <drepper@redhat.com>
8962         * po/sv.po: Update from translation team.
8964 2006-11-09  Ulrich Drepper  <drepper@redhat.com>
8966         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word): Add
8967         noinline attribute.
8969 2006-11-10  Jakub Jelinek  <jakub@redhat.com>
8971         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Add
8972         noinline attribute.
8974         * sysdeps/gnu/siglist.c (__old_sys_siglist, __old_sys_sigabbrev):
8975         Use __new_sys_siglist instead of _sys_siglist_internal as
8976         second macro argument.
8977         (_old_sys_siglist): Use declare_symbol_alias macro instead of
8978         strong_alias.
8980 2006-11-09  Ulrich Drepper  <drepper@redhat.com>
8982         [BZ #3493]
8983         * posix/unistd.h (sysconf): Remove const attribute.
8985         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix test for
8986         temporary or deprecated addresses.
8987         Patch by Sridhar Samudrala <sri@us.ibm.com>.
8989         * string/Makefile (tests): Add tst-strxfrm2.
8990         * string/tst-strxfrm2.c: New file.
8992 2006-10-09  Jakub Jelinek  <jakub@redhat.com>
8994         * elf/dl-debug.c (_dl_debug_initialize): Check r->r_map for 0
8995         rather than r->r_brk.
8997 2006-11-08  Jakub Jelinek  <jakub@redhat.com>
8999         * string/strxfrm_l.c (STRXFRM): Do the trailing \1 removal
9000         optimization even if needed > n.
9002         * elf/dl-load.c (decompose_rpath): Return bool rather than void.
9003         If l->l_name is on inhibit_rpath list, set sps->dirs to -1 and
9004         return false, otherwise return true.
9005         (cache_rpath): Return decompose_rpath return value.
9007 2006-11-07  Jakub Jelinek  <jakub@redhat.com>
9009         * include/libc-symbols.h (declare_symbol): Rename to...
9010         (declare_symbol_alias): ... this.  Add ORIGINAL argument, imply
9011         strong_alias (ORIGINAL, SYMBOL) in asm to make sure it preceedes
9012         .size directive.
9013         * sysdeps/gnu/errlist-compat.awk: Adjust for declare_symbol_alias
9014         changes.
9015         * sysdeps/gnu/siglist.c: Likewise.
9017 2006-11-03  Steven Munroe  <sjmunroe@us.ibm.com>
9019         * sysdeps/powerpc/fpu/bits/mathinline.h
9020         [__LIBC_INTERNAL_MATH_INLINES]: Moved to ...
9021         * sysdeps/powerpc/fpu/math_private.h: ...here.  New file.
9023 2006-11-05  Ulrich Drepper  <drepper@redhat.com>
9025         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
9026         Update handling of cache descriptor 0x49 for new models.
9027         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word):
9028         Likewise.
9030 2006-11-02  Jakub Jelinek  <jakub@redhat.com>
9032         * malloc/memusage.c (dest): Reset not_me back to false after
9033         printing statistics.
9035 2006-11-02  Ulrich Drepper  <drepper@redhat.com>
9037         * configure.in: Work around ld --help change and avoid -z relro
9038         test completely if the architecture doesn't care about security.
9040 2006-11-01  Ulrich Drepper  <drepper@redhat.com>
9042         * po/sv.po: Update from translation team.
9044 2006-10-31  Ulrich Drepper  <drepper@redhat.com>
9046         * stdlib/atexit.c (atexit): Don't mark as hidden when used to
9047         generate compatibility version.
9049 2006-10-29  Ulrich Drepper  <drepper@redhat.com>
9051         * configure.in: Relax -z relro requirement a bit.
9053         * po/sv.po: Update from translation team.
9055 2006-10-29  Jakub Jelinek  <jakub@redhat.com>
9057         * elf/dl-sym.c (do_sym): Use RTLD_SINGLE_THREAD_P.
9058         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
9059         * elf/dl-close.c (_dl_close_worker): Likewise.
9060         * elf/dl-open.c (_dl_open_worker): Likewise.
9061         * sysdeps/generic/sysdep-cancel.h (RTLD_SINGLE_THREAD_P): Define.
9063 2006-10-27  Ulrich Drepper  <drepper@redhat.com>
9065         * configure.in: Require assembler support for visibility, compiler
9066         support for visibility and aliases, linker support for various -z
9067         options.
9068         * Makeconfig: Remove conditional code which now is unnecessary.
9069         * config.h.in: Likewise.
9070         * config.make.in: Likewise.
9071         * dlfcn/Makefile: Likewise.
9072         * elf/Makefile: Likewise.
9073         * elf/dl-load.c: Likewise.
9074         * elf/rtld.c: Likewise.
9075         * include/libc-symbols.h: Likewise.
9076         * include/stdio.h: Likewise.
9077         * io/Makefile: Likewise.
9078         * io/fstat.c: Likewise.
9079         * io/fstat64.c: Likewise.
9080         * io/fstatat.c: Likewise.
9081         * io/fstatat64.c: Likewise.
9082         * io/lstat.c: Likewise.
9083         * io/lstat64.c: Likewise.
9084         * io/mknod.c: Likewise.
9085         * io/mknodat.c: Likewise.
9086         * io/stat.c: Likewise.
9087         * io/stat64.c: Likewise.
9088         * libio/stdio.c: Likewise.
9089         * nscd/Makefile: Likewise.
9090         * stdlib/Makefile: Likewise.
9091         * stdlib/atexit.c: Likewise.
9092         * sysdeps/generic/ldsodefs.h: Likewise.
9093         * sysdeps/i386/dl-machine.h: Likewise.
9094         * sysdeps/i386/sysdep.h: Likewise.
9095         * sysdeps/i386/i686/memcmp.S: Likewise.
9096         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
9097         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
9098         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
9100         * Makerules: USE_TLS support is now default.
9101         * tls.make.c: Likewise.
9102         * csu/Versions: Likewise.
9103         * csu/libc-start.c: Likewise.
9104         * csu/libc-tls.c: Likewise.
9105         * csu/version.c: Likewise.
9106         * dlfcn/dlinfo.c: Likewise.
9107         * elf/dl-addr.c: Likewise.
9108         * elf/dl-cache.c: Likewise.
9109         * elf/dl-close.c: Likewise.
9110         * elf/dl-iteratephdr.c: Likewise.
9111         * elf/dl-load.c: Likewise.
9112         * elf/dl-lookup.c: Likewise.
9113         * elf/dl-object.c: Likewise.
9114         * elf/dl-open.c: Likewise.
9115         * elf/dl-reloc.c: Likewise.
9116         * elf/dl-support.c: Likewise.
9117         * elf/dl-sym.c: Likewise.
9118         * elf/dl-sysdep.c: Likewise.
9119         * elf/dl-tls.c: Likewise.
9120         * elf/ldconfig.c: Likewise.
9121         * elf/rtld.c: Likewise.
9122         * elf/tst-tls-dlinfo.c: Likewise.
9123         * elf/tst-tls1.c: Likewise.
9124         * elf/tst-tls10.h: Likewise.
9125         * elf/tst-tls14.c: Likewise.
9126         * elf/tst-tls2.c: Likewise.
9127         * elf/tst-tls3.c: Likewise.
9128         * elf/tst-tls4.c: Likewise.
9129         * elf/tst-tls5.c: Likewise.
9130         * elf/tst-tls6.c: Likewise.
9131         * elf/tst-tls7.c: Likewise.
9132         * elf/tst-tls8.c: Likewise.
9133         * elf/tst-tls9.c: Likewise.
9134         * elf/tst-tlsmod1.c: Likewise.
9135         * elf/tst-tlsmod13.c: Likewise.
9136         * elf/tst-tlsmod13a.c: Likewise.
9137         * elf/tst-tlsmod14a.c: Likewise.
9138         * elf/tst-tlsmod2.c: Likewise.
9139         * elf/tst-tlsmod3.c: Likewise.
9140         * elf/tst-tlsmod4.c: Likewise.
9141         * elf/tst-tlsmod5.c: Likewise.
9142         * elf/tst-tlsmod6.c: Likewise.
9143         * include/errno.h: Likewise.
9144         * include/link.h: Likewise.
9145         * include/tls.h: Likewise.
9146         * locale/global-locale.c: Likewise.
9147         * locale/localeinfo.h: Likewise.
9148         * malloc/arena.c: Likewise.
9149         * malloc/hooks.c: Likewise.
9150         * malloc/malloc.c: Likewise.
9151         * resolv/Versions: Likewise.
9152         * sysdeps/alpha/dl-machine.h: Likewise.
9153         * sysdeps/alpha/libc-tls.c: Likewise.
9154         * sysdeps/generic/ldsodefs.h: Likewise.
9155         * sysdeps/generic/tls.h: Likewise.
9156         * sysdeps/i386/dl-machine.h: Likewise.
9157         * sysdeps/ia64/dl-machine.h: Likewise.
9158         * sysdeps/ia64/libc-tls.c: Likewise.
9159         * sysdeps/mach/hurd/fork.c: Likewise.
9160         * sysdeps/mach/hurd/i386/tls.h: Likewise.
9161         * sysdeps/powerpc/powerpc32/dl-machine.c: Likwise.
9162         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
9163         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
9164         * sysdeps/s390/libc-tls.c: Likewise.
9165         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
9166         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
9167         * sysdeps/sh/dl-machine.h: Likewise.
9168         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
9169         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
9170         * sysdeps/x86_64/dl-machine.h: Likewise.
9172         * elf/dl-close.c (_dl_close_worker): Renamed from _dl_close and
9173         split out locking and parameter checking.
9174         (_dl_close): Call _dl_close_worker after locking and checking.
9175         * elf/dl-open.c (_dl_open): Call _dl_close_worker instead of
9176         _dl_close.
9177         * elf/Makefile: Add rules to build and run tst-thrlock.
9178         * elf/tst-thrlock.c:  New file.
9180         [BZ #3426]
9181         * stdlib/stdlib.h: Adjust comment for canonicalize_file_name to
9182         reality.
9184         [BZ #3429]
9185         * elf/dl-open.c (dl_open_worker): Keep holding dl_load_lock until
9186         we are sure we do not need it anymore for _dl_close.  Also move
9187         the asserts inside the lock region.
9188         Patch mostly by Suzuki <suzuki@in.ibm.com>.
9190 2006-10-27  Jakub Jelinek  <jakub@redhat.com>
9192         * elf/dl-lookup.c (_dl_debug_bindings): Remove unused symbol_scope
9193         argument.
9194         (_dl_lookup_symbol_x): Adjust caller.
9196         * sysdeps/generic/ldsodefs.h (struct link_namespaces): Remove
9197         _ns_global_scope.
9198         * elf/rtld.c (dl_main): Don't initialize _ns_global_scope.
9200         * elf/dl-libc.c: Revert l_scope name changes.
9201         * elf/dl-load.c: Likewise.
9202         * elf/dl-object.c: Likewise.
9203         * elf/rtld.c: Likewise.
9204         * elf/dl-close.c (_dl_close): Likewise.
9205         * elf/dl-open.c (dl_open_worker): Likewise.  If not SINGLE_THREAD_P,
9206         always use __rtld_mrlock_{change,done}.  Always free old scope list
9207         here if not l_scope_mem.
9208         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Revert l_scope name
9209         change.  Never free scope list here.  Just __rtld_mrlock_lock before
9210         the lookup and __rtld_mrlock_unlock it after the lookup.
9211         * elf/dl-sym.c: Likewise.
9212         * include/link.h (struct r_scoperec): Remove.
9213         (struct link_map): Replace l_scoperec with l_scope, l_scoperec_mem
9214         with l_scope_mem and l_scoperec_lock with l_scope_lock.
9216 2006-10-25  Ulrich Drepper  <drepper@redhat.com>
9218         * sysdeps/gnu/netinet/tcp.h: Define TCP_CONGESTION.
9220 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
9222         * configure.in: Disable building profile libraries by default.
9224 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
9226         * sunrpc/xdr_mem.c (xdrmem_setpos): Don't compare addresses
9227         as signed longs, check for x_base + pos overflow.
9228         * sunrpc/Makefile (tests): Add tst-xdrmem2.
9229         * sunrpc/tst-xdrmem2.c: New test.
9231 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
9233         * elf/dl-lookup.c (_dl_lookup_symbol_x): Add warning to
9234         _dl_lookup_symbol_x code.
9236 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
9238         * elf/dl-runtime.c: Include sysdep-cancel.h.
9239         (_dl_fixup, _dl_profile_fixup): Use __rtld_mrlock_* and
9240         scoperec->nusers only if !SINGLE_THREAD_P.  Use atomic_*
9241         instead of catomic_* macros.
9242         * elf/dl-sym.c: Include sysdep-cancel.h.
9243         (do_sym): Use __rtld_mrlock_* and scoperec->nusers only
9244         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
9245         * elf/dl-close.c: Include sysdep-cancel.h.
9246         (_dl_close): Use __rtld_mrlock_* and scoperec->nusers only
9247         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
9248         * elf/dl-open.c: Include sysdep-cancel.h.
9249         (dl_open_worker): Use __rtld_mrlock_* and scoperec->nusers only
9250         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
9252 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
9254         [BZ #3313]
9255         * malloc/malloc.c (malloc_consolidate): Set maxfb to address of last
9256         fastbin rather than end of fastbin array.
9258 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
9260         * sysdeps/i386/i486/bits/atomic.h (catomic_decrement): Use correct
9261         body macro.
9262         * sysdeps/x86_64/bits/atomic.h
9263         (__arch_c_compare_and_exchange_val_64_acq): Add missing casts.
9264         (catomic_decrement): Use correct body macro.
9266 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
9268         * include/atomic.h: Add a unique prefix to all local variables
9269         in macros.
9270         * csu/tst-atomic.c (do_test): Test also catomic_* macros.
9272 2006-10-16  Ulrich Drepper  <drepper@redhat.com>
9274         [BZ #3369]
9275         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Fix typos in rules 4
9276         and 7.
9278 2006-10-14  Ulrich Drepper  <drepper@redhat.com>
9280         * resolv/arpa/nameser.h: Document that ns_t_a6 is deprecated.
9282 2006-10-13  Ulrich Drepper  <drepper@redhat.com>
9284         [BZ #3313]
9285         * malloc/malloc.c (malloc_consolidate): Don't use get_fast_max to
9286         determine highest fast bin to consolidate, always look into all of
9287         them.
9288         (do_check_malloc_state): Only require for empty bins for large
9289         sizes in main arena.
9291         * libio/stdio.h: Add more __wur attributes.
9293         * elf/dl-minimal.c (realloc): Optimize last patch.
9295 2006-10-12  Richard Sandiford  <richard@codesourcery.com>
9297         [BZ #3352]
9298         * elf/dl-minimal.c (realloc): Let malloc() return a new pointer,
9299         and use memcpy() if it does.
9301 2006-11-12  Andreas Jaeger  <aj@suse.de>
9303         [BZ #2510]
9304         * manual/search.texi (Hash Search Function): Clarify.
9305         (Array Search Function): Clarify.
9307 2006-11-12  Joseph Myers  <joseph@codesourcery.com>
9309         [BZ #2830]
9310         * math/atest-exp.c (main): Cast hex value to mp_limb_t before
9311         shifting.
9312         * math/atest-exp2.c (read_mpn_hex): Likewise.
9313         * math/atest-sincos.c (main): Likewise.
9315 2006-10-11  Ulrich Drepper  <drepper@redhat.com>
9317         * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_pwait.
9318         * sysdeps/unix/sysv/linux/sys/epoll.h: Declare epoll_pwait.
9319         * sysdeps/unix/sysv/linux/Versions (libc): Add epoll_pwait for
9320         version GLIBC_2.6.
9321         * Versions.def: Add GLIBC_2.6 for libc.
9323         * sysdeps/unix/sysv/linux/i386/sysdep.h (DOARGS_6): Fix offset.
9325         * sysdeps/i386/i486/bits/atomic.h: Add catomic_* support.
9327 2006-10-11  Jakub Jelinek  <jakub@redhat.com>
9329         * malloc/malloc.c (_int_malloc): Remove unused any_larger variable.
9331         * nis/nis_defaults.c (__nis_default_access): Don't call getenv twice.
9333         * nis/nis_subr.c (nis_getnames): Use __secure_getenv instead of getenv.
9334         * sysdeps/generic/unsecvars.h: Add NIS_PATH.
9336 2006-10-11  Ulrich Drepper  <drepper@redhat.com>
9338         * include/atomic.c: Define catomic_* operations.
9339         * sysdeps/x86_64/bits/atomic.h: Likewise.  Fix a few minor problems.
9340         * stdlib/cxa_finalize.c: Use catomic_* operations instead of atomic_*.
9341         * malloc/memusage.c: Likewise.
9342         * gmon/mcount.c: Likewise.
9343         * elf/dl-close.c: Likewise.
9344         * elf/dl-open.c: Likewise.
9345         * elf/dl-profile.c: Likewise.
9346         * elf/dl-sym.c: Likewise.
9347         * elf/dl-runtime.c: Likewise.
9348         * elf/dl-fptr.c: Likewise.
9349         * resolv/res_libc.c: Likewise.
9351 2006-10-10  Ulrich Drepper  <drepper@redhat.com>
9353         * nis/nis_subr.c (nis_getnames): Add trailing dot to NIS_PATH
9354         components which lack them.
9356         * nis/nis_subr.c (nis_getnames): Make sure that we always return
9357         at least one entry consisting of the parameter concatenated with
9358         the domain.
9360 2006-10-10  Roland McGrath  <roland@frob.com>
9362         * sysdeps/mach/hurd/utimes.c: Use a union to avoid an improper cast.
9363         * sysdeps/mach/hurd/futimes.c: Likewise.
9364         * sysdeps/mach/hurd/lutimes.c: Likewise.
9366 2006-10-09  Ulrich Drepper  <drepper@redhat.com>
9367             Jakub Jelinek  <jakub@redhat.com>
9369         Implement reference counting of scope records.
9370         * elf/dl-close.c (_dl_close): Remove all scopes from removed objects
9371         from the list in objects which remain.  Always allocate new scope
9372         record.
9373         * elf/dl-open.c (dl_open_worker): When growing array for scopes,
9374         don't resize, allocate a new one.
9375         * elf/dl-runtime.c: Update reference counters before using a scope
9376         array.
9377         * elf/dl-sym.c: Likewise.
9378         * elf/dl-libc.c: Adjust for l_scope name change.
9379         * elf/dl-load.c: Likewise.
9380         * elf/dl-object.c: Likewise.
9381         * elf/rtld.c: Likewise.
9382         * include/link.h: Include <rtld-lowlevel.h>.  Define struct
9383         r_scoperec.  Replace r_scope with pointer to r_scoperec structure.
9384         Add l_scoperec_lock.
9385         * sysdeps/generic/ldsodefs.h: Include <rtld-lowlevel.h>.
9386         * sysdeps/generic/rtld-lowlevel.h: New file.
9388         * include/atomic.h: Rename atomic_and to atomic_and_val and
9389         atomic_or to atomic_or_val.  Define new macros atomic_and and
9390         atomic_or which do not return values.
9391         * sysdeps/x86_64/bits/atomic.h: Define atomic_and and atomic_or.
9392         Various cleanups.
9393         * sysdeps/i386/i486/bits/atomic.h: Likewise.
9395         * po/sv.po: Update from translation team.
9397 2006-10-07  Ulrich Drepper  <drepper@redhat.com>
9399         * Versions.def: Add GLIBC_2.6 to libpthread.
9401         * include/shlib-compat.h (SHLIB_COMPAT): Expand parameters before use.
9402         (versioned_symbol): Likewise.
9403         (compat_symbol): Likewise.
9405         * po/tr.po: Update from translation team.
9407 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
9409         * nis/Banner: Removed.  It's been integral part forever and the
9410         author info is incomplete anyway.
9411         * libio/Banner: Likewise.
9413         * nis/nis_table.c (nis_list): If __follow_path fails in the new
9414         code, make sure the nis_freeresult call doesn't crash and that the
9415         result is reported correctly.
9417 2006-09-27  Jakub Jelinek  <jakub@redhat.com>
9419         * nis/nis_table.c (nis_list): Handle FOLLOW_PATH | ALL_RESULTS
9420         when callback is NULL.
9422         * nis/Versions (libnss_nisplus): Add
9423         _nss_nisplus_initgroups_dyn@@GLIBC_PRIVATE.
9424         * nis/Makefile (libnss_nisplus-routines): Add nisplus-initgroups.
9425         * nis/nss_nisplus/nisplus-grp.c (tablename_val, tablename_len,
9426         _nss_create_tablename): Rename to...
9427         (grp_tablename_val, grp_tablename_len, _nss_grp_create_tablename):
9428         ... these.  No longer static.
9429         (internal_setgrent): Adjust users.
9430         (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
9431         Don't use locking around _nss_grp_create_tablename call.
9432         * nis/nss_nisplus/nisplus-initgroups.c: New file.
9434 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
9436         * version.h (VERSION): Bump to 2.5.90 for new development tree.
9438 2006-10-06  Andreas Jaeger  <aj@suse.de>
9440         * include/features.h (__GLIBC_MINOR__): It's glibc 2.5 now.
9442 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
9444         * po/pl.po: Update from translation team.
9446         * nscd/nscd.c (main): Fix typo in message.
9447         Patch by Jakub Bogsz <qboosh@pld-linux.org>.
9449 2006-10-02  Jakub Jelinek  <jakub@redhat.com>
9451         [BZ #3291]
9452         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Include
9453         errno.h, signal.h, unistd.h and sysdep-cancel.h.
9454         (__sigprocmask): Define.
9456 2006-10-02  Ulrich Drepper  <drepper@redhat.com>
9458         * elf/rtld.c (dl_main): Don't use prelinking if LD_DYNAMIC_WEAK is
9459         used.
9461 2006-10-02  Jakub Jelinek  <jakub@redhat.com>
9463         * nscd/mem.c (mempool_alloc): Round array size to 16 bytes
9464         in oldtotal and newtotal calculation.
9465         * nscd/nscd-client.h (struct mapped_database): Add datasize
9466         field.
9467         * nscd/nscd_helper.c (get_mapping): Initialize datasize field.
9468         (__nscd_get_map_ref): Get a new mapping even if mapping's data_size
9469         increased.
9470         (__nscd_cache_search): Add checks to make sure we never reference
9471         data beyond the current mapping.
9473 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
9475         * sysdeps/posix/getaddrinfo.c (match_prefix): Make mask and val
9476         variables const to avoid compiler warnings.
9478         * io/fts.c (fts_close): Remove redundant checks.
9479         (fts_build): Likewise.
9480         (fts_palloc): Likewise.
9482         * manual/message.texi (Advanced gettext functions,
9483         Using gettextized software): Fix typos.
9485 2006-09-30  Ulrich Drepper  <drepper@redhat.com>
9487         * posix/glob.c (glob_in_dir): Add some comments and asserts to
9488         explain why there are no leaks.
9490 2006-09-29  Ulrich Drepper  <drepper@redhat.com>
9492         * libio/wmemstream.c: Include <wchar.h>.
9493         * libio/bug-wmemstream1.c: Likewise.
9494         * libio/tst-wmemstream1.c: Likewise.
9495         * libio/tst-wmemstream2.c: Likewise.
9497         * version.h (RELEASE): Bump to 2.5.
9498         * README: Regenerated.
9500         * locale/iso-3166.def: Add Aaland Islands and Montenegro.
9502         [BZ #3273]
9503         * nscd/nscd_initgroups.c (__nscd_getgrouplist): It is OK to have
9504         found no group members.
9505         Patch by Petr Baudis.
9507 2006-09-29  Jakub Jelinek  <jakub@redhat.com>
9509         * elf/rtld.c (_dl_start_final): If not USE___THREAD, don't
9510         assert bootstrap_map.l_tls_modid is zero.
9511         (_dl_start): Initialize bootstrap_map.l_tls_modid to 0
9512         if USE___THREAD.
9514 2006-09-27  Ulrich Drepper  <drepper@redhat.com>
9516         * libio/stdio.h: Move open_wmemstream prototype to ...
9517         * wcsmbs/wchar.h: ... here.
9519 2006-09-25  Jakub Jelinek  <jakub@redhat.com>
9521         [BZ #3252]
9522         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Handle only
9523         fchownat syscall and __ASSUME_LCHOWN_SYSCALL case inline, call
9524         __{,l}chown to handle the rest.
9525         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Handle only
9526         fchownat syscall and __ASSUME_32BITUIDS case inline, call
9527         __{,l}chown to handle the rest.
9528         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Include
9529         i386/fchownat.c.
9530         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Likewise.
9531         * sysdeps/unix/sysv/linux/sh/fchownat.c: Likewise.
9533         [BZ #3253]
9534         * posix/glob.c (glob_in_dir): Don't alloca one struct globlink at a
9535         time, rather allocate increasingly bigger arrays of pointers, if
9536         possible with alloca, if too large with malloc.
9538 2006-09-24  Jakub Jelinek  <jakub@redhat.com>
9540         * sysdeps/powerpc/fpu/libm-test-ulps: Updated.
9542         * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Fix 2 typos.
9544 2006-09-24  Ulrich Drepper  <drepper@redhat.com>
9546         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Implement rule 4,
9547         home addresses.
9548         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Recognize
9549         IFA_F_HOMEADDRESS flag for interfaces.
9550         * include/ifaddrs.h (struct in6addrinfo): Define
9551         in6ai_homeaddress.
9553 2006-09-21  Jakub Jelinek  <jakub@redhat.com>
9555         [BZ #3225]
9556         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (PTR_MANGLE3,
9557         PTR_DEMANGLE3): Define.
9558         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h (PTR_MANGLE3,
9559         PTR_DEMANGLE3): Likewise.
9560         * sysdeps/powerpc/powerpc32/__longjmp-common.S (__longjmp): Use them.
9561         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
9562         Likewise.
9563         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
9565 2006-09-20  Jakub Jelinek  <jakub@redhat.com>
9567         * po/libc.pot: Regenerated.
9568         * po/be.po: Updated.
9569         * po/ca.po: Likewise.
9570         * po/cs.po: Likewise.
9571         * po/da.po: Likewise.
9572         * po/de.po: Likewise.
9573         * po/el.po: Likewise.
9574         * po/en_GB.po: Likewise.
9575         * po/es.po: Likewise.
9576         * po/fi.po: Likewise.
9577         * po/fr.po: Likewise.
9578         * po/gl.po: Likewise.
9579         * po/hr.po: Likewise.
9580         * po/hu.po: Likewise.
9581         * po/ja.po: Likewise.
9582         * po/ko.po: Likewise.
9583         * po/nb.po: Likewise.
9584         * po/nl.po: Likewise.
9585         * po/pl.po: Likewise.
9586         * po/pt_BR.po: Likewise.
9587         * po/ru.po: Likewise.
9588         * po/rw.po: Likewise.
9589         * po/sk.po: Likewise.
9590         * po/sv.po: Likewise.
9591         * po/tr.po: Likewise.
9592         * po/zh_CN.po: Likewise.
9593         * po/zh_TW.po: Likewise.
9595         [BZ #3137]
9596         * iconv/iconv_prog.c (main): Fix spelling in error message.
9597         * iconv/iconvconfig.c (main): Likewise.
9598         * locale/programs/ld-collate.c (handle_ellipsis): Likewise.
9599         * locale/programs/ld-ctype.c (charclass_symbolic_ellipsis): Likewise.
9600         * locale/programs/localedef.c (main): Likewise.
9601         * locale/programs/repertoire.c (repertoire_read): Likewise.
9602         * timezone/zdump.c (main): Likewise.
9603         * nscd/connections.c (handle_request): Fix spelling in log message.
9604         Patch by Malcolm Parsons <malcolm.parsons@gmail.com>.
9606 2006-09-20  Ulrich Drepper  <drepper@redhat.com>
9608         * inet/inet6_option.c: Also emit linker warnings for the RFC 2292
9609         interfaces.
9611 2006-09-20  Andreas Jaeger  <aj@suse.de>
9613         * math/libm-test.inc (lrint_test_upward): Fix typo.
9615 2006-06-17  Joseph S. Myers  <joseph@codesourcery.com>
9617         [BZ #2592]
9618         * math/libm-test.inc (lrint_test_tonearest): New function.
9619         (lrint_test_towardzero): New function.
9620         (lrint_test_downward): New function.
9621         (lrint_test_upward): New function.
9622         (main): Run these new tests.
9623         * sysdeps/ieee754/dbl-64/s_llrint.c (__llrint): Correct rounding
9624         of values near to 0.
9625         (two52): Use double not long double.
9626         * sysdeps/ieee754/dbl-64/s_lrint.c (__lrint): Likewise.
9627         * sysdeps/ieee754/flt-32/s_llrintf.c (__llrintf): Likewise.
9628         (two23): Use float not double.
9629         * sysdeps/ieee754/flt-32/s_lrintf.c (__lrintf): Likewise.
9630         (two23): Use float not double.
9631         * sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Likewise.
9632         * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Likewise.
9633         * sysdeps/ieee754/ldbl-96/s_llrintl.c (__llrintl): Likewise.
9634         * sysdeps/ieee754/ldbl-96/s_lrintl.c (__lrintl): Likewise.
9636 2006-09-20  Martin Schwidefsky  <schwidefsky@de.ibm.com>
9638         * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c (__makecontext):
9639         Cast sp to unsigned long to avoid compiler warning.
9640         Use __makecontext_ret function instead of a trampoline on the stack.
9641         (__makecontext_ret): New function.
9642         * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Likewise.
9644 2006-09-19  Jakub Jelinek  <jakub@redhat.com>
9646         * elf/dl-cache.c (HWCAP_CHECK): If _DL_PLATFORMS_COUNT, but
9647         platform == -1, reject any libs with non-zero _DL_HWCAP_PLATFORM
9648         bits.
9650 2006-09-19  Ulrich Drepper  <drepper@redhat.com>
9652         * elf/dl-close.c (_dl_close): If dependency is not unloaded make
9653         sure no reference to the unloaded map's search list remains in the
9654         dependency's scope.
9656 2006-09-16  Jakub Jelinek  <jakub@redhat.com>
9658         * elf/Makefile: Add rules to build and run unload7 test.
9659         * elf/unload7.c: New test.
9660         * elf/unload7mod1.c: New file.
9661         * elf/unload7mod2.c: New file.
9663 2006-09-18  Jakub Jelinek  <jakub@redhat.com>
9665         * sysdeps/unix/sysv/linux/sys/ptrace.h (PT_GETEVENTMSG): Fix pasto.
9666         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_SETOPTIONS,
9667         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
9668         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_SETOPTIONS,
9669         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
9670         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_SETOPTIONS,
9671         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
9672         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h (PTRACE_SETOPTIONS,
9673         PTRACE_GETEVENTMSG): Likewise.
9674         (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Change to the arch independent
9675         values.
9677 2006-09-17  Mike Frysinger  <vapier@gentoo.org>
9679         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_SETOPTIONS,
9680         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
9681         * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Check PTRACE_SETOPTIONS,
9682         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO and PTRACE_SETSIGINFO.
9684 2006-09-16  Jakub Jelinek  <jakub@redhat.com>
9686         * sysdeps/powerpc/powerpc32/register-dump.h (register_dump): Don't
9687         write '\0' to the fd.
9688         * sysdeps/mach/hurd/powerpc/register-dump.h (register_dump): Likewise.
9689         * sysdeps/powerpc/powerpc64/register-dump.h (register_dump): Likewise.
9690         Change regs to unsigned long pointer from unsigned int, fix fscr
9691         offset.
9693 2006-09-14  Jakub Jelinek  <jakub@redhat.com>
9695         * io/Makefile (CFLAGS-fstatat.c): Set.
9696         (CFLAGS-fstatat64.c): Likewise.
9697         (CFLAGS-mknodat.c): Likewise.
9699         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Comment fixes.
9700         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
9701         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Rewritten.
9702         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Rewritten.
9704 2006-09-14  Jakub Jelinek  <jakub@redhat.com>
9705             Steven Munroe  <sjmunroe@us.ibm.com>
9707         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 4 new cap
9708         names to the beginning.  Rename "cell" to "cellbe".
9709         (_dl_powerpc_platforms): New.
9710         * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
9711         (HWCAP_IMPORTANT): Remove power{4,5,5+} and cell.
9712         (_DL_PLATFORMS_COUNT, _DL_FIRST_PLATFORM): Define.
9713         (_DL_HWCAP_PLATFORM): Define to new mask.
9714         (_dl_platform_string, _dl_string_platform): New functions.
9715         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_BOOKE, PPC_FEATURE_SMT,
9716         PPC_FEATURE_ICACHE_SNOOP, PPC_FEATURE_ARCH_2_05): Define.
9718 2006-09-12  Jakub Jelinek  <jakub@redhat.com>
9720         [BZ #2526]
9721         * README.libm: Fix a thinko in sqrt algorithm description.
9723         [BZ #3143]
9724         * manual/string.texi (argz_delete): Fix prototype.
9725         Patch by <alpt@freaknet.org>.
9727 2006-08-26  Joseph Myers  <joseph@codesourcery.com>
9729         [BZ #3138]
9730         * io/test-lfs.c (do_prepare): Give name_len type size_t.
9731         * io/tst-fcntl.c (do_prepare): Likewise.
9732         * posix/tst-exec.c (do_prepare): Likewise.
9733         * posix/tst-preadwrite.c (do_prepare): Likewise.
9734         * posix/tst-spawn.c (do_prepare): Likewise.
9735         * posix/tst-truncate.c (do_prepare): Likewise.
9736         * rt/tst-aio.c (do_prepare): Likewise.
9737         * rt/tst-aio64.c (do_prepare): Likewise.
9738         * stdlib/test-canon2.c (do_prepare): Give test_dir_len type
9739         size_t.
9741 2006-09-09  Ulrich Drepper  <drepper@redhat.com>
9743         [BZ #2821]
9744         * time/mktime.c (guess_time_tm): Fix overflow detection.
9745         * time/Makefile (tests): Add bug-mktime1.
9746         * time/bug-mktime1.c: New file.
9748         [BZ #3189, #3188]
9749         * misc/sys/mman.h (remap_file_pages): Make available for _GNU_SOURCE.
9750         (mremap): Likewise.
9752 2006-09-07  Jakub Jelinek  <jakub@redhat.com>
9754         [BZ #1006]
9755         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
9756         Ensure relocation doesn't clobber any bits outside of the
9757         immediate field for R_SPARC_TLS_LE_HIX22, R_SPARC_WDISP30,
9758         R_SPARC_HI22 and R_SPARC_H44.
9760         [BZ #2775]
9761         * malloc/malloc.c (sYSMALLOc): Only call grow_heap if
9762         (long) (MINSIZE + nb - old_size) is positive.
9764         * malloc/arena.c (grow_heap): When growing bail even if new_size
9765         is negative.
9767         [BZ #3155]
9768         * sysdeps/powerpc/powerpc32/fpu/s_lrint.S (__lrint): Don't access
9769         stack below r1.
9771 2006-09-06  Jakub Jelinek  <jakub@redhat.com>
9773         * posix/regex_internal.c (re_string_reconstruct): Handle
9774         offset < pstr->valid_raw_len && pstr->offsets_needed case.
9775         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
9776         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
9777         re_string_context_at.
9778         * posix/Makefile: Add rules to build and run bug-regex26 test.
9779         * posix/bug-regex26.c: New test.
9781         * locale/programs/ld-collate.c (collate_read): Goto sym_equiv_free
9782         rather than col_sym_free.  Move seqp declaration earlier.
9784         * resolv/gai_suspend.c (gai_suspend): Make sure result is initialized.
9786 2006-09-05  Jakub Jelinek  <jakub@redhat.com>
9788         * nscd/initgrcache.c (addinitgroupsX): Move any_success
9789         decl before first goto out.
9791 2006-09-04  Jakub Jelinek  <jakub@redhat.com>
9793         * Makerules (shlib.lds): If have-hash-style, put .hash section
9794         at the end of the RO segment.
9796 2006-09-04  Ulrich Drepper  <drepper@redhat.com>
9798         * elf/do-lookup.h (do_lookup_x): Initialize symidx in case the new
9799         style hash table format is used.
9801 2006-09-04  Jakub Jelinek  <jakub@redhat.com>
9803         * resolv/res_mkquery.c (res_nmkquery): Set hp->id to statp->id after
9804         randomization rather than before.
9805         * resolv/res_init.c (res_randomid): Don't call gettimeofday here.
9807 2006-08-31  Jakub Jelinek  <jakub@redhat.com>
9809         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Add ld.so.
9811         * malloc/malloc.c (_int_malloc): Use full list insert and not
9812         shortcut which assumes the list is empty for large requests
9813         too.
9815         * elf/tst-addr1.c (do_test): Allow i.dli_sname "_IO_printf".
9817 2006-08-30  Jakub Jelinek  <jakub@redhat.com>
9819         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (splice): Add offin
9820         and offout arguments to the prototype.
9821         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (splice): Likewise.
9822         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (splice): Likewise.
9823         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (splice): Likewise.
9824         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (splice): Likewise.
9825         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (splice): Likewise.
9826         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (splice): Likewise.
9827         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (splice): Likewise.
9828         * sysdeps/unix/sysv/linux/syscalls.list (splice): Adjust args string.
9830 2006-08-28  Ulrich Drepper  <drepper@redhat.com>
9832         * elf/dl-load.c (_dl_init_paths): Expand DSTs.
9834         * elf/dl-open.c (dl_open_worker): Allow $LIB and $PLATFORM in
9835         dlopen parameters.
9837 2006-08-28  Jakub Jelinek  <jakub@redhat.com>
9839         * inet/getnameinfo.c (getnameinfo): For AF_INET, check errno
9840         only if herrno is NETDB_INTERNAL.  Handle errors other than
9841         ERANGE outside of the loops, handle TRY_AGAIN.
9843         * locale/programs/ld-ctype.c (translit_flatten): Issue error
9844         if other's ctype category was missing.
9845         * locale/programs/ld-collate.c (collate_read): Return if
9846         copy_locale's collate category is missing.
9848 2006-08-27  Ulrich Drepper  <drepper@redhat.com>
9850         [BZ #2684]
9851         * malloc/malloc.c (public_rEALLOc): Try harder by using other
9852         arenas if allocation failed.
9853         Patch mostly by Jan Edler <jan.edler@indexengines.com>.
9855 2006-08-26  Ulrich Drepper  <drepper@redhat.com>
9857         * malloc/malloc.c (bin_at): Rewrite to be more clear and to not
9858         waste bins[0..1].
9859         (malloc_state): Reduce bins size by 2.
9860         (_int_malloc): Fix test for large enough buffer for early termination.
9861         When no unsorted block matches perfectly and an exiting block has
9862         to be split, use full list insert and not shortcut which assumes
9863         the list is empty.
9865         * locale/programs/ld-ctype.c (ctype_read): Better patch for read
9866         failure.
9868 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
9870         * locale/programs/ld-ctype.c (ctype_read): If CTYPE is NULL, don't
9871         do anything.
9873         * sysdeps/generic/ldsodefs.h (DL_ADDR_SYM_MATCH): For undefined
9874         symbol require exact match (these are PLTs).
9875         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
9876         (_dl_ppc64_addr_sym_match): Likewise.
9878         [BZ #2683]
9879         * elf/dl-addr.c (_dl_addr): Don't ignore all undefined symbols.
9880         If symbol has a value use it.
9881         * elf/tst-dladdr1.c: New file.
9882         * elf/Makefile: Add rules to build and run tst-addr1.
9884 2006-08-24  Jakub Jelinek  <jakub@redhat.com>
9886         * malloc/malloc.c (sYSMALLOc): Avoid infinite loop if MMAP
9887         keeps failing and heap growth or new heap creation isn't
9888         successful either.
9889         * malloc/tst-malloc.c (main): Add new tests.
9891 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
9893         [BZ #2734]
9894         * sysdeps/i386/bits/byteswap.h (__bswap_32): Use same conditions
9895         as in the x86-64 code to use bswap.
9897 2006-05-21  Joseph S. Myers  <joseph@codesourcery.com>
9899         [BZ #2680]
9900         * posix/unistd.h (getlogin_r): Condition on __USE_POSIX199506, not
9901         __USE_UNIX98.
9902         * posix/bits/unistd.h: Likewise.
9904 2006-05-15  Mike Frysinger  <vapier@gentoo.org>
9906         [BZ #2751]
9907         * string/strchr.c: Add cast to avoid warning.
9909 2006-08-21  Ulrich Drepper  <drepper@redhat.com>
9911         * malloc/malloc.c (DEFAULT_MMAP_THRESHOLD_MAX): For 32-bit
9912         platforms define as 512K.  For 64-bit platforms as 32MB.  The lower
9913         limit is needed to avoid the exploding of the address space
9914         requirement for secondary heaps.
9915         * malloc/arena.c (HEAP_MAX_SIZE): Define using
9916         DEFAULT_MMAP_THRESHOLD_MAX if it is defined.
9918 2006-07-30  Joseph S. Myers  <joseph@codesourcery.com>
9920         [BZ #3018]
9921         * Makerules (depfiles): Handle extra-test-objs the same as
9922         extra-objs.
9923         (common-mostlyclean): Likewise.
9924         * dlfcn/Makefile (extra-objs): Add modules to extra-test-objs
9925         instead.
9926         * elf/Makefile (extra-objs): Likewise.
9927         * stdlib/Makefile (extra-objs): Likewise.
9929 2006-08-14  Eric Blake  <ebb9@byu.net>
9931         [BZ #3044]
9932         * misc/error.h: Assume C89 or better.
9933         * misc/error.c: Likewise.
9935 2006-08-21  Ulrich Drepper  <drepper@redhat.com>
9937         [BZ #3040]
9938         * sysdeps/unix/sysv/linux/openat.c: Fix compilation if
9939         __ASSUME_ATFCTS is defined.
9941 2006-08-19  Ulrich Drepper  <drepper@redhat.com>
9943         * malloc/malloc.c (_int_malloc): Limit number of unsorted blocks
9944         to sort in each call.
9946         * nis/nss_nis/nis-service.c (internal_nis_getservent_r): . If map
9947         is empty simply return and use next service.
9948         * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r): Likewise.
9950         * locale/programs/charmap.c (charmap_read): Add new parameter.  It
9951         tells us when not finding a charmap file is an error.
9952         * locale/programs/charmap.h: Adjust charmap_read prototype.
9953         * iconv/iconv_prog.c (main): Tell charmap_read it's no error if we
9954         cannot find a charmap.
9955         * locale/programs/localedef.c (main): Adjust charmap_read call.
9957 2006-08-15  Jakub Jelinek  <jakub@redhat.com>
9959         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Use
9960         sysdeps/posix/pause.c implementation instead.
9962 2006-08-09  Jakub Jelinek  <jakub@redhat.com>
9964         * sysdeps/unix/nice.c (nice): Transform EACCES errno from setpriority
9965         to EPERM.
9967 2006-08-13  Andreas Schwab  <schwab@suse.de>
9969         * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve):
9970         Don't clobber caller's LRSAVE.
9971         (_dl_prof_resolve): Likewise.
9973 2006-08-14  Ulrich Drepper  <drepper@redhat.com>
9975         [BZ #1996]
9976         * libio/memstream.c (open_memstream): Allocate initial buffer with
9977         calloc.
9978         * libio/wmemstream.c (open_wmemstream): Likewise.
9979         * libio/strops.c: Pretty printing.
9980         (_IO_str_overflow): Clear uninitialized part of the new buffer.
9981         (enlarge_userbuf): New function.
9982         (_IO_str_seekoff): Call it if seek position is larger than current
9983         buffer.
9984         * libio/wstrops.c: Likewise.
9985         * libio/vasprintf.c: Add comment as to why we do not have to use
9986         calloc instead of malloc to allocate initial buffer.
9987         * libio/Makefile (tests): Add bug-memstream1 and bug-wmemstream1.
9988         * libio/bug-memstream1.c: New file.
9989         * libio/bug-wmemstream1.c: New file.
9991 2006-08-13  Ulrich Drepper  <drepper@redhat.com>
9993         * libio/wstrops.c: Remove dead macro definitions and comments.
9994         * libio/strops.c: Likewise.
9996         [BZ #2764]
9997         * login/utmpname.c (__utmpname): Remove unnecessary test.
9999 2006-06-08  Joseph Myers  <jsm28@gcc.gnu.org>
10001         [BZ #2832]
10002         * math/gen-libm-test.pl (clean_up_number): Do not remove trailing
10003         0s from integers.
10005 2006-08-13  Ulrich Drepper  <drepper@redhat.com>
10007         [BZ #2987]
10008         * sysdeps/unix/sysv/linux/clock_settime.c: Add code to use syscall
10009         for CPU clocks.
10010         * sysdeps/unix/clock_settime.c: Add support for platform-specific
10011         setting of CPU clocks.
10013 2006-06-23  Paul Eggert  <eggert@cs.ucla.edu>
10015         [BZ #2841]
10016         * sysdeps/generic/stdint.h (UINT8_C, UINT16_C): Don't append 'U',
10017         since C99 requires the result to promote to 'int' when uint_least8_t
10018         and uint_least16_t promote to 'int'.
10020 2006-08-12  Ulrich Drepper  <drepper@redhat.com>
10022         [BZ #3013]
10023         * locale/programs/ld-ctype.c (ctype_output): Adjust alignments, fix
10024         lenght of one output field, correct bitmask creation.
10025         * locale/programs/ld-time.c: Add alignment.
10027         [BZ #2997]
10028         * misc/error.c: Add space between program name and message if file
10029         name is missing.
10031 2006-08-03  Eric Blake  <ebb9@byu.net>
10033         [BZ #2998]
10034         * misc/error.c (error_tail) [_LIBC]: Avoid invalid free.
10036 2006-08-09  Ulrich Drepper  <drepper@redhat.com>
10038         * malloc/memusagestat.c: Silence warnings.
10040         * malloc/malloc.c: Dynamically size mmap treshold if the program
10041         frees mmaped blocks.
10042         Patch by Valerie Henson and Arjan van de Ven.
10044 2006-08-08  Jakub Jelinek  <jakub@redhat.com>
10046         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (O_DIRECT): Protect with
10047         __USE_GNU.
10049         * stdlib/strtol_l.c (__strtol_ul_max_tab, __strtol_ul_rem_tab,
10050         __strtol_ull_max_tab, __strtol_ull_rem_tab): Declare.
10051         (DEF): Don't put the var into .gnu.linkonce.r.* section.
10052         Only provide var definitions in strtol_l (or for *ull*
10053         in strtoll_l).
10055         * stdio-common/bug16.c (tests): New array.
10056         (do_tests): Allow the first hexadecimal digit
10057         to be 1, 2, 4 or 8.  Do 3 additional tests.
10059         * sysdeps/s390/fpu/libm-test-ulps: Update.
10061         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c (fchownat): Use
10062         fchownat syscall if available.
10063         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
10064         * sysdeps/unix/sysv/linux/sh/fchownat.c (fchownat): Likewise.
10065         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
10067 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
10069         * nis/nis_xdr.c: Avoid some function calls.
10071 2006-08-07  Jakub Jelinek  <jakub@redhat.com>
10072             Ulrich Drepper  <drepper@redhat.com>
10074         * nis/nis_call.c (rec_dirsearch) [case LOWER_NAME]: Don't take
10075         short cut if only one name component is stripped away.
10077 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
10079         * nis/nis_call.c: Minor cleanups throughout.
10080         (rec_dirsearch) [case HIGHER_NAME]: Correctly size ndomain array.
10081         (first_shoot): Add search_parent_first parameter.  Only if it is set
10082         search parent server first.
10083         If directory for table found through cold start cache is not the same
10084         as referenced in the cache, don't use it.
10085         (__nisfind_server): Take additional parameter.  Pass it on to
10086         first_shoot.
10087         (__prepare_niscall): Adjust __nisfind_server call.
10088         * nis/rpcsvc/nislib.h: Adjust __nisfind_server prototype.
10089         * nis/nis_table.c: Adjust __nisfind_server call.
10090         * nis/nis_lookup.c: Likewise.
10091         (nis_lookup): Don't loop endlessly if name is reduced to ".".
10093 2006-08-03  Ulrich Drepper  <drepper@redhat.com>
10095         [BZ #2182]
10096         * math/s_cacosh.c: Return values from positive branch.
10097         * math/s_cacoshf.c: Likewise.
10098         * math/s_cacoshl.c: Likewise.
10100         [BZ #2883]
10101         * sysvipc/sys/msg.h: Change return value to ssize_t.
10102         * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
10103         * sysvipc/msgrcv.c: Likewise.
10104         * include/sys/msg.h: Likewise.
10106         * grp/initgroups.c (internal_getgrouplist): Remove unnecessary
10107         test introduced in patch for bz #661.
10108         (getgrouplist): Simplify code a bit.  Don't allocate one additional
10109         element for NEWGROUPS.
10111         [BZ #2908]
10112         * stdio-common/printf_fphex.c (__printf_fphex): When rounding up
10113         'f', use '1' as leading digit not '\1'.
10114         * stdio-common/Makefile (tests): Add bug16.
10115         * stdio-common/bug16.c: New file.
10117         [BZ #2914]
10118         * sysdeps/unix/sysv/linux/gethostid.c: Don't define OLD_HOSTIDFILE
10119         and don't try to open it.  The patch introducing the macro
10120         contained a bug and used the same file name as the new file
10121         instead of using /var/adm/hostid.  Nobody complaint so I'm taking
10122         this out completely.
10124         [BZ #2926]
10125         * assert/assert.h: Move cast to void inside ?: to quiet gcc.
10126         Patch by Jerry James <Jerry.James@usu.edu>.
10128         * rt/Makefile (tests): Add tst-clock2.
10129         * rt/tst-clock2.c: New file.
10131         [BZ #2978]
10132         * resolv/gai_notify.c (__gai_notify_only): Copy memory for thread
10133         function and its parameters and pass it to new thread.
10134         (__gai_notify): Add support for alternative waiting for completion.
10135         * resolv/gai_suspend.c (gai_suspend): Add support for alternative
10136         waiting for completion.
10137         * resolv/getaddrinfo_a.c: Likewise.
10138         * resolv/gai_misc.h (struct waitlist): Don't add cond if alternative
10139         waiting for completion is used.
10140         * resolv/gai_misc.c: Allow overwriting code to start helper thread.
10141         * resolv/gai_cancel.c: Include <gai_misc.h> not "gai_misc.h".
10142         * resolv/gai_error.c: Likewise.
10143         * resolv/gai_sigqueue.c: Likewise.
10145 2006-08-02  Thomas Schwinge  <tschwinge@gnu.org>
10147         * hurd/getdport.c (__getdport): Don't return EBADF; instead set
10148         errno to EBADF and return MACH_PORT_NULL.
10150 2006-06-23  Joseph Myers  <joseph@codesourcery.com>
10152         [BZ #2980]
10153         * posix/Makefile (CFLAGS-waitid.c): Add -fasynchronous-unwind-tables.
10155 2006-08-02  Ulrich Drepper  <drepper@redhat.com>
10157         * elf/dl-addr.c (_dl_addr): If GNU-style hash tables are present,
10158         walk them instead of the symbol table.
10160 2006-08-01  Ulrich Drepper  <drepper@redhat.com>
10162         [BZ #2098]
10163         * nscd/initgrcache.c (addinitgroupsX): Judge successful lookups by
10164         status of NSS calls, not the number of returned entries.
10166         * sysdeps/unix/sysv/linux/syscalls.list: Remove add_key,
10167         request_key, keyctl.
10169 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
10171         * sysdeps/unix/sysv/linux/dl-osinfo.h: Remove unnecessary include.
10173 2006-07-16  Jeff Bailey  <jbailey@ubuntu.com>
10175         * elf/tst-auditmod1.c: Fix typo in #error.
10177 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
10179         * elf/tst-auditmod1.c: Remove code for unsupported architectures.
10181         * iconvdata/run-iconv-test.sh: Run cmp in C locale.
10183 2006-07-20  Adam Nemet  <anemet@caviumnetworks.com>
10185         * stdlib/test-canon.c (do_test): Close fd before unlinking file so
10186         that the directory is empty even on non-POSIX filesystems.
10188 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
10190         * elf/dl-open.c (dl_open_worker): Add branch prediction.
10192         * nis/nss_compat/compat-grp.c: Avoid unnecessary setgrent calls into
10193         the backend NSS module.  If backend setgrent call failed, don't have
10194         internal_setgrent fail.  Just remember this until it is needed.
10195         * nis/nss_compat/compat-pwd.c: Likewise.
10196         * nis/nss_compat/compat-spwd.c: Likewise.
10198 2006-07-30  Roland McGrath  <roland@redhat.com>
10200         * sysdeps/unix/sysv/linux/ia64/sigsuspend.c: File removed.
10201         * sysdeps/unix/sysv/linux/x86_64/sigsuspend.c: File removed.
10202         * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c: File removed.
10203         * sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c: File removed.
10205         * sysdeps/unix/sysv/linux/not-cancel.h (pause_not_cancel): New macro.
10206         (nanosleep_not_cancel): New macro.
10207         (sigsuspend_not_cancel): new macro.
10208         * sysdeps/unix/sysv/linux/sigsuspend.c [__ASSUME_REALTIME_SIGNALS]
10209         (do_sigsuspend): Define as inline.
10210         (__sigsuspend): Always use do_sigsuspend.
10211         [! NO_CANCELLATION] (__sigsuspend_nocancel): New function.
10212         * include/signal.h: Declare __sigsuspend_nocancel.
10213         * sysdeps/posix/pause.c
10214         [! NO_CANCELLATION] (__pause_nocancel): New function.
10216         * include/unistd.h (__pause_nocancel): Add attribute_hidden.
10217         * include/time.h (__nanosleep_nocancel): Likewise.
10219 2006-07-30  Ulrich Drepper  <drepper@redhat.com>
10221         * locale/programs/localedef.c (add_to_readlist): Rename local
10222         variables to avoid confusion.
10224         * locale/programs/charmap.c (charmap_read): Emit error message if
10225         charmap couldn't be found or read.
10227 2006-07-28  Ulrich Drepper  <drepper@redhat.com>
10229         * sysdeps/unix/sysv/linux/kernel-features.h: Define
10230         __ASSUME_FUTEX_LOCK_PI.
10231         * include/time.h: Declare __nanosleep_nocancel.
10232         * include/unistd.h: Declare __pause_nocancel.
10234         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Use this instead of
10235         LDFLAGS.  Add -lgcc_eh and libc_nonshared (again) to make sure we
10236         get the __stack_chk_fail_local definition when it's needed.
10238 2006-07-26  Ulrich Drepper  <drepper@redhat.com>
10240         * dlfcn/Makefile: Add rules to build and run bug-atexit3.
10241         * dlfcn/bug-atexit3.c: New file.
10242         * dlfcn/bug-atexit3-lib.cc: New file.
10244         * dlfcn/dlmopen.c (dlmopen_doit): Don't allow RTLD_GLOBAL to be
10245         used when the namespace is not the base namespace.
10247 2006-07-26  Gavin Romig-Koch  <gavin@redhat.com>
10249         * stdlib/cxa_atexit.c (__new_exitfn_called): New variable.
10250         (__new_exitfn): Bump it in every successful call.
10251         * stdlib/cxa_finalize.c (__cxa_finalize): If destructor registered
10252         more exit handlers, call them right away.
10253         * stdlib/exit.h: Declare __new_exitfn_called.
10255 2006-07-25  Ulrich Drepper  <drepper@redhat.com>
10257         * stdlib/cxa_finalize.c (__cxa_finalize): Fix race condition when
10258         calling registered handler.
10260         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Fix comment.
10261         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
10262         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
10263         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
10264         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
10265         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
10266         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
10267         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
10269 2006-07-10  Ulrich Drepper  <drepper@redhat.com>
10271         * elf/dl-lookup.c (dl_new_hash): New functions.
10272         (_dl_lookup_symbol_x): Rename hash to old_hash and don't compute
10273         value here.  Compute new-style hash value.  Pass new hash value
10274         and reference to variable with the old value to do_lookup_x.
10275         (_dl_setup_hash): If DT_GNU_HASH is defined, use it and not
10276         old-style hash table.
10277         (_dl_debug_bindings): Pass new hash value and reference to variable
10278         with the old value to do_lookup_x.
10279         * elf/do-lookup.h (do_lookup_x): Accept additional parameter with
10280         new-style hash value and change old-style hash value parameter to
10281         be a reference.  Reoganize functions to determine whether
10282         new-style hash table is available.  Only fall back on old-style
10283         table.  If old-style hash value is needed, compute it here.
10284         * elf/dynamic-link.h (elf_get_dynamic_info): Relocate DT_GNU_HASH
10285         entry.
10286         * elf/elf.h: Define SHT_GNU_HASH, DT_GNU_HASH, DT_TLSDEC_PLT,
10287         DT_TLSDEC_GOT.  Adjust DT_ADDRNUM.
10288         * include/link.h (struct link_map): Add l_gnu_bitmask_idxbits,
10289         l_gnu_shift, l_gnu_bitmask, l_gnu_buckets and l_gnu_chain_zero.
10290         * Makeconfig: If linker supports --hash-style option add it to all
10291         linker command lines to build DSOs.
10292         * config.make.in: Define have-hash-style.
10293         * configure.in: Test whether linker supports --hash-style option.
10295         * elf/dl-misc.c (_dl_name_match_p): Make MAP parameter const.
10296         * sysdeps/generic/ldsodefs.h: Adjust prototype.
10298 2006-06-27  Ulrich Drepper  <drepper@redhat.com>
10300         * elf/dl-load.c (open_path): Fix test to determine whether DSO is
10301         auditing.
10303         * elf/dl-load.c (_dl_map_object): Try harder to avoid looking at
10304         RPATH of main map twice.
10306 2006-06-22  Ulrich Drepper  <drepper@redhat.com>
10308         * intl/dcigettext.c (DCIGETTEXT): If _nl_find_msg returns -1 don't
10309         look further, return original strings.
10310         (_nl_find_msg): Do not return found translation if the conversion
10311         failed.  Either signal the string is unusable or that something went
10312         wrong and the original should be used.
10314 2006-06-21  Ulrich Drepper  <drepper@redhat.com>
10316         * string/_strerror.c (__strerror_r): Add __builtin_expect.
10318 2006-06-14  Jakub Jelinek  <jakub@redhat.com>
10320         [BZ #2766]
10321         * misc/insremque.c (insque): Handle prev == NULL.
10322         * misc/Makefile (tests): Add tst-insremque.
10323         * misc/tst-insremque.c: New test.
10325 2006-06-17  Ulrich Drepper  <drepper@redhat.com>
10327         [BZ #2792]
10328         * elf/dl-deps.c (expand_dst): Rename __cnt variable to not
10329         conflict with DL_DST_REQUIRED.
10331 2006-06-16  Ulrich Drepper  <drepper@redhat.com>
10333         * nis/nis_subr.c (nis_getnames): Fix the implementation to better
10334         match what Solaris does.
10336 2006-06-04  Ulrich Drepper  <drepper@redhat.com>
10338         * sysdeps/posix/spawni.c (__spawni): Use local_seteuid and
10339         local_setegid instead of seteuid and setegid.
10340         * sysdeps/generic/local-setxid.h: New file.
10341         * sysdeps/unix/sysv/linux/local-setxid.h: New file.
10343         * sysdeps/posix/spawni.c (__spawni): Use non-cancelable interfaces.
10345         * string/Makefile (tests): Add bug-envz1.
10346         * string/bug-envz1.c: New file.
10348 2006-06-02  Jakub Jelinek  <jakub@redhat.com>
10350         * posix/regex_internal.c (re_string_skip_chars): If no character has
10351         been converted at all, set *last_wc to WEOF.  If mbrtowc failed, set wc
10352         to the byte which couldn't be converted.
10353         (re_string_reconstruct): Don't clear valid_raw_len before calling
10354         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
10355         tip_context using re_string_context_at.
10356         * posix/Makefile: Add rules to build and run bug-regex25 test.
10357         * posix/bug-regex25.c: New test.
10359 2006-06-02  Ryan S. Arnold  <rsa@us.ibm.com>
10361         [BZ #2703]
10362         * string/envz.c (envz_strip): Correct erroneously reversed src
10363         and dest parameters to memmove() invocation.
10365 2006-05-30  Jakub Jelinek  <jakub@redhat.com>
10367         * nscd/nscd.h (prune_cache): Add fd argument to prototype.
10368         * nscd/nscd.c (parse_opt): Read response from INVALIDATE request
10369         to make sure the database has been already invalidated.
10370         * nscd/cache.c (prune_cache): Add fd argument.  Write response to fd
10371         after the cache has been invalidated.  Use pthread_mutex_lock rather
10372         than pthread_mutex_trylock if fd != -1.
10373         * nscd/connections.c (invalidate_cache): Add fd argument, write
10374         response to fd if not calling prune_cache, pass fd to prune_cache.
10375         (handle_request): Adjust invalidate_cache caller.
10376         (nscd_run): Pass -1 as fd to prune_cache.
10378 2006-05-30  Ulrich Drepper  <drepper@redhat.com>
10380         * sysdeps/posix/getaddrinfo.c (gaiconf_init): Initialize bits in
10381         the correct place.
10383 2006-05-29  Ulrich Drepper  <drepper@redhat.com>
10385         * nscd/nscd.h (struct database_dyn): Add prunelock field.
10386         * nscd/cache.c (prune_cache): Take prunelock before starting the
10387         work.  Just return in case it is already taken.
10388         * nscd/connections.c (dbs): Initialize .prunelock.
10390 2006-05-25  Ulrich Drepper  <drepper@redhat.com>
10392         * nis/nis_removemember.c (nis_removemember): Avoid unnecessary
10393         copying.  No need to allocate new array for group members.  Just
10394         move the pointers and update the size.
10396         * nis/nis_addmember.c (nis_addmember): Avoid unnecessary copying.
10397         Avoid memory leak in case realloc fails.  Simplification for
10398         better code generation.
10400         Avoid deprecation warning because of libc_hidden_proto for
10401         inet6_option_alloc.
10402         * inet/inet6_option.c (option_alloc): Renamed from
10403         inet6_option_alloc.  Made static.
10404         (inet6_option_alloc): Now a simple wrapper around option_alloc.
10405         (inet6_option_append): Call option_alloc.
10406         * include/netinet/in.h: Remove libc_hidden_proto for
10407         inet6_option_alloc.
10409         * nis/nis_callback.c (__nis_create_callback): Always call xdr_free
10410         for cleanup when cb!=NULL [Coverity CID 233].
10412 2006-05-24  Ulrich Drepper  <drepper@redhat.com>
10414         [BZ #2693]
10415         * inet/Makefile (routines): Add inet6_opt and inet6_rth.
10416         * inet/Versions (libc, GLIBC_2.5): Add inet6_opt_init,
10417         inet6_opt_append, inet6_opt_finish, inet6_opt_set_val, inet6_opt_next,
10418         inet6_opt_find, inet6_opt_get_val, inet6_rth_space, inet6_rth_init,
10419         inet6_rth_add, inet6_rth_reverse, inet6_rth_segments,
10420         and inet6_rth_getaddr.
10421         * inet/netinet/ip6.h (struct ip6_rthdr0): Make ip6r0_addr a flexible
10422         array.
10423         * inet/netinet/in.h (struct ip6_mtuinfo): Define.
10424         Mark inet6_option_* interfaces as deprecated.
10425         Declare inet6_opt_init, inet6_opt_append, inet6_opt_finish,
10426         inet6_opt_set_val, inet6_opt_next, inet6_opt_find, inet6_opt_get_val,
10427         inet6_rth_space, inet6_rth_init, inet6_rth_add, inet6_rth_reverse,
10428         inet6_rth_segments, and inet6_rth_getaddr.
10429         * inet/inet6_opt.c: New file.
10430         * inet/inet6_rth.c: New file.
10432         * inet/netinet/icmp6.h: Pretty printing.
10434         [BZ #2683]
10435         * elf/dl-addr.c (_dl_addr): Don't match undefined references.
10437 2006-05-23  Ulrich Drepper  <drepper@redhat.com>
10439         * nis/nis_lookup.c (nis_lookup): Use __prepare_niscall instead of
10440         doing it all here.  When server does not know the answer do not
10441         fail immediate, try parent first.
10443         * nis/nis_domain_of_r.c (nis_domain_of_r): Add missing buffer
10444         overflow test.
10446 2006-05-20  Ulrich Drepper  <drepper@redhat.com>
10448         * nis/nis_call.c (__prepare_niscall): New function.  Split out
10449         from __do_niscall.
10450         * nis/nis_table.c (__create_ib_request): Renamed from create_ib_request
10451         and exported.
10452         (__follow_path): New function.  Split out from nis_list.
10453         * nis/nis_xdr.h: Add libnsl_hidden_proto for _xdr_ib_request and
10454         _xdr_nis_result.
10455         * nis/nis_xdr.c: Add libnsl_hidden_def for _xdr_ib_request and
10456         _xdr_nis_result.
10457         * nis/libnsl.h: Declare __prepare_niscall, __create_ib_request,
10458         and __follow_path.
10459         * nis/Versions: Export __prepare_niscall, __create_ib_request,
10460         __follow_path, __do_niscall3, _xdr_ib_request, and _xdr_nis_result
10461         from libnsl for version GLIBC_PRIVATE.
10462         * nis/nisplus-parser.h: Remove _nss_nisplus_parse_pwent_chk.
10463         Remove entry parameter from _nss_nisplus_parse_pwent and
10464         _nss_nisplus_parse_grent.
10465         * nis/nss_nisplus/nisplus-parser.c: Likewise.
10466         * nis/nss_nisplus/nisplus-pwd.c: Remove support for SETENT_BATCH_READ
10467         again.  Rewrite getpwent handling to not use nis_first_entry and
10468         nis_next_entry.  Roll out own niscall handling.
10469         * nis/nss_nisplus/nisplus-grp.c: Likewise.
10471         * sunrpc/xdr_rec.c: Fix typo in comment.
10473 2006-05-19  Ulrich Drepper  <drepper@redhat.com>
10475         * nis/nis_call.c (__do_niscall3): Avoid code duplication in error
10476         handling.
10478         * nis/nis_callback.c (internal_nis_do_callback): Don't use malloc
10479         to allocate memory for my_pollfd.  Better initialization of
10480         cb_is_running.  Use TEMP_FAILURE_RETRY.
10482         * malloc/memusage.sh (memusageso): Add quotes.
10483         (memusagestat): Likewise.
10484         * debug/xtrace.sh (pcprofileso): Likewise.
10485         (pcprofiledump): Likewise.
10486         * debug/Makefile ($(objpfx)xtrace): Use $LIB in SLIBDIR
10487         replacement.
10488         * malloc/Makefile ($(objpfx)memusage): Likewise.
10490         * nis/nis_callback.c (__nis_create_callback): Calls to
10491         svcudp_bufcreate and svctcp_create can fail.  Free ->xprt if
10492         asprintf call fails.
10494         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_sendreq): Make sure
10495         no uninitialized memory is passed to sendto.
10497 2006-05-18  Ulrich Drepper  <drepper@redhat.com>
10499         * nis/nis_callback.c (__nis_create_callback): Use asprinf instead
10500         of snprintf+strdup.  Handle OOM.
10501         * nis/nis_callback.c (__nis_create_callback): Allocate cb and
10502         cb->serv together.  Remove now obsolete free calls.
10503         (__nis_destroy_callback): Remove now obsolete free call.
10505 2006-05-18  David Woodhouse  <dwmw2@redhat.com>
10507         * sysdeps/posix/getaddrinfo.c: Add unique labels to the default
10508         RFC3484 precedence table for fec0::/10 and fc00::/7 (site-local
10509         and ULA respectively). Set precedence for IPv4 address to 10 as
10510         defined in RFC3484 for preferring IPv6.
10511         * posix/gai.conf: Update to match the new default tables.
10513 2006-05-18  Jakub Jelinek  <jakub@redhat.com>
10515         * nis/nss_compat/compat-pwd.c (internal_setpwent): If nss_set*ent
10516         returned NSS_STATUS_UNAVAIL, still return NSS_STATUS_SUCCESS.
10517         * nis/nss_compat/compat-spwd.c (internal_setspent): Likewise.
10518         * nis/nss_compat/compat-grp.c (internal_setgrent): Likewise.
10520         * nis/nss_compat/compat-initgroups.c (nss_setgrent, nss_endgrent):
10521         Removed.
10522         (init_nss_interface): Remove initialization of these variables.
10524 2006-05-18  Ulrich Drepper  <drepper@redhat.com>
10526         * nis/nis_call.c (rec_dirsearch): Little optimization: pull
10527         nis_free_directory forward to avoid duplication.
10529 2006-05-17  Ulrich Drepper  <drepper@redhat.com>
10531         * nis/nis_call.c (rec_dirsearch): Handle __nis_finddirectory and
10532         rec_dirsearch returning NULL.
10533         (first_shoot): Handle __nis_finddirectory returning NULL.
10534         (__nisfind_server): Fix leak when rec_dirsearch returns NULL.
10536         * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOSE, IN_MOVE,
10537         IN_ONLYDIR, IN_DONT_FOLLOW, and IN_MASK_ADD.
10539 2006-05-17  Jakub Jelinek  <jakub@redhat.com>
10541         * sunrpc/key_call.c (getkeyserv_handle): Call auth_destroy if
10542         pid changed.
10544 2006-05-15  Ulrich Drepper  <drepper@redhat.com>
10546         * include/rpc/pmap_prot.h: Mark all functions as hidden.
10548         * nscd/nscd_initgroups.c: Mark __gr_map_handle as hidden.
10549         * nscd/nscd_getgr_r.c: Likewise.
10551         * include/rpc/pmap_rmt.h: Mark all functions as hidden.
10553         * nscd/nscd_getai.c (__hst_map_handle): Mark as hidden.
10554         * nscd/nscd_gethst_r.c (__hst_map_handle): Likewise.
10556         * stdlib/longlong.h (__clz_tab): Mark as hidden.
10558         * iconv/gconv_int.h: Mark __gconv_lock as hidden.
10560         * include/rpc/key_prot.h: Mark all _internal functions as hidden.
10562         * include/rpc/auth.h: Mark xdr_des_block_internal and
10563         xdr_opaque_auth_internal as hidden.
10565         * sysdeps/unix/sysv/linux/getdents.c: Mark __have_no_getdents64 as
10566         hidden.
10568         * include/rpc/xdr.h: Mark all _internal functions as hidden.
10570         * misc/getusershell.c (okshells): Don't use static initializers,
10571         do it dynamically.
10573         * stdlib/fmtmsg.c (keywords): Change type of len element to
10574         uint32_t to not waste space on 64bit machines.
10576         * locale/setlocale.c: Change _nl_category_names into a string.
10577         Add new _nl_category_name_idxs.  Change all users.
10578         * locale/localeinfo.h: Adjust declaration of _nl_category_names.
10579         Declare _nl_category_name_idxs.
10580         * locale/findlocale.c: Adjust for _nl_category_names change.
10581         * locale/loadlocale.c: Likewise.
10582         * locale/newlocale.c: Likewise.
10583         * intl/dcigettext.c: Likewise.
10585         * iconv/gconv_conf.c (add_alias): Move actual alias handling to...
10586         (add_alias2): ...here.  New function.
10587         (__gconv_read_conf): Simplify builtin alias handling.
10588         (builtin_aliases): Convert to string to avoid relocations.
10589         * iconv/gconv_builtin.h: Add comment about correct formatting.
10591 2006-05-15  Jakub Jelinek  <jakub@redhat.com>
10593         * resolv/res_debug.c (loc_ntoa): Make error const.
10595 2006-05-14  Andreas Schwab  <schwab@suse.de>
10597         * math/complex.h [__LDBL_COMPAT]: Use __REDIRECT_NTH.
10599 2006-05-12  Jakub Jelinek  <jakub@redhat.com>
10601         * sysdeps/unix/sysv/linux/sched_getaffinity.c: Include sys/param.h.
10602         (__sched_getaffinity_new): Don't crash if cpusetsize is smaller than
10603         sizeof (cpu_set_t).
10605 2006-05-11  Ulrich Drepper  <drepper@redhat.com>
10607         * resolv/res_debug.c (loc_ntoa): Define error as array, not pointer.
10609         * include/arpa/nameser.h: Declare _ns_flagdata as hidden.
10611         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_master.
10612         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_master.
10614         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypbind_resp.
10615         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypbind_resp.
10617         * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_cback_data.
10618         * include/rpcsvc/nis_callback.h: Add libnsl_hidden_proto for
10619         xdr_cback_data.
10621         * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypupdate_args.
10622         * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
10623         xdr_ypupdate_args.
10625         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_order.
10626         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_order.
10628         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_maplist.
10629         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_maplist.
10631         * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_obj_p.
10632         * include/rpcsvc/nis_callback.h: New file.
10634         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_val.
10635         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_val.
10637         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
10638         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
10640         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypmaplist.
10641         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypmaplist.
10643         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
10644         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
10646         * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypdelete_args.
10647         * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
10648         xdr_ypdelete_args.
10650         * nis/nis_xdr.h: Mark all functions as hidden.  Remove
10651         __BEGIN_DECLS and __END_DECLS, the header is not installed.
10653         * nis/nis_error.c: Remove table of strings.  Use position
10654         independent mechanism.
10655         * nis/nis_error.h: New file.
10657 2006-05-11  Jakub Jelinek  <jakub@redhat.com>
10659         * locale/programs/ld-time.c (time_finish): If wide era name or
10660         format aren't provided, set both wname and wformat to L"".
10662 2006-05-10  Ulrich Drepper  <drepper@redhat.com>
10664         * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Only store
10665         results if the call was succesful.
10667         * nis/nss-nis.h: Mark __yperr2nss_tab and __yperr2nss_count as hidden.
10669         * nis/nss-nisplus.h: Mark __niserr2nss_tab and __niserr2nss_count
10670         as hidden.
10672 2006-05-10  Jakub Jelinek  <jakub@redhat.com>
10674         * misc/sys/queue.h: Remove uses of all QUEUEDEBUG_* macros.
10676 2006-05-10  Ulrich Drepper  <drepper@redhat.com>
10678         * posix/wordexp.c (parse_glob): No need to check ifs for NULL, the
10679         caller makes sure this is not the case.
10680         (wordexp): Simplify ifs_white creation.  [Coverity CID 231]
10682 2006-05-09  Ulrich Drepper  <drepper@redhat.com>
10684         * posix/wordexp.c: Remove numerous NULL pointer tests before FREE
10685         calls.
10687         * io/ftw.c (open_dir_stream): Return right away if REALLOC fails.
10688         [Coverity CID 229, 230]
10690         * argp/argp-help.c (hol_entry_help): Handle STATE==NULL in ARG and
10691         DGETTEXT calls.
10692         (hol_help): Likewise.  [Coverity CID 226, 227]
10694         * string/argz-replace.c (__argz_replace): Unconditionally call
10695         free on SRC.  [Coverity CID 225]
10697         * nis/nis_creategroup.c (nis_creategroup): No need to duplicate
10698         the return value of __nis_default_owner and __nis_default_group,
10699         it has been especially allocated.  [Coverity CID 224]
10701         * nis/nis_defaults.c (searchXYX): New functions.  Used by both
10702         searchgroup and searchowner.  Significantly simplified.
10703         (__nis_default_owner): Remove duplication.  Do not locally copy the
10704         string before duplicating it.
10705         (__nis_default_group): Likewise.
10707         * nis/nis_lookup.c (nis_lookup): After calling nis_free_directory,
10708         we must clear the variable before calling __nisfind_server.
10710         * nis/nis_lookup.c (nis_lookup): Always free memory allocated with
10711         nis_getnames.  [Coverity CID 223]
10713         * locale/programs/locfile.c (locfile_read): Use alloca instead of
10714         xmalloc to allocate local repertoire name.  [Coverity CID 222]
10716         * iconv/iconv_charmap.c (use_to_charmap): No need to dynamically
10717         allocate memory for the input to add_bytes.  [Coverity CID 221]
10719         * posix/wordexp.c (w_addword): Free word if realloc fails and it
10720         was allocated here.  [Coverity CID 219, 220]
10722         * posix/getconf.c (print_all): Free confstr data after printing.
10723         [Coverity CID 218]
10725         * sysdeps/posix/getaddrinfo.c (gaih_inet): Free canon string if
10726         list allocation fails.  [Coverity CID 215]
10728         * nss/nsswitch.c (__nss_configure_lookup): Fix loop end condition.
10729         [Coverity CID 213]
10731         * argp/argp-help.c (hol_entry_cmp): Don't call canon_doc_option if
10732         string is NULL.  [Coverity CID 212]
10733         * argp/Makefile: Add rules to build and run bug-argp1.
10734         * argp/bug-argp1.c: New file.
10736         * io/ftw.c (ftw_dir): Use __rawmemchr instead of strchr to find
10737         end of string.
10738         * stdlib/canonicalize.c (__realpath): Likewise.
10740         * locale/programs/ld-time.c (time_finish): Don't dereference NULL
10741         pointer.  [Coverity CID 206]
10743         * elf/dl-dst.h (DL_DST_REQUIRED): Be prepared for missing link map
10744         in statically linked code.
10745         * elf/dl-load.c (_dl_dst_substitute): When replacing ORIGIN in
10746         statically built code, be prepared to have no link map.
10747         [Coverity CID 205]
10749         * argp/argp-help.c (fill_in_uparams): Handle STATE==NULL in
10750         dgettext calls. [Coverity CID 204]
10752         * argp/argp-help.c (struct uparams): Remove valid member.  Change
10753         the one user.
10754         (uparam_names): Reduce size.  Avoid relative relocations.
10755         Moved to read-only segment.
10756         (fill_in_uparams): Update for new layout.
10758         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs): Parameter can be
10759         assumed to always be != NULL. [Coverity CID 202]
10761         * argp/argp-help.c (hol_entry_help): Remove some dead code
10762         [Coverity CID 200].
10764         * nis/nss_nis/nis-service.c (_nss_nis_getservbyport_r): Optimize
10765         away a few more unconditional yperr2nss calls.
10766         (_nss_nis_getservbyname_r): Likewise.
10768 2006-05-06  Ulrich Drepper  <drepper@redhat.com>
10770         * sysdeps/generic/ldsodefs.h: Remove support for non-core
10771         architectures.
10773         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Make sure
10774         that unused memory passed to sendto is nevertheless initialized.
10776         [BZ #2499]
10777         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Avoid
10778         possibly unaligned memory accesses.
10780         * include/arpa/nameser.h: Also optimize NS_PUT16 and NS_PUT32.
10781         * resolv/res_mkquery.c: Use NS_PUT16 and NS_PUT32 instead of __putshort
10782         and __putlong respectively.  Correct buffer overflow check for
10783         NS_NOTIFY_OP.
10785         * resolv/res_send.c (send_vc): Use ns_put16 instead of putshort.
10787         * resolv/res_send.c (res_queriesmatch): Fix typo in comment.
10788         (send_dg): Rewrite error handling to be more compact and avoid
10789         double recomputation of timeouts.  Pass MSG_NOSIGNAL to send.
10791         * include/arpa/nameser.h: Add optimizations for NS_GET16 and NS_GET32.
10793         * resolv/res_send.c (res_nameinquery): Use NS_GET16 directly
10794         instead of ns_get16.
10795         (res_queriesmatch): Likewise.  Minor optimization.
10797         [BZ #2499]
10798         * resolv/res_query.c (__libc_res_nquery): If answerp != NULL,
10799         __libc_res_nsend might reallocate the buffer for the answer.  In
10800         this case we have to reload the HP pointer.
10802 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
10804         * stdio-common/vfscanf.c (memory_error): Remove definition.  Add
10805         some branch prediction hints.
10807         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Define SPLICE_F_*.
10808         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
10809         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
10810         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
10811         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
10812         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
10813         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
10814         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
10816 2006-05-05  Martin Schwidefsky  <schwidefsky@de.ibm.com>
10818         * sysdeps/s390/s390-32/elf/start.S: Replace pc relative relocation
10819         by a GOT relocation to make Scrt1.o position independent.
10820         * sysdeps/s390/s390-64/elf/start.S: Likewise.
10822         * sysdeps/unix/sysv/linux/s390/s390-32/syscall.S: Add support for
10823         six system call parameters.
10824         * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
10826 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
10828         * sunrpc/svcauth_des.c (cache_init): Use calloc instead of
10829         malloc&bzero.
10831         * sunrpc/svc_udp.c (BZERO): Remove definition.
10832         (CALLOC): Define.
10833         (svc_enablecache): Use CALLOC instead of ALLOC&BZERO.
10835         * sunrpc/des_impl.c: Remove ALT_ECB support.  We never used it.
10836         (des_SPtrans): Use uint32_t type.
10837         (des_skb): Likewise.
10839         * sunrpc/xdr_ref.c (xdr_reference): Use calloc instead of malloc&bzero.
10841 2006-05-05  Jakub Jelinek  <jakub@redhat.com>
10843         [BZ #2509]
10844         * stdio-common/tst-printf.sh: Adjust for tst-printf.c change even
10845         on 32-bit arches.
10847 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
10849         * locale/programs/ld-address.c (address_finish): Fix one more
10850         place where the iso639 array might be accessed beyond the limits.
10852 2006-05-04  Ulrich Drepper  <drepper@redhat.com>
10854         * nis/nis_table.c (nis_list): Avoid clearing res twice before
10855         filling it for the first time.
10857         * nis/nis_table.c (get_tablepath): Renamed from __get_tablepath.
10858         Adjust all callers.
10859         Free res object content before returning.
10861         * sunrpc/xdr_array.c (xdr_array): Use calloc instead of malloc&bzero.
10863         * sunrpc/key_call.c (__rpc_thread_key_cleanup): Also free
10864         client->cl_auth.
10866         * sunrpc/rpc_thread.c (__rpc_thread_destroy): Don't skip entire
10867         cleanup for initial thread, just the free call on TVP.
10869         * nscd/gai.c (__getline): Define.
10872 See ChangeLog.16 for earlier changes.