* locales/cs.CZ: Change week[2] to 19971130, change first_weekday and
[glibc.git] / ChangeLog
blobfd2c66a7cf9ed51ac32268a4d6f38fbc61b58c50
1 2009-04-24  Ulrich Drepper  <drepper@redhat.com>
3         [BZ #10093]
4         * iconv/gconv_simple.c (BODY for UTF-8 to INTERNAL): Don't accept
5         UTF-16 surrogates.
7         * locale/programs/locarchive.c (enlarge_archive): Conserve address
8         space when temporarily mapping the whole content of the old file.
10         [BZ #10100]
11         * misc/hsearch_r.c (hsearch_r): Add back ensurance that hval is
12         not zero.
14 2009-04-24  Jakub Jelinek  <jakub@redhat.com>
16         * iconvdata/sjis.c (BODY): Don't advance inptr before
17         STANDARD_FROM_LOOP_ERR_HANDLER (2) for 2 byte invalid input.
18         Use STANDARD_FROM_LOOP_ERR_HANDLER with 2 instead of 1 for
19         two byte chars.
21 2009-04-24  Ulrich Drepper  <drepper@redhat.com>
23         * locale/locarchive.h (struct locarhandle): Rename len field to
24         mmaped and add new reserved field.
25         * locale/programs/locarchive.c (RESERVE_MMAP_SIZE): Define.
26         (create_archive): Reserve address space and then map file into it.
27         (open_archive): Likewise.
28         (file_data_available_p): New function.
29         (compare_from_file): New function.
30         (close_archive): Adjust to member name changes.
31         (add_locale): Before comparing locale data, check it is mapped.
32         Otherwise fall back to reading from the file.
34 2009-04-23  H.J. Lu  <hongjiu.lu@intel.com>
36         * stdio-common/psiginfo.c: Include <errno.h>.
38 2009-04-23  Ulrich Drepper  <drepper@redhat.com>
40         [BZ #9920]
41         * stdlib/random_r.c (__srandom_r): Change type of word to int32_t
42         to get consistency between 32 and 64 bit architectures.
44         [BZ #10052]
45         * sysdeps/unix/make-syscalls.sh: Add rule to create target
46         directory for dummy syscall rules.
47         Patch by Chris Steinbroner <hesh@pobox.com>.
49 2009-04-23  Aurelien Jarno  <aurelien@aurel32.net>
51         [BZ #10092]
52         * sysdeps/unix/sysv/linux/sys/mount.h: Define MNT_DETACH and
53         MNT_EXPIRE.
55 2009-04-23  Ulrich Drepper  <drepper@redhat.com>
57         * sysdeps/unix/sysv/linux/preadv.c: The kernel API changed.  Adjust.
58         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
60 2009-04-23  Jakub Jelinek  <jakub@redhat.com>
62         * sysdeps/posix/pwritev.c (PWRITEV): Fix up comment.  Copy
63         data from vector to temporary buffer and call PWRITEV after it
64         instead of vice versa.
65         * sysdeps/posix/preadv.c: Fix up comment.
66         * misc/preadv.c: Likewise.
67         * misc/preadv64.c: Likewise.
68         * misc/pwritev.c: Likewise.
69         * misc/pwritev64.c: Likewise.
70         * misc/sys/uio.h (preadv, pwritev, preadv64, pwritev64): Likewise.
72 2009-04-23  Ulrich Drepper  <drepper@redhat.com>
74         * shadow/sgetspent_r.c (__sgetspent_r): Recognize too small buffers.
76         * shadow/Makefile (tests): Add tst-shadow.
77         * shadow/tst-shadow.c: New file.
79         [BZ #9955]
80         * gshadow/Makefile: New file.
81         * gshadow/Versions: New file.
82         * gshadow/fgetsgent.c: New file.
83         * gshadow/fgetsgent_r.c: New file.
84         * gshadow/getsgent.c: New file.
85         * gshadow/getsgent_r.c: New file.
86         * gshadow/getsgnam.c: New file.
87         * gshadow/getsgnam_r.c: New file.
88         * gshadow/gshadow.h: New file.
89         * gshadow/putsgent.c: New file.
90         * gshadow/sgetsgent.c: New file.
91         * gshadow/sgetsgent_r.c: New file.
92         * gshadow/tst-gshadow.c: New file.
93         * include/gshadow.h: New file.
94         * Makeconfig (all-subdirs): Add gshadow.
95         * Makefile (installed-headers): Add gshadow/gshadow.h.
96         * nss/Makefile (databases): Add sgrp.
97         * nss/Versions: Add gshadow functions as private exports.
98         * nss/nsswitch.conf: Add gshadow entry.
99         * nss/sgrp-lookup.c: New file.
100         * nss/nss_files/files-parse.c: Add STRING_LIST macro.  Rewrite
101         parse_list to handle STRING_LIST and TRAILING_LIST_PARSER.
102         * nss/nss_files/files-sgrp.c: New file.
103         * sysdeps/generic/paths.h: Add _PATH_GSHADOW.
104         * sysdeps/unix/sysv/linux/paths.h: Likewise.
106 2009-04-22  Ulrich Drepper  <drepper@redhat.com>
108         * stdio-common/printf.h: Add missing const to register_printf_modifier.
109         * stdio-common/reg-modifier.c: Likewise.
111 2009-04-22  Andrew Stubbs  <ams@codesourcery.com>
113         * sysdeps/sh/sh4/setjmp.S (__sigsetjmp): Adjust JB_SIZE when there
114         is no FPU.
116 2009-04-20  Ulrich Drepper  <drepper@redhat.com>
118         [BZ #10086]
119         * sysdeps/unix/sysv/linux/sys/timex.h: Add definitions from kernel
120         headers up to 2.6.30.
122         * po/ca.po: Update from translation team.
124 2009-04-19  Ulrich Drepper  <drepper@redhat.com>
126         [BZ #10069]
127         * elf/dl-open.c (dl_open_worker): We cannot guarantee that we can load
128         an object that uses static TLS if the TLS modid is higher than the
129         reserve we always allocate.  At least for multi-threaded code.
131 2009-04-18  Ulrich Drepper  <drepper@redhat.com>
133         * stdlib/strfmon_l.c (__vstrfmon_l): Don't wrap when computing width.
134         Numerically stable check for valid width.
136         * locale/programs/locarchive.c (open_archive): Map the entire file
137         and not just the administrative data.
138         (add_locale): When we find a hash sum match compare the content
139         to be sure.
141         * malloc/malloc.c (malloc_info): Output address space information.
143 2009-04-17  Ulrich Drepper  <drepper@redhat.com>
145         * malloc/malloc.c (malloc_info): Also output system memory information.
147         * sysdeps/unix/sysv/linux/kernel-features.h: All supported
148         architectures have preadv/pwritev in 2.6.30.
150         * sysdeps/posix/preadv.c: Reading of zero bytes is no error.
151         * sysdeps/posix/readv.c: Likewise.
152         Reported by Markus Armbruster <armbru@redhat.com>.
154         * malloc/hooks.c (top_check): Force hook value into register.
156 2009-04-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
158         * elf/rtld.c (dl_main): Really call _dl_sysdep_start_cleanup after all
159         calls to _dl_relocate_object.
161 2009-04-16  Ulrich Drepper  <drepper@redhat.com>
163         [BZ #9957]
164         * malloc/malloc.c (force_reg): Define.
165         (sYSMALLOc): Load hook variable into variable
166         before test and force into register.
167         (sYSTRIm): Likewise.
168         (public_mALLOc): Force hook value into register.
169         (public_fREe): Likewise.
170         (public_rEALLOc): Likewise.
171         (public_mEMALIGn): Likewise.
172         (public_vALLOc): Likewise.
173         (public_pVALLOc): Likewise.
174         (public_cALLOc): Likewise.
175         (__posix_memalign): Likewise.
176         * malloc/arena.c (ptmalloc_init): Load hook variable into variable
177         before test and force into register.
178         * malloc/hooks.c (top_check): Likewise.
179         (public_sET_STATe): Pretty printing.
181         * resolv/res_send.c (send_dg): Don't just ignore the result we got
182         in case we only receive one reply in single-request mode.
184 2009-04-16  Jakub Jelinek  <jakub@redhat.com>
186         * elf/dl-open.c (_dl_open): Bump GL(dl_nns) to 1 if no libraries
187         are dlopened in statically linked program even for __LM_ID_CALLER.
189 2009-04-16  Ulrich Drepper  <drepper@redhat.com>
191         * resolv/res_send.c (send_dg): Don't switch into single-request
192         mode if we already are in it.
194 2009-04-15  Ulrich Drepper  <drepper@redhat.com>
196         * sysdeps/unix/sysv/linux/getsysstats.c (next_line): Make sure there
197         are always at least 4 bytes in the returned line.
199 2009-04-15  Jakub Jelinek  <jakub@redhat.com>
201         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Check
202         __libc_use_alloca (8192), if the stack is too small use 512 bytes
203         instead of 8K.  Stop searching in /proc/stat after hitting first
204         line not starting with cpu.
205         (next_line): Truncate too long
206         lines at buffer size * 3/4 instead of pretending there were line
207         breaks inside of large lines.
209 2009-04-14  Ulrich Drepper  <drepper@redhat.com>
211         * sysdeps/x86_64/mp_clz_tab.c: New file.
213 2009-03-17  Ryan S. Arnold  <rsa@us.ibm.com>
214             Ulrich Drepper  <drepper@redhat.com>
216         * sysdeps/unix/sysv/linux/fallocate.c: Handle old kernel headers.
217         * sysdeps/unix/sysv/linux/fallocate64.c: Likewise.
218         * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.
220 2009-03-25  Andrew Stubbs  <ams@codesourcery.com>
222         * sysdeps/sh/libc-tls.c: New file.
224         * sysdeps/sh/bits/setjmp.h (__jmp_buf): Give name to structure type.
226 2009-04-14  Roland McGrath  <roland@redhat.com>
228         * elf/elf.h: Add various missing ARM constants, to match binutils.
230 2009-04-14  Ulrich Drepper  <drepper@redhat.com>
232         Optimizations from GMP.
233         * sysdeps/x86_64/add_n.S: New file.
234         * sysdeps/x86_64/addmul_1.S: New file.
235         * sysdeps/x86_64/lshift.S: New file.
236         * sysdeps/x86_64/mul_1.S: New file.
237         * sysdeps/x86_64/rshift.S: New file.
238         * sysdeps/x86_64/sub_n.S: New file.
239         * sysdeps/x86_64/submul_1.S: New file.
241 2009-04-14  Jakub Jelinek  <jakub@redhat.com>
243         * sysdeps/powerpc/powerpc32/elf/start.S: Ensure .data is non-empty.
244         * sysdeps/powerpc/powerpc64/elf/start.S: Likewise.
245         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
246         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
248 2009-04-14  Ulrich Drepper  <drepper@redhat.com>
250         * sysdeps/unix/sysv/linux/kernel-features.h: SH also has
251         preadv/pwritev.
253 2009-04-13  Ulrich Drepper  <drepper@redhat.com>
255         * sysdeps/x86-64/strrchr.S: New file.
257 2009-04-10  Ulrich Drepper  <drepper@redhat.com>
259         * stdio-common/printf.h (struct printf_info): Add user element.
260         New types printf_arginfo_size_function, printf_va_arg_function.
261         Declare register_printf_specifier, register_printf_modifier,
262         register_printf_type.
263         * stdio-common/printf-parse.h (struct printf_spec): Add size element.
264         (union printf_arg): Add pa_user element.
265         Adjust __printf_arginfo_table type.
266         Add __printf_va_arg_table, __printf_modifier_table,
267         __handle_registered_modifier_mb, and __handle_registered_modifier_wc
268         declarations.
269         * stdio-common/printf-parsemb.c: Recognize registered modifiers.
270         If registered arginfo call failed try normal specifier.
271         * stdio-common/printf-prs.c: Pass additional parameter to arginfo
272         function.
273         * stdio-common/Makefile (routines): Add reg-modifier and reg-type.
274         * stdio-common/Versions: Export register_printf_modifier,
275         register_printf_type, and register_printf_specifier for GLIBC_2.10.
276         * stdio-common/reg-modifier.c: New file.
277         * stdio-common/reg-type.c: New file.
278         * stdio-common/reg-printf.c (__register_printf_specifier): New
279         function.  Mostly the old __register_printf_function function but
280         uses locking and type of third parameter changed.
281         (__register_printf_function): Implement using
282         __register_printf_specifier.
283         * stdio-common/vfprintf.c (vfprintf): Collect argument sizes in
284         calls to arginfo functions.  Allocate enough memory for user-defined
285         types.  Call new va_arg functions to get user-defined types.
286         Try installed handlers even for existing format specifiers first.
288 2009-04-09  Ulrich Drepper  <drepper@redhat.com>
290         * sysdeps/x86_64/rawmemchr.S: New file.
292         * stdio-common/vfprintf.c (vfprintf): Slightly more compact code.
293         Simplified code and possible copy problem fixed.
295         * sysdeps/unix/sysv/linux/preadv.c: Avoid prototype for static
296         function if it is not defined.  Add some necessary casts.
297         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
299         * sysdeps/unix/sysv/linux/kernel-features.h: SPARC and IA64 also
300         have preadv/pwritev in 2.6.30.
302 2009-04-08  Ulrich Drepper  <drepper@redhat.com>
304         * malloc/malloc.c (malloc_info): New function.
305         * malloc/malloc.h: Declare it.
306         * malloc/Versions: Export malloc_info for GLIBC_2.10.
308         * sysdeps/unix/sysv/linux/preadv64.c (PREAD): Use __libc_pread64
309         to avoid PLT slot.
311         * malloc/malloc.c (_int_realloc): Add parameter with old block
312         size.  Remove duplicated test.  Don't handle mmap'ed blocks here.
313         Adjust all callers.
314         * malloc/hooks.c (realloc_check): Adjust _int_realloc call.
316 2009-04-07  Ulrich Drepper  <drepper@redhat.com>
318         * sysdeps/x86_64/strchrnul.S: New file.
320         * crypt/Makefile (LDLIBS-crypt.so): Use this variable instead of
321         depending libcrypt on -lfreebl3.
323         * sysdeps/unix/sysv/linux/kernel-features.h: Power also has
324         preadv/pwritev in 2.6.30.
326         * resolv/nss_dns/dns-host.c (getanswer_r): Use strcasecmp
327         instead of __strcasecmp.
329         * string/stratcliff.c (do_test): Add memchr tests..
330         * wcsmbs/wcsatcliff.c (MEMCHR): Define.
331         * sysdeps/x86_64/memchr.S: Fix handling of end of buffer after
332         first read quad word.
334 2009-04-06  Ulrich Drepper  <drepper@redhat.com>
336         * string/strverscmp.c (__strverscmp): Fix last cleanups.
337         * string/tst-svc.input: Add new test case.
338         * string/tst-svc.expect: Adjust.
339         * string/Makefile: Don't ignore tst-svc error.
341         * sysdeps/x86_64/memchr.S: New file.
343         * resolv/resolv.h (RES_SNGLKUP): Define.
344         * resolv/res_init.c (res_setoptions): Recognize single-request option.
345         * resolv/res_send.c (send_dg): If we sent two requests at once and
346         only get one reply before timeout switch to mode where we send the
347         second request only after the first answer has been received.
349 2009-04-05  Ulrich Drepper  <drepper@redhat.com>
351         * sysdeps/x86_64/strlen.S: Optimize by using SSE2 instructions.
352         * sysdeps/x86_64/strchr.S: Likewise.
354 2009-04-03  Ulrich Drepper  <drepper@redhat.com>
356         * configure.in: We need to test for the compiler earlier.
358         * misc/Makefile (routines): Add preadv, preadv64, pwritev, pwritev64.
359         * misc/Versions: Export preadv, preadv64, pwritev, pwritev64 for
360         GLIBC_2.10.
361         * misc/sys/uio.h: Declare preadv, preadv64, pwritev, pwritev64.
362         * sysdeps/unix/sysv/linux/kernel-features.h: Add entries for preadv
363         and pwritev.
364         * misc/preadv.c: New file.
365         * misc/preadv64.c: New file.
366         * misc/pwritev.c: New file.
367         * misc/pwritev64.c: New file.
368         * sysdeps/posx/preadv.c: New file.
369         * sysdeps/posx/preadv64.c: New file.
370         * sysdeps/posx/pwritev.c: New file.
371         * sysdeps/posx/pwritev64.c: New file.
372         * sysdeps/unix/sysv/linux/preadv.c: New file.
373         * sysdeps/unix/sysv/linux/preadv64.c: New file.
374         * sysdeps/unix/sysv/linux/pwritev.c: New file.
375         * sysdeps/unix/sysv/linux/pwritev64.c: New file.
376         * sysdeps/unix/sysv/linux/wordsize-64/preadv64.c: New file.
377         * sysdeps/unix/sysv/linux/wordsize-64/pwritev64.c: New file.
379         * sysdeps/unix/sysv/linux/readv.c (__libc_readv): Fix calling of
380         compatibility code.
381         * sysdeps/unix/sysv/linux/writev.c (__libc_writev): Likewise.
383         * sysdeps/unix/sysv/linux/kernel-features.h: Define
384         __ASSUME_COMPLETE_READV_WRITEV.
385         * sysdeps/unix/sysv/linux/readv.c: No need for userlevel fallback
386         with modern kernels.
387         * sysdeps/unix/sysv/linux/writev.c: Likewise.
389         * sysdeps/posix/readv.c: Since read is a cancellation point we have
390         to free a possible malloced buffer in case of cancellation.
391         * sysdeps/posix/writev.c: Likewise for write.
393 2009-04-02  Ulrich Drepper  <drepper@redhat.com>
395         * sysdeps/unix/sysv/linux/bits/socket.h: Add missing protocol numbers.
397         * configure.in: Recognize --enable-nss-crypt.
398         * config.make.in: Add nss-crypt entry.
399         * crypt/Makefile: If nss-crypt==yes, don't build md5.c, sha256.c,
400         sha512.c.  Don't run md5test, sha256test, sha512test.  Pass -DUSE_NSS
401         and include path for NSS directory to compiler for md5-crypt,
402         sha256-crypt, sha512-crypt.  Link libcrypt.so with -lfreebl3.
403         * crypt/md5-crypt.c: If USE_NSS is defined, don't use local hash
404         function implementation, use NSS.  Introduce wrappers around the
405         hash function calls.  Little code size optimization.
406         * crypt/sha256-crypt.c: Likewise.
407         * crypt/sha512-crypt.c: Likewise.
408         * scripts/check-local-headers.sh: Ignore nss3 directory.
410         * configure.in: Rename pic_default to libc_cv_pic_default.
411         * config.make.in: Likewise.
413 2009-04-01  Roland McGrath  <roland@redhat.com>
415         * elf/elf.h (R_SPARC_GLOB_JMP): New macro.
416         (R_SPARC_GOTDATA_HIX22, R_SPARC_GOTDATA_LOX10): New macros.
417         (R_SPARC_GOTDATA_OP_HIX22, R_SPARC_GOTDATA_OP_LOX10): Likewise.
418         (R_SPARC_GOTDATA_OP, R_SPARC_H34): Likewise.
419         (R_SPARC_SIZE32, R_SPARC_SIZE64): Likewise.
420         (R_SPARC_GNU_VTINHERIT, R_SPARC_GNU_VTENTRY, R_SPARC_REV32): Likewise.
421         (R_SPARC_NUM): Update.
422         From Dave Miller <davem@davemloft.net>.
424 2009-04-01  Ulrich Drepper  <drepper@redhat.com>
426         * sysdeps/unix/sysv/linux/sys/eventfd.h (EFD_SEMAPHORE): Define.
428 2009-03-31  Ulrich Drepper  <drepper@redhat.com>
430         * elf/dl-open.c: Keep track of used name spaces and only iterate over
431         those which are used.
432         * elf/dl-addr.c: Likewise.
433         * elf/dl-caller.c: Likewise.
434         * elf/dl-fini.c: Likewise.
435         * elf/dl-iteratephdr.c: Likewise.
436         * elf/dl-libc.c: Likewise.
437         * elf/dl-load.c: Likewise.
438         * elf/dl-support.c: Likewise.
439         * elf/dl-sym.c: Likewise.
440         * elf/rtld.c: Likewise.
441         * sysdeps/generic/ldsodefs.h: Likewise.
443         * elf/dl-load.c: Remove support for systems without MAP_ANON.
444         * elf/dl-minimal.c: Likewise.
445         * elf/dl-misc.c: Likewise.
446         * elf/rtld.c: Likewise.
447         * sysdeps/generic/ldsodefs.h: Likewise.
449 2009-03-30  Ulrich Drepper  <drepper@redhat.com>
451         * elf/do-lookup.h (do_lookup_x): Minor optimization and cleanup.
452         Avoid reuse of complex expression.
454         * po/fr.po: Update from translation team.
456 2009-03-16  Ulrich Drepper  <drepper@redhat.com>
458         * include/dirent.h: Yet more changes to match sort function type
459         change.
460         * sysdeps/unix/sysv/linux/i386/alphasort64.c: Likewise.
461         * sysdeps/unix/sysv/linux/i386/olddirent.h: Likewise.
462         * sysdeps/unix/sysv/linux/i386/versionsort64.c: Likewise.
464 2009-03-16  Thomas Schwinge  <tschwinge@gnu.org>
466         * dirent/scandir64.c (scandir64): Adjust declaration to type change.
468 2009-03-16  Ulrich Drepper  <drepper@redhat.com>
470         * nscd/connections.c (restart): Try to preserve the process name
471         by reading the /proc/self/exe symlink and using the return name.
472         Patch by Jeff Bastian <jbastian@redhat.com>.
474 2009-03-15  Ulrich Drepper  <drepper@redhat.com>
476         [BZ #9733]
477         * elf/dl-load.c (_dl_map_object_from_fd): Only call audit hooks
478         if we are not loading a new audit library.
479         * elf/dl-reloc (_dl_relocate_object): Third parameter is now a bitmask.
480         Only use profiling trampoline for auditing if we are not relocating
481         an audit library.
482         * elf/dl-open.c (dl_open_worker): Adjust _dl_relocate_object call.
483         * elf/rtld.c: Likewise.
484         * sysdeps/generic/ldsodefs.h: Adjust _dl_relocate_object prototype.
486         * elf/rtld.c (dl_main): Extend help message for --audit option.
488         [BZ #9759]
489         * dirent/dirent.h: Adjust prototypes of scandir, scandir64, alphasort,
490         alphasort64, versionsort, and versionsort64 to POSIX 2008.
491         * dirent/alphasort.c: Adjust implementation to type change.
492         * dirent/alphasort64.c: Likewise.
493         * dirent/scandir.c: Likewise.
494         * dirent/versionsort.c: Likewise.
495         * dirent/versionsort64.c: Likewise.
496         * sysdeps/wordsize-64/alphasort.c: Add hack to hide alphasort64
497         declaration.
498         * sysdeps/wordsize-64/versionsort.c: Add hack to hide versionsort64
499         declaration.
501         [BZ #9880]
502         * inet/inet6_rth.c (inet6_rth_reverse): Compute number of segments
503         correctly.  Set segleft member in output as required.
504         Patch partly by Yang Hongyang <yanghy@cn.fujitsu.com>.
505         * inet/tst-inet6_rth.c (do_test): Add tests for inet6_rth_reverse.
507         [BZ #9881]
508         * inet/inet6_rth.c (inet6_rth_add): Add some error checking.
509         Patch mostly by Yang Hongyang <yanghy@cn.fujitsu.com>.
510         * inet/Makefile (tests): Add tst-inet6_rth.
511         * inet/tst-inet6_rth.c: New file.
513         [BZ #5807]
514         * string/strlen.c (strlen): Fix omission in the expression to test
515         for NUL bytes.
517 2009-03-14  Ulrich Drepper  <drepper@redhat.com>
519         * crypt/sha256test.c (main): Perform 100,000 'a' test in a second way.
521         * elf/dl-runtime.c (reloc_offset): Define.
522         (reloc_index): Define.
523         (_dl_fixup): Rename reloc_offset parameter to reloc_arg.
524         (_dl_fixup_profile): Likewise.  Use reloc_index instead of
525         computing index from reloc_offset.
526         (_dl_call_pltexit): Likewise.
527         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_resolve): Just pass
528         the relocation index to _dl_fixup.
529         (_dl_runtime_profile): Likewise for _dl_fixup_profile and
530         _dl_call_pltexit.
531         * sysdeps/x86_64/dl-runtime.c: New file.
533         [BZ #9893]
534         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix
535         alignment of La_x86_64_regs.  Store xmm parameters.
536         Patch mostly by Jiri Olsa <olsajiri@gmail.com>.
538         [BZ #9913]
539         * string/strverscmp.c (__strverscmp): Fix case of different digits
540         in fractional part of string.
541         Patch by Jingyu Liu <jyliu@fortinet.com>.
542         * string/Makefile (tests): Add tst-svc2.
543         * string/tst-svc2.c: New file.
545         * string/strverscmp.c (__strverscmp): Optimize size of tables.
547         * locale/iso-639.def: Add Min Nan.
549 2009-03-11  Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
551         [BZ #9948]
552         * elf/dl-sysdep.c (_dl_show_auxv): Add support for AT_BASE_PLATFORM.
554 2009-03-14  Ulrich Drepper  <drepper@redhat.com>
556         * elf/dl-sysdep.c (auxvars): Compress data structure.
558         * sysdeps/i386/dl-machine.h (elf_machine_rel): Implement
559         STT_GNU_IFUNC handling.
560         (elf_machine_rela): Likewise.
562 2009-03-13  Ulrich Drepper  <drepper@redhat.com>
564         * config.h.in (USE_MULTIARCH): Define.
565         * configure.in: Handle --enable-multi-arch.
566         * elf/dl-runtime.c (_dl_fixup): Handle STT_GNU_IFUNC.
567         (_dl_fixup_profile): Likewise.
568         * elf/do-lookup.c (dl_lookup_x): Likewise.
569         * sysdeps/x86_64/dl-machine.h: Handle STT_GNU_IFUNC.
570         * elf/elf.h (STT_GNU_IFUNC): Define.
571         * include/libc-symbols.h (libc_ifunc): Define.
572         * sysdeps/x86_64/cacheinfo.c: If USE_MULTIARCH is defined, use the
573         framework in init-arch.h to get CPUID values.
574         * sysdeps/x86_64/multiarch/Makefile: New file.
575         * sysdeps/x86_64/multiarch/init-arch.c: New file.
576         * sysdeps/x86_64/multiarch/init-arch.h: New file.
577         * sysdeps/x86_64/multiarch/sched_cpucount.c: New file.
579         * config.make.in (experimental-malloc): Define.
580         * configure.in: Handle --enable-experimental-malloc.
581         * malloc/Makefile: Handle experimental-malloc flag.
582         * malloc/malloc.c: Implement PER_THREAD and ATOMIC_FASTBINS features.
583         * malloc/arena.c: Likewise.
584         * malloc/hooks.c: Likewise.
585         * malloc/malloc.h: Define M_ARENA_TEST and M_ARENA_MAX.
587 2009-03-11  Ulrich Drepper  <drepper@redhat.com>
589         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Add branch
590         prediction.  A few size optimizations.
592 2009-03-10  Ulrich Drepper  <drepper@redhat.com>
594         * time/tzset.c: Optimize a bit for size.
596 2009-03-10  Jakub Jelinek  <jakub@redhat.com>
598         * include/stdio.h (fmemopen): Add libc_hidden_proto.
599         * libio/fmemopen.c (fmemopen): Add libc_hidden_def.
601         * elf/sprof.c: Avoid warning about multi-line comment.
603 2009-03-10  Ulrich Drepper  <drepper@redhat.com>
605         * time/tzset.c (__tzset_parse_tz): Use correct string when parsing
606         DST name.
607         * time/tst-posixtz.c: Add tests for quoted timezone names.
609 2009-03-10  Jakub Jelinek  <jakub@redhat.com>
611         * posix/unistd.h (_POSIX_VERSION, _POSIX2_VERSION, _POSIX2_C_BIND,
612         _POSIX2_C_DEV, _POSIX2_SW_DEV, _POSIX2_LOCALEDEF): Define to
613         200809L instead of 200112L.
614         (_XOPEN_VERSION): For __USE_XOPEN2K8 define to 700.
615         * posix/tst-sysconf.c (STDVER): Define to 200809L instead of 200112L.
617         * stdlib/quick_exit.c (quick_exit): Pass &__quick_exit_funcs
618         instead of __quick_exit_funcs to __run_exit_handlers.
619         * stdlib/at_quick_exit.c (at_quick_exit): Add attribute_hidden.
620         * stdlib/exit.h (__run_exit_handlers): Add noreturn attribute.
621         (__cxa_at_quick_exit): Remove attribute_hidden.
622         * stdlib/exit.c (exit): Pass &__exit_funcs instead of __exit_funcs
623         to __run_exit_handlers.
624         * stdlib/cxa_at_quick_exit.c (__cxa_at_quick_exit): Remove
625         attribute_hidden.
627 2009-03-10  Ulrich Drepper  <drepper@redhat.com>
629         * po/id.po: Update from translation team.
631 2009-02-18  Jakub Jelinek  <jakub@redhat.com>
633         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Use
634         .machine push; .machine "power6" and .machine pop around mtfsf
635         insns outside of _ARCH_PWR6 define.
636         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
637         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
638         Likewise.
639         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
640         Likewise.
641         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_SET_DI_FPSCR): Likewise.
642         * sysdeps/powerpc/fpu/fenv_libc.h (fesetenv_register,
643         relax_fenv_state): Likewise.
645 2009-03-08  Ulrich Drepper  <drepper@redhat.com>
647         * stdlib/Makefile (routines): Add quick_exit, at_quick_exit, and
648         cxa_at_quick_exit.
649         (static-only-routines): Add at_quick_exit.
650         * stdlib/Versions: Export quick_exit and __cxa_at_quick_exit for
651         GLIBC_2.10.
652         * stdlib/quick_exit.c: New file.
653         * stdlib/at_quick_exit.c: New file.
654         * stdlib/cxa_at_quick_exit.c: New file.
655         * stdlib/cxa_atexit.c (__cxa_atexit): Move body to new function.  Call
656         it appropriately.
657         (__internal_atexit): New function.
658         (__new_exitfn): Now takes parameter to point to the list to use.
659         * stdlib/cxa_finalize.c: Remove quick_exit handlers, don't call them.
660         * stdlib/exit.c (__run_exit_handlers): New function.  Split from...
661         (exit): ...here.  Just call __run_exit_handlers appropriately.
662         * stdlib/exit.h: Declare __quick_exit_funcs, __run_exit_handlers,
663         __internal_atexit, __cxa_at_quick_exit.  Adjust __new_exitfn.
664         * stdlib/on_exit.c: Adjust call to __new_exitfn.
665         * stdlib/stdlib.h: Declare at_quick_exit and quick_exit.
667         * po/id.po: Update from translation team.
669 2009-03-07  Ulrich Drepper  <drepper@redhat.com>
671         * po/ru.po: Update from translation team.
673 2009-03-04  Ulrich Drepper  <drepper@redhat.com>
675         * po/nl.po: Update from translation team.
677 2009-03-03  Ulrich Drepper  <drepper@redhat.com>
679         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Declare fallocate{,64}.
680         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
681         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
682         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
683         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
684         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
685         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
687         * po/pl.po: Update from translation team.
689 2009-03-02  Ulrich Drepper  <drepper@redhat.com>
691         [BZ #7083]
692         * sysdeps/unix/sysv/linux/fallocate.c: New file.
693         * sysdeps/unix/sysv/linux/fallocate64.c: New file.
694         * sysdeps/unix/sysv/linux/wordsize-64/fallocate64.c: New file.
695         * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: New file.
696         * sysdeps/unix/sysv/linux/i386/fallocate64.c: New file.
697         * sysdeps/unix/sysv/linux/i386/fallocate.c: New file.
698         * sysdeps/unix/sysv/linux/Versions: Export fallocate and fallocate64
699         for GLIBC_2.10.
700         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
701         Add fallocate and fallocate64.
703         * io/fcntl.h: Pretty printing.
705 2009-03-02  Richard Guenther  <rguenther@suse.de>
707         * misc/sys/cdefs.h (__extern_always_inline): Add __artificial__
708         attribute also for non-C99 inline semantics variant.
710 2009-02-12  Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
712         * sysdeps/powerpc/powerpc32/power7/fpu/Implies: New file.
713         * sysdeps/powerpc/powerpc32/power7/Implies: Likewise.
714         * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
715         * sysdeps/powerpc/powerpc64/power7/Implies: Likewise.
716         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/fpu/Implies:
717         Likewise.
718         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/fpu/Implies:
719         Likewise.
721 2009-03-02  Ulrich Drepper  <drepper@redhat.com>
723         * po/cs.po: Update from translation team.
725 2009-02-28  Ulrich Drepper  <drepper@redhat.com>
727         * po/bg.po: Update from translation team.
728         * po/sv.po: Likewise.
729         * po/fi.po: Likewise.
730         * po/vi.po: Likewise.
732 2009-02-27  Roland McGrath  <roland@redhat.com>
734         * Makeconfig (%.v.i): Depend on Makeconfig.
735         Exclude % lines from initial #-comment removal.
737 2009-02-27  Ulrich Drepper  <drepper@redhat.com>
739         * po/ko.po: Update from translation team.
741 2009-02-26  Roland McGrath  <roland@redhat.com>
743         * shadow/lckpwdf.c (__lckpwdf): Move FLAGS inside block using it,
744         avoids unused warning.
746 2009-02-26  Andrew Stubbs  <ams@codesourcery.com>
747             SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
749         * sysdeps/unix/sysv/linux/sh/sys/procfs.h: Don't include signal.h,
750         sys/ucontext.h and asm/elf.h.  Include sys/user.h.
751         * sysdeps/unix/sysv/linux/sh/sys/user.h: Don't include features.h
752         and asm/user.h.  Include asm/ptrace.h.
753         (PTRACE_GETREGS, PTRACE_SETREGS, PTRACE_GETFPREGS,
754         PTRACE_SETFPREGS, PTRACE_GETFDPIC, PTRACE_GETFDPIC_EXEC,
755         PTRACE_GETFDPIC_INTERP, PTRACE_GETDSPREGS, PTRACE_SETDSPREGS):
756         Undefine.
757         (start_thread): Don't undefine.
758         (elf_greg_t, ELF_NGREG, elf_fpregset_t, user_fpu_struct, user):
759         Define.
761 2009-02-26  Ulrich Drepper  <drepper@redhat.com>
763         * wctype/wctype.h: The *_l functions are in POSIX 2008.
764         * wcsmbs/wchar.h: mbsnrtowcs, open_wmemstream, wcpcpy, wcpncpy,
765         wcscasecmp, wcsdup, wcsncasecmp, wcsnlen, wcsnrtombs,
766         wcscasecmp_l, wcsncasecmp_l, wcscoll_l, and wcsxfrm_l.
767         * sysdeps/mach/hurd/bits/posix_opt.h: Reset value of macros from
768         200112L to 200809L.
769         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Likewise.
770         * posix/getconf.c (vars): Add _SC_THREAD_ROBUST_PRIO_INHERIT and
771         _SC_THREAD_ROBUST_PRIO_PROTECT entries.
772         * bits/confname.h: Add _SC_THREAD_ROBUST_PRIO_INHERIT and
773         _SC_THREAD_ROBUST_PRIO_PROTECT.
774         * posix/unistd.h: fexecve is in POSIX 2008.
775         * time/time.h: strftime_l is in POSIX 2008.
776         * io/sys/stat.h: futimens is in POSIX 2008.
777         * string/strings.h: strcasecmp_l and strncasecmp_l are in POSIX 2008.
778         * string/string.h: stpcpy, stpncpy, strndup, strnlen, strsignal,
779         strcoll_l, strerror_l, and strxfrm_l are in POSIX 2008.
780         * stdlib/stdlib.h: mkdtemp is in POSIX 2008.
781         * libio/stdio.h: dprintf, fmemopen, getdelim, getline,
782         open_memstream, and vdprintf are in POSIX 2008.
784 2009-02-25  Ulrich Drepper  <drepper@redhat.com>
786         * include/features.h: Define macros for XPG7/POSIX 2008.
787         * ctype/ctype.h: The *_l functions are in POSIX 2008.
788         * dirent/dirent.h: alphasort, dirfd, scandir, and fdopendir are in
789         POSIX 2008.
790         * locale/langinfo.h: nl_langinfo_l is in POSIX 2008.
791         * locale/xlocale.h: Define locale_t type.
792         * locale/locale.h: duplocale, freelocale, newlocale, uselocale are
793         in POSIX 2008.  Don't define locale_t here.
794         * stdlib/monetary.h: strfmon_l is in POSIX 2008.
795         * sysdeps/unix/sysv/linux/bits/stat.h: Protect UTIME_NOW and
796         UTIME_OMIT only with __USE_ATFILE.
797         * signal/signal.h: Declare psignal and psiginfo for POSIX 2008.
798         * stdio-common/psiginfo.c: New file.
799         * stdio-common/psiginfo-data.h: New file.
800         * stdio-common/psiginfo-define.h: New file.
801         * stdio-common/Makefile (routines): Add psiginfo.
802         * stdio-common/Versions: Export psiginfo for GLIBC_2.10.
803         * sysdeps/unix/sysv/linux/ia64/bits/stat.h: Likewise.
804         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
805         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
806         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
807         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
808         * io/sys/stat.h: Move mknodat definition into same conditional as
809         mknod.
810         * time/sys/time.h: futimesat is not among the functions accepted
811         into the POSIX standard.
813         * include/features.h: If no feature selection given and we select
814         by default a POSIX mode, also define __USE_POSIX_IMPLICITLY.
815         * posix/Versions: Export __posix_getopt.
816         * posix/getopt.c (_getopt_initialize): Take additional parameter.
817         Use it to alternatively initialize __posixly_correct.
818         (_getopt_internal_r): Take addition parameter.  Pass on to
819         _getopt_initialize.
820         (_getopt_internal): Take addition parameter.  Pass on to
821         _getopt_internal_r.
822         (getopt): Pass additional zero to _getopt_internal.
823         (__posix_getopt): New function.
824         * posix/getopt.h: Add redirection for getopt.
825         * posix/getopt1.c (getopt_long): Pass additional zero to
826         _getopt_internal.
827         (getopt_long_only): Likewise.
828         (_getopt_long_r): Pass additional zero to _getopt_internal_r.
829         (_getopt_long_only_r): Likewise.
830         * posix/getopt_int.h: Adjust declarations of _getopt_internal and
831         _getopt_internal_r.
833 2009-02-24  Ulrich Drepper  <drepper@redhat.com>
835         * bits/confname.h: Define _SC_TRACE_EVENT_NAME_MAX, _SC_TRACE_NAME_MAX,
836         _SC_TRACE_SYS_MAX, _SC_TRACE_USER_EVENT_MAX, _SC_XOPEN_STREAMS.
837         * sysdeps/posix/sysconf.c (__sysconf): Handle
838         _SC_TRACE_EVENT_NAME_MAX, _SC_TRACE_NAME_MAX, _SC_TRACE_SYS_MAX,
839         _SC_TRACE_USER_EVENT_MAX, _SC_XOPEN_STREAMS.
841 2009-02-24  Roland McGrath  <roland@redhat.com>
843         [BZ #9895]
844         * README.template: Reworded not to use substituted version number.
845         Renamed to ...
846         * README: ... here (no longer generated).
847         * Makefile (README): Target removed.
849 2009-02-24  Ulrich Drepper  <drepper@redhat.com>
851         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf):
852         /proc/sys/kernel/rtsig_max doesn't exist anymore, use getrlimit
853         instead.
855         * io/sys/stat.h: The lstat functions have been mandatory since 2001.
857         * time/tzset.c (tzset_internal): Correct parsing of TZ envvar.
859 2009-02-22  Ulrich Drepper  <drepper@redhat.com>
861         * po/bg.po: Update from translation team.
863 2009-02-16  Jakub Jelinek  <jakub@redhat.com>
865         * stdlib/monetary.h: Uglify function parameter names.
866         * sunrpc/rpc/pmap_clnt.h: Likewise.
867         * sunrpc/rpc/svc.h: Likewise.
868         * sunrpc/rpc/xdr.h: Likewise.
869         * sunrpc/rpc/clnt.h: Likewise.
870         * resolv/netdb.h: Likewise.
871         * resolv/arpa/nameser.h: Likewise.
872         * resolv/resolv.h: Likewise.
873         * argp/argp.h: Likewise.
874         * locale/langinfo.h: Likewise.
875         * io/sys/stat.h: Likewise.
876         * posix/spawn.h: Likewise.
877         * nis/rpcsvc/nislib.h: Likewise.
878         * malloc/obstack.h: Likewise.
879         * sysdeps/ia64/bits/link.h: Likewise.
880         * sysdeps/i386/bits/link.h: Likewise.
881         * sysdeps/s390/bits/link.h: Likewise.
882         * sysdeps/powerpc/bits/link.h: Likewise.
883         * sysdeps/x86_64/bits/link.h: Likewise.
884         * sysdeps/sparc/bits/link.h: Likewise.
885         * sysdeps/sh/bits/link.h: Likewise.
886         * sysdeps/unix/sysv/linux/i386/sys/io.h: Likewise.
887         * sysdeps/unix/sysv/linux/x86_64/sys/io.h: Likewise.
888         * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: Likewise.
889         * sysdeps/unix/sysv/linux/sys/eventfd.h: Likewise.
891 2008-12-01  Fredrik Unger  <fred@tree.se>
893         * soft-fp/double.h [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_D,
894         FP_UNPACK_SEMIRAW_DP): Use _FP_UNPACK_RAW_1 instead of
895         _FP_UNPACK_RAW_2, fix up first argument.
897 2009-02-15  Ulrich Drepper  <drepper@redhat.com>
899         * sysdeps/unix/sysv/linux/getsysstats.c (next_line): New function.
900         (GET_NPROCS_PARSER): Change parameters and use next_line.
901         (__get_nprocs): Rewrite to not use stdio routines.
902         * sysdeps/unix/sysv/linux/sparc/getsysstats.c (GET_NPROCS_PARSER):
903         Change parameters and use next_line.
905 2009-02-13  Ulrich Drepper  <drepper@redhat.com>
907         [BZ #5381]
908         * nscd/nscd.h: Remove definitions and declarations for mem_in_flight.
909         Change mempool_alloc prototype.
910         * nscd/mem.c (gc): Don't handle mem_in_flight.
911         (mempool_alloc): Third parameter now only indicates whether this is the
912         first call (to allocate data) or not.  If it is, get db rdlock.
913         Release it on error.  Don't handle mem_in_flight.
914         * nscd/aicache.c (addhstaiX): Mark he parameter as const.
915         Adjust third parameter of mempool_alloc calls.
916         Nothing to do here in case mempool_alloc fails.
917         Avoid local variable shadowing parameter.  No need to get db rdlock
918         before calling cache_add.
919         * nscd/cache.c (cache_add): Adjust call to mempool_alloc.  There is
920         no mem_in_flight array anymore.
921         * nscd/connections.c: Remove definition and handling of mem_in_flight.
922         * nscd/grpcache.c (cache_addgr): Adjust third parameter of
923         mempool_alloc calls.  Mark he parameter as const.  Nothing to do here
924         in case mempool_alloc fails. No need to get db rdlock before calling
925         cache_add.
926         * nscd/hstcache.c (cache_addhst): Likewise.
927         * nscd/initgrcache.c (addinitgroupsX): Likewise.
928         * nscd/servicescache.c (cache_addserv): Likewise.
929         * nscd/pwdcache.c (cache_addpw): Likewise.  Remove some debugging code.
931 2009-02-11  Ulrich Drepper  <drepper@redhat.com>
933         * po/lt.po: Update from translation team.
935 2009-02-10  Ulrich Drepper  <drepper@redhat.com>
937         * elf/dl-load.c (open_verify): In case VALID_ELF_HEADER is
938         defined, allow additional data to be added using the optional
939         MORE_ELF_HEADER_DATA macro.
940         * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_HEADER,
941         VALID_ELF_OSABI, VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA): Define.
943 2009-02-08  Ulrich Drepper  <drepper@redhat.com>
945         * include/atomic.h: Define catomic_and if not already defined.
946         * sysdeps/x86_64/bits/atomic.h: Define catomic_and.
947         * sysdeps/i386/i486/bits/atomic.h: Likewise.
949 2009-02-07  Ulrich Drepper  <drepper@redhat.com>
951         * malloc/malloc.c (_int_free): Second argument is now mchunkptr.
952         Change all callers.
953         (_int_realloc): Likewise.  Third argument is now padded size
954         All _int_* functions are now static.
956         * malloc/hooks.c: Change all callers to _int_free and _int_realloc.
957         * malloc/arena.c: Likewise.
958         * include/malloc.h: Remove now unnecessary declarations of the _int_*
959         functions.
961         * sunrpc/rpc_common.c: We cannot move _null_auth into .rodata that
962         easily.
964         * malloc/malloc.c: Add branch prediction for use of the hooks.
966         * grp/compat-initgroups.c [NOT_IN_libc] (__libc_use_alloca): Define.
968 2009-02-06  Ulrich Drepper  <drepper@redhat.com>
970         [BZ #7095]
971         * bits/confname.h: Add SUSv7 macros for getconf environments.
972         * bits/environments.h: Likewise.
973         * sysdeps/unix/sysv/linux/i386/bits/environments.h: Likewise.
974         * sysdeps/unix/sysv/linux/powerpc/bits/environments.h: Likewise.
975         * sysdeps/unix/sysv/linux/s390/bits/environments.h: Likewise.
976         * sysdeps/unix/sysv/linux/sparc/bits/environments.h: Likewise.
977         * sysdeps/unix/sysv/linux/x86_64/bits/environments.h: Likewise.
978         * posix/confstr.c: Handle SUSv5 and SUSv7 environments.
979         * posix/getconf.c: Likewise.
980         * posix/sysconf.c: Likewise.
981         * sysdeps/posix/sysconf.c: Likewise.
982         * posix/Makefile (getconf.speclist): Also collect SUSv5 and SUSv7
983         environments.
985 2009-01-16  Petr Baudis  <pasky@suse.cz>
987         [BZ #9753]
988         * resolv/res_libc.c (__res_maybe_init): Call __res_vinit()
989         even if we currently have zero nscount.
991 2009-02-06  Ulrich Drepper  <drepper@redhat.com>
993         [BZ #9781]
994         * grp/compat-initgroups.c (compat_call): Switch to use malloc when
995         the input line is too long.
997         * po/Makefile (libc.pot): Add f_print as function taking c-format
998         parameter.
1000         * debug/xtrace.sh: Unify translatable messages.
1001         * elf/ldd.bash.in: Likewise.
1002         * elf/sprof.c: Likewise.
1003         * locale/programs/locale.c: Likewise.
1004         * malloc/memusage.sh: Likewise.
1005         * nss/getent.c: Likewise.
1007 2009-02-06  Joseph Myers  <joseph@codesourcery.com>
1009         * debug/pcprofiledump.c (print_version,
1010         argp_program_version_hook): New function.
1011         * elf/ldconfig.c (more_help): New function.
1012         (argp): Use it.
1013         * elf/sln.c (usage): New function.
1014         (main): Support --help and --version.
1015         * malloc/memusagestat.c (print_version): New function.
1016         (argp_program_version_hook): New variable.
1017         * nscd/nscd.c (more_help): New function.
1018         (argp): Use it.
1019         * posix/getconf.c (main): Send --version output to stdout.
1020         Support --help.
1021         * sunrpc/rpc_main.c (usage, options_usage): Take STREAM and STATUS
1022         arguments.  All callers changed.
1023         (print_version): New function.
1024         (parseargs): Support --help and --version.
1025         * sunrpc/rpcinfo.c (usage): Take STREAM argument.  All callers
1026         changed.
1027         (print_version): New function.
1028         (main): Use getopt_long.  Support --help and --version.
1029         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Support --help and
1030         --version.
1032 2009-02-06  Ulrich Drepper  <drepper@redhat.com>
1034         * malloc/memusage.c (DEFAULT_BUFFER_SIZE): Change to 32768.
1035         (update_data): Fix handling of wrapping back
1036         to the beginning of the buffer.
1038         [BZ #9823]
1039         * stdio-common/psignal.c (psignal): Fix test for empty string.
1041 2009-02-05  Ulrich Drepper  <drepper@redhat.com>
1043         * include/rpc/auth.h: Use libc_hidden_proto for _null_auth.
1044         * sunrpc/rpc_common.c: Add libc_hidden_def for _null_auth.  Also
1045         move _null_auth to .rodata.
1047         * time/tzset.c (__tzset_parse_tz): DST offset must also allow hour
1048         value of 24.
1050         * intl/dcigettext.c (DCIGETTEXT): Avoid some code duplication.
1052         * sysdeps/unix/opendir.c (__alloc_dir): We have a lot more memory
1053         today than when the original code was written.  Use larger
1054         buffers.  This also makes it unnecessary to have stat information,
1055         if this causes extra efforts.
1056         (__opendir): In case O_DIRECTORY works, don't call fstat just for
1057         __alloc_dir.
1059 2009-02-03  Andrew Stubbs  <ams@codesourcery.com>
1061         * sysdeps/sh/sh4/dl-trampoline.S: Only set HAVE_FPU if __SH_FPU_ANY__
1062         is set.
1063         * sysdeps/sh/sh4/setjmp.S: Support SH4-NOFPU.
1064         * sysdeps/sh/sh4/__longjmp.S: Likewise.
1065         * sysdeps/unix/sysv/linux/sh/sh4/getcontext.S: Likewise.
1066         * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S: Likewise.
1067         * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S: Likewise.
1068         * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Likewise.
1070 2009-02-04  Ulrich Drepper  <drepper@redhat.com>
1072         * po/ru.po: Update from translation team.
1074 2008-11-17  Nathan Sidwell  <nathan@codesourcery.com>
1076         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (struct sigevent):
1077         Add _tid slot to maintain consistency with kernel.
1079 2009-02-04  Ulrich Drepper  <drepper@redhat.com>
1081         * libio/wfileops.c (_IO_wfile_underflow): Fix handling of
1082         incomplete characters at end of input buffer.
1083         * libio/Makefile (tests): Add tst-fgetwc.
1084         * libio/tst-fgetwc.c: New file.
1085         * libio/tst-fgetwc.input: New file.
1087 2009-02-02  Andrew Stubbs  <ams@codesourcery.com>
1089         * sysdeps/unix/sysv/linux/sh/Makefile (libm.so-no-z-defs): Define.
1091 2009-02-02  Ulrich Drepper  <drepper@redhat.com>
1093         [BZ #9793]
1094         * iconv/gconv_trans.c (__gconv_transliterate): Don't change
1095         *OUTBUFSTART unless the whole output fit into the buffer.
1096         * iconv/Makefile (tests): Add tst-iconv4.
1097         * iconv/tst-iconv4.c: New file.
1099 2009-02-01  Ulrich Drepper  <drepper@redhat.com>
1101         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Add new descriptors.
1102         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
1104 2009-01-29  Andrew Stubbs  <ams@codesourcery.com>
1106         * elf/Makefile (ld.so): Adjust the sed script to insert _begin in to
1107         newer linker scripts.
1109 2009-01-30  Ulrich Drepper  <drepper@redhat.com>
1111         [BZ #7040]
1112         * sysdeps/unix/sysv/linux/sys/inotify.h: Second parameter of
1113         inotify_rm_watch should have type int.
1115 2009-01-06  Steven Munroe  <sjmunroe@us.ibm.com>
1117         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
1118         Make aligned_restore_vmx a local symbol.
1119         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp):
1120         Likewise.
1122 2009-01-30  Andreas Jaeger  <aj@suse.de>
1124         * sysdeps/unix/sysv/linux/bits/shm.h (SHM_EXEC): Define.
1125         * sysdeps/unix/sysv/linux/ia64/bits/shm.h (SHM_EXEC): Define.
1126         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h (SHM_EXEC): Define.
1127         * sysdeps/unix/sysv/linux/s390/bits/shm.h (SHM_EXEC): Define.
1128         * sysdeps/unix/sysv/linux/sh/bits/shm.h (SHM_EXEC): Define.
1129         * sysdeps/unix/sysv/linux/sparc/bits/shm.h (SHM_EXEC): Define.
1130         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h (SHM_EXEC): Define.
1132 2009-01-11  Ryan S. Arnold  <rsa@us.ibm.com>
1134         [BZ #9726]
1135         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_SET_DI_FPSCR,
1136         _SET_SI_FPSCR): Clobber fp0 to prevent erroneous test-case passes.
1138 2009-01-08  Ryan S. Arnold  <rsa@us.ibm.com>
1140         [BZ #9726]
1141         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
1142         (__CONTEXT_FUNC_NAME): Fix mtfsf to use fp31 instead of fp0.
1143         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
1144         (__CONTEXT_FUNC_NAME): Fix mtfsf to use fp31 instead of fp0.
1146 2009-01-11  Thomas Schwinge  <tschwinge@gnu.org>
1148         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Use
1149         memcpy instead of memcmp.
1150         (_dl_setup_pointer_guard): Likewise.
1152 2009-01-30  Ulrich Drepper  <drepper@redhat.com>
1154         * malloc/malloc.c (sYSMALLOc): Don't use assert when detecting
1155         manipulated brk, use malloc_printerr.
1156         * misc/sbrk.c (__sbrk): Better error handling for nonsense
1157         requests.
1159 2009-01-30  Jakub Jelinek  <jakub@redhat.com>
1161         * string/string.h (memchr, strchr, strrchr, strpbrk, strstr, index,
1162         rindex): For C++ add inlines so that they can be recognized as
1163         builtins.
1164         * string/strings.h: Define correct C++ prototypes for gcc 4.4.
1166 2009-01-29  Ulrich Drepper  <drepper@redhat.com>
1167             Jakub Jelinek  <jakub@redhat.com>
1169         * string/string.h: Define correct C++ prototypes for gcc 4.4.
1170         * wcsmbs/wchar.h: Likewise.
1172 2009-01-29  Ulrich Drepper  <drepper@redhat.com>
1174         * sysdeps/i386/stackinfo.h (stackinfo_get_sp): Define.
1175         (stackinfo_sub_sp): Define.
1177 2009-01-28  Ulrich Drepper  <drepper@redhat.com>
1179         [BZ #9750]
1180         * nscd/mem.c (gc): Use alloca_count to get the real stack usage.
1181         * include/alloca.h (alloca_account): Define.
1182         * sysdeps/x86_64/stackinfo.h (stackinfo_get_sp): Define.
1183         (stackinfo_sub_sp): Define.
1185         * nscd/connections.c (nscd_init): If database file access fails
1186         check whether this is due to permission problems and bail in that
1187         case.
1189         [BZ #9741]
1190         * nscd/mem.c (gc): Fix assignment of he_data in case malloc is used.
1191         Reported by Jun'ichi Nomura <j-nomura@ce.jp.nec.com>.
1193 2009-01-14  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
1195         * sysdeps/unix/sysv/linux/sh/sysdep.h (INTERNAL_SYSCALL):
1196         Add "t" to clobber list.
1197         (INTERNAL_SYSCALL_NCS): Likewise.
1199 2009-01-28  Ulrich Drepper  <drepper@redhat.com>
1201         * nss/getent.c (print_networks): Don't print comma between aliases.
1203 2009-01-23  Ulrich Drepper  <drepper@redhat.com>
1205         * sysdeps/unix/sysv/linux/tst-clone.c (do_test): Avoid warning.
1207         * misc/hsearch_r.c (hcreate_r): We need at least three elements in
1208         the hash table.
1209         * misc/Makefile (tests): Add bug-hsearch1.
1210         * misc/bug-hsearch1.c: New file.
1212 2009-01-22  Roland McGrath  <roland@redhat.com>
1214         * Makeconfig (%.v.i): Strip trailing # comments,
1215         not only whole-line comments.
1217 2009-01-10  Ulrich Drepper  <drepper@redhat.com>
1219         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Take
1220         one parameter.  If non-NULL use it to initialize return value.
1221         (_dl_setup_pointer_guard): New function.
1222         * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
1223         * sysdeps/generic/ldsodefs.h: Declare _dl_random.
1224         * elf/rtld.c (security_init): Pass _dl_random to
1225         _dl_setup_stack_chk_guard.  Call _dl_setup_pointer_guard to initialize
1226         pointer_chk_guard.
1227         * elf/dl-sysdep.c (_dl_random): New variable.
1228         (_dl_sysdep_start): Handle AT_RANDOM.
1229         (_dl_show_auxv): Likewise.
1230         * elf/dl-support.c (_dl_random): New variable.
1231         (_dl_aux_init): Handle AT_RANDOM.
1232         * csu/libc-start.c [!SHARED] (libc_start_main): Pass _dl_random
1233         to _dl_setup_stack_chk_guard.
1235         * elf/elf.h (AT_RANDOM): Define AT_BASE_PLATFORM and AT_RANDOM.
1237 2009-01-10  Roland McGrath  <roland@redhat.com>
1239         * nscd/nscd.c (parse_opt): Use argp_error for bad -i argument.
1241 2009-01-08  Ulrich Drepper  <drepper@redhat.com>
1243         * sysdeps/i386/fpu/libm-test-ulps: Adjust expm1 errors.
1245         [BZ #9706]
1246         * nss/nss_files/files-parse.c (strtou32): New function.
1247         (INT_FIELD): Use strotu32 instead of strtoul to unify behavior
1248         across 32-bit and 64-bit platforms.
1249         (INT_FIELD_MAYBE_NULL): Likewise.
1251 2009-01-08  Jakub Jelinek  <jakub@redhat.com>
1253         [BZ #9720]
1254         * sysdeps/unix/sysv/linux/bits/resource.h (enum __rusage_who): Avoid
1255         comma after RUSAGE_CHILDREN if not -D_GNU_SOURCE.
1256         * sysdeps/unix/sysv/linux/sparc/bits/resource.h (enum __rusage_who):
1257         Likewise.
1259 2009-01-05  Paolo Bonzini  <bonzini@gnu.org>
1261         [BZ #697]
1262         * posix/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
1263         being NULL also if there are no backreferences.
1264         * posix/rxspencer/tests: Add testcases.
1266 2009-01-04  Paolo Bonzini  <bonzini@gnu.org>
1268         [BZ #9697]
1269         * posix/bug-regex17.c: Add testcases.
1270         * posix/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
1271         handling.
1273 2009-01-05  Martin Schwidefsky  <schwidefsky@de.ibm.com>
1275         * sysdeps/unix/sysv/linux/s390/bits/libc-vdso.h: New file.
1276         * sysdeps/unix/sysv/linux/s390/gettimeofday.c: New file.
1277         * sysdeps/unix/sysv/linux/s390/init-first.c: New file.
1278         * sysdeps/unix/sysv/linux/s390/Makefile (sysdep_routines): Add dl-vdso
1279         for elf subdir.
1280         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (INLINE_VSYSCALL,
1281         INTERNAL_VSYSCALL, INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK,
1282         INTERNAL_SYSCALL_NCS, HAVE_CLOCK_GETRES_VSYSCALL and
1283         HAVE_CLOCK_GETTIME_VSYSCALL: Define.
1284         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
1285         * sysdeps/unix/sysv/linux/s390/Versions: New file.
1287 2008-12-31  Paolo Bonzini  <bonzini@gnu.org>
1289         * posix/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
1290         * posix/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
1291         re_string_skip_chars, re_string_reconstruct): Likewise.
1292         * posix/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
1294 2008-12-31  Rafael Avila de Espindola  <espindola@google.com>
1296         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r): Check and
1297         adjust the buffer alignment.
1299 2009-01-07  Samuel Thibault  <samuel.thibault@ens-lyon.org>
1301         * sysdeps/mach/hurd/Makefile (sysdep_headers) [subdir=socket]:
1302         Add net/ethernet.h net/if_arp.h net/if_ether.h net/if_ppp.h
1303         net/route.h.
1305         * hurd/report-wait.c (describe_number): Use __stpcpy to prepend
1306         flavor to description only when flavor is not NULL.
1308         * hurd/hurdsig.c (signal_allowed): Unlock _hurd_dtable_lock
1309         mutex after SIGIO/SIGURG lookup loop.
1311 2009-01-03  Samuel Thibault  <samuel.thibault@ens-lyon.org>
1313         * bits/resource.h (PRIO_PROCESS, PRIO_PGRP, PRIO_USER): Add macros.
1315 2009-01-03  Ulrich Drepper  <drepper@redhat.com>
1317         * sysdeps/unix/sysv/linux/i386/sysdep.h: Describe 6th argument
1318         handling.
1320 2009-01-02  Ulrich Drepper  <drepper@redhat.com>
1322         * sysdeps/unix/sysv/linux/kernel-features.h
1323         (__ASSUME_FUTEX_CLOCK_REALTIME): Define.
1325         * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Create temporary state object
1326         if no output is written.
1328         * version.h: Bump to 2.10 development.
1330         * posix/getconf.c: Update copyright year.
1331         * nss/getent.c: Likewise.
1332         * iconv/iconvconfig.c: Likewise.
1333         * iconv/iconv_prog.c: Likewise.
1334         * elf/ldconfig.c: Likewise.
1335         * catgets/gencat.c: Likewise.
1336         * csu/version.c: Likewise.
1337         * elf/ldd.bash.in: Likewise.
1338         * elf/sprof.c (print_version): Likewise.
1339         * locale/programs/locale.c: Likewise.
1340         * locale/programs/localedef.c: Likewise.
1341         * nscd/nscd.c (print_version): Likewise.
1342         * debug/xtrace.sh: Likewise.
1343         * malloc/memusage.sh: Likewise.
1344         * malloc/mtrace.pl: Likewise.
1345         * debug/catchsegv.sh: Likewise.
1347 2008-12-29  Mike Frysinger  <vapier@gentoo.org>
1349         * iconvdata/Makefile (iconv-rules): Use LC_ALL=C when running awk
1350         script.
1352 2008-12-29  Ulrich Drepper  <drepper@redhat.com>
1354         * sysdeps/posix/getaddrinfo.c (gaih_inet): When the
1355         gethostbyname4_r function call succeeded, just leave the loop.
1357         [BZ #9694]
1358         * wcsmbs/wchar.h: Move undefs for local __need_* constants to the
1359         very end.
1360         * wctype/wctype.h: Get wint_t definition directly from <stddef.h>.
1361         * wctype/Makefile (tests): Add bug-wctypeh.
1362         * wctype/bug-wctypeh.c: New file.
1364         * nscd/nscd_gethst_r.c (nscd_gethst_r): Don't use nscd if
1365         LOCALDOMAIN is defined.
1366         * nscd/nscd_getai.c (__nscd_getai): Likewise.
1368         * sysdeps/x86_64/bits/select.h: New file.
1370         * resolv/res_init.c (__res_vinit): Count all servers in statp->nscount.
1372 2008-12-21  Bruno Haible  <bruno@clisp.org>
1374         [BZ #9677]
1375         * wcsmbs/mbsnrtowcs.c (__mbsnrtowcs): Create temporary state object
1376         if no output is written.
1378 2008-12-13  Klaus Dittrich  <kladit@arcor.de>
1380         * login/utmp_file.c (pututline_file): Replace call to dup2 with
1381         libc internal symbol __dup2 to avoid access through the PLT.
1383 2008-12-08  Ulrich Drepper  <drepper@redhat.com>
1385         [BZ #6545]
1386         * sysdeps/unix/sysv/linux/bits/socket.h (SCM_CREDENTIALS): Make
1387         available only for __USE_GNU.
1389         * inet/Makefile (tests): Add tst-getni2.
1390         * inet/tst-getni2.c: New file.
1392         [BZ #7080]
1393         * inet/getnameinfo.c (getnameinfo): Check for output buffers being
1394         NULL when NI_NAMEREQD is set.
1395         Patch mostly by Yang Hongyang <yanghy@cn.fujitsu.com>.
1396         * inet/Makefile (tests): Add tst-getni1.
1397         * inet/tst-getni1.c: New file.
1399 2008-12-03  Petr Baudis  <pasky@suse.cz>
1401         [BZ #7067]
1402         * nscd/connections.c (invalidate_cache): Use prune_run_lock
1403         instead of prune_lock.
1404         (nscd_run_prune): Before calling prune_cache, take prune_run_lock.
1405         * nscd/nscd.h (database_dyn): Add prune_run_cache.
1407 2008-12-07  Ulrich Drepper  <drepper@redhat.com>
1409         * resolv/res_send.c (send_dg): Use correct guards for SOCK_CLOEXEC
1410         use.
1412         * sysdeps/unix/sysv/linux/kernel-features.h: Fix typo in accept4
1413         handling.
1415         * resolv/res_init.c (__res_vinit): Always assign to statp->nscount
1416         after reading name server list.
1418         [BZ #7058]
1419         * nis/nss_nis/nis-hosts.c (_nss_nis_gethostbyname4_r): Fix memory
1420         handling for host name aliases.
1422 2008-11-24  Arkadiusz MiÅ›kiewicz  <arekm@maven.pl>
1424         * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Use LOAD_PIC_REG
1425         instead of doing things manually.
1427 2008-11-26  Chris Steel  <chris.steel.lnx@googlemail.com>
1429         * posix/regex_internal.h (build_wcs_upper_buffer):
1430         Return type is reg_error_t.
1432 2008-12-05  Ulrich Drepper  <drepper@redhat.com>
1434         * posix/globtest.sh: Use mktemp to create temporary file and
1435         directory.
1437         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_SET_S): Handle large
1438         sets correctly.
1439         (__CPU_CLR_S): Likewise.
1440         (__CPU_ISSET_S): Likewise.
1442 2008-12-05  Joseph Myers  <joseph@codesourcery.com>
1443             Ulrich Drepper  <drepper@redhat.com>
1445         * scripts/firstversion.awk: Use custom comparison function to compare
1446         version numbers.
1447         * scripts/versions.awk: Use sort invocation which can handle
1448         multi-digit sub-version numbers.
1450 2008-12-04  Ulrich Drepper  <drepper@redhat.com>
1452         * locale/programs/ld-address.c (DEFINE_LANGUAGE_CODE2): Define.
1453         * locale/iso-639.def: Add Chhattisgarhi entry.
1455 2008-12-02  Ulrich Drepper  <drepper@redhat.com>
1457         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Recognize
1458         ESRCH return value.
1459         (_nss_dns_gethostbyname4_r): Likewise.
1460         * resolv/res_init.c (__res_vinit): Initialize nscount to zero.
1461         * sysdeps/posix/getaddrinfo.c (gaih_inet): In case we use
1462         gethostbyname4_r, we don't have a separate IPv6 status, so copy
1463         the no_data variable.
1465         * resolv/res_init.c (__res_vinit): Fill in IPv4 name server
1466         information at the correct index.
1468         * socket/sys/socket.h: Declare accept4.
1469         * socket/accept4.c: New file.
1470         * sysdeps/unix/sysv/linux/accept4.c: New file.
1471         * sysdeps/unix/sysv/linux/i386/accept4.S: New file.
1472         * socket/Makefile (routines): Add accept4.
1473         * socket/Versions: Export accept4 with version GLIBC_2.10.
1474         * socket/paccept.c: Removed.
1475         * sysdeps/unix/sysv/linux/paccept.c: Removed.
1476         * sysdeps/unix/sysv/linux/i386/paccept.S: Removed.
1477         * Versions.def: Define GLIBC_2.10 for libc.
1478         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_ACCEPT4.
1480         * nscd/connections.c: Use accept4.
1482         * sysdeps/unix/sysv/linux/i386/socket.S: Fix comment.
1484 2008-12-01  Ulrich Drepper  <drepper@redhat.com>
1486         * resolv/res_send.c (send_dg): Create sockets with non-blocking
1487         flag already set.
1489         * stdlib/setenv.c (unsetenv): Don't search environment if it does
1490         not exist.
1491         * stdlib/Makefile (tests): Add tst-unsetenv1.
1492         * stdlib/tst-unsetenv1.c: New file.
1494 2008-11-29  Ulrich Drepper  <drepper@redhat.com>
1496         * login/utmp_file.c (file_writable): New variable.
1497         (setutent_file): Don't try to open file for writing.
1498         (pututline_file): Before writing, make descriptor writable if
1499         necessary.
1501 2008-11-26  Ulrich Drepper  <drepper@redhat.com>
1503         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Only restrict search
1504         to IPv4 or IPv6 if an interface has been found.
1506 2008-11-26  Roland McGrath  <roland@redhat.com>
1508         * sysdeps/unix/sysv/linux/alpha/ipc_priv.h: Renamed to ...
1509         * sysdeps/unix/sysv/linux/powerpc/ipc_priv.h: ... here.
1511         * sysdeps/unix/sysv/linux/alpha/wordexp.c: Renamed to ...
1512         * sysdeps/unix/sysv/linux/ia64/wordexp.c: ... here.
1513         * sysdeps/unix/sysv/linux/sparc/sparc64/wordexp.c: Change #include.
1515         * elf/elf.h (NT_386_IOPERM): New macro.
1516         (NT_PPC_VSX): New macro.
1518 2008-11-25  Roland McGrath  <roland@redhat.com>
1520         * sysdeps/alpha, sysdeps/unix/bsd/osf/alpha,
1521         sysdeps/unix/bsd/Attic/osf1/alpha, sysdeps/unix/sysv/linux/alpha,
1522         sysdeps/unix/sysv/linux/alpha/alpha, sysdeps/unix/alpha,
1523         sysdeps/mach/alpha, sysdeps/mach/hurd/alpha:
1524         Subdirectories moved to ports repository.
1525         * configure.in (base_machine): Remove alpha case.
1527 2008-11-25  Thomas Schwinge  <tschwinge@gnu.org>
1529         * sysdeps/mach/strerror_l.c: New file.
1531 2008-11-13  Ryan S. Arnold  <rsa@us.ibm.com>
1533         [BZ #6411]
1534         * sysdeps/powerpc/fpu/Makefile: Added test case tst-setcontext-fpscr.
1535         * sysdeps/powerpc/fpu/feholdexcpt.c (_FPU_MASK_ALL): Define to replace
1536         magic numbers.
1537         * sysdeps/powerpc/fpu/fenv_libc.h (fesetenv_register): Dynamically
1538         choose mtfsf insn based on PPC_FEATURE_HAS_DFP.
1539         (relax_fenv_state): Same as above.
1540         (FPSCR_29): Reserve bit in ISA 2.05.
1541         (FPSCR_NI): Provide define for compat.
1542         * sysdeps/powerpc/fpu/fesetenv.c (_FPU_MASK_ALL): Define to replace
1543         magic numbers.
1544         * sysdeps/powerpc/fpu/feupdateenv.c (_FPU_MASK_ALL): Define to replace
1545         magic numbers.
1546         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c: New file.  Test case to
1547         test setcontext and swapcontext with dynamic 64-bit FPSCR detection.
1548         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp): Adjust
1549         access to hwcap to account for hwcap size increase to uint64_t.
1550         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S (__sigsetjmp ):
1551         Likewise.
1552         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S
1553         (*setcontext): Likewise.
1554         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/setcontext.S:
1555         New file.
1556         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/swapcontext.S:
1557         New file.
1558         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
1559         (*setcontext): dynamically select mtfsf insn based on
1560         PPC_FEATURE_HAS_DFP. Adjust access to hwcap to account for hwcap size
1561         increase to uint64_t.
1562         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
1563         (*swapcontext): dynamically select mtfsf insn based on
1564         PPC_FEATURE_HAS_DFP.  Adjust access to hwcap to account for hwcap size
1565         increase to uint64_t.
1566         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/setcontext.S:
1567         New file.
1568         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/swapcontext.S:
1569         New file.
1570         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
1571         (*setcontext): dynamically select mtfsf insn based on
1572         PPC_FEATURE_HAS_DFP.
1573         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
1574         (*swapcontext): dynamically select mtfsf insn based on
1575         PPC_FEATURE_HAS_DFP.
1577 2008-11-13  Ulrich Drepper  <drepper@redhat.com>
1579         * version.h: Bump for 2.9 release.
1580         * include/features.h (__GLIBC_MINOR__): Bump to 9.
1582         [BZ #7029]
1583         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_ALLOC_SIZE):
1584         Multiply with sizeof of __cpu_mask, not 8 unconditionally after
1585         all the rounding.
1587 2008-11-11  Ulrich Drepper  <drepper@redhat.com>
1589         [BZ #7009]
1590         * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): Don't abort for
1591         unknown request types for now.
1593 2008-11-11  Roland McGrath  <roland@redhat.com>
1595         * sysdeps/x86_64/configure: New file.
1597         * configure.in: Add AC_SUBST(libc_cv_cpp_asm_debuginfo).
1598         * configure: Regenerated.
1600 2008-11-03  Martin Schwidefsky  <schwidefsky@de.ibm.com>
1602         * sysdeps/s390/s390-64/dl-trampoline.S (_dl_runtime_profile): Use the
1603         correct instruction to remove the stack frame.
1605 2008-11-03  Michael Matz  <matz@suse.de>
1607         * sysdeps/s390/bits/atomic.h (__arch_compare_and_exchange_val_32_acq,
1608         __arch_compare_and_exchange_val_64_acq): Add "memory" clobber.
1610 2008-11-07  Jakub Jelinek  <jakub@redhat.com>
1612         * include/stdio.h (__builtin_fwrite, __builtin_fwrite_unlocked):
1613         Remove.
1615         * bits/libc-tsd.h (__libc_tsd_define, __libc_tsd_address,
1616         __libc_tsd_get, __libc_tsd_set): Add TYPE argument, use it as the type
1617         of the thread variable instead of void *.
1618         * sysdeps/mach/hurd/bits/libc-tsd.h (__libc_tsd_define,
1619         __libc_tsd_address, __libc_tsd_get, __libc_tsd_set): Likewise.
1620         * include/ctype.h (CTYPE_B, CTYPE_TOUPPER, CTYPE_TOLOWER): Adjust
1621         __libc_tsd_define arguments.
1622         (__ctype_b_loc, __ctype_toupper_loc, __ctype_tolower_loc): Adjust
1623         __libc_tsd_address arguments.  Remove union hack.
1624         * include/rpc/rpc.h (RPC_VARS): Adjust __libc_tsd_define arguments.
1625         * sunrpc/rpc_thread.c (RPC_VARS): Likewise.
1626         (__rpc_thread_destroy, rpc_thread_multi, __rpc_thread_variables):
1627         Adjust __libc_tsd_{set,get} arguments.
1628         * ctype/ctype-info.c (CTYPE_B, CTYPE_TOUPPER, CTYPE_TOLOWER): Adjust
1629         __libc_tsd_define arguments.
1630         * locale/uselocale.c (__uselocale): Adjust __libc_tsd_{set,get}
1631         arguments.
1632         * locale/lc-ctype.c (_nl_postload_ctype): Likewise.
1633         * locale/global-locale.c (__libc_tsd_LOCALE): Adjust type.
1634         (LOCALE): Adjust __libc_tsd_define arguments.
1635         * locale/localeinfo.h (_NL_CURRENT_LOCALE): Adjust __libc_tsd_get
1636         arguments.
1637         (LOCALE): Adjust __libc_tsd_define arguments.
1638         * sysdeps/mach/hurd/malloc-machine.h (MALLOC): Adjust __libc_tsd_define
1639         arguments.
1640         (tsd_setspecific, tsd_getspecific): Adjust __libc_tsd_{set,get}
1641         arguments.
1643 2008-11-02  Ulrich Drepper  <drepper@redhat.com>
1645         * malloc/malloc.c (public_rEALLOc): When new arena is used, copy
1646         really all bytes.  Patch by Denys Vlasenko <dvlasenk@redhat.com>.
1648 2008-11-01  Ulrich Drepper  <drepper@redhat.com>
1650         [BZ #6966]
1651         * misc/hsearch_r.c (hsearch_r): Fix secondary hash function.
1653 2008-10-24  Joseph Myers  <joseph@codesourcery.com>
1654             Ulrich Drepper  <drepper@redhat.com>
1656         * math/tgmath.h (__floating_type): Use __builtin_classify_type in
1657         definition for GCC 3.1 and later.
1659 2008-10-31  Jakub Jelinek  <jakub@redhat.com>
1661         * elf/dl-tls.c (__tls_get_addr): After calling _dl_update_slotinfo
1662         refetch dtv, as it might have changed.
1663         * elf/Makefile: Add rules to build and run tst-tls18.
1664         * elf/tst-tls18.c: New test.
1665         * elf/tst-tlsmod18a.c: New file.
1667 2008-09-09  Aurelien Jarno  <aurelien@aurel32.net>
1669         [BZ #6875]
1670         * iconvdata/gconv-modules: Add LATIN9 as an alias to ISO-8859-15.
1672 2008-10-31  Ulrich Drepper  <drepper@redhat.com>
1674         [BZ #6867]
1675         * sysdeps/powerpc/elf/rtld-global-offsets.sym: Fix typo.
1677         [BZ #6919]
1678         * posix/spawnattr_getschedparam.c (posix_spawnattr_getschedparam):
1679         Fix length of copy operation.
1681 2008-10-02  Pierre Habouzit <madcoder@debian.org>
1683         * sysdeps/unix/sysv/linux/eventfd.c (eventfd): Use the eventfd2 syscall
1684         and fix its calling convention.
1686 2008-10-07  Andreas Schwab  <schwab@suse.de>
1688         [BZ #6942]
1689         * resolv/res_send.c (send_vc): Fix last change.
1690         (send_dg): Align here as well.
1692 2008-10-31  Ulrich Drepper  <drepper@redhat.com>
1694         * sysdeps/unix/sysv/linux/ulimit.c (__ulimit): Handle UL_GETFSIZE
1695         return value in case rlimit is RLIM_INFINITY.
1697         [BZ #6947]
1698         * sysdeps/unix/sysv/linux/ulimit.c (__ulimit): Fix return value
1699         for UL_SETFSIZE.
1700         * resource/Makefile (tests): Add bug-ulimit1.
1701         * resource/bug-ulimit1.c: New file.
1703         [BZ #6974]
1704         * sunrpc/rpc_main.c (mkfile_output): Properly handle filename
1705         without dot.  Properly terminate the string with a null byte.
1706         Based on a patch by Aurelien Jarno <aurelien@aurel32.net>.
1708         [BZ #6980]
1709         * debug/getgroups_chk.c (__getgroups_chk): Return EINVAL error for
1710         negative sizees.
1711         * posix/bits/unistd.h (getgroups): Call __getgroups_chk for
1712         negative __size.
1714         [BZ #6995]
1715         * sysdeps/powerpc/powerpc32/dl-machine.c: Fix typo in message.
1717 2008-10-30  Ulrich Drepper  <drepper@redhat.com>
1719         * grp/initgroups.c (internal_getgrouplist): Don't prematurely
1720         abort if there is no initgroups_dyn function.
1722         * resolv/res_send.c (send_dg): On timeout, only return nonzero
1723         result if any of the queries really provided an answer.
1725 2008-10-28  Ulrich Drepper  <drepper@redhat.com>
1727         * po/lt.po: Update from translation team.
1729 2008-10-26  Ulrich Drepper  <drepper@redhat.com>
1731         * po/id.po: Update from translation team.
1733 2008-10-24  Ulrich Drepper  <drepper@redhat.com>
1735         * resolv/res_query.c (__libc_res_nquery): Add a few casts.
1736         Fix tests for existence of second reply.
1738 2008-10-23  Ulrich Drepper  <drepper@redhat.com>
1740         * po/id.po: New file.
1741         Contributed by the Indonesian translation team.
1743 2008-10-22  Dmitry V. Levin  <ldv@altlinux.org>
1745         * misc/syslog.c (openlog_internal): Fix __have_sock_cloexec
1746         initialization.
1748 2008-10-17  Jakub Jelinek  <jakub@redhat.com>
1750         * elf/Makefile: Add rules to build and run tst-tls17.
1751         * elf/tst-tls17.c: New test.
1752         * elf/tst-tlsmod17a.c: New file.
1753         * elf/tst-tlsmod17b.c: Likewise.
1755 2008-10-17  Ulrich Drepper  <drepper@redhat.com>
1757         * stdlib/divmod_1.c: Use correct type for dummy variable.
1758         * stdlib/mod_1.c: Likewise.
1760 2008-10-16  Ulrich Drepper  <drepper@redhat.com>
1762         * elf/dl-tls.c (_dl_update_slotinfo): Copy all of the initial DTV.
1764 2008-10-16  Jakub Jelinek  <jakub@redhat.com>
1766         * sysdeps/unix/sysv/linux/sys/signalfd.h (signalfd): Fix __THROW vs.
1767         __nonnull order for C++.
1768         * sysdeps/unix/sysv/linux/alpha/sys/signalfd.h (signalfd): Likewise.
1769         * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h (signalfd): Likewise.
1771 2008-10-01  Daniel Jacobowitz  <dan@codesourcery.com>
1773         * stdlib/longlong.h: Update from GCC.
1775 2008-10-09  Jakub Jelinek <jakub@redhat.com>
1776             David S. Miller  <davem@davemloft.net>
1778         * sysdeps/sparc/sparc64/sparcv9v/memcpy.S: When not USE_BPR,
1779         make sure any registers used with 64-bit 'branch-on-register'
1780         instructions have their top 32-bits clear.
1781         * sysdeps/sparc/sparc64/sparcv9v/memset.S: Likewise.
1782         * sysdeps/sparc/sparc64/sparcv9v2/memcpy.S: Likewise.
1784 2008-09-18  Andreas Schwab  <schwab@suse.de>
1786         [BZ #6942]
1787         * resolv/res_send.c (send_vc): Fix use of unaligned address.
1788         Properly handle partial reads.
1790 2008-10-01  Mark Shinwell  <shinwell@codesourcery.com>
1792         * elf/elf.h (STO_MIPS_PLT): New.
1793         (R_MIPS_COPY): New.
1794         (R_MIPS_JUMP_SLOT): New.
1795         (R_MIPS_NUM): Redefine to 128.
1796         (DT_MIPS_PLTGOT): New.
1797         (DT_MIPS_RWPLT): New.
1798         (DT_MIPS_NUM): Redefine to 0x35.
1800 2008-10-01  Ulrich Drepper  <drepper@redhat.com>
1802         * timezone/africa: Update from tzdata2008f.
1803         * timezone/asia: Likewise.
1804         * timezone/australasia: Likewise.
1805         * timezone/europe: Likewise.
1806         * timezone/leapseconds: Likewise.
1807         * timezone/northamerica: Likewise.
1808         * timezone/southamerica: Likewise.
1809         * timezone/zone.tab: Likewise.
1811 2008-09-30  Ulrich Drepper  <drepper@redhat.com>
1813         * nscd/connections.c: Disable use of paccept for now.
1815 2008-09-29  Ulrich Drepper  <drepper@redhat.com>
1817         * socket/Versions: Remove paccept export for GLIBC_2.9.
1818         * socket/Makefile (routines): Remove paccept.
1819         * socket/sys/socket.h: Remove paccept declaration.
1821         * po/sv.po: Update from translation team.
1823 2008-09-22  Deborah S. Townsend  <dstownse@us.ibm.com>
1825         * sysdeps/s390/s390-64/s390x-mcount.S: Replace ahi with aghi.
1826         * sysdeps/unix/sysv/linux/s390/s390-64/socket.S: Likewise.
1828 2008-09-16  Ulrich Drepper  <drepper@redhat.com>
1830         * dlfcn/dlopen.c (dlopen_doit): Allow __RTLD_SPROF flag.
1831         Patch by Olivier Fourdan <ofourdan@redhat.com>.
1833 2008-09-15  Ulrich Drepper  <drepper@redhat.com>
1835         * sunrpc/rpc/svc.h: Declare svcfd_create.
1836         Patch by Michael Solberg <msolberg@redhat.com>.
1838 2008-09-12  Flavio Leitner  <fleitner@redhat.com>
1839             Ulrich Drepper  <drepper@redhat.com>
1841         * malloc/malloc.c (public_vALLOc): Try other arenas in case
1842         _int_valloc fails.
1843         (public_pVALLOc): Likewise.
1845 2008-09-02  Andreas Jaeger  <aj@suse.de>
1847         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: Fix last
1848         commit.
1850 2008-08-26  Aurelien Jarno  <aurelien@aurel32.net>
1852         [BZ #6860]
1853         * hurd/hurd/signal.h (HURD_MSGPORT_RPC): Fix a typo.
1855 2008-07-18  Daniel Jacobowitz  <dan@codesourcery.com>
1857         * Makefile (check-data): Check data directory in add-ons.
1858         * elf/Makefile (check-data): Likewise.
1860 2008-08-18  Roland McGrath  <roland@redhat.com>
1862         * configure.in (--with-cpu): Check compiler support for -march/-mcpu.
1863         * configure: Regenerated.
1864         * config.make.in (cflags-cpu): New substituted variable.
1865         (with-cpu): Variable removed.
1866         * Makeconfig (+cflags): Use $(cflags-cpu), not $(with-cpu).
1868 2008-08-14  Ryan S. Arnold  <rsa@us.ibm.com>
1870         [BZ #6845]
1871         * sysdeps/powerpc/fpu/bits/mathinline.h (__signbitl): Copy new
1872         __signbitl definition and __LONG_DOUBLE_128__ guard from:
1873         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: Remove as
1874         redundant.  Functions which call floating point assembler operations
1875         should go into a sysdeps powerpc/fpu directory.
1877 2008-08-15  Ulrich Drepper  <drepper@redhat.com>
1879         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Define MAP_STACK.
1880         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Likewise.
1882 2008-08-14  Ulrich Drepper  <drepper@redhat.com>
1884         * sysdeps/x86_64/memset.S: Reduce size of tables for PIC.
1886         * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): Undo all
1887         change related to AT_EXECFN.  We cannot use that string.
1888         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Remove
1889         _dl_execfn member.
1890         * elf/dl-support.c: Remove _dl_execfn variable.
1891         (_dl_aux_init): Remove handling of AT_EXECFN.
1892         * elf/dl-sysdep.c (_dl_sysdep_start): Remove handling of AT_EXECFN.
1893         * elf/rtld.c (process_envvars): Remove use of __ASSUME_AT_EXECFN.
1895 2008-08-13  Ulrich Drepper  <drepper@redhat.com>
1897         [BZ #6544]
1898         * libio/fmemopen.c: Implement binary mode.  In this mode no NUL
1899         byte gets added to writes and seeks from the end use the length of
1900         the buffer and not the currently terminating NUL byte.
1902         [BZ #6634]
1903         * login/utmp_file.c (getutent_r_file): Take additional parameter.
1904         Set to true if locking failed.
1905         (getutid_r_file): Adjust caller.
1906         (pututline_file): Likewise.  Return NULL in this case.
1907         Patch mostly by halesh.s@gmail.com.
1909 2008-08-12  Ulrich Drepper  <drepper@redhat.com>
1911         [BZ #6589]
1912         * sysdeps/unix/sysv/linux/ifaddrs.c (struct sockaddr_ll_max):
1913         Define.
1914         (struct ifaddrs_storage): Use it instead of sockaddr_ll.
1916 2008-08-12  Ryan S. Arnold  <rsa@us.ibm.com>
1918         [BZ #6839]
1919         * sysdeps/powerpc/powerpc32/dl-machine.c (CHECK_STATIC_TLS): Remove
1920         macro since it is now available in elf/dynamic-link.h.
1922 2008-08-12  Roland McGrath  <roland@frob.com>
1924         * hurd/hurd/signal.h (HURD_MSGPORT_RPC): Avoid -Wparenthesis triggers,
1925         in case used outside of libc.
1926         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>
1928 2008-08-11  Ulrich Drepper  <drepper@redhat.com>
1930         * resolv/res_mkquery.c (res_nmkquery): Call ns_name_compress
1931         directly instead of going through dn_comp.
1933 2008-08-11  Aurelien Jarno  <aurel32@debian.org>
1935         * sysdeps/mach/i386/machine-lock.h (__spin_unlock, __spin_try_lock):
1936         Fix asm constraints.
1938 2008-08-07  Ulrich Drepper  <drepper@redhat.com>
1940         [BZ #6790]
1941         * sysdeps/unix/sysv/linux/bits/in.h (IP_PMTUDISC_PROBE): Define.
1942         (IPV6_PMTUDISC_PROBE): Likewise.
1944 2008-08-07  Pete Eberlein  <eberlein@us.ibm.com>
1946         [BZ #6791]
1947         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h (PROT_SAO): Define.
1949 2008-08-01  Steven Munroe  <sjmunroe@us.ibm.com>
1950             Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
1952         [BZ #6817]
1953         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags):
1954         Added the members 'vsx' and 'arch_2_06'.
1955         (_dl_powerpc_platforms): Add the member 'power7'.
1956         * sysdeps/powerpc/dl-procinfo.h: Modify _DL_HWCAP_FIRST
1957         to reflect the changes required by VSX and ISA 2.06.
1958         Modify _DL_PLATFORMS_COUNT to reflect the addition of
1959         'power7'.
1960         Defined PPC_PLATFORM_POWER7.
1961         (_dl_string_platform): Add support for POWER7.
1962         * sysdeps/powerpc/sysdep.h: Define bit masks for VSX
1963         capability and ISA 2.06.
1965 2008-08-07  Ulrich Drepper  <drepper@redhat.com>
1967         [BZ #6824]
1968         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: Use correct
1969         macro to detect use of 128 bit long double.
1970         Patch by Ryan S. Arnold <rsa@us.ibm.com>.
1972 2008-08-05  Ulrich Drepper  <drepper@redhat.com>
1974         * scripts/gen-as-const.awk: Use 32-bit values on 32-bit platforms.
1976         [BZ #5794]
1977         * sysdeps/i386/fpu/s_expm1l.S: Simply use exp implementation for large
1978         parameters.
1979         * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
1980         Patch by Denys Vlasenko <dvlasenk@redhat.com>.
1982 2008-08-03  Ulrich Drepper  <drepper@redhat.com>
1984         * nscd/connections.c (main_loop_poll): Pass a buffer which is
1985         guaranteed to be large enough to read inotify event.  Ignore
1986         EAGAIN error.  Better error message.  Add branch predicition.
1987         (main_loop_epoll): Likewise.
1989 2008-08-02  Roland McGrath  <roland@frob.com>
1991         * sysdeps/mach/i386/machine-lock.h (__spin_unlock, __spin_try_lock):
1992         Add memory clobbers.
1994 2008-08-02  Ulrich Drepper  <drepper@redhat.com>
1996         * manual/arith.texi: Avoid @strong{Note:}.
1997         * manual/creature.texi: Likewise.
1998         * manual/filesys.texi: Likewise.
1999         * manual/math.texi: Likewise.
2000         * manual/memory.texi: Likewise.
2001         * manual/resource.texi: Likewise.
2002         * manual/syslog.texi: Likewise.
2003         * manual/time.texi: Likewise.
2005         * sysdeps/posix/clock_getres.c (hp_timing_getres): Remove inline
2006         to prevent warning.
2008 2008-08-01  Ulrich Drepper  <drepper@redhat.com>
2010         * sysdeps/unix/sysv/linux/Versions: Fix changes due to old patch for
2011         new epoll_create1 interface.
2012         * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
2013         * sysdeps/unix/sysv/linux/sys/epoll.h: Likewise.
2014         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
2016         * include/arpa/nameser.h (NS_GET16): Use const pointer.
2017         (NS_GET32): Likewise.
2019         * sysdeps/unix/sysv/linux/kernel-features.h: s390 has the new
2020         syscalls, too.
2022         * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): We cannot
2023         use the AT_EXECFN value if it is no absolute path.
2024         * sysdeps/unix/sysv/linux/kernel-features.h: Never define
2025         __ASSUME_AT_EXECFN.
2027         * Versions.def: Add GLIBC_2.9 to libresolv.
2028         * include/resolv.h: Remove hidden proto declarations for __ns_*
2029         functions.  Add them for __dn_count_labels and __p_secstodate.
2030         * include/arpa/nameser.h: Add a number of hidden proto declarations.
2031         Define ns_msg_getflags macro here.
2032         * resolv/res_debug.c: Add hidden definition for __dn_count_labels
2033         and __p_secstodate.
2034         * resolv/Versions: Export functions from <arpa/nameser.h> from
2035         libresolv in version GLIBC_2.9.
2036         * resolv/ns_name.c: Integrate changes from bind 9.5.0.  Add necessary
2037         hidden definitions.
2038         * resolv/ns_netint.c: Likewise.
2039         * resolv/ns_parse.c: Likewise.
2040         * resolv/ns_print.c: Likewise.
2041         * resolv/ns_samedomain.c: Likewise.
2042         * resolv/ns_ttl.c: Likewise.
2043         * resolv/arpa/nameser_compat.h: Likewise.
2044         * resolv/arpa/nameser.h: Likewise.  Remove macros which redirect
2045         function calls.
2046         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Use __ns_get16
2047         instead of ns_get16.
2048         * resolv/nss_dns/dns-host.c (getanswer_r): Use __ns_get16 and
2049         __ns_get32 instead of ns_get16 and ns_get32 respectively.
2050         (gaih_getanswer_slice): Likewise.
2051         * resolv/Makefile (libresolv-routines): Add ns_date.
2052         * resolv/ns_date.c: New file.
2054         * elf/Makefile (check-localplt.out): Also check libresolv and
2055         libcrypt.
2057 2008-07-31  Ulrich Drepper  <drepper@redhat.com>
2059         * sysdeps/unix/sysv/linux/kernel-features.h: Define
2060         __ASSUME_O_CLOEXEC.
2062 2008-07-30  Ulrich Drepper  <drepper@redhat.com>
2064         * sysdeps/posix/getaddrinfo.c (gaih_inet): Raise size of initial
2065         buffer passed to NSS functions.
2067         * nscd/connections.c (nscd_init): Typo in preprocessor directive.
2069         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PACCEPT):
2070         Define.
2072         * misc/syslog.c (openlog_internal): Fix compile problem.
2074 2008-07-28  Roland McGrath  <roland@redhat.com>
2076         * elf/dl-sysdep.c (_dl_show_auxv): Add AT_EXECFN to the table.
2078 2008-07-28  Ulrich Drepper  <drepper@redhat.com>
2080         * io/ftw.c (add_object): Remove inline to avoid warning.
2082         * sysdeps/unix/sysv/linux/paccept.c: Fix compile problem.
2084         * resolv/res_send.c (__libc_res_nsend): Take additional parameter.
2085         Use it instead of locally defined resplen2 variable.
2086         (res_nsend): Adjust for __libc_res_nsend interface change.
2087         (send_vc): Initialize *resplen2 if necessary.  Read length of
2088         package into an appropriately aligned variable.  Store converted length
2089         in new variable and use it appropriately.
2090         Add branch prediction help.
2091         * resolv/res_query.c (__libc_res_nquery): Take additional parameter
2092         and pass it on to __libc_res_nsend.  Adjust all callers.
2093         (__libc_res_nsearch): Likewise.
2094         (__libc_res_nqeurydomain): Likewise.
2095         * resolv/nss_dns/dns-host.c: Adjust for __libc_res_nsearch interface
2096         change.
2097         (_nss_dns_gethostbyname4): Don't unconditionally allocate tmp array.
2098         Define resplen2 variable and pass it to __libc_res_nsearch and then
2099         to gaih_getanswer.
2100         (getanswer_r): In case of incorrect DNS data don't overread buffer.
2101         Add branch prediction.
2102         (gaih_getanswer_slice): Likewise.  Check for invalid data types.
2103         (gaih_getanswer): Don't decode second slice if first one failed due
2104         to a too small buffer.  Don't let not found status of second
2105         decoder shadow results of the first.
2106         * resolv/gethnamaddr.c (gethostbyname2): Adjust for __libc_res_nsearch
2107         and __libc_res_nquery interface changes
2108         (gethostbyaddr): Adjust for __libc_res_nquery interface change.
2109         * include/resolv.h: Adjust prototypes for __libc_res_nquery,
2110         __libc_res_nsearch, and __libc_res_nsend.
2111         * resolv/nss_dns/dns-canon.c: Adjust for __libc_res_nquery interface
2112         change.
2113         * resolv/nss_dns/dns-network.c: Adjust for __libc_res_nquery and
2114         __libc_res_nsearch interface changes.
2116 2008-07-27  Ulrich Drepper  <drepper@redhat.com>
2118         * libio/iopopen.c (_IO_new_proc_open): Remove unnecessary volatile.
2120         * posix/wordexp.c (exec_comm): Use pipe2 if possible to create
2121         file descriptors with close-on-exec set.
2122         (exec_comm_child): Fix the case where the write end of the pipe is
2123         STDOUT_FILENO already.  In case it is, clear close-on-exec.
2125         * sysdeps/unix/sysv/linux/syscalls.list: Add __pipe2 alias.
2126         * io/pipe2.c: Likewise.
2127         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PIPE2
2128         instead of __ASSUME_PACCEPT.
2129         * include/unistd.h: Declare __have_pipe2.
2130         * libio/iopopen.c: Implement "e" flag.
2131         * libio/Makefile (tests): Add tst-popen1.
2132         * libio/tst-popen1.c: New file.
2134         * sysdeps/unix/sysv/linux/bits/socket.h: Define PF_ISDN and AF_ISDN.
2135         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
2137 2008-07-26  Ulrich Drepper  <drepper@redhat.com>
2139         [BZ #6771]
2140         * libio/fileops.c (_IO_new_file_attach): Preserve errno around
2141         success call of _IO_SEEKOFF or calls which failed because the
2142         descriptor is for a pipe.
2144         * sunrpc/key_call.c (getkeyserv_handle): Use FD_CLOEXEC instead of
2145         magic number.
2147         * misc/syslog.c (openlog_internal): Use SOCK_CLOEXEC if possible.
2149         * malloc/mtrace.c (mtrace): Use 'e' flag in fopen call.  Drop
2150         F_SETFD use if we know fopen set the flag.
2152         * login/utmp_file.c (setutent_file): Minor optimization in case
2153         O_CLOEXEC is available.
2155 2008-07-24  Tom "spot" Callaway  <tcallawa@redhat.com>
2157         * Makeconfig: Define pie-ccflag and PIE-ccflag variables.
2158         * elf/Makefile: Use pie-ccflag variable.
2159         * nscd/Makefile: Likewise.
2160         * sysdeps/sparc/Makefile: Set $(pie-ccflag) to -fPIE.
2162 2008-07-21  Andreas Krebbel  <krebbel1@de.ibm.com>
2164         [BZ #6724]
2165         * Versions.def: Add GLIBC_2.9 version tag for libutil.
2166         * sysdeps/unix/sysv/linux/s390/bits/utmp.h: Copy of
2167         gnu/bits/utmp.h.  Check for __WORDSIZE_COMPAT32 removed.
2168         * sysdeps/unix/sysv/linux/s390/bits/utmpx.h: Copy of
2169         gnu/bits/utmpx.h.  Check for __WORDSIZE_COMPAT32 removed.
2170         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Add new files
2171         utmp32, utmpx32 and login32.
2172         * sysdeps/unix/sysv/linux/s390/s390-32/Versions: Add 2.9
2173         versions of struct utmp functions to libc and libutil.
2174         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-compat.h: New file.
2175         * sysdeps/unix/sysv/linux/s390/s390-32/getutent.c: New file.
2176         * sysdeps/unix/sysv/linux/s390/s390-32/getutent_r.c: New file.
2177         * sysdeps/unix/sysv/linux/s390/s390-32/getutid.c: New file.
2178         * sysdeps/unix/sysv/linux/s390/s390-32/getutid_r.c: New file.
2179         * sysdeps/unix/sysv/linux/s390/s390-32/getutline.c: New file.
2180         * sysdeps/unix/sysv/linux/s390/s390-32/getutline_r.c: New file.
2181         * sysdeps/unix/sysv/linux/s390/s390-32/getutmp.c: New file.
2182         * sysdeps/unix/sysv/linux/s390/s390-32/getutxent.c: New file.
2183         * sysdeps/unix/sysv/linux/s390/s390-32/getutxid.c: New file.
2184         * sysdeps/unix/sysv/linux/s390/s390-32/getutxline.c: New file.
2185         * sysdeps/unix/sysv/linux/s390/s390-32/login.c: New file.
2186         * sysdeps/unix/sysv/linux/s390/s390-32/login32.c: New file.
2187         * sysdeps/unix/sysv/linux/s390/s390-32/pututxline.c: New file.
2188         * sysdeps/unix/sysv/linux/s390/s390-32/updwtmp.c: New file.
2189         * sysdeps/unix/sysv/linux/s390/s390-32/updwtmpx.c: New file.
2190         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: New file.
2191         * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.c: New file.
2192         * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h: New file.
2193         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx-convert.h: New file.
2194         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.c: New file.
2195         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: New file.
2197 2008-07-26  Ulrich Drepper  <drepper@redhat.com>
2199         * scripts/gen-as-const.awk: Generate more widely usable code by
2200         using 64-bit arithmetic.
2202         * stdio-common/printf_fp.c (___printf_fp): Give wide outout code
2203         the same treatment as narrow output code in last patch.
2205         * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Namespace cleanup.
2207         [BZ #6763]
2208         * elf/dl-load.c (local_strdup): Remove inline.
2209         (_dl_map_object_from_fd): Don't allocate l_symbolic_searchlist.r_list.
2210         * elf/dl-object.c (_dl_new_object): Allocate symbolic searchlist as
2211         part of the object.
2213         * sysdeps/unix/sysv/linux/dl-origin.c: Add const to avoid warning.
2215 2008-07-25  Ulrich Drepper  <drepper@redhat.com>
2217         * sysdeps/unix/sysv/linux/kernel-features.h: IA-64 and SPARC have
2218         the new syscalls, too.
2220         * sysdeps/i386/i686/memcmp.S: Fix unwind information.
2221         Reported by Paul Pluzhnikov <ppluzhnikov@google.com>.
2223         [BZ #6698]
2224         * stdio-common/_i18n_number.h (_i18n_number_rewrite): Take additional
2225         parameter for end of buffer.  If temporary copy is too large use
2226         malloc.
2227         * stdio-common/vfprintf.c: Adjust for _i18n_number_rewrite
2228         interface change.
2229         * stdio-common/printf_fp.c (__printf_fp): Likewise..  Account for
2230         string rewrite when allocating buffer.
2232         * sysdeps/unix/sysv/linux/kernel-features.h: PPC has the new
2233         syscalls, too.
2235         * nscd/connections.c (nscd_init): Clean up fcntl call.
2237         * nscd/nscd_helper.c (open_socket): Use SOCK_CLOEXEC and
2238         SOCK_NONBLOCK if possible.
2240         * sysdeps/unix/sysv/linux/opensock.c (__opensock): Use
2241         SOCK_CLOEXEC if available.
2243         * include/rpc/clnt.h: Declare __libc_clntudp_bufcreate and
2244         __libc_clntudp_bufcreate_internal.
2245         * include/sys/socket.h: Declare __have_sock_cloexec.
2246         * socket/Makefile (aux): Add have_sock_cloexec.
2247         * socket/have_sock_cloexec.c: New file.
2248         * sunrpc/clnt_udp.h (clntudp_bufcreate): Now a wrapper around
2249         __libc_clntudp_bufcreate.
2250         (__libc_clntudp_bufcreate): Former implementation of clntudp_bufcreate
2251         which takes an additional parameter.  Create socket with non-blocking
2252         mode and close-on-exec flag set, if wanted.
2253         * sunrpc/Versions: Export __libc_clntudp_bufcreate@GLIBC_PRIVATE.
2254         * nis/ypclnt.c (yp_bind_client_create): Use __libc_clntpudp_bufcreate
2255         instead of clntudp_create.  The socket has already the close-on-exec
2256         flag set if SOCK_CLOEXEC is defined.
2258 2008-07-24  Ulrich Drepper  <drepper@redhat.com>
2260         * sysdeps/unix/sysv/linux/kernel-features.h: Define
2261         __ASSUME_PACCEPT, __ASSUME_IN_NONBLOCK, and __ASSUME_PACCEPT if
2262         appropriate.
2263         * nscd/connections.c: Avoid fcntl calls to set close-on-exec flag and
2264         non-blocking mode by using socket, paccept, and inotify_init1.
2266         * Versions.def (glibc): Add GLIBC_2.9.
2267         * io/Makefile (routines): Add dup3 and pipe2.
2268         * io/Versions [glibc] (GLIBC_2.9): Add dup3 and pipe2.
2269         * io/dup3.c: New file.
2270         * io/pipe2.c: New file.
2271         * posix/unistd.h: Declare dup3 and pipe2.
2272         * socket/Makefile (routines): Add paccept.
2273         * socket/Versions [glibc] (GLIBC_2.9): Add paccept.
2274         * socket/paccept.c: New file.
2275         * socket/sys/socket.h: Declare paccept.
2276         * sysdeps/unix/syscalls.list: Add entry for dup3.
2277         * sysdeps/unix/sysv/linux/Versions [glibc] (GLIBC_2.9): Add
2278         epoll_create2 and inotify_init1.
2279         * sysdeps/unix/sysv/linux/eventfd.c: Use eventfd1 syscall if possible.
2280         * sysdeps/unix/sysv/linux/paccept.c: New file.
2281         * sysdeps/unix/sysv/linux/signalfd.c: Use signalfd4 syscall if
2282         possible.
2283         * sysdeps/unix/sysv/linux/socketcall.h: Add SOCKOP_paccept.
2284         * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_create2,
2285         inotify_init1, and pipe2 entries.
2286         * sysdeps/unix/sysv/linux/alpha/sys/epoll.h: New file.
2287         * sysdeps/unix/sysv/linux/alpha/sys/eventfd.h: New file.
2288         * sysdeps/unix/sysv/linux/alpha/sys/inotify.h: New file.
2289         * sysdeps/unix/sysv/linux/alpha/sys/signalfd.h: New file.
2290         * sysdeps/unix/sysv/linux/alpha/sys/timerfd.h: New file.
2291         * sysdeps/unix/sysv/linux/bits/socket.h: Define SOCK_CLOEXEC and
2292         SOCK_NONBLOCK.
2293         * sysdeps/unix/sysv/linux/i386/paccept.S: New file.
2294         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: New file.
2295         * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: New file.
2296         * sysdeps/unix/sysv/linux/sparc/sys/inotify.h: New file.
2297         * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h: New file.
2298         * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: New file.
2299         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: New file.
2300         * sysdeps/unix/sysv/linux/sys/epoll.h: Define EPOLL_CLOEXEC and
2301         EPOLL_NONBLOCK.  Declare epoll_create2.
2302         * sysdeps/unix/sysv/linux/sys/eventfd.h: Define EFD_CLOEXEC and
2303         EFD_NONBLOCK.
2304         * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOEXEC and
2305         IN_NONBLOCK.  Declare inotify_init1.
2306         * sysdeps/unix/sysv/linux/sys/signalfd.h: Define SFD_CLOEXEC and
2307         SFD_NONBLOCK.
2308         * sysdeps/unix/sysv/linux/sys/timerfd.h: Define TFD_CLOEXEC and
2309         TFD_NONBLOCK.
2311         * elf/elf.h: Define AT_EXECFN.
2312         * elf/rtld.c [!__ASSUME_AT_EXECFN] (process_envvars): Don't handle
2313         LD_ORIGIN_PATH.
2314         * elf/dl-sysdep.c (_dl_sysdep_start): Handle AT_EXECFN.
2315         * elf/dl-support.c: Define _dl_execfn.  Don't define _dl_origin_path
2316         if __ASSUME_AT_EXECFN is defined.
2317         (_dl_aux_init): Handle AT_EXECFN.
2318         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_AT_EXECFN
2319         for 2.6.27 and up.
2320         * sysdeps/generic/ldsodefs.h (rtld_global_ro): Add _dl_execfn.
2321         Don't define _dl_origin_path if __ASSUME_AT_EXECFN is defined.
2322         * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): Use
2323         _dl_execfn if available and avoid compatibility code if
2324         __ASSUME_AT_EXECFN is defined.
2326         * sysdeps/unix/sysv/linux/dl-sysdep.h: Don't declare
2327         _dl_discover_osversion only for older kernels.
2329 2008-07-22  Roland McGrath  <roland@frob.com>
2331         * hurd/fd-read.c (_hurd_fd_read): Fix last change.
2333 2008-07-21  Roland McGrath  <roland@frob.com>
2335         * hurd/fd-read.c (_hurd_fd_read): Return EGRATUITOUS if the server
2336         returned too much data out of line.
2338 2008-07-20  Ulrich Drepper  <drepper@redhat.com>
2340         * locale/setlocale.c (setname): Remove inline to avoid compiler
2341         warning.
2343         [BZ #6712]
2344         * locale/setlocale.c (setlocale): Take the setlocale lock earlier.
2346 2008-07-15  Ulrich Drepper  <drepper@redhat.com>
2348         * stdio-common/vfprintf.c (_IO_helper_overflow): In case _IO_sputn
2349         doesn't manage to write anything, fail.
2351         * malloc/hooks.c (__malloc_check_init): Remove printf.
2353 2008-07-14  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2355         * sysdeps/mach/hurd/bits/fcntl.h: Include <sys/types.h>.
2357 2008-07-12  Ulrich Drepper  <drepper@redhat.com>
2359         * nscd/connections.c (main_loop_poll): Fix handling of read errors
2360         from inotify.
2361         (main_loop_epoll): Likewise.
2363 2008-07-09  Ulrich Drepper  <drepper@redhat.com>
2365         * resolv/res_send.c: Remove unnecessary res_pquery prototype.
2367         * resolv/res_query.c (__libc_res_nquery): Issue debug message only
2368         if DEBUG is defined.
2370         * resolv/res_query.c (__libc_res_nquery): Align buffer for T_AAAA
2371         query.  Adjust buffer size computation for padding.
2373 2008-07-08  Ulrich Drepper  <drepper@redhat.com>
2375         * stdio-common/Makefile: Add rules to build and run tst-setvbuf1.
2376         * stdio-common/tst-setvbuf1.c: New file.
2377         * stdio-common/tst-setvbuf1.expect: New file.
2379         [BZ #6719]
2380         * libio/iosetvbuf.c (_IO_setvbuf): Correctly clear buffering flags
2381         when selecting fully-buffered stream.
2382         Patch by Wang Xin <wxinee@gmail.com>.
2384 2008-07-06  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2386         * sysdeps/mach/hurd/open.c: Include <stdio.h>.
2387         (__open_2): New function.
2388         (__open64_2): New alias to __open_2.
2389         * sysdeps/mach/hurd/openat.c: Include <stdio.h>.
2390         (__openat_2): New function.
2391         (__openat64_2): New alias to __openat_2.
2393 2008-07-06  Ulrich Drepper  <drepper@redhat.com>
2395         [BZ #6723]
2396         * time/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
2398 2008-07-01  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2400         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Define MSG_NOSIGNAL.
2401         * hurd/hurd/fd.h (__hurd_sockfail): Add extern inline function.
2402         * sysdeps/mach/hurd/recv.c (__recv): Use __hurd_sockfail instead of
2403         __hurd_dfail.
2404         * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise.
2405         * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise.
2406         * sysdeps/mach/hurd/send.c (__send): Likewise.
2407         * sysdeps/mach/hurd/sendto.c (__sendfrom): Likewise.
2408         * sysdeps/mach/hurd/sendmsg.c (__sendmsg): Likewise.
2410 2008-03-04  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2412         * sysdeps/mach/hurd/recv.c (__recv): Initialize NPORTS.
2413         * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise.
2414         * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise.
2415         * hurd/fd-read.c (_hurd_fd_read): Initialize NREAD.
2416         * hurd/get-host.c (_hurd_get_host_config): Likewise.
2417         * sysdeps/mach/hurd/dl-sysdep.c (__libc_read): Likewise.
2419 2008-06-27  Ulrich Drepper  <drepper@redhat.com>
2421         [BZ #6657]
2422         * time/strptime_l.c: Don't clear s.era_cnt after successful match
2423         of %EY.
2424         Patch by Petr Baudis.
2426 2008-06-26  Ulrich Drepper  <drepper@redhat.com>
2428         * resolv/res_debug.c (__p_type_syms): Add ns_t_dname entry.
2429         Patch by Peter Jones <pjones@redhat.com>.
2431 2008-06-25  Ulrich Drepper  <drepper@redhat.com>
2433         [BZ #6654]
2434         * stdlib/canonicalize.c (__realpath): readlink can write too much
2435         into the buffer on platforms without PATH_MAX.
2437 2008-06-17  Carlos O'Donell  <carlos@codesourcery.com>
2439         [BZ #6653]
2440         * posix/tst-regex.c (main): Rename to...
2441         (do_test): ... this. Remove cmdline option processing.
2442         (TIMEOUT): Define.
2443         (TEST_FUNCTION): Define.
2444         (CMDLINE_OPTIONS): Define.
2446 2008-06-25  Ulrich Drepper  <drepper@redhat.com>
2448         [BZ #5210]
2449         * configure.in: Add -Werror to -fstack-protector test to catch
2450         unsupported architectures.
2451         Patch by Gilles Esponasse <g.esp@free.fr>.
2453 2008-06-17  Joseph Myers  <joseph@codesourcery.com>
2455         * stdlib/tst-setcontext.c: Set back_in_main before exit if
2456         getcontext returns ENOSYS.
2458 2008-06-18  Ulrich Drepper  <drepper@redhat.com>
2460         * nscd/connections.c (main_loop_poll): Fix test for read error.
2461         (main_loop_epoll): Likewise.
2463 2008-06-13  Ulrich Drepper  <drepper@redhat.com>
2465         * sysdeps/posix/getaddrinfo.c: Move _res_hconf_init call to a
2466         better place so it is not called when nscd is used.
2468         * nscd/connections.c: Also recognize and handle changes to the
2469         resolver configuration file.
2471 2008-06-12  Ulrich Drepper  <drepper@redhat.com>
2473         * time/strftime.c: Pass reference to tzset_called around to handle
2474         recursive calls.
2476         [BZ #6612]
2477         * time/strftime.c (__strftime_internal): Call tzset() only
2478         when printing timezone-dependent values.
2479         Based on a patch by Petr Baudis <pasky@suse.cz>.
2481         * resolv/nss_dns/dns-host.c (gaih_getanswer): Don't
2482         unconditionally use second gaih_getanswer_slice result.
2484         * sysdeps/posix/getaddrinfo.c (gai_inet): Remove unnecessary test.
2485         (getaddrinfo): RES must always be non-NULL.
2487 2008-06-12  Jakub Jelinek  <jakub@redhat.com>
2489         * sysdeps/powerpc/powerpc64/fpu/s_llround.S (__llround): Avoid using
2490         cr[34] registers.
2491         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S (__llroundf): Likewise.
2492         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S (__llround):
2493         Likewise.
2494         * sysdeps/powerpc/powerpc32/fpu/s_lround.S (__lround): Avoid using cr3
2495         register.
2497 2008-06-12  Ulrich Drepper  <drepper@redhat.com>
2499         * nscd/nscd.h (struct database_dyn): Add inotify_descr and clear_cache
2500         fields.
2501         * nscd/connections.c (inotify_fd): New variable.
2502         (nscd_init): Try to open an inotify descriptor.
2503         If successful, watch files for databases using inotify instead of
2504         having prune threads stat the files.
2505         (nscd_run_prune): Recognize clear_cache flag being set and call
2506         prune_cache appropriately.
2507         (main_loop_poll): Add inotify descriptor to wait set and handle the
2508         reported changes.
2509         (main_loop_epoll): Likewise.
2510         * nscd/cache.c (prune_cache): Don't stat files for databases if
2511         inotify is used.
2512         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd]
2513         (CFLAGS-connections.c): Add -DHAVE_INOTIFY.
2515         * nscd/grpcache.c (cache_addgr): Correctly compute size of
2516         fixed-size portion of the record.
2517         * nscd/servicescache.c (cache_addserv): Likewise.
2518         * nscd/pwdcache.c (cache_addpw): Likewise.
2519         * nscd/initgrcache.c (addinitgroupsX): Likewise.
2521 2008-06-11  Ulrich Drepper  <drepper@redhat.com>
2523         * nscd/mem.c (gc): Initialize obstack earlier so that if we jump
2524         out we don't use uninitialized memory.
2526         * nscd/hstcache.c (cache_addhst): Send correct number of bytes to
2527         the client.
2529 2008-06-10  Ulrich Drepper  <drepper@redhat.com>
2531         * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): Also log and
2532         ignore T_DNAME messages.
2533         * resolv/arpa/nameser_compat.h (T_DNAME): Define.
2535 2008-06-05  Jakub Jelinek  <jakub@redhat.com>
2537         * misc/regexp.h (compile): Use __REPB_PREFIX macro.
2538         Avoid segfault if first GETC returns eof/'\0'/'\n'.
2540 2008-06-03  Jakub Jelinek  <jakub@redhat.com>
2542         * nscd/nscd_getserv_r.c (__nscd_getservbyport_r): Pass cp
2543         instead of portstr to nscd_getserv_r.  Patch by
2544         Roman Kagan <rkagan@mail.ru>.
2546 2008-05-26  Jim Meyering  <meyering@redhat.com>
2548         Remove more useless "if" tests before "free".
2549         * include/inline-hashtab.h (htab_delete): Likewise.
2550         * libio/freopen.c (freopen): Likewise.
2551         * libio/freopen64.c (freopen64): Likewise.
2552         * locale/programs/ld-collate.c (collate_read): Likewise.
2553         * misc/fstab.c (libc_freeres_fn): Likewise.
2554         * posix/glob.c (globfree): Likewise.
2556 2008-05-24  Ulrich Drepper  <drepper@redhat.com>
2558         * string/Makefile (strop-tests): Add memmem.
2559         * string/test-memmem.c: New file.
2560         * string/test-string.h (BUF1PAGES): Define to 1 if undefined.
2561         (test_init): Size buf1 according to BUF1PAGES.
2563 2008-05-24  Jakub Jelinek  <jakub@redhat.com>
2565         * libio/stdio.h (vscanf): Fix -std=c99 redirect.
2566         * stdio-common/Makefile (tests): Add scanf16 and scanf17.
2567         (CFLAGS-scanf17.c): New.
2568         * stdio-common/scanf14.c (main): Add fscanf and scanf tests.
2569         * stdio-common/scanf15.c (main): Likewise.
2570         * stdio-common/scanf16.c: New file.
2571         * stdio-common/scanf17.c: New file.
2573 2008-05-24  Ulrich Drepper  <drepper@redhat.com>
2575         * resolv/res_send.c (send_dg): If we already have one of two
2576         answers and the server reports SERVFAIL, NOTIMP, or REFUSED, then
2577         use the one answer insted of failing.
2579 2008-02-20  Ryan S. Arnold  <rsa@us.ibm.com>
2581         * math/libm-test.inc (exp_test): Exclude expl(1000.0L) from
2582         being executed on PowerPC as the expected result exceeds IBM
2583         long double 128 __LDBL_MAX__.
2585 2008-05-21  Roland McGrath  <roland@redhat.com>
2587         * shlib-versions (sparc.*-.*-.*, sparc64.*-.*-.*): Add ABI lines.
2589         * Makefile (check-data): Use $(abi-name) before other guesses.
2590         Look in $(add-ons) dirs before scripts/data/.
2591         * elf/Makefile (check-data): Likewise.
2593         * scripts/soversions.awk: Grok ABI line.
2594         * Makeconfig ($(common-objpfx)soversions.mk): Likewise.
2595         Emit definition for abi-name variable.
2597 2008-05-21  Ulrich Drepper  <drepper@redhat.com>
2599         * string/endian.h: Define new fixed-size hto* and *toh macros only
2600         if [__USE_BSD].
2602         * iconvdata/Depend: Add localedata.
2604 2008-05-21  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2606         * bits/termios.h (ONLCR): Define under [__USE_XOPEN] too.
2608 2008-05-08  David S. Miller  <davem@davemloft.net>
2610         * sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S: Use
2611         HIDDEN_JUMPTARGET.
2612         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
2613         (__SYSCALL_CLOBBERS): Remove %g* registers.
2614         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
2615         (__SYSCALL_CLOBBERS): Likewise.
2616         * scripts/data/localplt-sparc-linux-gnu.data: New file.
2617         * scripts/data/localplt-sparc64-linux-gnu.data: New file.
2619 2008-05-21  Jakub Jelinek  <jakub@redhat.com>
2621         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
2622         (CALL_ERRNO_LOCATION): Define.
2623         (__SYSCALL_STRING, __CLONE_SYSCALL_STRING): Use it.
2624         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
2625         (CALL_ERRNO_LOCATION): Define.
2626         (__SYSCALL_STRING, __CLONE_SYSCALL_STRING): Use it.
2627         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S (__brk): Use
2628         HIDDEN_JUMPTARGET for __errno_location call in libc.so.
2630 2008-05-20  Ulrich Drepper  <drepper@redhat.com>
2632         * include/inline-hashtab.h (higher_prime_number): Fix type of mid
2633         variable.
2635 2008-05-20  Jakub Jelinek  <jakub@redhat.com>
2637         * sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h
2638         (FIRST_FRAME_POINTER): Define.
2640 2008-05-09  David S. Miller  <davem@davemloft.net>
2642         * sysdeps/sparc/sparc64/backtrace.c: New file.
2644 2008-05-14  David S. Miller  <davem@davemloft.net>
2646         * sysdeps/sparc/machine-gmon.h: New file.
2647         * sysdeps/sparc/sparc-mcount.S: Likewise.
2648         * sysdeps/sparc/Makefile: Add sparc-mcount target to
2649         sysdep_routines in gmon directory.
2651 2008-05-19  Jakub Jelinek  <jakub@redhat.com>
2653         * elf/soinit.c (__EH_FRAME_BEGIN__): Remove.
2655 2008-05-19  Ulrich Drepper  <drepper@redhat.com>
2657         * resolv/res_query.c (__libc_res_nquery): In case one of two
2658         answer was too short don't try to read that answer's header.
2660         * resolv/res_send.c (send_dg): In case of timeout and there are
2661         two queries and one has been answered, return value indicating
2662         success.
2664 2008-05-18  Ulrich Drepper  <drepper@redhat.com>
2666         * nscd/cache.c (cache_add): Take additional parameter specifying
2667         whether this is in response of a cache refill.  Check alignment
2668         of package data.  Revamp waking of pruning thread.
2669         (prune_cache): Small optimization.
2670         * nscd/nscd.h: Adjust cache_add prototypes.
2671         * nscd/aicache.c: Adjust cache_add calls.
2672         * nscd/grpcache.c: Likewise.
2673         * nscd/hstcache.c: Likewise.
2674         * nscd/initgrcache.c: Likewise.
2675         * nscd/pwdcache.c: Likewise.
2676         * nscd/servicescache.c: Likewise.
2677         * nscd/connections.c (restart): Really disable cache use before
2678         exec attempt.  If it fails, reenable cache.
2679         (nscd_run_prune): Initialize wakeup_time.  After wakeup, set wakeup
2680         time to max to be able to notice concurrent cache additions.  Unlock
2681         prune_lock while performing gc.  Afterwards compute wakeup time with
2682         current wakeup_time value in mind.
2684 2008-05-17  Ulrich Drepper  <drepper@redhat.com>
2686         * nscd/mem.c (gc): Avoid stack overflow when allocating move list.
2688         * nscd/mem.c (gc): Correctly determine highest used array element
2689         in mark.
2691         * nscd/mem.c (markrange): Add assert to check entries are all
2692         aligned.  Small cleanup in bitmap use.
2694         * nscd/nscd.h (mem_in_flight): Replace blockaddr field with
2695         blockoff of type nscd_ssize_t.
2696         * nscd/mem.c (gc): Simplify markrange call for on-flight blocks.
2697         (mempoll_alloc): Record block offset and not address.
2699         * nscd/mem.c (gc): Fix test for stack overuse.
2701         * nscd/aicache.c (addhstaiX): Fix a few small problems, cleanups,
2702         more asserts.
2704         * sysdeps/posix/getaddrinfo.c (gaih_inet): If nscd reports no
2705         entry is available, believe it.
2707         * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): If there are
2708         no answers return NSS_STATUS_NOTFOUND.
2709         (gaih_getanswer): Don't call gaih_getanswer_slice if the answer
2710         buffer does not have any content.
2712 2008-05-16  Ulrich Drepper  <drepper@redhat.com>
2714         * string/strcasestr.c (CMP_FUNC): Use __strncasecmp, not strncasecmp.
2716         * sysdeps/posix/getaddrinfo.c (gaih_inet): After gethostbyname4_r
2717         lookup, don't assign canon unconditionally.
2719 2008-05-14  Ulrich Drepper  <drepper@redhat.com>
2721         * string/Makefile (distribute): Add str-two-way.h.
2723 2008-03-29  Eric Blake  <ebb9@byu.net>
2725         Rewrite string searches to O(n) rather than O(n^2).
2726         * string/str-two-way.h: New file.  For linear fixed-allocation
2727         string searching.
2728         * string/memmem.c: New implementation.
2729         * string/strstr.c: New implementation.
2730         * string/strcasestr.c: New implementation.
2732 2008-04-11  Paolo Bonzini  <bonzini@gnu.org>
2734         * posix/regcomp.c (optimize_utf8): Add a note on why we test
2735         opr.ctx_type.
2736         (calc_first): Initialize constraint field.
2737         (duplicate_node_closure): Use it instead of special casing ANCHORS.
2738         Use search_duplicated_node to avoid loops.  Fix grammar.
2739         (duplicate_node): Merge constraint field for all node types.
2740         (calc_eclosure_iter): Look at constraint field for all node types.
2741         * posix/regex_internal.c (create_cd_newstate): Don't look at
2742         create_cd_newstate.
2744 2008-05-14  Ulrich Drepper  <drepper@redhat.com>
2746         [BZ #6428]
2747         * configure.in: Don't use $CFLAGS when assembling, use $ASFLAGS.
2749         [BZ #6442]
2750         * string/endian.h: Add macros for fixed-size endian conversion.
2751         * bits/byteswap.h: Allow inclusion from <endian.h>.
2752         * sysdeps/i386/bits/byteswap.h: Likewise.
2753         * sysdeps/ia64/bits/byteswap.h: Likewise.
2754         * sysdeps/s390/bits/byteswap.h: Likewise.
2755         * sysdeps/x86_64/bits/byteswap.h: Likewise.
2756         * string/Makefile (tests): Add tst-endian.
2757         * string/tst-endian.c: New file.
2759         * iconvdata/run-iconv-test.sh: Use = instead of == in test.
2760         Patch by Reuben Thomas.
2762 2008-05-14  Joseph Myers  <joseph@codesourcery.com>
2764         * iconvdata/Makefile (bug-iconv6-ENV, tst-iconv7-ENV): Define.
2766 2008-05-14  Ulrich Drepper  <drepper@redhat.com>
2768         * iconvdata/bug-iconv6.c (do_test): Use de_DE.UTF-8 locale.
2770         [BZ #6461]
2771         * iconv/gconv_simple.c (BODY for __gconv_transform_ascii_internal):
2772         Add missing braces.
2773         (BODY for __gconv_transform_internal_ascii): Likewise.
2775         [BZ #6472]
2776         * sysdeps/posix/getaddrinfo.c (get_scope): Loopback addresses have
2777         to be treated like link-local addresses.
2778         (match_prefix): Don't treat IPv4 loopback address special when
2779         converting to v4 mapped addressed.
2781         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Call _res_hconf_init
2782         if necessary.
2783         * posix/tst-rfc3484.c: Add dummy definition of _res_hconf_init.
2784         * posix/tst-rfc3484-2.c: Likewise.
2785         * posix/tst-rfc3484-3.c: Likewise.
2787         * sysdeps/posix/getaddrinfo.c: Implement handling of DCCP, UDPlite,
2788         and SCTP.
2790         * nss/getent.c (ahosts_keys_int): Handle all known socket types.
2792         * inet/netinet/in.h (IPPIPPROTO_DCCP, IPPROTO_UDPLITE): Define.
2794         * sysdeps/unix/sysv/linux/bits/socket.h (SOCK_DCCP): Define.
2796 2008-05-13  Ulrich Drepper  <drepper@redhat.com>
2798         * po/lt.po: New file.  From Lituanian translation team.
2800 2008-01-30  Alexandre Oliva  <aoliva@redhat.com>
2802         Introduce TLS descriptors for i386 and x86_64.
2803         * include/inline-hashtab.h: New file, copied from 2005's
2804         libiberty, with fix for memory leak imported afterwards by
2805         Glauber de Oliveira Costa.
2806         * elf/tlsdeschtab.h: New file.
2807         * elf/dl-reloc.c (_dl_try_allocate_static_tls): Extract from...
2808         (_dl_allocate_static_tls): ... here.  Rearrange failure path.
2809         (CHECK_STATIC_TLS): Move to...
2810         * elf/dynamic-link.h: ... this file.
2811         (TRY_STATIC_TLS): New macro.
2812         * elf/dl-conflict.c (CHECK_STATIC_TLS, TRY_STATIC_TLS): Override.
2813         * elf/elf.h (R_386_TLS_GOTDESC, R_386_TLS_DESC_CALL,
2814         R_386_TLS_DESC): Define.
2815         (R_X86_64_PC64, R_X86_GOTOFF64, R_X86_64_GOTPC32): Merge from
2816         binutils.
2817         (R_X86_64_GOTPC32_TLSDESC, R_X86_64_TLSDESC_CALL,
2818         R_X86_64_TLSDESC): Define.
2819         (R_386_NUM, R_X86_64_NUM): Adjust.
2820         * sysdeps/i386/Makefile (sysdep-dl-routines, sysdep_routines,
2821         sysdep-rtld-routines): Add tlsdesc and dl-tlsdesc for elf subdir.
2822         (gen-as-const-headers): Add tlsdesc.sym to csu subdir.
2823         * sysdeps/i386/dl-lookupcfg.h: New file.  Introduce _dl_unmap to
2824         release tlsdesc_table.
2825         * sysdeps/i386/dl-machine.h: Include dl-tlsdesc.h.
2826         (elf_machine_type_class): Mark R_386_TLS_DESC as PLT class.
2827         (elf_machine_rel): Handle R_386_TLS_DESC.
2828         (elf_machine_rela): Likewise.
2829         (elf_machine_lazy_rel): Likewise.
2830         (elf_machine_lazy_rela): Likewise.
2831         * sysdeps/i386/dl-tls.h (struct dl_tls_index): Name it.
2832         * sysdeps/i386/dl-tlsdesc.S: New file.
2833         * sysdeps/i386/dl-tlsdesc.h: New file.
2834         * sysdeps/i386/tlsdesc.c: New file.
2835         * sysdeps/i386/tlsdesc.sym: New file.
2836         * sysdeps/i386/bits/linkmap.h (struct link_map_machine): Add
2837         tlsdesc_table.
2838         * sysdeps/x86_64/Makefile (sysdep-dl-routines, sysdep_routines,
2839         sysdep-rtld-routines): Add tlsdesc and dl-tlsdesc for elf subdir.
2840         (gen-as-const-headers): Add tlsdesc.sym to csu subdir.
2841         * sysdeps/x86_64/dl-lookupcfg.h: New file.  Introduce _dl_unmap to
2842         release tlsdesc_table.
2843         * sysdeps/x86_64/dl-machine.h: Include dl-tlsdesc.h.
2844         (elf_machine_runtime_setup): Set up lazy TLSDESC GOT entry.
2845         (elf_machine_type_class): Mark R_X86_64_TLSDESC as PLT class.
2846         (elf_machine_rel): Handle R_X86_64_TLSDESC.
2847         (elf_machine_rela): Likewise.
2848         (elf_machine_lazy_rel): Likewise.
2849         * sysdeps/x86_64/dl-tls.h (struct dl_tls_index): Name it.
2850         (__tls_get_addr): Do not declare for non-shared compiles.
2851         * sysdeps/x86_64/dl-tlsdesc.S: New file.
2852         * sysdeps/x86_64/dl-tlsdesc.h: New file.
2853         * sysdeps/x86_64/tlsdesc.c: New file.
2854         * sysdeps/x86_64/tlsdesc.sym: New file.
2855         * sysdeps/x86_64/bits/linkmap.h (struct link_map_machine): Add
2856         tlsdesc_table for both 32- and 64-bit structs.
2858 2008-05-11  Ulrich Drepper  <drepper@redhat.com>
2860         * elf/dl-tls.c (__tls_get_addr): Optimize by moving slow path in
2861         its own function.  This reduces the frame setup costs and more.
2863 2008-02-11  Joseph Myers  <joseph@codesourcery.com>
2865         [BZ #3406]
2866         * sysdeps/ieee754/flt-32/w_expf.c (o_threshold): Correct value.
2867         * math/libm-test.inc (exp_test): Test 88.72269439697265625.
2869 2008-05-11  Ulrich Drepper  <drepper@redhat.com>
2871         * io/openat.c (__openat_2): Also pass fd to __openat.
2872         * io/openat64.c (__openat64_2): Also pass fd to __openat64.
2873         Patch by Kristian Van Der Vliet <vanders@liqwyd.com>.
2875         * string/tester.c (test_memcmp): Add a few more tests.
2876         Patch by Mats Erik Andersson <ynglingatal@comhem.se>.
2878 2008-05-10  Ulrich Drepper  <drepper@redhat.com>
2880         * nscd/cache.c (cache_add): Before returning with failure and this
2881         is the first use of the record, mark it as unusable.
2882         * nscd/aicache.c: Don't touch the dataset after cache_add returns
2883         reporting a failure.
2884         * nscd/grpcache.c: Likewise
2885         * nscd/hstcache.c: Likewise.
2886         * nscd/initgrcache.c: Likewise.
2887         * nscd/pwdcache.c: Likewise.
2888         * nscd/servicescache.c: Likewise.
2890 2008-05-10  Roland McGrath  <roland@redhat.com>
2892         [BZ #6505]
2893         * sysdeps/unix/sysv/linux/sys/user.h: Replace with #error stub.
2895 2008-05-08  David S. Miller  <davem@davemloft.net>
2897         * misc/truncate64.c (truncate64): Use __truncate not truncate.
2899         * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee751_j0l): Use __finitel.
2900         (__ieee754_y0l): Likewise.
2901         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
2902         (__ieee754_y1l): Likewise.
2903         * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Use __ldexpl.
2904         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Kill bogus prototypes for
2905         frexpl and ldexpl.  math_private.h provides them and the latter
2906         is not even used.
2907         (__log1pl): Use __frexpl.
2909 2008-05-10  Ulrich Drepper  <drepper@redhat.com>
2911         * include/resolv.h: Adjust __libc_res_nquery and __libc_res_nsend
2912         prototypes.
2913         * include/arpa/nameser_compat.h: Define T_UNSPEC.
2914         * nis/Versions (libnss_nis): Export _nss_nis_gethostbyname4_r.
2915         (libnss_nisplus): Export _nss_nisplus_gethostbyname4_r.
2916         * nis/nss_nis/nis-hosts.c (LINE_PARSER): Change to also handle
2917         af==AF_UNSPEC.
2918         (_nss_nis_gethostbyname4_r): New function.
2919         * nis/nss_nisplus/nisplus-hosts.c (_nss_nisplus_parse_hostent):
2920         Change to also handle af==AF_UNSPEC.
2921         (get_tablename): New function.  Use it to avoid duplication.
2922         (_nss_nisplus_gethostbyname4_r): New function.
2923         * nscd/aicache.c (addhstaiX): Use gethostbyname4_r function is
2924         available.
2925         * nss/Versions (libnss_files): Export _nss_files_gethostbyname4_r.
2926         * nss/nss.h: Define struct gaih_addrtuple.
2927         * nss/nss_files/files-hosts.c (LINE_PARSER): Change to also handle
2928         af==AF_UNSPEC.
2929         (_nss_files_gethostbyname4_r): New function.
2930         * resolv/Versions (libnss_dns): Export _nss_dns_gethostbyname4_r.
2931         * resolv/gethnmaddr.c: Adjust __libc_res_nsearch and __libc_res_nquery
2932         calls.
2933         * resolv/res_query.c (__libc_res_nquery): Take two additional
2934         parameters for second answer buffer.  Handle type=T_UNSPEC to mean
2935         look up IPv4 and IPv6.
2936         Change all callers.
2937         * resolv/res_send.c (__libc_res_nsend): Take five aditional parameters
2938         for an additional query and answer buffer.  Pass to send_vc and
2939         send_dg.
2940         (send_vc): Send possibly two requests and receive two answers.
2941         (send_dg): Likewise.
2942         * resolv/nss_dns/dns-host.c: Adjust calls to __libc_res_nsearch and
2943         __libc_res_nquery.
2944         (_nss_dns_gethostbyname4_r): New function.
2945         (gaih_getanswer_slice): Likewise.
2946         (gaih_getanswer): Likewise.
2947         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Adjust
2948         __libc_res_nquery call.
2949         * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyaddr_r): Likewise.
2950         (_nss_dns_getnetbyname_r): Adjust __libc_res_nsearch call.
2951         * sysdeps/posix/getaddrinfo.c: Use gethostbyname4_r function is
2952         available.
2954 2008-05-05  David S. Miller  <davem@davemloft.net>
2956         * sysdeps/sparc/sparc32/Makefile: Use -mcpu=v7 for initfini.s build.
2957         * sysdeps/sparc/sparc64/Makefile: Use -mcpu=v9 for initfini.s build.
2959 2007-09-14  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2961         Fix termios bit macros.
2962         Move *DLY definitions where they belong, in termios.h.
2963         Add *[0-3] definitions.
2964         Fixes confusion between VT and FF.
2965         * sysdeps/mach/hurd/bits/ioctls.h (NL0, NL1, TAB0, TAB1, TAB2, CR0,
2966         CR1, CR2, CR3, FF0, FF1, BS0, BS1): Undefine these at start if they
2967         are already defined to avoid collision with termios.h.
2968         (NLDLY, TABDLY, TAB3, CRDLY, VTDLY, BSDLY): Remove macros.
2969         * bits/termios.h [__USE_MISC || __USE_XOPEN] (NL0, NL1, TAB0,
2970         TAB1, TAB2, CR0, CR1, CR2, CR3, FF0, FF1, BS0, BS1): Likewise.
2971         [__USE_BSD || __USE_XOPEN] (OCRNL, ONOCR, ONLRET): New macros.
2972         [__USE_MISC || __USE_XOPEN] (NLDLY, NL0, NL1, TABDLY, TAB0, TAB1, TAB2,
2973         TAB3, CRDLY, CR0, CR1, CR2, CR3, FFDLY, FF0, FF1, BSDLY, BS0, BS1,
2974         VTDLY, VT0, VT1): New macros.
2975         [__USE_GNU] (OLCUC): Change value of macro.
2976         [__USE_XOPEN] (OFILL): New macro.
2977         [__USE_BSD] (CRTSCTS): Change value.
2978         (CRTS_IFLOW, CCTS_OFLOW): Change into compatibility macros.
2979         [__USE_BSD] (CDTRCTS, CHWFLOW): New macros.
2980         (B7200, B14400, B28800, B76800): New macros.
2982 2008-05-01  David S. Miller  <davem@davemloft.net>
2984         * sysdeps/unix/sysv/linux/sparc/sparc32/ucontext_i.sym: New file.
2985         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile [$(subdir) = stdlib]:
2986         (gen-as-const-headers): Add it.
2987         * sysdeps/unix/sysv/linux/sparc/sparc32/getcontext.S: New file.
2988         * sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c: Likewise.
2989         * sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S: Likewise.
2990         * sysdeps/unix/sysv/linux/sparc/sparc32/swapcontext.S: Likewise.
2992         * sysdeps/unix/sysv/linux/sparc/sparc32/syscall.S: Add support for
2993         six system call parameters.
2994         * sysdeps/unix/sysv/linux/sparc/sparc64/syscall.S: Likewise.
2996 2008-04-30  Ulrich Drepper  <drepper@redhat.com>
2998         * sysdeps/unix/sysv/linux/bits/resource.h: Define RUSAGE_THREAD and
2999         RUSAGE_LWP.
3000         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
3001         * sysdeps/unix/sysv/linux/alpha/bits/resource.h: Likewise.
3003 2008-04-30  Jakub Jelinek  <jakub@redhat.com>
3005         * stdlib/tst-setcontext.c: Include unistd.h.
3007 2008-04-25  David S. Miller  <davem@davemloft.net>
3009         * sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c (semctl):
3010         Pass "union semun" properly in to sys_ipc, it must be passed
3011         by value, not by reference.
3013 2008-04-22  Jakub Jelinek  <jakub@redhat.com>
3015         * nscd/Makefile (nscd-cflags): Set back to -fpie.
3016         * nscd/nscd.h (mem_in_flight): Add attribute_tls_model_ie.
3017         * nscd/connections.c (mem_in_flight): Likewise.
3019         * nscd/nscd.h (dbs): Make hidden.
3021         * sysdeps/unix/sysv/linux/times.c (__times): Fix check for EFAULT.
3022         Avoid returning -1, return 0 instead.
3024 2008-04-19  Ulrich Drepper  <drepper@redhat.com>
3026         * resolv/res_mkquery.c (__res_nopt): Use NS_PUT16 instead of ns_put16.
3028 2008-04-15  Ulrich Drepper  <drepper@redhat.com>
3030         [BZ #5209]
3031         * sysdeps/unix/sysv/linux/times.c: New file.
3033         [BZ #5381]
3034         * nscd/nscd.h: Define enum in_flight, mem_in_flight, and
3035         mem_in_flight_list variables.  Add new parameter to mempool_alloc
3036         prototype.
3037         * nscd/mem.c (mempool_alloc): Take additional parameter.  Initialize
3038         appropriate mem_in_flight element.
3039         (gc): Take allocations which have not yet been committed to the
3040         database into account.
3041         * nscd/cache.c (cache_add): Add new parameter to mempool_alloc call.
3042         Reset mem_in_flight before returning.
3043         * nscd/connections.c (nscd_run_worker): Initialize mem_in_flight and
3044         cue it up in mem_in_flight_list.
3045         * nscd/aicache.c: Adjust mempool_alloc call.
3046         * nscd/grpcache.c: Likewise.
3047         * nscd/hstcache.c: Likewise.
3048         * nscd/initgrcache.c: Likewise.
3049         * nscd/pwdcache.c: Likewise.
3050         * nscd/servicescache.c: Likewise.
3051         * nscd/Makefile (nscd-flags): Until ld is fixed, use -fpic instead
3052         of -fpie.
3054         * nscd/connections.c (handle_request): Provide better error message
3055         in case SELinux forbids the service.
3057         * version.h (VERSION): Bump to 2.8.90.
3059 2008-04-17  Jakub Jelinek  <jakub@redhat.com>
3061         * sysdeps/unix/sysv/linux/dl-osinfo.h: Include fcntl.h.
3063 2008-04-11  Ulrich Drepper  <drepper@redhat.com>
3065         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h (__signbitl):
3066         Also use for 32-bit.
3067         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c (__nearbyintl): Use
3068         __nextafter instead of nextafter to avoid local PLT.
3069         * sysdeps/powerpc/fpu/e_sqrt.c: Avoid call to fetestexcept.
3070         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
3072         * scripts/data/localplt-powerpc64-linux-gnu.data: New file.
3074         * sysdeps/powerpc/fpu/fenv_libc.h: Add libm_hidden_proto for
3075         __fe_nomask_env.
3076         * sysdeps/powerpc/fpu/fe_nomask.c: Add libm_hidden_def.  Include
3077         <fenv_libc.h> instead of <fenv.h>.
3078         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: Likewise.
3079         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: Likewise.
3081         * sysdeps/powerpc/bits/fenv.h: Make safe for C++.
3083         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: New file.
3084         * sysdeps/powerpc/fpu/fegetexcept.c (__fegetexcept): Rename
3085         function from fegetexcept and make old name weak alias.
3086         * include/fenv.h: Declare __fegetexcept.
3087         * sysdeps/powerpc/fpu/fedisblxcpt.c: Use __fegetexcept instead of
3088         fegetexcept.
3089         * sysdeps/powerpc/fpu/feenablxcpt.c: Likewise.
3090         * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Avoid call
3091         to fetestexcept.
3092         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Use __frexpl
3093         instead of frexpl to avoid local PLT.
3094         * math/s_significandl.c (__significandl): Use __ilogbl instead of
3095         ilogbl to avoid local PLT.
3096         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Use __ldexpl
3097         instead of ldexpl to avoid local PLT.
3098         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Use
3099         __roundl not roundl to avoid local PLT.
3100         * sysdeps/ieee754/ldbl-128/e_j0l.c: Use function names which avoid
3101         local PLTs.  Use __sincosl instead of separate sinl and cosl
3102         calls.
3103         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
3105         * sysdeps/unix/sysv/linux/configure.in: Bump minimal kernel
3106         version for ppc64 to 2.4.21 since without it makecontext will fail.
3108         * elf/tls-macros.h [__powerpc64__] (__TLS_GET_ADDR): Define according
3109         to the ABI in use.
3110         [__powerpc64__] (TLS_LD): Use __TLS_GET_ADDR instead of
3111         .__tls_get_addr.
3112         [__powerpc64__] (TLS_GD): Likewise.
3114 2007-11-20  Ryan S. Arnold  <rsa@us.ibm.com>
3116         [BZ #4997]
3117         * sysdeps/powerpc/powerpc32/fpu/s_lround.S (__lround): Fixed erroneous
3118         result when x is +/-nextafter(+/-0.5,-/+1) i.e. all 1's in the
3119         mantissa.
3120         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S (__llround):
3121         Likewise.  Also account for when x is an odd number between 2^52
3122         and 2^53-1.
3123         * sysdeps/powerpc/powerpc64/fpu/s_llround.S (__llround): Likewise.
3124         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S (__llroundf): Likewise.
3125         * math/libm-test.inc (lround_test, llround_test): Added test cases to
3126         detect aforementioned erroneous conditions.
3128 2008-04-11  Jakub Jelinek  <jakub@redhat.com>
3130         * configure.in: Check for -fno-section-anchors in addition to
3131         -fno-toplevel-reorder.
3133 2008-04-11  Ulrich Drepper  <drepper@redhat.com>
3135         * include/features.h (__GLIBC_MINOR__): Bump to 8.
3137         * sysdeps/powerpc/powerpc32/fpu/s_lroundf.S: Remove duplicate comment.
3138         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llroundf.S: Likewise.
3139         * sysdeps/powerpc/powerpc32/power6/fpu/s_llroundf.S: Likewise.
3140         * sysdeps/powerpc/powerpc64/fpu/s_lrint.S: Likewise.
3141         * sysdeps/powerpc/powerpc64/fpu/s_lround.S: Likewise.
3142         * sysdeps/powerpc/powerpc64/fpu/s_lroundf.S: Likewise.
3144 2008-04-11  Jakub Jelinek  <jakub@redhat.com>
3146         [BZ #5443]
3147         * time/era.c: Transform __libc_setlocale_lock into rwlock.
3148         * time/alt_digit.c: Likewise.
3149         * wcsmbs/wcsmbsload.c: Likewise.
3151 2008-04-10  Ulrich Drepper  <drepper@redhat.com>
3153         * version.h (VERSION): Bump to 2.8.
3155         * timzeone/asia: Update from tzdata2008b.
3156         * timezone/backward: Likewise.
3157         * timezone/europe: Likewise.
3158         * timezone/northamerica: Likewise.
3159         * timezone/southamerica: Likewise.
3160         * timezone/iso3166.tab: Likewise.
3161         * timezone/leapseconds: Likewise.
3162         * timezone/zone.tab: Likewise.
3163         * timezone/private.h: Update from tzcode2008a.
3164         * timezone/zdump.c: Likewise.
3165         * timezone/zic.c: Likewise.
3167 2008-01-24  Steven Munroe  <sjmunroe@us.ibm.com>
3169         [BZ #5741]
3170         * sysdeps/powerpc/powerpc64/dl-machine.h (PPC_DCBT, PPC_DCBF):
3171         Define additonal Data Cache Block instruction macros.
3172         (elf_machine_fixup_plt): Add dcbt for opd and plt entries.
3173         Replace dcbst with dcbf and sync with sync/isync.
3175 2008-02-21  Alan Modra  <amodra@bigpond.net.au>
3177         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_type_class):
3178         Always set ELF_RTYPE_CLASS_PLT.
3179         (elf_machine_lookup_noexec_p, elf_machine_lookup_noplt_p): Delete.
3181 2008-04-03  Steven Munroe  <sjmunroe@us.ibm.com>
3183         * sysdeps/powerpc/powerpc32/power4/hp-timing.c: New file.
3184         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: New file.
3185         * sysdeps/powerpc/powerpc64/hp-timing.h [_ARCH_PWR4] (HP_TIMING_NOW):
3186         For ISA 2.01 and later replace mftb with mfspr 268.
3188 2008-02-19  Steven Munroe  <sjmunroe@us.ibm.com>
3190         [BZ #5768]
3191         * sysdeps/powerpc/fpu/Makefile (libm-tests): Add test-powerpc-snan.
3192         * sysdeps/powerpc/fpu/test-powerpc-snan.c: New file.
3194 2008-02-18  Steven Munroe  <sjmunroe@us.ibm.com>
3196         [BZ #5768]
3197         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: New file.
3198         * sysdeps/powerpc/powerpc32/fpu/s_isnan.c: Removed.
3199         * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: New file.
3200         * sysdeps/powerpc/powerpc64/fpu/s_isnan.c: Removed.
3202 2008-04-10  Jakub Jelinek  <jakub@redhat.com>
3204         * stdlib/tst-makecontext.c (othervar): New variable.
3205         (cf): Test sign extending the argument to long.
3207 2008-03-03  Steven Munroe  <sjmunroe@us.ibm.com>
3209         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: New file.
3210         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnanf.S: New file.
3211         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: New file.
3212         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S: New file.
3213         * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: New file.
3214         * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: New file.
3215         * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: New file.
3217 2008-02-22  Alan Modra  <amodra@bigpond.net.au>
3219         * elf/Makefile (tests): Substitute tests-vis-yes here.
3220         (tests-vis-yes): Delete.
3221         (modules-name, modules-vis-yes): Similarly.
3223 2008-02-12  Pete Eberlein  <eberlein@us.ibm.com>
3225         [BZ #4407]
3226         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
3227         Preserve sign in signgamp when x is zero.
3229 2007-10-26  Steven Munroe  <sjmunroe@us.ibm.com>
3231         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: New File.
3232         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.c: Removed.
3233         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: New File.
3234         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.c: Removed.
3235         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: New File.
3236         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: New File.
3238 2008-04-09  Ulrich Drepper  <drepper@redhat.com>
3240         [BZ #4314]
3241         * sysdeps/i386/i686/memcpy.S: Optimize copying of equally aligned
3242         buffers.
3244         [BZ #5209]
3245         * sysdeps/unix/sysv/syscalls.list: The times syscall doesn't have
3246         a reserved error value.
3248         * stdlib/tst-makecontext.c: Change parameter to cf to negative
3249         value to check for correct sign extension.
3251         [BZ #5436]
3252         * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
3253         Copy 64-bit parameter values even though this is not required in
3254         the standard.
3256         * sysdeps/unix/sysv/linux/x86_64/vfork.S (__vfork): Record return
3257         PC save.
3259 2008-02-14  Daniel Jacobowitz  <dan@codesourcery.com>
3261         * sysdeps/unix/sysv/linux/i386/vfork.S (__vfork): Record return
3262         PC save.
3264 2008-04-09  Jakub Jelinek  <jakub@redhat.com>
3266         * nss_files/files-XXX.c (_nss_files_getXXent_r): Restore saved errno.
3268 2008-04-09  Ulrich Drepper  <drepper@redhat.com>
3270         [BZ #5998]
3271         * libio/iofwrite.c (_IO_fwrite): Return correct count if flushing
3272         in line-buffered stream failed.
3273         * libio/iofwrite_u.c (fwrite_unlocked): Likewise.
3275 2008-04-08  Ulrich Drepper  <drepper@redhat.com>
3277         [BZ #6024]
3278         * scripts/abi-versions.awk: If the version specified by
3279         --enable-oldest-abi is older than the first version for this
3280         architecture, use the default version.
3282         * locale/programs/ld-collate.c (collate_read): Ignore script lines
3283         as well when ignoring the whole category.
3285 2008-04-07  Ulrich Drepper  <drepper@redhat.com>
3287         [BZ #6042]
3288         * sysdeps/unix/sysv/linux/net/ethernet.h: Add a few more
3289         ETHERTYPE_* definitions.
3290         Patch partly by Aurelien Jarno <aurelien@aurel32.net>.
3292 2008-04-07  Jakub Jelinek  <jakub@redhat.com>
3294         * stdlib/mbtowc.c (__no_r_state): Remove.
3295         (mbtowc): New static state variable.  Use it instead of
3296         __no_r_state.
3297         * stdlib/wctomb.c (__no_r_state): Remove extern decl.
3298         (__wctomb_state): New hidden variable.
3299         (wctomb): Use __wctomb_state instead of __no_r_state.
3300         * debug/wctomb_chk.c (__no_r_state): Remove extern decl.
3301         (__wctomb_state): New extern decl.
3302         (__wctomb_chk): Use __wctomb_state instead of __no_r_state.
3304 2008-04-07  Ulrich Drepper  <drepper@redhat.com>
3306         [BZ #5475]
3307         * resolv/res_init.c: Handle scope IDs in resolv.conf.
3309 2008-04-07  Jakub Jelinek  <jakub@redhat.com>
3311         * malloc/mtrace.pl: Use $@ instead of $* to keep perl 5.10 quiet.
3313 2008-04-06  Ulrich Drepper  <drepper@redhat.com>
3315         * po/nl.po: Update from translation team.
3317 2008-03-31  Ulrich Drepper  <drepper@redhat.com>
3319         [BZ #6007]
3320         * string/strfry.c: Handle empty strings again.
3322 2008-03-30  Ulrich Drepper  <drepper@redhat.com>
3324         [BZ #5443]
3325         * intl/dcigettext.c (__dcigettext): Get reader lock for locale data
3326         before looking for translation.
3327         * locale/duplocale.c: Transform __libc_setlocale_lock into rwlock.
3328         * locale/freelocale.c: Likewise.
3329         * locale/newlocale.c: Likewise.
3330         * locale/setlocale.c: Likewise.
3331         Based partially on a patch by ryo@np.css.fujitsu.com.
3333 2008-03-30  Jakub Jelinek  <jakub@redhat.com>
3335         * intl/dcigettext.c (_nl_find_msg): Reread nconversions after
3336         acquiring wrlock.  Do conv_tab allocation while holding lock.
3337         * intl/Makefile: Add rules to build and run tst-gettext6.
3338         * intl/tst-gettext6.c: New test.
3339         * intl/tst-gettext6.sh: New file.
3341 2008-03-30  Ulrich Drepper  <drepper@redhat.com>
3343         * po/nl.po: Update from translation team.
3345         * sysdeps/unix/opendir.c (__alloc_dir): If allocation fails for size
3346         provided through st_blksize, try the default size before giving up.
3348 2008-03-29  Ulrich Drepper  <drepper@redhat.com>
3350         * stdio-common/vfprintf.c (vfprintf): Correct overflow test.
3352         [BZ #5939]
3353         * sysdeps/posix/tempname.c (__gen_tempname): Correct flag selection.
3355         * posix/getopt.c (_getopt_internal_r): Remove old POSIX-demanded
3356         error message.  POSIX today does not require the messages to be in
3357         a specific form.  Suggested by Jim Meyering <jim@meyering.net>.
3359         [BZ #5979]
3360         * sunrpc/auth_unix.c: Unify printed strings.
3361         * sunrpc/clnt_tcp.c: Likewise.
3362         * sunrpc/clnt_udp.c: Likewise.
3363         * sunrpc/clnt_unix.c: Likewise.
3364         * sunrpc/svc_tcp.c: Likewise.
3365         * sunrpc/svc_udp.c: Likewise.
3366         * sunrpc/svc_unix.c: Likewise.
3367         * sunrpc/xdr.c: Likewise.
3368         * sunrpc/xdr_array.c: Likewise.
3369         * sunrpc/xdr_rec.c: Likewise.
3370         * sunrpc/xdr_ref.c: Likewise.
3371         * locale/programs/ld-time.c (time_finish): Unify messages.
3372         * locale/programs/locfile.c (handle_copy): Fix typo.
3373         * nscd/nscd.c (options): Fix typo.
3375         [BZ #5995]
3376         * stdlib/strtod_l.c: Use correct sign for result in one more
3377         underflow case.
3378         Patch by Eric Blake <ebb9@byu.net>.
3380 2008-03-27  Jakub Jelinek  <jakub@redhat.com>
3382         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Add open
3383         and creat system calls.
3384         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove open system
3385         call.
3386         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Remove open and creat
3387         system calls.
3388         * sysdeps/unix/sysv/linux/powerpc/powerpc64/syscalls.list: Likewise.
3389         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
3390         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
3392 2008-03-27  Ulrich Drepper  <drepper@redhat.com>
3394         * sysdeps/unix/sysv/linux/bits/local_lim.h: Undefined ARG_MAX if
3395         <linux/limits.h> has defined it.
3396         * sysdeps/unix/sysv/linux/sys/param.h: Define NCARGS to the legacy
3397         ARG_MAX value and prevent ARG_MAX from being defined by the kernel
3398         headers.
3399         * sysdeps/unix/sysv/linux/sysconf.c: Define legacy_ARG_MAX and use
3400         it instead of ARG_MAX.
3402 2008-03-25  Jakub Jelinek  <jakub@redhat.com>
3404         * posix/gai.conf: Fix comment for scope nullbits.
3405         * sysdeps/posix/getaddrinfo.c (gaiconf_init): If /bits is not present,
3406         default to 128 bits for v4 mapped addresses.
3408 2008-03-07  Martin Schwidefsky  <schwidefsky@de.ibm.com>
3410         * sysdeps/s390/fpu/fegetenv.c (fegetenv): Remove PTRACE_PEEKUSER
3411         ptrace call to get the ieee_instruction_pointer from the kernel.
3412         * sysdeps/s390/fpu/fesetenv.c (fesetenv): Remove PTRACE_POKEUSER
3413         ptrace call to set the ieee_instructtion_pointer.
3414         * sysdeps/unix/sysv/linux/s390/sys/user.h (struct _user_regs_struct):
3415         Add comment that ieee_instruction_pointer is always 0.
3417 2008-03-09  Andreas Jaeger  <aj@suse.de>
3419         [BZ #5857]
3420         * sysdeps/ieee754/dbl-64/s_rint.c (__rint): Handle j0==18.
3421         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Likewise.
3422         Patch by Mark Elliott <mark.h.elliott@lmco.com>.
3424         * math/libm-test.inc (nearbyint_test): Add new test cases from #5857.
3425         (rint_test): Likewise.
3427 2008-03-24  Ulrich Drepper  <drepper@redhat.com>
3429         * nis/nis_call.c (nis_server_cache_search): Save errno around stat
3430         call.
3431         (__nisfind_server): Similar for open readColdStartFile call.
3432         Patch partially by Jim Meyering.
3433         * nss/nss_files/files-XXX.c (_nss_files_getXXent_r): Save errno
3434         around internal_setent call.
3436         * po/vi.po: New Vietnamese translation.
3438         * sysdeps/unix/sysv/linux/adjtime.c: Correctly use
3439         ADJ_OFFSET_SS_READ.
3441         * sysdeps/unix/sysv/linux/bits/sched.h: Add new CLONE_* flags,
3442         remove CLONE_STOPPED.
3444 2008-02-10  Jim Meyering  <meyering@redhat.com>
3446         Remove useless "if" before "free":
3447         * elf/ldconfig.c (parse_conf_include): Likewise.
3448         * gmon/gmon.c (weak_alias): Likewise.
3449         * iconv/gconv_conf.c (__gconv_get_path): Likewise.
3450         * inet/rcmd.c (__validuser2_sa): Likewise.
3451         * intl/bindtextdom.c (set_binding_values): Likewise.
3452         * intl/loadmsgcat.c (_nl_load_domain, _nl_unload_domain): Likewise.
3453         * libio/genops.c (save_for_backup): Likewise.
3454         * libio/wgenops.c (save_for_wbackup): Likewise.
3455         * locale/programs/ld-collate.c (collate_read): Likewise.
3456         * locale/programs/linereader.c (get_string): Likewise.
3457         * nis/nss_compat/compat-pwd.c (give_pwd_free): Likewise.
3458         * nis/nss_compat/compat-spwd.c (give_spwd_free): Likewise.
3459         * resolv/res_debug.c (do_section): Likewise.
3460         * sunrpc/xdr_sizeof.c (x_inline, xdr_sizeof): Likewise.
3461         * sysdeps/mach/hurd/if_index.c (libc_hidden_def): Likewise.
3462         * sysdeps/posix/sprofil.c (__sprofil): Likewise.
3463         * time/lc-time-cleanup.c (_nl_cleanup_time): Likewise.
3464         * time/tzset.c (tzset_internal): Likewise.
3466 2008-03-18  Jakub Jelinek  <jakub@redhat.com>
3468         * sysdeps/unix/sysv/linux/dl-sysdep.h: Use __ASSEMBLER__ instead
3469         of ASSEMBLER.
3471 2008-03-11  Ulrich Drepper  <drepper@redhat.com>
3473         [BZ #5903]
3474         * iconv/iconv_charmap.c (charmap_conversion): Pass name of output file
3475         not stream for output file.  Open output file here.
3476         * iconv/iconv_prog.c (process_lock): Take pointer to output stream
3477         and output file name.
3478         (process_fd): Likewise.
3479         (process_file): Likewise.
3480         (main): Adjust callers of changed functions.
3481         * iconv/iconv_prog.h: Adjust prototype.
3483 2008-03-09  Andreas Jaeger  <aj@suse.de>
3485         [BZ #5753]
3486         * sysdeps/ia64/ieee754.h: Use protected namespace
3487         __BIG_ENDIAN/__LITTLE_ENDIAN.
3488         * sysdeps/ieee754/ieee754.h: Likewise.
3489         Patch by Aurelien Jarno <aurelien@aurel32.net>.
3491 2008-03-08  Roland McGrath  <roland@frob.com>
3493         * hurd/hurdsig.c (_hurd_internal_post_signal): When normal rules would
3494         ignore a signal that came from a machine exception, treat it as a
3495         fatal core-dump signal instead.
3496         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
3498         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
3499         Clear DF bit in thread state's eflags.
3500         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
3502 2008-03-08  Ulrich Drepper  <drepper@redhat.com>
3504         [BZ #5774]
3505         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Consume closing brace
3506         of NAN(...) sequence.
3507         * stdlib/Makefile (tests): Add tst-strtod6.
3508         * stdlib/tst-strtod6.c: New file.
3510         * inet/inet6_opt.c (inet6_opt_init): Check extlen for overflow.
3512         [BZ #5762]
3513         * posix/getopt.c (_getopt_internal_r): Clarify error message by
3514         putting offending option character in quotes.  Clean up error
3515         messages.
3516         * po/be.po: Adjust msgstr in translation file.
3517         * po/bg.po: Likewise.
3518         * po/ca.po: Likewise.
3519         * po/cs.po: Likewise.
3520         * po/da.po: Likewise.
3521         * po/de.po: Likewise.
3522         * po/es.po: Likewise.
3523         * po/fr.po: Likewise.
3524         * po/hr.po: Likewise.
3525         * po/ko.po: Likewise.
3526         * po/nl.po: Likewise.
3527         * po/rw.po: Likewise.
3528         * po/sk.po: Likewise.
3529         * po/sv.po: Likewise.
3530         * po/tr.po: Likewise.
3531         * po/zh_CN.po: Likewise.
3532         * po/zh_TW.po: Likewise.
3534         [BZ #5760]
3535         * inet/inet6_opt.c (inet6_opt_init): Fix ip6h_len computation.
3536         Patch by Roland Bless <roland@bless.de>.
3538         * sysdeps/unix/sysv/linux/dl-sysdep.c: Avoid unnecessary code for
3539         .o file.
3540         * elf/Makefile (routines): Add dl-sysdep.
3541         (elide-routines.os): Likewise.
3543 2008-03-07  Ulrich Drepper  <drepper@redhat.com>
3545         [BZ #5786]
3546         * elf/dl-sysdep.c: Undefine ROUND after use.
3547         * sysdeps/generic/ldsodefs.h [HAVE_DL_DISCOVER_OSVERSION]
3548         (struct rtld_global_ro): Add _dl_tls_get_addr_soft element.
3549         * elf/rtld.c (rtld_global_ro): Initialize _dl_discover_osversion.
3550         * sysdeps/unix/sysv/linux/dl-osinfo.h: Move _dl_discover_osversion
3551         to ...
3552         * sysdeps/unix/sysv/linux/dl-sysdep.c: ...here.
3553         * sysdeps/unix/sysv/linux/dl-sysdep.h: Declare _dl_discover_osversion
3554         if necessary.
3555         * sysdeps/unix/sysv/linux/sysconf.c: Handle _SC_ARG_MAX here.
3557         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Add
3558         _dl_tls_get_addr_soft element.
3559         * elf/rtld.c (rtld_global_ro): Initialize _dl_tls_get_addr_soft.
3560         * elf/Versions (ld): Don't export _dl_tls_get_addr_soft.
3561         * dlfcn/dlinfo.c (dlinfo_doit): Access dl_tls_get_addr_soft through
3562         GLRO.
3563         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Likewise.
3564         * elf/dl-tls.c (_dl_tls_get_addr_soft): Use attribute_hidden instead
3565         of internal_function.
3567         * stdlib/Makefile (aux): Add tens_in_limb.
3568         * stdlib/strtod_l.c: Move _tens_in_limb definition to...
3569         * stdlib/tens_in_limb.c: ...here.  New file.
3571         [BZ #5778]
3572         * sysdeps/unix/sysv/linux/pathconf.h: Declare
3573         __statfs_chown_restricted.
3574         * sysdeps/unix/sysv/linux/fpathconf.c: Call __statfs_chown_restricted
3575         for _PC_CHOWN_RESTRICTED.
3576         * sysdeps/unix/sysv/linux/pathconf.c: Likewise.
3577         Implement __statfs_chown_restricted.
3578         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Change
3579         _POSIX_CHOWN_RESTRICTED value to zero.
3580         * io/tst-fchownat.c: Correctly handle _POSIX_CHOWN_RESTRICTED
3581         defined to zero.
3583         * sysdeps/x86_64/rtld-memset.c: New file.
3585 2008-02-26  Harsha Jagasia  <harsha.jagasia@amd.com>
3587         * sysdeps/x86_64/cacheinfo.c (NOT_USED_RIGHT_NOW): Remove ifdef guards.
3589         * sysdeps/x86_64/memset.S: Rewrite non-SSE code path as tuned for AMD
3590         Barcelona machine.  Make default fall through branch of
3591         __x86_64_preferred_memory_instruction check as the integer code path.
3593 2007-10-15  H.J. Lu  <hongjiu.lu@intel.com>
3595         * sysdeps/x86_64/cacheinfo.c
3596         (__x86_64_preferred_memory_instruction): New variable.
3597         (init_cacheinfo): Initialize __x86_64_preferred_memory_instruction.
3599         * sysdeps/x86_64/memset.S: Rewrite.
3601 2008-03-04  Jakub Jelinek  <jakub@redhat.com>
3603         * include/stdio.h (__asprintf_chk, __dprintf_chk,
3604         __obstack_printf_chk): New prototypes.
3605         (__vasprintf_chk, __vdprintf_chk,
3606         __obstack_vprintf_chk): Likewise.
3607         Add libc_hidden_proto.
3608         * libio/obprintf.c
3609         (_IO_obstack_jumps): No longer static, add attribute_hidden.
3610         * libio/bits/stdio-ldbl.h (__asprintf_chk, __dprintf_chk,
3611         __obstack_printf_chk, __vasprintf_chk, __vdprintf_chk,
3612         __obstack_vprintf_chk): Add __LDBL_REDIR_DECL.
3613         * libio/bits/stdio2.h (__asprintf_chk, __dprintf_chk,
3614         __obstack_printf_chk, __vasprintf_chk, __vdprintf_chk,
3615         __obstack_vprintf_chk): New prototypes.
3616         (asprintf, __asprintf, dprintf, obstack_printf, vasprintf, vdprintf,
3617         obstack_vprintf): New inlines.
3618         * debug/dprintf_chk.c: New file.
3619         * debug/vdprintf_chk.c: New file.
3620         * debug/asprintf_chk.c: New file.
3621         * debug/vasprintf_chk.c: New file.
3622         * debug/obprintf_chk.c: New file.
3623         * debug/tst-chk1.c (do_test): Add asprintf and obstack_printf tests.
3624         * debug/Versions (__asprintf_chk, __dprintf_chk, __obstack_printf_chk,
3625         __vasprintf_chk, __vdprintf_chk, __obstack_vprintf_chk): Export
3626         @@GLIBC_2.8.
3627         * debug/Makefile: Build asprintf_chk, vasprintf_chk, dprintf_chk,
3628         vdprintf_chk and obprintf_chk, set CFLAGS for them.
3629         * sysdeps/ieee754/ldbl-opt/nldbl-compat.c (__nldbl___vasprintf_chk,
3630         __nldbl___vdprintf_chk, __nldbl___obstack_vprintf_chk): Add
3631         libc_hidden_proto.
3632         * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl___vasprintf_chk,
3633         __nldbl___vdprintf_chk, __nldbl___obstack_vprintf_chk): New prototypes.
3634         * sysdeps/ieee754/ldbl-opt/Versions (__nldbl___asprintf_chk,
3635         __nldbl___vasprintf_chk, __nldbl___dprintf_chk, __nldbl___vdprintf_chk,
3636         __nldbl___obstack_printf_chk, __nldbl___obstack_vprintf_chk): Export
3637         @@GLIBC_2.8.
3638         * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add asprintf_chk,
3639         vasprintf_chk, dprintf_chk, vdprintf_chk, obstack_printf_chk and
3640         obstack_vprintf_chk.
3641         * sysdeps/ieee754/ldbl-opt/nldbl-obstack_vprintf_chk.c: New file.
3642         * sysdeps/ieee754/ldbl-opt/nldbl-dprintf_chk.c: New file.
3643         * sysdeps/ieee754/ldbl-opt/nldbl-obstack_printf_chk.c: New file.
3644         * sysdeps/ieee754/ldbl-opt/nldbl-asprintf_chk.c: New file.
3645         * sysdeps/ieee754/ldbl-opt/nldbl-vdprintf_chk.c: New file.
3646         * sysdeps/ieee754/ldbl-opt/nldbl-vasprintf_chk.c: New file.
3648 2008-03-04  Ulrich Drepper  <drepper@redhat.com>
3650         [BZ #5779]
3651         * misc/sys/queue.h: Add STAILQ_CONCAT and TAILQ_CONCAT definitions.
3652         Patch by Roy Marples <roy@marples.name>.
3654         [BZ #5736]
3655         * malloc/malloc.c: Fix typo in comment.
3657         [BZ #5627]
3658         * locale/iso-639.def: Add Shuswap.
3660 2008-02-25  Jakub Jelinek  <jakub@redhat.com>
3662         [BZ #5790]
3663         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r): Don't
3664         overwrite *h_errnop/*errnop values from getanswer_r in case of
3665         failure.
3667 2008-03-03  Ulrich Drepper  <drepper@redhat.com>
3669         [BZ #5818]
3670         * nscd/connections.c (dbs): Add initializers for .suggested_module.
3671         (verify_persistent_db): Remove one unnecessary test and add a new one
3672         for bad configuration.
3673         (nscd_init): Improve error reported when persistent database cannot
3674         be reused.
3675         * nscd/nscd.h (DEFAULT_SUGGESTED_MODULE): Define.
3676         * nscd/nscd_conf.c (nscd_parse_file): Provide default values for
3677         .suggested_module and .max_db_size and case config file says the
3678         values are zero.
3679         * nscd/nscd_helper.c (get_mapping): Fail if hash table module is zero.
3681         [BZ #5854]
3682         * nis/ypclnt.c (yp_order): Fix handling of return value of
3683         do_ypcall_tr call.
3684         Patch by Jeff Moyer <jmoyer@redhat.com>.
3686         * po/fr.po: Update from translation team.
3688 2008-02-22  Andreas Jaeger  <aj@suse.de>,
3689             Carlos O'Donell <carlos@systemhalted.org>
3691         [BZ #5012]
3692         * FAQ.in: Describe why glibc needs to be compiled with
3693         optimization.
3695 2008-02-19  Roland McGrath  <roland@redhat.com>
3697         * elf/elf.h (SHT_GNU_ATTRIBUTES): New macro.
3699 2008-02-15  Ulrich Drepper  <drepper@redhat.com>
3701         [BZ #5737]
3702         * resolv/netdb.h: Make NI_MAXHOST and NI_MAXSERV available when
3703         __USE_MISC is defined.
3705 2008-02-10  Ulrich Drepper  <drepper@redhat.com>
3707         * sysdeps/unix/sysv/linux/sys/timerfd.h: New file.
3708         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers): Add
3709         sys/timerfd.h.
3710         * sysdeps/unix/sysv/linux/syscalls.list: Add timerfd_create,
3711         timerfd_gettime, timerfd_settime.
3712         * sysdeps/unix/sysv/linux/Versions: Add timerfd_create,
3713         timerfd_gettime, timerfd_settime for GLIBC_2.8.
3715 2008-02-08  Roland McGrath  <roland@redhat.com>
3717         * elf/elf.h (NT_PPC_SPE): New macro.
3719 2008-02-06  Roland McGrath  <roland@redhat.com>
3721         * Makerules ($(common-objpfx)sysd-rules):
3722         Depend on $(sysdep-makeconfigs).
3724 2008-01-31  Roland McGrath  <roland@redhat.com>
3726         [BZ #5442]
3727         * configure.in: Use -print-file-name if it yields a directory,
3728         for each of include and include-fixed.
3729         * configure: Regenerated.
3731         * Makeconfig (sysd-rules-targets): New variable.
3732         * sysdeps/unix/make-syscalls.sh: Use it in the rules emitted.
3733         * sysdeps/unix/Makefile (omit-deps): Append variants for each target.
3735 2008-01-30  Roland McGrath  <roland@redhat.com>
3737         * manual/libc.texinfo: Update back-cover text.
3739         * elf/elf.h (NT_386_TLS): New macro.
3741 2008-01-29  Roland McGrath  <roland@redhat.com>
3743         * Makeconfig (sysd-rules-patterns): New variable.
3744         * Makerules ($(common-objpfx)sysd-rules): Drive the loop from that.
3745         (check-inhibit-asm): New canned sequence, replaces ...
3746         (open-check-inhibit-asm, close-check-inhibit-asm): ... these, removed.
3747         * elf/rtld-Rules ($(objpfx)rtld-%.os): Use $(rtld-CPPFLAGS) in commands.
3748         (rtld-CPPFLAGS): Renamed from CPPFLAGS-rtld.
3749         (CFLAGS-rtld): Variable removed.
3751 2008-01-24  Roland McGrath  <roland@redhat.com>
3753         * configure.in: Let configure fragments set base_os.
3754         * configure: Regenerated.
3756 2008-01-22  Ulrich Drepper  <drepper@redhat.com>
3758         * po/ko.po: Update from translation team.
3760 2008-01-12  H.J. Lu  <hongjiu.lu@intel.com>
3762         * sysdeps/i386/fpu/ftestexcept.c (fetestexcept): Use short for fnstsw.
3764 2008-01-12  Andreas Jaeger  <aj@suse.de>
3766         [BZ #5040]
3767         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h (enum EPOLL_EVENTS):
3768         Add EPOLLRDHUP.
3770 2008-01-20  Samuel Thibault  <samuel.thibault@ens-lyon.org>
3772         * hurd/hurdsock.c (_hurd_socket_server): Return the standard
3773         error EAFNOSUPPORT rather than non-standard EPFNOSUPPORT.
3774         * sunrpc/bindrsvprt.c (bindresvport): Likewise.
3776 2007-10-23  Alexandre Oliva  <aoliva@redhat.com>
3778         * include/link.h (FORCED_DYNAMIC_TLS_OFFSET): Define.
3779         * elf/dl-close.c (_dl_close): Check for it.
3780         * elf/dl-reloc.c (CHECK_STATIC_TLS): Likewise.
3781         (_dl_allocate_static_tls): Likewise.
3782         * elf/dl-tls.c (_dl_allocate_tls_init): Likewise.
3783         (__tls_get_addr): Protect from race conditions in setting l_tls_offset
3784         to it.
3785         * elf/tst-tls16.c: New file.
3786         * elf/tst-tlsmod16a.c: New file.
3787         * elf/tst-tlsmod16b.c: New file.
3788         * elf/Makefile: Add rules to build and run tst-tls16.
3790 2008-01-16  Ulrich Drepper  <drepper@redhat.com>
3792         [BZ #5628]
3793         * bits/shm.h: Fix comment describing shmid_ds.
3794         * sysdeps/gnu/bits/shm.h: Likewise.
3795         * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Likewise.
3796         * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
3797         * sysdeps/unix/sysv/linux/ia64/bits/shm.h: Likewise.
3798         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
3799         * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
3800         * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
3801         * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
3802         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Likewise.
3803         Patch by Hareesh Nagarajan <hareesh.nagarajan@gmail.com>.
3805         [BZ #5607]
3806         * conform/data/fcntl.h-data: Fix posix_fadvise and posix_fallocate
3807         prototypes.
3808         * conform/data/limits.h-data: Adjust limits changed in v6 and add
3809         additional suffixes.
3810         * conform/data/mqueue.h-data: Fix typo in mq_curmsgs entry.
3811         Add optional functions mq_timedreceive and mq_timedsend.
3812         * conform/data/netdb.h-data: Add more AI_* and EAI_* constants.
3813         * conform/data/pthread.h-data: Fix prototype of
3814         pthread_condattr_setclock.  pthread_sigmask is not required in v6.
3815         * conform/data/semaphore.h-data: Allow time.h definitions.
3816         * conform/data/signal.h-data: Likewise.
3817         * conform/data/stdio.h-data: getw and putw are not required in v6.
3818         * conform/data/stdlib.h-data: Change setstate prototype.
3819         * conform/data/string.h-data: Fix strerror_r prototype.
3820         * conform/data/time.h-data: Fix typo in TIMER_ABSTIME definition.
3821         * conform/data/unistd.h-data: pthread_atfork not required in v6.
3822         Fix readlink prototype.
3823         * conform/data/netinet/in.h-data: Add const to in6addr_any and
3824         in6addr_loopback.
3825         * inet/netinet/in.h: Cleanup namespace.
3826         * posix/regex.h: Likewise.
3827         * resolv/netdb.h: Likewise.
3828         * sysdeps/unix/sysv/linux/bits/in.h: Likewise.
3829         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
3830         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
3831         * sysdeps/posix/getaddrinfo.c (default_labels): Adjust for change
3832         of names of in in6_addr.
3833         (default_precedence): Likewise.
3834         * sysdeps/unix/sysv/linux/cmsg_nxthdr.c: Include <stddef.h> for
3835         NULL definition.
3837 2008-01-15  Ulrich Drepper  <drepper@redhat.com>
3839         * conform/data/fmtmsg.h-data: Add missing allows.
3840         * conform/data/ftw.h-data: Likewise.
3841         * conform/data/inttypes.h-data: Likewise.
3842         * conform/data/math.h-data: Likewise.
3843         * conform/data/signal.h-data: Likewise.
3844         * conform/data/net/if.h-data: Likewise.
3845         * conform/data/netinet/in.h-data: Likewise.
3846         * conform/data/sys/socket.h-data: Likewise.
3848         [BZ #5614]
3849         * string/bits/string2.h (__strtok_r_1c): Always update *__NEXTP.
3850         (__strtok_r): Simplify.
3851         * string/tester.c (test_strtok_r): Add test case for futile search
3852         with single-character seach string.
3854 2008-01-12  Ulrich Drepper  <drepper@redhat.com>
3856         * po/ko.po: Update from translation team.
3858 2008-01-11  Andreas Jaeger  <aj@suse.de>
3860         [BZ #5600]
3861         * sysdeps/unix/sysv/linux/sys/signalfd.h (struct
3862         signalfd_siginfo): Use 64-bit type for ssi_ptr to sync with Linux
3863         kernel header.
3865 2008-01-10  Ulrich Drepper  <drepper@redhat.com>
3867         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Store result of
3868         native interface lookup in all the relevant places.
3870 2008-01-10  Jakub Jelinek  <jakub@redhat.com>
3871             Ulrich Drepper  <drepper@redhat.com>
3873         * sysdeps/posix/getaddrinfo.c (sort_results): Remove service_order
3874         field.  Use sockaddr_in6 for source_addr.
3875         (get_scope): Change type of parameter to sockaddr_in6.  Adjust.
3876         (match_prefix): Likewise.
3877         (get_label): Likewise.
3878         (get_precedence): Likewise.
3879         (rfc3484_sort): Change to use indirect access to results array.
3880         Adjust to use of sockaddr_in6.  Replace service_order test with
3881         simple index comparison.
3882         (getaddrinfo): Define order array.  Initialize it.  Don't initialize
3883         service_order field.  Adjust qsort_t calls.  Access sorted result
3884         array indirectly through order array.
3885         * posix/tst-rfc3484.c: Adjust for change of rfc3484_sort.
3886         * posix/tst-rfc3484-2.c: Likewise.
3887         * posix/tst-rfc3484-3.c: Likewise.
3889 2008-01-09  Ulrich Drepper  <drepper@redhat.com>
3891         [BZ #5541]
3892         * sunrpc/rpc_thread.c (__rpc_thread_destroy): Also free xports and
3893         pollfd structures.
3894         Patch by André Cruz.
3896         [BZ #5545]
3897         * sunrpc/clnt_perr.c (clnt_sperror): Don't use fixed size buffer.
3898         (clnt_spcreateerror): Likewise.
3900         [BZ #5553]
3901         * malloc/malloc.c (public_mALLOc): Set ar_ptr when trying main_arena.
3902         (public_mEMALIGn): Likewise.
3903         Patch mostly by Daniel Jacobowitz.
3905 2008-01-09  Jakub Jelinek  <jakub@redhat.com>
3907         * sysdeps/unix/sysv/linux/i386/makecontext.S (__makecontext): Avoid
3908         clobbering memory at or above uc_stack.ss_sp + uc_stack.ss_size.
3909         * stdlib/Makefile: Add rules to build and run tst-makecontext2.
3910         * stdlib/tst-makecontext2.c: New test.
3912 2008-01-08  Jakub Jelinek  <jakub@redhat.com>
3914         * iconv/loop.c (UPDATE_PARAMS): Define to empty statement if not
3915         defined.
3916         (REINIT_PARAMS): Likewise.  Undefine before end of file.
3917         (STANDARD_TO_LOOP_ERR_HANDLER): Use UPDATE_PARAMS before calling
3918         transliteration hooks and REINIT_PARAMS afterwards.
3919         * iconvdata/iso-2022-jp.c (BODY): Use a separate variable for
3920         status.
3921         (REINIT_PARAMS): Define.
3922         * iconvdata/ibm1364.c (REINIT_PARAMS): Likewise.
3923         * iconvdata/ibm930.c (REINIT_PARAMS): Likewise.
3924         * iconvdata/ibm933.c (REINIT_PARAMS): Likewise.
3925         * iconvdata/ibm935.c (REINIT_PARAMS): Likewise.
3926         * iconvdata/ibm937.c (REINIT_PARAMS): Likewise.
3927         * iconvdata/ibm939.c (REINIT_PARAMS): Likewise.
3928         * iconvdata/iso-2022-cn.c (REINIT_PARAMS): Likewise.
3929         * iconvdata/iso-2022-cn-ext.c (REINIT_PARAMS): Likewise.
3930         * iconvdata/iso-2022-jp-3.c (REINIT_PARAMS): Likewise.
3931         * iconvdata/iso-2022-kr.c (REINIT_PARAMS): Likewise.
3932         * iconvdata/Makefile: Add rules to build and run tst-iconv7.c.
3933         * iconvdata/tst-iconv7.c: New test.
3935 2008-01-07  Ulrich Drepper  <drepper@redhat.com>
3937         * libio/stdio.h (vscanf): Fix definition for loser compilers.
3939 2008-01-05  Jakub Jelinek  <jakub@redhat.com>
3941         [BZ #5112]
3942         * nscd/connections.c (restart): Fix condition.
3944 2008-01-03  Jakub Jelinek  <jakub@redhat.com>
3946         * ctype/ctype.h (__ctype_b_loc, __ctype_tolower_loc,
3947         __ctype_toupper_loc): Add __THROW.
3949 2008-01-02  Ulrich Drepper  <drepper@redhat.com>
3951         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Fix
3952         recognition of interface family.
3954         * posix/getconf.c: Update copyright year.
3955         * nss/getent.c: Likewise.
3956         * iconv/iconvconfig.c: Likewise.
3957         * iconv/iconv_prog.c: Likewise.
3958         * elf/ldconfig.c: Likewise.
3959         * catgets/gencat.c: Likewise.
3960         * csu/version.c: Likewise.
3961         * elf/ldd.bash.in: Likewise.
3962         * elf/sprof.c (print_version): Likewise.
3963         * locale/programs/locale.c: Likewise.
3964         * locale/programs/localedef.c: Likewise.
3965         * nscd/nscd.c (print_version): Likewise.
3966         * debug/xtrace.sh: Likewise.
3967         * malloc/memusage.sh: Likewise.
3968         * malloc/mtrace.pl: Likewise.
3969         * debug/catchsegv.sh: Likewise.
3971 2007-12-26  Ulrich Drepper  <drepper@redhat.com>
3973         * nss/nsswitch.c (__nss_lookup): Actually use alternative name in
3974         second lookup.
3976 2007-12-23  Ulrich Drepper  <drepper@redhat.com>
3978         * sysdeps/x86_64/cacheinfo.c (intel_02_known): New entry 0x3f.
3979         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
3981 2007-12-17  Roland McGrath  <roland@redhat.com>
3983         * inet/ether_line.c (ether_line): Remove unused variable.
3985 2007-12-17  Samuel Thibault  <samuel.thibault@ens-lyon.org>
3987         * login/forkpty.c (forkpty): Add const qualifier to parameters termp
3988         and winp.
3989         * login/openpty.c (openpty): Likewise.
3990         * login/pty.h (openpty, forkpty): Likewise.
3991         * manual/terminal.texi (openpty, forkpty): Likewise.
3993 2007-12-17  Ulrich Drepper  <drepper@redhat.com>
3995         * malloc/malloc.c (public_cALLOc): For arenas other than
3996         main_arena, count all bytes inside the mprotect_size range of the
3997         heap as uninitialized.
3999 2007-12-16  Ulrich Drepper  <drepper@redhat.com>
4001         * elf/tst-execstack.c (do_test): Don't fail if SELinux forbids
4002         executable stacks.
4004         * malloc/malloc.c (public_mTRIm): Iterate over all arenas and call
4005         mTRIm for all of them.
4006         (mTRIm): Additionally iterate over all free blocks and use madvise
4007         to free memory for all those blocks which contain at least one
4008         memory page.
4009         * malloc/tst-trim1.c: New file.
4010         * malloc/Makefile (tests): Add tst-trim1.
4012         * malloc/malloc.c (do_check_malloc_state): Minimal cleanups.
4014 2007-12-14  Ulrich Drepper  <drepper@redhat.com>
4016         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
4017         First cast argument to long
4018         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_gettimeofday):
4019         Return long.
4020         (__vdso_clock_gettime): Likewise.
4021         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Functions
4022         return long.
4024 2007-12-13  Ulrich Drepper  <drepper@redhat.com>
4026         * locale/nl_langinfo.c (nl_langinfo): Just call __nl_langinfo_l.
4027         * locale/nl_langinfo_l.c: Real implementation, copied from
4028         nl_langinfo.c.
4029         * include/langinfo.h: Add libc_hidden_proto for __nl_langinfo_l.
4031 2007-12-01  Jim Meyering  <meyering@redhat.com>
4033         * posix/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
4034         that would inhibit utf8-optimization of a regexp containing line-
4035         or buffer-anchors, e.g., `^', `$'.
4037 2007-12-12  Ulrich Drepper  <drepper@redhat.com>
4039         * time/bug-getdate1.c (do_test): Don't use century values which
4040         aren't valid on 32-bit systems.
4042 2007-12-12  Jakub Jelinek  <jakub@redhat.com>
4044         * sysdeps/i386/i486/bits/string.h (memmove): Define as macro.
4045         (memmove): Rename to __memmove_g, with __asm__ ("memmove").
4046         * sysdeps/s390/bits/string.h (__strlen_g, __strcpy_g, __strncpy_g,
4047         __strcat_g, __strncat_g): Add __asm__.
4049 2007-12-12  Ulrich Drepper  <drepper@redhat.com>
4051         [BZ #5477]
4052         * io/fchmodat.c: Fix typo in stub_warning use.
4053         Patch by Petr Salinger.
4055 2007-12-11  Ulrich Drepper  <drepper@redhat.com>
4057         * iconvdata/hp-thai8.c: New file.
4058         * iconvdata/Makefile: Add rules for hp-thai8.c.
4059         * iconvdata/tst-tables.sh: Add entry for HP-THAI8.
4060         * iconvdata/gconv-modules: Likewise.
4062         [BZ #5464]
4063         * iconvdata/hp-greek8.c: New file.
4064         * iconvdata/Makefile: Add rules for hp-greek8.c.
4065         * iconvdata/tst-tables.sh: Add entry for HP-GREEK8.
4066         * iconvdata/gconv-modules: Likewise.
4068         [BZ #5463]
4069         * iconvdata/hp-turkish8.c: New file.
4070         * iconvdata/Makefile: Add rules for hp-turkish8.c.
4071         * iconvdata/tst-tables.sh: Add entry for HP-TURKISH8.
4072         * iconvdata/gconv-modules: Likewise.
4074         * malloc/arena.c (grow_heap): Split out code to shrink heap into...
4075         (shrink_heap): ... this new function.
4076         (heap_trim): Call shrink_heap instead of grow_heap.
4078         * malloc/malloc.c (_int_malloc): sYSMALLOc might fail, in this
4079         case don't call alloc_perturb.
4081 2007-12-10  Ulrich Drepper  <drepper@redhat.com>
4083         * sysdeps/unix/sysv/linux/adjtime.c: Use ADJ_OFFSET_SS_READ if
4084         possible.
4085         * sysdeps/unix/sysv/linux/kernel-features.h
4086         (__ASSUME_ADJ_OFFSET_SS_READ): Define for 2.6.24.
4087         * sysdeps/unix/sysv/linux/sys/timex.h (ADJ_OFFSET_SS_READ): Define.
4089 2007-12-08  Ulrich Drepper  <drepper@redhat.com>
4091         [BZ #5424]
4092         * stdio-common/vfprintf.c: Do not overflow when adding to done.
4093         * stdio-common/Makefile (tests): Add bug22.
4094         * stdio-common/bug22.c: New file.
4096         [BZ #5451]
4097         * time/getdate.c: Fix filling in default values.
4098         * time/bug-getdate1.c: New file.
4099         * time/Makefile: Add rules to build and run bug-getdate1.
4101         * iconvdata/ebcdic-is-friss.c: Use 8bit-gap instead of 8bit-generic.
4102         * iconvdata/ebcdic-es.c: Likewise.
4103         * iconvdata/ebcdic-es-a.c: Likewise.
4104         * iconvdata/ebcdic-uk.c: Likewise.
4105         * iconvdata/iso8859-16.c: Likewise.
4106         * iconvdata/viscii.c: Likewise.
4107         * iconvdata/iso8859-9e.c: Likewise.
4108         * iconvdata/Makefile: Adjust appropriately.
4110         [BZ #5428]
4111         * wcsmbs/wchar.h: Unconditionally undefine __need_mbstate and
4112         __need_wint_t.
4114 2007-12-07  Ulrich Drepper  <drepper@redhat.com>
4116         [BZ #5427]
4117         * iconvdata/hp-roman9.c: New file.
4118         * iconvdata/Makefile: Add rules for hp-roman9.c.
4119         * iconvdata/tst-tables.sh: Add HP-ROMAN9.
4120         * iconvdata/gconv-modules: Likewise.
4122         * iconvdata/hp-roman8.c: Use 8bit-gap instead of 8bit-generic.
4123         * iconvdata/Makefile: Adjust appropriately.
4125         [BZ #5441]
4126         * stdio-common/vfscanf.c (_IO_vfwscanf): Don't free ptrs_to_free
4127         structure, it's allocated with alloca.
4128         * stdio-common/Makefile (tests): Add bug21.
4129         * stdio-common/bug21.c: New file.
4131 2007-12-06  Aurelien Jarno  <aurelien@aurel32.net>
4133         [BZ #5452]
4134         * sysdeps/unix/sysv/linux/bits/sched.h: Use __extension__
4135         keyword for gcc's braced-groups.
4137 2007-12-07  Ulrich Drepper  <drepper@redhat.com>
4139         [BZ #5454]
4140         * inet/ether_line.c: Strip hostname of whitespaces.
4141         * inet/Makefile (tests): Add tst-ether_line.
4142         * inet/tst-ether_line.c: New file.
4144 2007-12-03  Ulrich Drepper  <drepper@redhat.com>
4146         [BZ #5439]
4147         * sysdeps/unix/sysv/linux/sys/signalfd.h: Fix use of __nonnull.
4149         [BZ #5435]
4150         * sysdeps/unix/sysv/linux/i386/makecontext.S: Align stack.
4152         * stdlib/tst-setcontext.c: Catch the case where the links gets
4153         messed up and we do not reach main again.
4155         * po/ca.po: Update from translation team.
4157 2007-11-26  Ulrich Drepper  <drepper@redhat.com>
4159         * posix/unistd.h: Declare fsync also for __USE_XOPEN2K.
4160         * posix/regex.h (REG_ENOSYS): Likewise.
4161         * wcsmbs/wchar.h: Define __need_file also for __USE_XOPEN2K.
4163 2007-11-25  Ulrich Drepper  <drepper@redhat.com>
4165         * nscd/nscd.h (MAX_STACK_USE): Define.
4166         * nscd/mem.c (MAX_STACK_USE): Remove definition here.
4167         (gc): Initialize stack_used based on allocation in prune_cache.
4168         * nscd/cache.c (prune_cache): Use heap for mark array if necessary.
4169         Clear array before use.
4171         * nscd/aicache.c (addhstaiX): Update statistics counter in case
4172         memory allocation failed.
4173         * nscd/hstcache.c (cache_addhst): Likewise.
4174         * nscd/grpcache.c (cache_addgr): Likewise.
4175         * nscd/servicescache.c (cache_addserv): Likewise.
4176         * nscd/pwdcache.c (cache_addpw): Likewise.
4177         * nscd/initgrcache.c (addinitgroupsX): Likewise.
4179 2007-11-23  Ulrich Drepper  <drepper@redhat.com>
4181         * sysdeps/unix/sysv/linux/powerpc/powerpc64/syscalls.list: Add open
4182         and creat system calls.
4184         * sysdeps/unix/sysv/linux/check_native.c: Include <asm/types.h>.
4186 2007-11-23  Martin Schwidefsky  <schwidefsky@de.ibm.com>
4188         * sysdeps/unix/sysv/linux/Makefile [subdir=inet] (sysdep_headers):
4189         Add netiucv/iucv.h.
4190         * sysdeps/unix/sysv/linux/netiucv/iucv.h: New file.
4191         * sysdeps/unix/sysv/linux/opensock.c (__opensock): Add AF_IUCV
4192         protocol.
4193         * sysdeps/unix/sysv/linux/sa_len.c (__libc_sa_len): Likewise.
4194         * sysdeps/unix/sysv/linux/s390/opensock.c: New file.
4195         * sysdeps/unix/sysv/linux/s390/sa_len.c: New file.
4197 2007-11-22  Martin Schwidefsky  <schwidefsky@de.ibm.com>
4199         * sysdeps/s390/bits/string.h (strlen, strcpy, strncpy, strcat,
4200         strncat): Define as macros to avoid compile errors.
4202         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list:  Add open and
4203         creat entries.
4205 2007-11-22  Ulrich Drepper  <drepper@redhat.com>
4207         [BZ #5382]
4208         * nscd/nscd.h (NSCD_THREAD_STACKSIZE): Define.
4209         * nscd/connections.c (start_threads): Use NSCD_THREAD_STACKSIZE.
4210         * nscd/mem.c (gc): Don't allocate arrays on the stack if they can
4211         overflow it.
4212         Partially based on a patch by Petr Baudis <pasky@suse.cz>.
4214         * sysdeps/unix/sysv/linux/nscd_setup_thread.c (setup_thread):
4215         Return zero in case the thread library is not NPTL.
4217         [BZ #5375]
4218         * resolv/res_hconf.c (_res_hconf_reorder_addrs): Fix locking when
4219         initializing interface list.
4221         [BZ #5378]
4222         * nis/nss_compat/compat-initgroups.c (getgrent_next_nss): Don't
4223         use result of nss_getgrgid_r if nothing was found.  For other
4224         error return with a failure.
4225         Partially based on a patch by Petr Baudis <pasky@suse.cz>.
4227         * locale/programs/ld-collate.c (collate_read): Fix loop to match
4228         macro name.
4230 2007-11-19  Ulrich Drepper  <drepper@redhat.com>
4232         * sysdeps/posix/getaddrinfo.c (defaults_scopes, scopes): New variables.
4233         (get_scope): For IPv4 scope, use scopes table.
4234         (fini): Free scopes table if necessary.
4235         (free_scopelist): New function.
4236         (scopecmp): New function.
4237         (gaiconf_init): Also handle scopev4 entries.
4238         * posix/tst-rfc3484.c (do_test): Initialize scopes.
4239         * posix/tst-rfc3484-2.c (do_test): Likewise.
4240         * posix/gai.conf: Document scopev4 defaults.
4241         * posix/Makefile (tests): Add tst-rfc3484-3.
4242         * posix/tst-rfc3484-3.c: New file.
4244         * sysdeps/posix/getaddrinfo.c (default_labels): Describe entry for
4245         Teredo tunnels.
4246         * posix/gai.conf: Update for current default tables.
4248 2007-11-19  Ulrich Drepper  <drepper@redhat.com>
4250         * po/tr.po: Update from translation team.
4252 2007-11-18  Roland McGrath  <roland@frob.com>
4254         * manual/arith.texi (Remainder Functions): Spelling fix.
4255         From Shaun Silk <genix@mysoul.com.au>.
4257         * sysdeps/mach/hurd/bits/fcntl.h (O_CLOEXEC): Fix value.
4259 2007-11-17  Ulrich Drepper  <drepper@redhat.com>
4261         * po/zh_CN.po: Update from translation team.
4263         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers):
4264         Add sys/signalfd.h and sys/eventfd.h.
4266 2007-11-15  Bruno Haible  <bruno@clisp.org>
4268         [BZ #5346]
4269         * intl/dcigettext.c (struct known_translation_t): Turn msgid into a
4270         union.
4271         (transcmp): Use the appropriate part of s1->msgid and s2->msgid.
4272         (DCIGETTEXT): Change the allocation of the 'search' variable so that
4273         it needs only fixed stack space. Delay the initialization of
4274         msgid_len until it is needed.
4276 2007-11-15  Andreas Jaeger  <aj@suse.de>
4278         * sysdeps/ieee754/dbl-64/sincos.tbl: Fix size of union.
4279         Reported by Christoph Quirin Lauter <christoph.lauter@ens-lyon.fr>.
4281 2007-11-15  Ulrich Drepper  <drepper@redhat.com>
4283         * po/ko.po: Update from translation team.
4285 2007-11-14  Ulrich Drepper  <drepper@redhat.com>
4287         * sysdeps/unix/sysv/linux/check_native.c (__check_native): Simplify
4288         significantly.  The device type is also part of the ifinfomsg data.
4290         * po/sv.po: Update from translation team.
4291         * po/nl.po: Likewise.
4293         * nscd/cache.c (prune_cache): If cache is empty, instruct caller
4294         to wake up in 24 hours.
4296         * nscd/gai.c (__ioctl): Define.  Include check_native.c.
4298 2007-11-13  Ulrich Drepper  <drepper@redhat.com>
4300         * po/cs.po: Update from translation team.
4301         * po/pl.po: Likewise.
4303         * include/ifaddrs.h: Remove in6ai_temporary.
4304         (struct in6addrinfo): Add index element.
4305         Declare __check_native.
4306         * inet/Makefile (aux): Add check_native.
4307         * sysdeps/unix/sysv/linux/check_native.c: New file.
4308         * sysdeps/unix/sysv/linux/check_pf.c: No need to recognize
4309         IFA_F_TEMPORARY.  Pass back ifa_index.
4310         * sysdeps/posix/getaddrinfo.c: Remove netlink compatibility code.
4311         (rfc3484_sort): Add new parameter.  Implement rule 7 correctly:
4312         call __check_native if necessary.
4313         (getaddrinfo): Fill in index field.  Use qsort_r instead of qsort
4314         to sort addresses.  Pass information about the results.
4315         * posix/tst-rfc3484.c: Adjust for addition of index field and change
4316         of rfc3484_sort interface.
4317         * posix/tst-rfc3484-2.c: Likewise.
4319         * stdlib/stdlib.h: Define __compar_d_fn_t.  Declare qsort_r.
4320         * include/stdlib.h: Add hidden_proto for qsort_t and adjust protoype
4321         for _quicksort.
4322         * stdlib/msort.c (qsort): Now a wrapper around qsort_r.
4323         (qsort_r): Renamed from qsort.  Take additional parameter and pass it
4324         on as third parameter to compare function and _quicksort.
4325         * stdlib/qsort.c (_quicksort): Take additional parameter and pass on
4326         to the compare function.
4327         * stdlib/Versions [libc] (GLIBC_2.8): Add qsort_r.
4328         * Versions.def: Add GLIBC_2.8 for libc.
4330         * posix/tst-rfc3484.c: Adjust for addition of prefixlen field.
4331         * posix/tst-rfc3484-2.c: Likewise.
4333         * include/kernel-features.h: Moved to...
4334         * sysdeps/mach/hurd/kernel-features.h: ...here.
4336 2007-09-13  H.J. Lu  <hongjiu.lu@intel.com>
4338         * sysdeps/i386/i586/memcpy_chk.S: New file.
4339         * sysdeps/i386/i586/mempcpy_chk.S: Likewise.
4340         * sysdeps/i386/i586/memset_chk.S: Likewise.
4342 2007-11-12  Ulrich Drepper  <drepper@redhat.com>
4344         * include/ifaddrs.c (struct in6addrinfo): Add prefixlen field.
4345         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Always return
4346         list of interfaces.  Also store prefix length.
4347         * sysdeps/posix/getaddrinfo.c (sort_result): Add prefixlen element.
4348         (rfc3484_sort): In rule 9, for IPv4 addresses count only matching
4349         prefix if source and destination address are in the same subnet.
4350         (getaddrinfo): Always call __check_pf.  Fill in prefixlen field.
4351         Always look for matching record in in6ai list.
4352         Correct source_addr_len value for IPv6->IPv4 converted records.
4354 2007-11-11  Roland McGrath  <roland@frob.com>
4356         * include/kernel-features.h: New file.
4358 2007-11-10  Ulrich Drepper  <drepper@redhat.com>
4360         * sysdeps/pthread/aio_misc.c (handle_fildes_io): Avoid unnecessary
4361         complications for 64-bit platforms.
4363         * sysdeps/unix/sysv/linux/open64.c: Move __open64_2 implementation to..
4364         * sysdeps/unix/sysv/linux/open64_2.c: ...here.  New file.
4365         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines): Add
4366         open64_2.
4367         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Add open and creat
4368         entries.
4369         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
4370         * sysdeps/wordsize-64/alphasort.c: New file.
4371         * sysdeps/wordsize-64/alphasort64.c: New file.
4372         * sysdeps/wordsize-64/fseeko.c: New file.
4373         * sysdeps/wordsize-64/fseeko64.c: New file.
4374         * sysdeps/wordsize-64/ftello.c: New file.
4375         * sysdeps/wordsize-64/ftello64.c: New file.
4376         * sysdeps/wordsize-64/ftw.c: New file.
4377         * sysdeps/wordsize-64/ftw64.c: New file.
4378         * sysdeps/wordsize-64/iofgetpos.c: New file.
4379         * sysdeps/wordsize-64/iofgetpos64.c: New file.
4380         * sysdeps/wordsize-64/iofopen.c: New file.
4381         * sysdeps/wordsize-64/iofopen64.c: New file.
4382         * sysdeps/wordsize-64/iofsetpos.c: New file.
4383         * sysdeps/wordsize-64/iofsetpos64.c: New file.
4384         * sysdeps/wordsize-64/lockf.c: New file.
4385         * sysdeps/wordsize-64/lockf64.c: New file.
4386         * sysdeps/wordsize-64/mkostemp.c: New file.
4387         * sysdeps/wordsize-64/mkostemp64.c: New file.
4388         * sysdeps/wordsize-64/mkstemp.c: New file.
4389         * sysdeps/wordsize-64/mkstemp64.c: New file.
4390         * sysdeps/wordsize-64/scandir.c: New file.
4391         * sysdeps/wordsize-64/scandir64.c: New file.
4392         * sysdeps/wordsize-64/tmpfile.c: New file.
4393         * sysdeps/wordsize-64/tmpfile64.c: New file.
4394         * sysdeps/wordsize-64/versionsort.c: New file.
4395         * sysdeps/wordsize-64/versionsort64.c: New file.
4396         * sysdeps/unix/sysv/linux/wordsize-64/aio_read.c: New file.
4397         * sysdeps/unix/sysv/linux/wordsize-64/aio_read64.c: New file.
4398         * sysdeps/unix/sysv/linux/wordsize-64/aio_write.c: New file.
4399         * sysdeps/unix/sysv/linux/wordsize-64/aio_write64.c: New file.
4400         * sysdeps/unix/sysv/linux/wordsize-64/creat64.c: New file.
4401         * sysdeps/unix/sysv/linux/wordsize-64/getdirentries.c: New file.
4402         * sysdeps/unix/sysv/linux/wordsize-64/getdirentries64.c: New file.
4403         * sysdeps/unix/sysv/linux/wordsize-64/lio_listio.c: New file.
4404         * sysdeps/unix/sysv/linux/wordsize-64/lio_listio64.c: New file.
4405         * sysdeps/unix/sysv/linux/wordsize-64/open64.c: New file.
4406         * sysdeps/unix/sysv/linux/wordsize-64/openat.c: New file.
4407         * sysdeps/unix/sysv/linux/wordsize-64/openat64.c: New file.
4409         * crypt/sha256-crypt.c: Fix a comment.
4410         * crypt/sha512-crypt.c: Likewise.
4412 2007-11-07  H.J. Lu  <hongjiu.lu@intel.com>
4414         * sysdeps/x86_64/memset.S: Add sfence after movnti.
4416 2007-11-07  Ulrich Drepper  <drepper@redhat.com>
4418         [BZ #5277]
4419         * iconv/loop.c (STANDARD_TO_LOOP_ERR_HANDLER): If conversion failed
4420         because output buffer is too small break, don't loop.
4421         * iconvdata/Makefile (tests): Add bug-iconv6.
4422         * iconvdata/bug-iconv6.c: New file.
4424 2007-11-06  Ulrich Drepper  <drepper@redhat.com>
4426         * stdio-common/vfprintf.c (vfprintf): Compute necessary buffer size
4427         with size_t type.
4428         * stdio-common/printf_fp.c (__print_fp): Change chars_needed type to
4429         size_t.  Add casts where needed.
4431         * nscd/selinux.c (nscd_request_avc_has_perm): When compiled with
4432         old headers, don't call avc_has_perm if we don't have the
4433         permission information.
4435 2007-11-05  Daniel Jacobowitz  <dan@codesourcery.com>
4437         * elf/rtld.c (dl_main): Use the page size to find the map start.
4439 2007-11-05  Ulrich Drepper  <drepper@redhat.com>
4441         * time/tzfile.c (__tzfile_read): Fix check for version 0 data files.
4442         Patch by Szymon Siwek <sls@poczta.wp.pl>.
4444         * nscd/aicache.c (addhstaiX): Check herrno after IPv4 lookup only
4445         when the lookup call failed.
4447         * nscd/nscd.h (struct database_dyn): Rename prunelock to prune_lock.
4448         Add prune_cond and wakeup_time.
4449         (CACHE_PRUNE_INTERNAL): Define.
4450         Update declarations of prune_cache and setup_thread.
4451         * nscd/connections.c (dbs): Update initializers.
4452         (CACHE_PRUNE_INTERNAL): Moved to nscd.h.
4453         (nscd_init): Default number of threads is now 4.
4454         (invalidate_cache): Take lock before calling prune_cache.
4455         (handle_request): If SELinux forbids the request, say so.
4456         (readylist_cond): Use static initializer.
4457         (nscd_run_prune): New function.  Used only by pruning threads.
4458         (nscd_run_worder): Renamed from nscd_run.  Remove support for pruning
4459         here.
4460         (fd_ready): Update nscd_run reference.
4461         (start_threads): No need to initialize readylist_cond.
4462         Start pruning threads separately.
4463         * nscd/nscd_setup_thread.c: Change return value type to int and always
4464         return 0.
4465         * sysdeps/unix/sysv/linux/nscd_setup_thread.c: Change return value type
4466         to int and return nonzero value if we can use the TID address hack.
4467         * nscd/cache.c (cache_add): If next wakeup time of cleanup thread for
4468         the database is later than the new entry's timeout, update the
4469         wakeup time and wake the cleanup thread.
4470         (prune_cache): Return seconds the next entry in the database is still
4471         valid.  Remove locking for pruning here.
4472         * nscd/nscd.conf: Document default number of threads.
4474 2007-10-31  Ulrich Drepper  <drepper@redhat.com>
4476         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Make sure
4477         stack is properly aligned for the target function.
4478         Correct unwind info.
4480         * elf/rtld.c (dl_main): Initialize stack and pointer guard early
4481         when using auditing libraries.
4483 2007-10-29  Ulrich Drepper  <drepper@redhat.com>
4485         * resolv/Versions [libresolv] (GLIBC_PRIVATE): Add
4486         _nss_dns_getnetbyaddr2_r.
4487         * resolv/nss_dns/dns-host.c: Define _nss_dns_getnetbyaddr2_r.  Pass
4488         extra parameter to getanswer_r.
4489         (_nss_dns_getnetbyaddr_r): Now a wrapper around
4490         _nss_dns_getnetbyaddr2_r.
4492         * nscd/Makefile (nscd-modules): Replace gethstbynm2_r with
4493         gethstbynm3_r.
4494         * nscd/gethstbynm2_r.c: Remove.
4495         * nscd/gethstbynm3_r.c: New file.
4496         * nscd/aicache.c (addhstaiX): Use __gethostbyaddr2_r instead of
4497         __gethostbyaddr_r.
4498         * nscd/gethstbyad_r.c: Generate __gethostbyaddr2_r function.  Define
4499         __gethostbyaddr_r compatibility wrapper.
4500         * nscd/hstcache.c (cache_addhst): Add ttl parameter.  Use it when
4501         determining timeout of entry.
4502         (lookup): Take new parameter and pass it to __gethostbyname3_r and
4503         __gethostbyaddr2_r.
4504         (addhstbyX): Pass reference to variable for TTL to lookup and
4505         cache_addhst.
4506         * nss/Versions [glibc] (GLIBC_PRIVATE): Export __nss_passwd_lookup2,
4507         __nss_group_lookup2, __nss_hosts_lookup2, __nss_services_lookup2,
4508         and __nss_next2.  Remove __nss_services_lookup.
4509         * nss/XXX-lookup.c: Name function now *_lookup2.  Add new parameter.
4510         Add compat wrapper.
4511         * nss/getXXbyYY_r.c: Changes to call new *_lookup2 functions and
4512         __nss_next2.
4513         * nss/getXXent_r.c: Likewise.
4514         * nss/getnssent_r.c: Likewise.
4515         * nss/nsswitch.c (__nss_lookup): Add new parameter.  If first function
4516         does not exist in module, try the optional second name.
4517         (__nss_next2): New function.
4518         (__nss_next): Now wrapper around __nss_next2.
4519         * nss/nsswitch.h: Adjust __nss_lookup prototype.
4520         Declare __nss_next2.
4521         Adjust definition of db_lookup_function type.
4522         * nss/service-lookup.c: Define NO_COMPAT.
4523         * include/netdb.h: Declare __gethostbyaddr2_r and __gethostbyname3_r.
4524         * inet/ether_hton.c: Use __nss_next2 instead of __nss_next.
4525         * inet/ether_ntoh.c: Likewise.
4526         * sunrpc/netname.c: Likewise.
4527         * sunrpc/publickey.c: Likewise.
4528         * inet/getnetgrent.c: Likewise.  Adjust calls to __nss_lookup.
4529         * inet/gethstbyad_r.c (DB_LOOKUP_FCT): Change to __nss_hosts_lookup2.
4530         * inet/gethstbynm2_r.c (DB_LOOKUP_FCT): Likewise.
4531         * inet/gethstbynm_r.c (DB_LOOKUP_FCT): Likewise.
4532         * inet/gethstent_r.c (DB_LOOKUP_FCT): Likewise.
4534         * nscd/aicache.c (addhstaiX): Fix default TTL handling.
4536         * inet/getnetgrent_r.c (setup): Encrypt static pointer.
4538 2007-10-28  Ulrich Drepper  <drepper@redhat.com>
4540         [BZ #5204]
4541         * crypt/sha256c-test.c: Define TIMEOUT to 6 for ancient hardware.
4542         * crypt/sha512c-test.c: Likewise.
4544         [BZ #5225]
4545         * stdio-common/vfscanf.c (_IO_vfwscanf): Don't misuse wp pointer
4546         to keep track of end of %[ format string element.
4547         * stdio-common/Makefile (tests): Add bug20.
4548         * stdio-common/bug20.c: New file.
4550         [BZ #5222]
4551         * elf/dl-load.c (_dl_rtld_di_serinfo): Correct handling of short
4552         path elements in counting mode.
4554 2007-10-27  Andreas Jaeger  <aj@suse.de>
4556         [BZ #5040]
4557         * sysdeps/unix/sysv/linux/sys/epoll.h (EPOLLRDHUP): Add value.
4559         [BZ #3112]
4560         * sysdeps/ia64/backtrace.c (init): Free shared library if incorrect.
4561         (__cleanup): Free shared library when exiting.
4562         * sysdeps/i386/backtrace.c (init): Free shared library if incorrect.
4563         (__cleanup): Free shared library when exiting.
4565 2006-04-14  H.J. Lu  <hongjiu.lu@intel.com>
4567         [BZ #2549]
4568         * math/libm-test.inc (check_float_internal): Support
4569         denormalized return.
4571 2007-10-23  Andreas Jaeger  <aj@suse.de>
4573         [BZ #5208]
4574         * sysdeps/unix/sysv/linux/readahead.c (__readahead): Use
4575         __LONG_LONG_PAIR to handle little endian byte order.
4576         Suggested by abhishekrai@google.com
4578 2007-10-27  Ulrich Drepper  <drepper@redhat.com>
4580         * malloc/arena.c [!NO_THREADS]: Use ATFORK_MEM if defined.
4582 2007-10-26  Ulrich Drepper  <drepper@redhat.com>
4584         * nscd/cache.c (prune_cache): Move test for modified file outside
4585         of locking.
4587 2007-10-21  Andreas Jaeger  <aj@suse.de>
4589         * manual/texinfo.tex: Update to latest version.
4591         * manual/sysinfo.texi (System Parameters): Fix Formatting.
4593         * manual/arith.texi (Status bit operations): Fix formatting.
4595         * manual/errno.texi (Error Messages): Fix formatting.
4597         * manual/sysinfo.texi (System Parameters): Fix formatting.
4599         * manual/libc.texinfo: Update VERSION and UPDATED.
4601 2007-10-19  Roland McGrath  <roland@redhat.com>
4603         * elf/Makefile ($(objpfx)ld.so): Use $(AWK).
4605 2007-10-06  David S. Miller  <davem@davemloft.net>
4607         * configure.in: Add sparcv9v2 and sparc64v2.
4608         * scripts/config.sub: Likewise.
4609         * configure: Regenerate.
4610         * elf/elf.h (HWCAP_SPARC_N2): New.
4611         * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Bump to 8.
4612         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add 'v9v2'.
4613         (HWCAP_IMPORTANT): Add HWCAP_SPARC_N2.
4614         * sysdeps/sparc/sparc32/sparcv9/sparcv9v2/memcpy.S: New file.
4615         * sysdeps/sparc/sparc32/sparcv9/sparcv9v2/memset.S: New file.
4616         * sysdeps/sparc/sparc64/sparcv9v2/memcpy.S: New file.
4617         * sysdeps/sparc/sparc64/sparcv9v2/memset.S: New file.
4619 2007-10-18  Ulrich Drepper  <drepper@redhat.com>
4621         * sunrpc/clnt_udp.c (clntudp_call): Don't block in recvfrom call
4622         even if the poll result indicates there is data to read.
4623         Patch by Jeff Moyer <jmoyer@redhat.com>.
4625 2007-10-18  Roland McGrath  <roland@redhat.com>
4627         * elf/elf.h (NT_PPC_VMX): New macro.
4629 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
4631         * version.h (VERSION): Set to 2.7.90.
4633 2007-10-17  Jakub Jelinek  <jakub@redhat.com>
4635         * sysdeps/x86_64/memset.S (bzero): Renamed to __bzero.  Add
4636         weak_alias.
4638 2007-10-17  Roland McGrath  <roland@frob.com>
4640         * sysdeps/mach/hurd/bits/fcntl.h [__USE_GNU__] (F_DUPFD_CLOEXEC): New.
4641         * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Implement it.
4643 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
4645         * version.h (VERSION): Bump to 2.7.
4646         * include/features.h (__GLIBC_MINOR__): Bump to 7.
4648         [BZ #5186]
4649         * time/tzset.c (__tz_convert): Don't force testing for a change of
4650         TZ if not called from localtime.  But then also see whether the
4651         file changed, in case __use_tzfile is set.
4653         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define F_DUPFD_CLOEXEC.
4654         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
4655         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
4656         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
4657         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
4658         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
4659         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h:  Likewise.
4660         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
4662 2007-10-17  Jakub Jelinek  <jakub@redhat.com>
4664         * sysdeps/posix/getaddrinfo.c (getaddrinfo): When sorting addresses
4665         and admin selects to be able to replace the gai.conf file, lock
4666         data structures around the qsort call.
4668 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
4670         * sysdeps/x86_64/cacheinfo.c: Comment out code added in support of
4671         new memset.
4672         * sysdeps/x86_64/memset.S: Revert to old version for now.  The cost is
4673         too high for the improvements.  Implement bzero unconditionally for
4674         use in libc.
4676 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
4677             Jakub Jelinek  <jakub@redhat.com>
4679         * time/tzfile.c (__tzfile_read): Read POSIX TZ string if available
4680         even when time_t is 32-bit.
4681         (__tzfile_compute): Override POSIX TZ string STD/DST zone names if
4682         timezone data read by __tzfile_default.  Ensure __tzname[0] is
4683         always set after the search.
4685 2007-10-16  Ulrich Drepper  <drepper@redhat.com>
4687         * time/tzfile.c (__tzfile_read): Help the compiler recognize
4688         unreachable code on 32-bit machines.
4690 2007-10-16  Jakub Jelinek  <jakub@redhat.com>
4692         [BZ #5184]
4693         * time/strftime_l.c: Include stdbool.h.
4694         (my_strftime): New wrapper, old function renamed to...
4695         (__strftime_internal): ... new function.  Add tzset_called
4696         argument, pass it down to recursive calls, don't call tzset ()
4697         if already true, set to true after call to tzset ().
4699 2007-10-16  Ulrich Drepper  <drepper@redhat.com>
4701         * time/tzfile.c (__tzfile_read): Take extra memory requested by caller
4702         into account when copying TZ string.
4704 2007-10-16  Jakub Jelinek  <jakub@redhat.com>
4706         * time/tzfile.c (__tzfile_compute): For use_last case set i to
4707         num_transition rather than num_transitions - 1.
4709 2007-10-16  Jakub Jelinek  <jakub@redhat.com>
4711         * sysdeps/x86_64/memset.S (memset): Fix sse2_nt_move
4712         PIC indirect jump.
4714         * sysdeps/x86_64/memset.S: Jump from bzero to memset using
4715         a local label rather than HIDDEN_JUMPTARGET.
4717 2007-10-15  Ulrich Drepper  <drepper@redhat.com>
4719         * sysdeps/x86_64/cacheinfo.c (__x86_64_shared_cache_size): Define.
4720         (init_cacheinfo): Initialize it.
4721         * sysdeps/x86_64/memset.S: Use __x86_64_shared_cache_size.
4722         Always define bzero.
4723         Remove non-glibc code.
4724         * sysdeps/x86_64/bzero.S: Make an empty file.
4726 2007-10-15  H.J. Lu  <hongjiu.lu@intel.com>
4728         * sysdeps/x86_64/cacheinfo.c
4729         (__x86_64_preferred_memory_instruction): New.
4730         (init_cacheinfo): Initialize __x86_64_preferred_memory_instruction.
4732         * sysdeps/x86_64/memset.S: Rewrite.
4734 2007-10-15  Roland McGrath  <roland@redhat.com>
4736         * po/libc.pot: Regenerated.
4738 2007-10-15  Ulrich Drepper  <drepper@redhat.com>
4740         * nss/getXXbyYY_r.c (REENTRANT_NAME): Mangle startp and start_fct
4741         pointers.
4743         [BZ #3425]
4744         * resolv/nss_dns/dns-host.c (getanswer_r): Fail with
4745         NSS_STATUS_NOTFOUND if the server replied with only a CNAME and no
4746         address record to T_A/T_AAAA requests.
4748 2007-10-14  Ulrich Drepper  <drepper@redhat.com>
4750         * posix/glob.c: Reimplement link_exists_p to use fstatat64.
4752         * posix/glob.c: Add some branch prediction throughout.
4754         * nscd/nscd_getgr_r.c (nscd_getgr_r): Store result of successful
4755         read from nscd.
4757         * sysdeps/posix/getaddrinfo.c (struct sort_result): Add
4758         service_order.
4759         (rfc3484_sort): Make sure that even if qsort doesn't support
4760         stable sorting out sorting here is stable by comparing service_order.
4761         (getaddrinfo): Initialize service_order.
4762         * posix/tst-rfc3484.c (do_test): Adjust for addition of
4763         service_order field to sorting structure.
4764         * posix/tst-rfc3484-2.c (do_test): Likewise.
4766         * include/time.h: Declare __tzset_parse_tz and __tzset_compute.
4767         * time/tzset.c (tzset_internal): Break TZ string parsing out into
4768         __tzset_parse_tz and updating of daylight, timezone, tzname into
4769         update_vars.
4770         (__tz_compute): Renamed from tz_compute.  Take additional parameters.
4771         (__tz_convert): Updating of tm_isdst, tm_zone, and tm_gmtoff now
4772         happens in __tz_compute.
4773         * time/tzfile.c (__tzfile_read): Also read TZ string.
4774         (find_transition): Fold into __tzfile_compute.
4775         (__tzfile_compute): For times beyond the last transition try to
4776         use the TZ string.
4777         * timezone/tst-timezone.c: Information in daylight and tzname does
4778         change for Asia/Tokyo timezone with more concrete information.
4779         Remove the test.
4781         * include/stdio.h: Add libc_hidden_proto for ftello.
4782         * libio/ftello.c: Add libc_hidden_def.
4784         [BZ #1140]
4785         * time/tzfile.c (__tzfile_compute): Compute tzname[] values based
4786         on the specified time and not the last entries in the file.  Move
4787         code to determine tzname[] to...
4788         (find_transition): ...here.  Add ugly guess for times before the
4789         first transition.
4791 2007-10-13  Ulrich Drepper  <drepper@redhat.com>
4793         [BZ #3195]
4794         * nscd/nscd_getai.c (__nscd_getai): Set errno to 0 in case we found
4795         no entry.
4796         * nscd/nscd_getgr.c (nscd_getgr_r): Likewise.
4797         * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
4798         * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
4799         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
4801         * nscd/nscd_getgr_r.c (nscd_getgr_r): Optimize a bit: use simpler
4802         read mechanism when there are no group members and avoid no-op
4803         read syscall in this case.
4805         [BZ #3242]
4806         * nscd/nscd_helper.c (wait_on_socket): Take timeout as parameter.
4807         (__readall): If reading failed due to EAGAIN error wait a bit
4808         and possibly try again.
4809         (__readvall): Likewise.
4811 2007-10-13  Bruno Haible  <bruno@clisp.org>
4813         * intl/dcigettext.c (_nl_find_msg): Unlock the conversions_lock
4814         when we cannot recode the message.
4816 2007-10-13  Ulrich Drepper  <drepper@redhat.com>
4818         [BZ #4359]
4819         * libio/__freading.c (__freading): Don't return true for
4820         write-only streams.  For read/write streams, check whether we
4821         performed a read operation already.
4822         * libio/Makefile (tests): Add tst-ext2.
4823         * libio/tst-ext2.c: New file.
4825 2007-10-12  Ulrich Drepper  <drepper@redhat.com>
4827         * locale/programs/repertoire.c (repertoire_read): Always free
4828         memory for repertoire file name [Coverity CID 270].
4830         * elf/cache.c (save_aux_cache): Free memory allocated for
4831         temporary file name [Coverity CID 267].
4833 2007-10-12  Jakub Jelinek  <jakub@redhat.com>
4835         * misc/Makefile (headers): Add bits/error.h.
4837 2007-10-12  Ulrich Drepper  <drepper@redhat.com>
4839         * posix/fnmatch_loop.c: Take rule index returned as part of
4840         findidx return value into account when accessing weights.
4841         * posix/regcomp.c: Likewise.
4842         * posix/regexec.c: Likewise.
4844         * locale/programs/ld-collate.c (collate_read): Optimize a bit.
4845         (skip_to): Fix problems with parameter of elifdef/elifndef.
4847 2007-10-11  Ulrich Drepper  <drepper@redhat.com>
4849         * iconv/gconv_simple.c: Add some branch prediction.
4851 2007-10-12  Jakub Jelinek  <jakub@redhat.com>
4853         * locale/programs/ld-collate.c (collate_read): If ignore_content
4854         and nowtok is tok_define, eat any tok_eol tokens.
4856 2007-10-11  Jakub Jelinek  <jakub@redhat.com>
4858         * sysdeps/gnu/netinet/tcp.h: Include sys/socket.h if __USE_MISC.
4859         (struct tcp_md5sig): Change tcpm_addr type to struct sockaddr_storage.
4861         * inet/netinet/in.h: Don't include bits/socket.h.
4862         * sysdeps/unix/sysv/linux/bits/socket.h: Only check _SYS_SOCKET_H
4863         macro.
4864         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
4866 2007-10-10  Ulrich Drepper  <drepper@redhat.com>
4868         * locale/programs/locfile-token.h: Remove tok_elif, add tok_elifdef
4869         and tok_elifndef.
4870         * locale/programs/locfile-kw.gperf: Likewise.
4871         * locale/programs/ld-collate.c: Implement primitive preprocessor.
4873 2007-10-10  Jakub Jelinek  <jakub@redhat.com>
4875         * stdio-common/printf-parse.h: Include string.h and wchar.h.
4876         (__find_specwc): Change into __extern_always_inline function.
4877         (__find_specmb): Likewise.  Remove ps argument.  Use __strchrnul.
4878         (__parse_one_specmb): Remove ps argument.
4879         * stdio-common/vfprintf.c (vfprintf): Remove mbstate variable.
4880         Adjust __find_specmb and __parse_one_specmb callers.
4881         * stdio-common/printf-prs.c (parse_printf_format): Likewise.
4882         * stdio-common/printf-parsemb.c (__find_specwc, __find_specmb):
4883         Removed.
4884         (__parse_one_specmb): Remove ps argument, adjust __find_specmb
4885         caller.
4887 2007-10-09  Ulrich Drepper  <drepper@redhat.com>
4889         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Work around problem
4890         with some Pentium Ds.
4892 2007-10-08  Ulrich Drepper  <drepper@redhat.com>
4894         * sysdeps/unix/sysv/linux/eventfd_read.c (eventfd_read): Use
4895         __read not read.
4896         * sysdeps/unix/sysv/linux/eventfd_write.c (eventfd_write): Use
4897         __write not write.
4899 2007-10-07  Ulrich Drepper  <drepper@redhat.com>
4901         [BZ #181]
4902         * locale/C-time.c: Set week_1stday data to 19971201.
4903         * locale/programs/ld-time.c (time_finish): Default for
4904         first_workday is Monday.
4906         [BZ #2633]
4907         * wcsmbs/wchar.h: Move many C99 functions into std namespace.
4909         [BZ #5103]
4910         * posix/glob.c (glob): Recognize patterns starting \/.
4911         * posix/tst-gnuglob.c (find_file): Handle absolute path names.
4912         (main): Add test for pattern starting \/.
4914         * misc/error.h: Use __const instead of const.
4915         * misc/bits/error.h: Likewise.
4917 2007-10-07  Andreas Jaeger  <aj@suse.de>
4919         * include/bits/error.h: New file.
4921         * misc/bits/error.h (error_at_line): Fix prototype.
4923 2007-10-06  Ulrich Drepper  <drepper@redhat.com>
4925         [BZ #3924]
4926         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Fix a few
4927         more little bugs in creating the stack frame when pltexit has to
4928         be called.
4930         * nscd/nscd_helper.c (__nscd_cache_search): Prevent endless loops.
4931         * nscd/connections.c (verify_persistent_db): Recognize circular lists.
4933         [BZ #4407]
4934         * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Fix *signgamp for -0.0.
4935         * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
4936         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
4937         * math/libm-test.inc: Add test for this case.
4939         [BZ #5010]
4940         * sunrpc/svc.c (struct svc_callout): Add sc_mapped element.
4941         (svc_register): Initialize sc_mapped.  Set to TRUE if call to
4942         map service succeeded.
4943         (svc_is_mapped): New function.
4944         (svc_unregister): Use it before trying to unmap service.
4946 2007-10-05  Ulrich Drepper  <drepper@redhat.com>
4948         * timezone/zic.c: Update from tzcode2007h.
4950         [BZ #5063]
4951         * timezone/africa: Update from tzdata2007h.
4952         * timezone/antarctica: Likewise.
4953         * timezone/asia: Likewise.
4954         * timezone/australasia: Likewise.
4955         * timezone/europe: Likewise.
4956         * timezone/leapseconds: Likewise.
4957         * timezone/northamerica: Likewise.
4958         * timezone/southamerica: Likewise.
4959         * timzeone/zone.tab: Likewise.
4961         [BZ #5104]
4962         * elf/do-lookup.h (do_lookup_x): Don't ignore STT_COMMON symbols.
4964         [BZ #5113]
4965         * string/bits/string2.h (__strdup): Cast parameters to calloc to
4966         avoid warning with -Wconversion.
4967         (__strndup): Likewise.
4968         Half the patch by Christian Iseli <christian.iseli@licr.org>.
4970         [BZ #5112]
4971         * nscd/connections.c (restart): Don't resync if database is
4972         disabled.  Patch mostly by Brian De Wolf <bldewolf@csupomona.edu>.
4974         * sysdeps/gnu/netinet/tcp.h: Define TCP_MD5SIG, TCP_MD5SIG_MAXKEYLEN,
4975         struct tcp_md5sig.  Extend struct tcp_info according to recent kernels.
4977         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add eventfd,
4978         evetnfd_read, eventfd_write.
4979         * sysdeps/unix/sysv/linux/eventfd.c: New file.
4980         * sysdeps/unix/sysv/linux/eventfd_read.c: New file.
4981         * sysdeps/unix/sysv/linux/eventfd_write.c: New file.
4982         * sysdeps/unix/sysv/linux/sys/eventfd.h: New file.
4983         * sysdeps/unix/sysv/linux/Versions: Export eventfd, eventfd_read,
4984         eventfd_write for GLIBC_2.7.
4986         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add signalfd.
4987         * sysdeps/unix/sysv/linux/signalfd.c: New file.
4988         * sysdeps/unix/sysv/linux/sys/signalfd.h: New file.
4989         * sysdeps/unix/sysv/linux/Versions: Export signalfd for GLIBC_2.7.
4991 2007-10-04  Jakub Jelinek  <jakub@redhat.com>
4993         * stdlib/msort.c: Include stdint.h.
4994         (struct msort_param): New type.
4995         (msort_with_tmp): Use struct msort_param pointer for unchanging
4996         parameters.  Add optimized handling for several common sizes
4997         and indirect sorting mode.
4998         (qsort): Adjust msort_with_tmp callers.  For big S use indirect
4999         sorting.
5000         Suggested by Belazougui Djamel .
5002         * stdlib/Makefile (tests): Add tst-qsort2.
5003         * stdlib/tst-qsort2.c: New test.
5005 2007-10-04  Ulrich Drepper  <drepper@redhat.com>
5007         * login/login_tty.c (login_tty): The Linux kernel can return EBUSY
5008         for dup2 in case another thread races with the current one.  Retry
5009         in this case.
5011         * misc/error.h: Remove support for use outside of libc.  We have to
5012         include <features.h> now.  Include <bits/error.h> if possible.
5013         * misc/bits/error.h: New file.
5015 2007-10-03  Jakub Jelinek  <jakub@redhat.com>
5017         * string/bits/string3.h (memcpy, memmove, mempcpy, memset, bcopy,
5018         bzero, strcpy, stpcpy, strncpy, strcat, strncat): Use
5019         __extern_always_inline functions unconditionally, drop macros.
5021         * misc/sys/cdefs.h (__REDIRECT_LDBL, __REDIRECT_NTH_LDBL): New macros.
5022         * wcsmbs/bits/wchar2.h (__swprintf_alias, __vswprintf_alias): Use
5023         __REDIRECT_NTH_LDBL macro rather than __REDIRECT_NTH.
5025         * misc/sys/cdefs.h (__extern_always_inline): For GCC 4.3+
5026         add __artificial__ attribute.
5028 2007-10-02  Ulrich Drepper  <drepper@redhat.com>
5030         * string/strcoll_l.c (STRCOLL): Correct handling of switching from
5031         backward to forward direction.
5033         * string/strcoll_l.c (STRCOLL): Correct test for alloca use.
5035         [BZ #645]
5036         * locale/programs/ld-collate.c (collate_finish): Compare against last
5037         used section which is known to have rules defined.
5038         (collate_read): After order_start, correctly record order of sections
5039         and queue sections up.
5041 2007-10-01  Ulrich Drepper  <drepper@redhat.com>
5043         [BZ #5071]
5044         * malloc/malloc.c (mremap_chunk): Avoid resizing of new block has
5045         the same number of pages.
5046         Patch by Tomash Brechko <tomash.brechko@gmail.com>.
5048         * locale/programs/ld-collate.c (collate_read): After initial copy
5049         statement, continue in state 0.
5051         * include/stdio_ext.h (__fsetlocking): Define as macro.
5053 2007-09-30  Ulrich Drepper  <drepper@redhat.com>
5055         * locale/programs/ld-collate.c (collate_finish): Compare all bytes
5056         of section order.
5058         * po/pt_BR.po: Fix typo.
5060 2007-09-29  Ulrich Drepper  <drepper@redhat.com>
5062         * iconvdata/Makefile (modules): Add ISO8859-9E.
5063         (distribute): Add iso8859-9e.c.
5064         (gen-8bit-gap-modules): Add iso8859-9e.
5065         * iconvdata/iso8859-9e.c: New file.
5066         * iconvdata/gconv-modules: Add entries for ISO-8859-9E.
5067         * iconvdata/TESTS: Likewise.
5068         * iconvdata/tst-tables.sh: Likewise.
5070         * iconvdata/koi8-r.c (HAS_HOLES): Define to 0.
5072         * locale/iso-639.def: Add several new entries.
5074 2007-09-24  Jakub Jelinek  <jakub@redhat.com>
5076         * sysdeps/generic/ldsodefs.h (struct dl_scope_free_list): Store
5077         void * pointers instead of struct link_map **.
5078         (_dl_scope_free): Change argument type to void *.
5079         * include/link.h (struct link_map): Change type of l_reldeps
5080         to struct link_map_reldeps, move l_reldepsact into that
5081         struct too.
5082         * elf/dl-deps.c: Include atomic.h.
5083         (_dl_map_object_deps): Only change l->l_initfini when it is
5084         fully populated, use _dl_scope_free for freeing it.  Optimize
5085         removal of libs from reldeps by using l_reserved flag, when
5086         some removal is needed, allocate a new list instead of
5087         reallocating and free the old with _dl_scope_free.  Adjust
5088         for l_reldeps and l_reldepsact changes.
5089         * elf/dl-lookup.c (add_dependency): Likewise.  Reorganize to allow
5090         searching in l_initfini and l_reldeps without holding dl_load_lock.
5091         * elf/dl-fini.c (_dl_sort_fini): Adjust for l_reldeps and
5092         l_reldepsact changes.
5093         * elf/dl-close.c (_dl_close_worker): Likewise.
5094         * elf/dl-open.c (_dl_scope_free): Change argument type to void *.
5096 2007-09-28  Ulrich Drepper  <drepper@redhat.com>
5098         * iconvdata/Makefile (modules): Add KOI8-RU.
5099         (distribute): Add koi8-ru.c.
5100         (gen-8bit-gap-modules): Add koi8-ru.
5101         * iconvdata/koi8-ru.c: New file.
5102         * iconvdata/gconv-modules: Add entries for KOI8-RU.
5103         * iconvdata/TESTS: Likewise.
5104         * iconvdata/tst-tables.sh: Likewise.
5106         * iconvdata/koi8-r.c (HAS_HOLES): Define to 0.
5108 2007-09-26  Jakub Jelinek  <jakub@redhat.com>
5110         * misc/sys/cdefs.h (__warndecl, __errordecl): For GCC 4.3+ define
5111         with __warning__/__error__ attributes.
5112         (__warnattr): Define.
5113         * stdlib/bits/stdlib.h (__realpath_chk_warn, __ptsname_r_chk_warn,
5114         __mbstowcs_chk_warn, __wcstombs_chk_warn): New aliases with
5115         __warnattr.
5116         (realpath, ptsname_r, mbstowcs, wcstombs): Call __*_chk_warn instead
5117         of __*_chk if compile time detectable overflow is found.
5118         * libio/bits/stdio2.h (__fgets_chk_warn, __fread_chk_warn,
5119         __fgets_unlocked_chk_warn, __fread_unlocked_chk_warn): New aliases
5120         with __warnattr.
5121         (fgets, fread, fgets_unlocked, fread_unlocked): Call __*_chk_warn
5122         instead of __*_chk if compile time detectable overflow is found.
5123         (__gets_alias): Rename to...
5124         (__gets_warn): ... this.  Add __warnattr.
5125         (gets): Call __gets_warn instead of __gets_alias.
5126         * socket/bits/socket2.h (__recv_chk_warn, __recvfrom_chk_warn): New
5127         aliases with __warnattr.
5128         (recv, recvfrom): Call __*_chk_warn instead of __*_chk if compile
5129         time detectable overflow is found.
5130         * posix/bits/unistd.h (__read_chk_warn, __pread_chk_warn,
5131         __pread64_chk_warn, __readlink_chk_warn, __readlinkat_chk_warn,
5132         __getcwd_chk_warn, __confstr_chk_warn, __getgroups_chk_warn,
5133         __ttyname_r_chk_warn, __getlogin_r_chk_warn, __gethostname_chk_warn,
5134         __getdomainname_chk_warn): New aliases with __warnattr.
5135         (read, pread, pread64, readlink, readlinkat, getcwd, confstr,
5136         getgroups, ttyname_r, getlogin_r, gethostname, getdomainname): Call
5137         __*_chk_warn instead of __*_chk if compile time detectable overflow
5138         is found.
5139         (__getgroups_chk): Rename argument to __listlen from listlen.
5140         (__getwd_alias): Rename to...
5141         (__getwd_warn): ... this.  Add __warnattr.
5142         (getwd): Call __getwd_warn instead of __getwd_alias.
5143         * wcsmbs/bits/wchar2.h (__wmemcpy_chk_warn, __wmemmove_chk_warn,
5144         __wmempcpy_chk_warn, __wmemset_chk_warn, __wcsncpy_chk_warn,
5145         __wcpncpy_chk_warn, __fgetws_chk_warn, __fgetws_unlocked_chk_warn,
5146         __mbsrtowcs_chk_warn, __wcsrtombs_chk_warn, __mbsnrtowcs_chk_warn,
5147         __wcsnrtombs_chk_warn): New aliases with __warnattr.
5148         (wmemcpy, wmemmove, wmempcpy, wmemset, mbsrtowcs, wcsrtombs,
5149         mbsnrtowcs, wcsnrtombs): Call __*_chk_warn instead of __*_chk if
5150         compile time detectable overflow is found.
5151         (wcsncpy, wcpncpy): Likewise.  For constant __n fix check whether
5152         to use __*_chk or not.
5153         (fgetws, fgetws_unlocked): Divide __bos by sizeof (wchar_t), both
5154         in comparisons which function should be called and in __*_chk*
5155         arguments.  Call __*_chk_warn instead of __*_chk if compile time
5156         detectable overflow is found.
5157         (swprintf, vswprintf): Divide __bos by sizeof (wchar_t) in
5158         __*_chk argument.
5159         * debug/tst-chk1.c (do_test): Add a few more tests.
5161 2007-09-24  Ulrich Drepper  <drepper@redhat.com>
5163         [BZ #5058]
5164         * intl/gettextP.h (struct loaded_domain): Add conversions_lock member.
5165         * intl/loadmsgcat.c (_nl_load_domain): Initialize conversions_lock.
5166         (_nl_unload_domain): Finalize conversions_lock.
5167         * intl/dcigettext.c (_nl_find_msg): Take conversions_lock before
5168         handling table of known conversions.
5170 2007-09-24  Jakub Jelinek  <jakub@redhat.com>
5172         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Use
5173         close_not_cancel_no_status instead of close.
5175 2007-09-13  Aurelien Jarno  <aurelien@aurel32.net>
5177         [BZ #5028]
5178         * posix/regcomp.c (lookup_collation_sequence_value): Check that
5179         nrules != 0 for multibyte chars.
5181 2007-09-23  Ulrich Drepper  <drepper@redhat.com>
5183         * resolv/ns_print.c (ns_sprintrrf): Handle ns_t_a6 and ns_t_opt.
5184         Provide better error message in case the type is unknown.
5186         [BZ #4963]
5187         * wcsmbs/wcsnlen.c: Don't reference before checking the length.
5188         * string/stratcliff.c: Make usable to test wide char functions.
5189         * wcsmbs/wcsatcliff.c: New file.
5190         * wcsmbs/Makefiel (tests): Add wcsatcliff.
5192         [BZ #4972]
5193         * iconvdata/Makefile (modules): Add MAC-CENTRALEUROPE.
5194         (distribute): Add mac-centraleurope.c.
5195         (gen-8bit-gap-modules): Add mac-centraleurope.
5196         * iconvdata/mac-centraleurope.c: New file.
5197         * iconvdata/gconv-modules: Add entries for MAC-CENTRALEUROPE.
5198         * iconvdata/TESTS: Likewise.
5199         * iconvdata/tst-tables.sh: Likewise.
5201         [BZ #5043]
5202         * iconv/iconv_open.c (iconv_open): For large codeset names use malloc.
5204 2007-09-21  Ulrich Drepper  <drepper@redhat.com>
5206         * sysdeps/x86_64/cacheinfo.c (__x86_64_data_cache_size_half): Renamed
5207         from __x86_64_core_cache_size_half.
5208         (init_cacheinfo): Compute shared cache size for AMD processors with
5209         shared L3 correctly.
5210         * sysdeps/x86_64/memcpy.S: Adjust for __x86_64_data_cache_size_half
5211         name change.
5212         Patch in large parts by Evandro Menezes.
5214 2007-09-19  Ulrich Drepper  <drepper@redhat.com>
5216         * elf/dl-lookup.c (add_dependency): Handle failing memory
5217         allocation for dependency list.  Remove unnecessary check.
5219         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Avoid unnecessary
5220         open/close when determining source addresses.
5222         * crypt/Makefile (libcrypt-routines): Add sha256-crypt, sha256,
5223         sha512-crypt, and sha512.
5224         (tests): Add sha256test, sha256c-test, sha512test, and sha512c-test.
5225         (distribute): Add sha256.h and sha512.h.
5226         * crypt/crypt-entry.c (crypt): Recognize the new $5$ and $6$ prefixes
5227         and call the appropriate code.
5228         * crypt/sha256-crypt.c: New file.
5229         * crypt/sha256.c: New file.
5230         * crypt/sha256.h: New file.
5231         * crypt/sha256c-test.c: New file.
5232         * crypt/sha256test.c: New file.
5233         * crypt/sha512-crypt.c: New file.
5234         * crypt/sha512.c: New file.
5235         * crypt/sha512.h: New file.
5236         * crypt/sha512c-test.c: New file.
5237         * crypt/sha512test.c: New file.
5239 2007-09-19  Jakub Jelinek  <jakub@redhat.com>
5241         * misc/bits/syslog.h (syslog): Remove extraneous argument from
5242         the inline, pass __USE_FORTIFY_LEVEL - 1 as second argument to
5243         __syslog_chk.
5245 2007-09-18  Jakub Jelinek  <jakub@redhat.com>
5247         * locale/programs/charmap-dir.c (charmap_aliases): Use %ms instead of
5248         %as in fscanf format strings.
5250         * sysdeps/sparc/sparc32/elf/start.S: Remove cfi_* markup.
5251         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
5252         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__thread_start):
5253         Likewise.
5254         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__thread_start):
5255         Likewise.
5257         * sysdeps/generic/ldsodefs.h (DL_LOOKUP_GSCOPE_LOCK): New definition.
5258         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Or in
5259         DL_LOOKUP_GSCOPE_LOCK into flags after THREAD_GSCOPE_SET_FLAG ().
5260         * elf/dl-sym.c (do_sym): Likewise.
5261         * include/link.h (struct link_map): Add l_serial field.
5262         * elf/dl-object.c (_dl_new_object): Initialize l_serial.
5263         * elf/dl-lookup.c (add_dependency): Add flags argument.
5264         Remember map->l_serial, if DL_LOOKUP_GSCOPE_LOCK is among
5265         flags, use THREAD_GSCOPE_RESET_FLAG before and
5266         THREAD_GSCOPE_SET_FLAG after
5267         __rtld_lock_lock_recursive (GL(dl_load_lock)) to avoid deadlock.
5268         Don't dereference map until it has been found on some list.
5269         If map->l_serial changed, return -1.
5271 2007-09-17  Jakub Jelinek  <jakub@redhat.com>
5273         * include/stdio.h (__isoc99_fscanf, __isoc99_scanf,
5274         __isoc99_sscanf, __isoc99_vscanf): New prototypes.
5275         (__isoc99_vsscanf, __isoc99_vfscanf): New prototypes, add
5276         libc_hidden_proto.
5277         * include/wchar.h (__isoc99_fwscanf, __isoc99_wscanf,
5278         __isoc99_swscanf, __isoc99_vwscanf): New prototypes.
5279         (__isoc99_vswscanf, __isoc99_vfwscanf): New prototypes,
5280         add libc_hidden_proto.
5281         * libio/stdio.h (fscanf, scanf, sscanf, vfscanf, vscanf,
5282         vsscanf): Redirect to __isoc99_* if strict ISO C99 or POSIX
5283         conformance requested.
5284         * wcsmbs/wchar.h (fwscanf, wscanf, swscanf, vfwscanf, vwscanf,
5285         vswscanf): Redirect to __isoc99_* if strict ISO C99 or POSIX
5286         conformance requested.
5287         * libio/bits/stdio-ldbl.h (fscanf, scanf, sscanf, vfscanf, vscanf,
5288         vsscanf): Redirect to __nldbl___isoc99_* if strict ISO C99 or POSIX
5289         conformance requested.
5290         * wcsmbs/bits/wchar-ldbl.h (fwscanf, wscanf, swscanf, vfwscanf,
5291         vwscanf, vswscanf): Redirect to __nldbl___isoc99_* if strict
5292         ISO C99 or POSIX conformance requested.
5293         * stdio-common/Versions (libc): Export __isoc99_scanf@@GLIBC_2.7,
5294         __isoc99_vscanf@@GLIBC_2.7, __isoc99_fscanf@@GLIBC_2.7,
5295         __isoc99_vfscanf@@GLIBC_2.7, __isoc99_sscanf@@GLIBC_2.7
5296         and __isoc99_vsscanf@@GLIBC_2.7.
5297         * stdio-common/Makefile (routines): Add isoc99_scanf, isoc99_vscanf,
5298         isoc99_fscanf, isoc99_vfscanf, isoc99_sscanf and isoc99_vsscanf.
5299         (tests): Add scanf14.
5300         (CFLAGS-vfprintf.c, CFLAGS-fprintf.c, CFLAGS-printf.c,
5301         CFLAGS-vfwprintf.c, CFLAGS-vfscanf.c, CFLAGS-vfwscanf.c,
5302         CFLAGS-fscanf.c, CFLAGS-scanf.c, CFLAGS-isoc99_vfscanf.c,
5303         CFLAGS-isoc99_vscanf.c, CFLAGS-isoc99_fscanf.c,
5304         CFLAGS-isoc99_scanf.c): Add $(exceptions).
5305         (CFLAGS-scanf15.c): Add various -I paths to prevent the compiler
5306         from using internal headers.
5307         * wcsmbs/Versions (libc): Export __isoc99_wscanf@@GLIBC_2.7,
5308         __isoc99_vwscanf@@GLIBC_2.7, __isoc99_fwscanf@@GLIBC_2.7,
5309         __isoc99_vfwscanf@@GLIBC_2.7, __isoc99_swscanf@@GLIBC_2.7
5310         and __isoc99_vswscanf@@GLIBC_2.7.
5311         * wcsmbs/Makefile (routines): Add isoc99_wscanf, isoc99_vwscanf,
5312         isoc99_fwscanf, isoc99_vfwscanf, isoc99_swscanf and isoc99_vswscanf.
5313         (CFLAGS-isoc99_wscanf.c, CFLAGS-isoc99_fwscanf.c,
5314         CFLAGS-isoc99_vwscanf.c, CFLAGS-isoc99_vfwscanf.c): Add $(exceptions).
5315         (CPPFLAGS): Add -D_IO_MTSAFE_IO if needed.
5316         * stdio-common/isoc99_scanf.c: New file.
5317         * stdio-common/isoc99_vsscanf.c: New file.
5318         * stdio-common/isoc99_vscanf.c: New file.
5319         * stdio-common/isoc99_vfscanf.c: New file.
5320         * stdio-common/isoc99_fscanf.c: New file.
5321         * stdio-common/isoc99_sscanf.c: New file.
5322         * wcsmbs/isoc99_fwscanf.c: New file.
5323         * wcsmbs/isoc99_vswscanf.c: New file.
5324         * wcsmbs/isoc99_swscanf.c: New file.
5325         * wcsmbs/isoc99_wscanf.c: New file.
5326         * wcsmbs/isoc99_vwscanf.c: New file.
5327         * wcsmbs/isoc99_vfwscanf.c: New file.
5328         * libio/libio.h (_IO_FLAGS2_SCANF_STD): Define.
5329         * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): Also
5330         clear _IO_FLAGS2_SCANF_STD bit from _flags2.
5331         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Don't
5332         handle %as, %aS and %a[ if _IO_FLAGS2_SCANF_STD is set in _flags2.
5333         * stdio-common/scanf14.c: New test.
5334         * stdio-common/scanf15.c: New test.
5335         * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add
5336         isoc99_scanf, isoc99_fscanf, isoc99_sscanf,
5337         isoc99_vscanf, isoc99_vfscanf, isoc99_vsscanf,
5338         isoc99_wscanf, isoc99_fwscanf, isoc99_swscanf,
5339         isoc99_vwscanf, isoc99_vfwscanf and isoc99_vswscanf.
5340         * sysdeps/ieee754/ldbl-opt/Versions (libc): Export
5341         __nldbl___isoc99_scanf@@GLIBC_2.7,
5342         __nldbl___isoc99_fscanf@@GLIBC_2.7,
5343         __nldbl___isoc99_sscanf@@GLIBC_2.7,
5344         __nldbl___isoc99_vscanf@@GLIBC_2.7,
5345         __nldbl___isoc99_vfscanf@@GLIBC_2.7,
5346         __nldbl___isoc99_vsscanf@@GLIBC_2.7,
5347         __nldbl___isoc99_wscanf@@GLIBC_2.7,
5348         __nldbl___isoc99_fwscanf@@GLIBC_2.7,
5349         __nldbl___isoc99_swscanf@@GLIBC_2.7,
5350         __nldbl___isoc99_vwscanf@@GLIBC_2.7,
5351         __nldbl___isoc99_vfwscanf@@GLIBC_2.7
5352         and __nldbl___isoc99_vswscanf@@GLIBC_2.7.
5353         * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__isoc99_scanf,
5354         __isoc99_fscanf, __isoc99_sscanf, __isoc99_vscanf,
5355         __isoc99_vfscanf, __isoc99_vsscanf, __isoc99_wscanf,
5356         __isoc99_fwscanf, __isoc99_swscanf, __isoc99_vwscanf,
5357         __isoc99_vfwscanf, __isoc99_vswscanf): Add NLDBL_DECL.
5358         * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
5359         (__nldbl___isoc99_scanf, __nldbl___isoc99_fscanf,
5360         __nldbl___isoc99_sscanf, __nldbl___isoc99_vscanf,
5361         __nldbl___isoc99_vfscanf, __nldbl___isoc99_vsscanf,
5362         __nldbl___isoc99_wscanf, __nldbl___isoc99_fwscanf,
5363         __nldbl___isoc99_swscanf, __nldbl___isoc99_vwscanf,
5364         __nldbl___isoc99_vfwscanf, __nldbl___isoc99_vswscanf): New
5365         functions.
5366         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vfscanf.c: New file.
5367         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_swscanf.c: New file.
5368         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vwscanf.c: New file.
5369         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_wscanf.c: New file.
5370         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_scanf.c: New file.
5371         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_sscanf.c: New file.
5372         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vsscanf.c: New file.
5373         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_fwscanf.c: New file.
5374         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vfwscanf.c: New file.
5375         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vswscanf.c: New file.
5376         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vscanf.c: New file.
5377         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_fscanf.c: New file.
5379         * stdio-common/Makefile (tests): Add scanf13.
5380         (scanf13-ENV): New.
5381         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Handle
5382         m modifier followed by l.
5383         (STRING_ARG): Add width argument.
5384         (_IO_vfscanf_internal) <case L_('c')>: Handle %mc.
5385         <case L_('C')>: Handle %mlc and %mC.
5386         <case L_('s'), case L_('S'), case L_('[')>: Adjust STRING_ARG
5387         arguments.
5388         * stdio-common/scanf13.c: New test.
5390         * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): Clear
5391         the _IO_FLAGS2_FORTIFY bit from _flags2 rather than _flags.
5393 2007-09-18  Ulrich Drepper  <drepper@redhat.com>
5395         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Correct return value
5396         type and __THROW marker of splice, vmsplice, and tee.
5397         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
5398         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
5399         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
5400         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
5401         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
5402         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
5403         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
5404         * sysdeps/unix/sysv/linux/syscalls.list: Mark splice, vmsplice, and tee
5405         as cancellation points.
5407 2003-11-01  Daniel Jacobowitz  <dan@debian.org>
5409         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion): Don't
5410         parse more than three parts of the version number.
5412 2007-09-15  Ulrich Drepper  <drepper@redhat.com>
5414         * stdio-common/vfscanf.c (_IO_vfwscanf): Add support for 'm'
5415         modifier.  Patch by Jakub Jelinek.
5417 2007-08-26  Jakub Jelinek  <jakub@redhat.com>
5419         * sysdeps/unix/sysv/linux/i386/Makefile (sysdep_routines): Add
5420         call_fallocate in misc subdir.
5421         * sysdeps/unix/sysv/linux/i386/call_fallocate.S: New file.
5422         * sysdeps/unix/sysv/linux/i386/syscalls.list (fallocate64): Remove.
5423         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c: Use __call_fallocate
5424         instead of __fallocate64.
5425         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c: Likewise.
5427 2007-09-15  Jakub Jelinek  <jakub@redhat.com>
5429         * rt/Versions (librt): Export __mq_open_2@@GLIBC_2.7.
5430         * rt/Makefile (headers): Add bits/mqueue2.h.
5431         * rt/mqueue.h: Include bits/mqueue2.h if -D_FORTIFY_SOURCE=2,
5432         optimizing with GCC and __va_arg_pack_len is defined.
5433         * rt/bits/mqueue2.h: New file.
5434         * rt/mq_open.c (__mq_open): Renamed from mq_open.
5435         (mq_open): New strong_alias.
5436         (__mq_open_2): New function.
5437         * sysdeps/unix/sysv/linux/mq_open.c (__mq_open): Renamed from mq_open.
5438         (mq_open): New strong_alias.
5439         (__mq_open_2): New function.
5440         * debug/Versions (libc): Export __fortify_fail@@GLIBC_PRIVATE.
5441         * Versions.def (librt): Add GLIBC_2.7 version.
5442         * debug/fortify_fail.c (__fortify_fail): Add libc_hidden_def.
5443         * include/stdio.h (__fortify_fail): Add libc_hidden_proto.
5445         * misc/sys/cdefs.h (__errordecl, __va_arg_pack_len): Define.
5446         * io/fcntl.h: Include bits/fcntl2.h when __va_arg_pack_len
5447         is defined rather than when not C++.
5448         * io/bits/fcntl2.h (__open_alias, __open64_alias, __openat_alias,
5449         __openat64_alias): New redirects.
5450         (__open_too_many_args, __open_missing_mode, __open64_too_many_args,
5451         __open64_missing_mode, __openat_too_many_args, __openat_missing_mode,
5452         __openat64_too_many_args, __openat64_missing_mode): New __errordecls.
5453         (open, open64, openat, openat64): Rewrite as __extern_always_inline
5454         functions instead of function-like macros.
5456 2007-09-14  H.J. Lu  <hongjiu.lu@intel.com>
5458         * sysdeps/i386/i586/memcpy.S (__memcpy_chk): New definition.
5459         * sysdeps/i386/i586/mempcpy.S (__memcpy_chk): New definition.
5460         * sysdeps/i386/i586/memset.S (__memset_chk): New definition.
5462 2007-09-15  Mike Frysinger  <vapier@gentoo.org>
5464         * inet/inet_net.c: Reset digit to 0 for inputs starting with "0x".
5465         * inet/tst-network.c (tests): Add edge case tests for "0", "0x", "0x0".
5467 2007-09-14  Mike Frysinger  <vapier@gentoo.org>
5469         * inet/tst-network.c: Increment ERRORS for failing tests.
5471 2007-09-07  Jakub Jelinek  <jakub@redhat.com>
5473         * misc/sys/cdefs.h (__va_arg_pack): Define for GCC 4.3+.
5474         * misc/bits/syslog.h (syslog): When __va_arg_pack is defined,
5475         implement as __extern_always_inline function.
5476         (vsyslog): Define as __extern_always_inline function unconditionally.
5477         * libio/bits/stdio2.h (sprintf, snprintf, printf, fprintf):
5478         When __va_arg_pack is defined, implement as __extern_always_inline
5479         functions.
5480         (vsprintf, vsnprintf, vprintf, vfprintf): Define as
5481         __extern_always_inline functions unconditionally.
5482         * libio/bits/stdio.h (vprintf): Ifdef out the inline when
5483         bits/stdio2.h will be included.
5484         * wcsmbs/bits/wchar2.h (__swprintf_alias): New redirect.
5485         (swprintf, wprintf, fwprintf): When __va_arg_pack is defined,
5486         implement as __extern_always_inline functions.
5487         (vswprintf, vwprintf, vfwprintf): Define as
5488         __extern_always_inline functions unconditionally.
5489         * debug/tst-chk1.c (do_test): Enable remaining tests for C++.
5491 2007-09-03  Jakub Jelinek  <jakub@redhat.com>
5493         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline): Only
5494         define in C++ for GCC 4.3+, in C++ always use __gnu_inline__
5495         attribute.
5496         * include/features.h (__USE_EXTERN_INLINES): Define only when
5497         __extern_inline is defined.
5498         * stdlib/stdlib.h: Include bits/stdlib.h when __extern_always_inline
5499         is defined instead of when not __cplusplus.
5500         * misc/sys/syslog.h: Include bits/syslog.h when __extern_always_inline
5501         is defined instead of when not __cplusplus.
5502         * socket/sys/socket.h: Include bits/socket2.h when
5503         __extern_always_inline is defined instead of when not __cplusplus.
5504         * libio/stdio.h: Include bits/stdio2.h when __extern_always_inline
5505         is defined instead of when not __cplusplus.
5506         * posix/unistd.h: Include bits/unistd.h when __extern_always_inline
5507         is defined instead of when not __cplusplus.
5508         * string/string.h: Include bits/string3.h when __extern_always_inline
5509         is defined instead of when not __cplusplus.
5510         * wcsmbs/wchar.h: Include bits/wchar2.h when __extern_always_inline
5511         is defined instead of when not __cplusplus.
5512         (btowc, wctob): Don't guard the inlines with ifndef __cplusplus.
5513         * io/fcntl.h: Don't include bits/fcntl2.h if __extern_always_inline
5514         is not defined.
5515         * misc/bits/syslog-ldbl.h: Guard *_chk stuff with
5516         defined __extern_always_inline instead of !defined __cplusplus.
5517         * libio/bits/stdio-ldbl.h: Likewise.
5518         * wcsmbs/bits/wchar-ldbl.h: Likewise.
5519         * misc/bits/syslog.h (syslog): Don't define for C++.
5520         (vsyslog): Use __extern_always_inline function for C++ instead of
5521         a macro.
5522         * libio/bits/stdio.h (__STDIO_INLINE): Define to __extern_inline
5523         whenever that macro is defined.
5524         (vprintf): Don't provide the inline for C++.
5525         (fread_unlocked, fwrite_unlocked): Don't define the macros for C++.
5526         * libio/bits/stdio2.h (sprintf, snprintf, printf, fprintf): Don't
5527         define the macros for C++.
5528         (vsprintf, vsnprintf, vprintf, vfprintf): Define as
5529         __extern_always_inline functions for C++.
5530         * io/sys/stat.h (stat, lstat, fstat, fstatat, mknod, mknodat,
5531         stat64, lstat64, fstat64, fstatat64): Don't define if not
5532         __USE_EXTERN_INLINES.
5533         * wcsmbs/bits/wchar2.h: Fix #error message.
5534         (swprintf, wprintf, fwprintf): Don't define the macros for C++.
5535         (vswprintf, vwprintf, vfwprintf): Define using
5536         __extern_always_inline functions for C++.
5537         * string/bits/string3.h: Don't #undef macros if __cplusplus.
5538         (memcpy, memmove, mempcpy, memset, bcopy, bzero, strcpy, stpcpy,
5539         strncpy, strcat, strncat): Define as __extern_always_inline
5540         functions instead of macros for C++.
5541         * math/bits/cmathcalls.h: Guard __extern_inline routines with
5542         defined __extern_inline.
5543         * sysdeps/alpha/fpu/bits/mathinline.h (__MATH_INLINE): Define
5544         to __extern_inline whenever that macro is defined.
5545         * sysdeps/ia64/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5546         * sysdeps/i386/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5547         * sysdeps/i386/i486/bits/string.h (__STRING_INLINE): Likewise.
5548         * sysdeps/s390/bits/string.h (__STRING_INLINE): Likewise.
5549         * sysdeps/s390/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5550         * sysdeps/powerpc/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5551         * sysdeps/x86_64/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5552         * sysdeps/sparc/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
5553         * sysdeps/unix/sysv/linux/sys/sysmacros.h (gnu_dev_major,
5554         gnu_dev_minor, gnu_dev_makedev): Remove __extern_inline from
5555         prototypes.  Only provide __extern_inline routines if
5556         __USE_EXTERN_INLINES.
5557         * debug/Makefile: Add rules to build and run tst-{,lfs}chk{4,5,6}
5558         tests.
5559         * debug/tst-chk1.c (do_prepare, do_test): Allow compilation as C++.
5560         For now avoid some *printf tests in C++.  Skip all testing
5561         if __USE_FORTIFY_LEVEL is defined, but __extern_always_inline macro
5562         is not.
5563         * debug/tst-chk4.cc: New file.
5564         * debug/tst-chk5.cc: New file.
5565         * debug/tst-chk6.cc: New file.
5566         * debug/tst-lfschk4.cc: New file.
5567         * debug/tst-lfschk5.cc: New file.
5568         * debug/tst-lfschk6.cc: New file.
5569         * include/wchar.h (__vfwprintf_chk, __vswprintf_chk): Avoid
5570         prototypes in C++.
5571         * include/stdio.h (__sprintf_chk, __snprintf_chk, __vsprintf_chk,
5572         __vsnprintf_chk, __printf_chk, __fprintf_chk, __vprintf_chk,
5573         __vfprintf_chk, __fgets_unlocked_chk, __fgets_chk): Likewise.
5575 2007-09-13  Ulrich Drepper  <drepper@redhat.com>
5577         * po/cs.po: Update from translation team.
5579 2007-09-11  Roland McGrath  <roland@redhat.com>
5581         * posix/Makefile ($(objpfx)getconf.speclist): Make it empty if cross
5582         compiling.
5584 2007-09-07  Samuel Thibault  <samuel.thibault@ens-lyon.org>
5586         * sysdeps/mach/hurd/bits/ioctls.h (TAB3): New macro.
5588 2007-09-05  Roland McGrath  <roland@redhat.com>
5590         * manual/signal.texi (Signaling Another Process): Typo fix.
5591         From Karl Berry <karl@freefriends.org>.
5593 2007-08-29  Ulrich Drepper  <drepper@redhat.com>
5595         * sysdeps/unix/sysv/linux/check_pf.c (IFA_F_OPTIMISTIC): Define to
5596         zero if not defined.
5597         (make_request): Recognize optimistic addresses and treat them like
5598         deprecated addresses.
5599         Reported by Neil Horman <nhorman@redhat.com>.
5601 2007-08-28  Ulrich Drepper  <drepper@redhat.com>
5603         * nscd/connections.c (send_ro_fd): Also transfer file size.
5604         * nscd/nscd_helper.c (get_mapping): If nscd also transfers the
5605         file size don't call fstat.
5607         * nscd/nscd_helper.c (get_mapping): Avoid the pread call, just go
5608         ahead and map the file.  This should always be correct and we can
5609         catch problems later.
5611 2007-08-28  Jakub Jelinek  <jakub@redhat.com>
5613         * libio/bits/stdio2.h (__fread_chk, __fread_unlocked_chk): New
5614         prototypes.
5615         (__fread_alias, __fread_unlocked_alias): New aliases.
5616         (fread): New extern inline.
5617         (fread_unlocked): Likewise.  Undef macro before definition of
5618         the inline function.
5619         * debug/Makefile (routines): Add fread_chk and fread_u_chk.
5620         (CFLAGS-fread_chk.c, CFLAGS-fread_u_chk.c): Add.
5621         * debug/Versions (libc): Export __fread_chk@@GLIBC_2.7
5622         and __fread_unlocked_chk@@GLIBC_2.7.
5623         * debug/fread_chk.c: New file.
5624         * debug/fread_u_chk.c: New file.
5625         * debug/tst-chk1.c (do_test): Add fread and fread_unlocked tests.
5627 2007-08-27  Jakub Jelinek  <jakub@redhat.com>
5629         * sysdeps/unix/sysv/linux/syscalls.list
5630         (personality): Change caller to EXTRA.
5632 2007-08-25  Ulrich Drepper  <drepper@redhat.com>
5634         * iconvdata/iso-2022-kr.c (BODY): Fake initialization of array buf
5635         to keep gcc quiet.
5636         * iconvdata/iso-2022-cn.c (BODY): Likewise.
5638         * locale/programs/ld-collate.c (collate_output): Avoid warning if
5639         NDEBUG is defined.
5641         * Makerules: Use -p option with mkdir.
5643         * sunrpc/key_prot.c (xdr_unixcred): Work around gcc alias warning.
5644         * nis/nis_xdr.c (_xdr_nis_server): Likewise.
5645         (_xdr_directory_obj): Likewise.
5646         (xdr_entry_obj): Likewise.
5647         (xdr_group_obj): Likewise.
5648         (xdr_link_obj): Likewise.
5649         (xdr_table_obj): Likewise.
5650         (_xdr_nis_result): Likewise.
5651         (_xdr_ns_request): Likewise.
5652         (_xdr_ib_request): Likewise.
5653         (_xdr_nis_taglist): Likewise.
5654         (xdr_cback_data): Likewise.
5655         * nis/yp_xdr.c (xdr_ypmaplist): Likewise.
5656         (xdr_ypresp_maplist): Likewise.
5658         * stdio-common/Makefile: Avoid format string warning for tst-sprint.
5660         * posix/regex_internal.h: Prevent some declarations and definitions
5661         to be seen when used in tests.
5663         * posix/tst-rfc3484.c (__idna_to_unicode_lzlz): Initialize *OUTPUT.
5664         * posix/tst-rfc3484-2.c (__idna_to_unicode_lzlz): Likewise.
5666         * debug/Makefile: Disable format checking when compiling tst-chk?.c.
5668         * config.make.in (datarootdir): Add to shut up configure.
5670         * sysdeps/x86_64/cacheinfo.c (handle_amd): Fix computation of
5671         associativity for fully-associative caches.
5673         * sysdeps/x86_64/cacheinfo.c (handle_amd): Handle L3 cache
5674         requests.  Fill on more associativity values for L2.
5675         Patch mostly by Evandro Menezes.
5677 2007-08-24  Ulrich Drepper  <drepper@redhat.com>
5679         * sysdeps/unix/sysv/linux/x86_64/init-first.c
5680         (_libc_vdso_platform_setup): Avoid using exported variable by using
5681         alias.
5683         * resolv/arpa/nameser.h (NS_OPT_DNSSEC_OK): Define.
5685         * sysdeps/unix/sysv/linux/i386/syscalls.list: No reason to mark
5686         fallocate64 as EXTRA.  It is not referenced if the symbol isn't
5687         defined.
5689 2007-08-23  Ulrich Drepper  <drepper@redhat.com>
5691         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Correctly
5692         align stack for call if pltexit is to be used.
5694         [BZ #3924]
5695         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Correctly
5696         align for function call in case pltexit has to be called later.
5698         * sysdeps/i386/dl-trampoline.S (_dl_runtime_resolve): Avoid
5699         implicit atomic operation when storing function pointer.
5700         (_dl_runtime_profile): Likewise.
5702 2007-08-17  Jakub Jelinek  <jakub@redhat.com>
5704         * nis/nis_table.c (nis_list): Don't fail if __follow_path returned
5705         NIS_NOTFOUND.
5707 2007-08-21  Ulrich Drepper  <drepper@redhat.com>
5709         [BZ #4566]
5710         * string/strtok.c: Fix typo in comment.
5712         [BZ #4582]
5713         * debug/segfault.c: Fix typos in comments.
5715         [BZ #4588]
5716         * stdio-common/tempnam.c: Fix comment, it is not checked that
5717         TMPDIR points to a writable directory.
5719         [BZ #4726]
5720         * resolv/res_send.c (__libc_res_nsend): Initialize all of the
5721         memory allocated for the name server address.
5723         [BZ #4946]
5724         * nscd/connections.c (handle_request): Using sendfile always
5725         requires that mmap is used for the database.
5726         Patch by Petr Baudis <pasky@suse.cz>.
5728         [BZ #4905]
5729         * nscd/hstcache.c (cache_addhst): When reloading an entry which
5730         suddenly has two or more addresses, ignore it and remove the old
5731         entry.
5733         [BZ #4814]
5734         * resolv/res_hconf.c: Prepare for compiling outside libc.
5735         * nscd/res_hconf.c: New file.
5736         * nscd/Makefile (nscd-modules): Add res_hconf.  Add rules to build
5737         the new file.
5738         * nscd/gethstbynm2_r.c (NEED__RES_HCONF): Define.
5739         * nscd/gethstbyad_r.c (NEED__RES_HCONF): Likewise.
5741         * nscd/hstcache.c (cache_addhst): Minimal optimization.
5743         [BZ #4925]
5744         * debug/pcprofiledump.c: Turn on internationalization by calling
5745         setlocale.  Patch mostly by Benno Schulenberg.
5747         [BZ #4936]
5748         * iconv/gconv.c (__gconv): If flush was successful, clear rest of
5749         the state.
5750         * iconvdata/Makefile: Add rules to build and run bug-iconv5.
5751         * iconvdata/bug-iconv5.c: New file.
5753 2007-08-04  Carlos O'Donell  <carlos@systemhalted.org>
5755         [BZ #4896]
5756         * elf/elf.h: Define R_PARISC_PLABEL21L, R_PARISC_PLABEL14R,
5757         R_PARISC_GNU_VTENTRY, R_PARISC_GNU_VTINHERIT, R_PARISC_TLS_GD21L,
5758         R_PARISC_TLS_GD14R, R_PARISC_TLS_GDCALL, R_PARISC_TLS_LDM21L,
5759         R_PARISC_TLS_LDM14R, R_PARISC_TLS_LDMCALL, R_PARISC_TLS_LDO21L,
5760         R_PARISC_TLS_LDO14R, R_PARISC_TLS_DTPMOD32, R_PARISC_TLS_DTPMOD64,
5761         R_PARISC_TLS_DTPOFF32, R_PARISC_TLS_DTPOFF64, R_PARISC_TLS_LE21L,
5762         R_PARISC_TLS_LE14R, R_PARISC_TLS_IE21L, R_PARISC_TLS_IE14R,
5763         R_PARISC_TLS_TPREL32, R_PARISC_TLS_TPREL64.
5765 2007-08-21  Ulrich Drepper  <drepper@redhat.com>
5767         [BZ #4937]
5768         * elf/do-lookup.h (do_lookup_x): Minimal improvement in hash
5769         lookup loop.  Suggested by John Reiser.
5771 2007-08-21  Jakub Jelinek  <jakub@redhat.com>
5773         * sysdeps/unix/sysv/linux/alpha/sysdep.h: Include tls.h.
5775 2007-08-20  Ulrich Drepper  <drepper@redhat.com>
5777         * csu/libc-start.c: Don't handle VDSO_SETUP here.
5778         * sysdeps/unix/sysv/linux/init-first.c: Handle it here instead.
5779         * sysdeps/unix/sysv/linux/x86_64/libc-start.c: Renamed to...
5780         * sysdeps/unix/sysv/linux/x86_64/init-first.c: ...this.  New file.
5781         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Move VDSO_SETUP code
5782         to...
5783         * sysdeps/unix/sysv/linux/x86_64/init-first.c: ...here.  New file.
5785 2007-08-18  Ulrich Drepper  <drepper@redhat.com>
5787         * po/nl.po: Update from translation team.
5789 2007-08-16  Andreas Jaeger  <aj@suse.de>
5791         * locale/localeinfo.h: Make _nl_category_name_idxs extern.
5792         Reported by Peter Festner <peter.festner@ewetel.net>.
5794 2007-08-17  Jakub Jelinek  <jakub@redhat.com>
5796         * login/tst-grantpt.c (test_einval): Add 3rd argument to open.
5798 2007-08-16  Jakub Jelinek  <jakub@redhat.com>
5800         * elf/Makefile ($(objpfx)ld.so): Use readelf -s and awk instead of nm -u
5801         to check for undefined symbols.
5803         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone):
5804         If the syscall fails, set errno to the actual returned error number
5805         rather than EINVAL.
5806         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__clone): If
5807         arguments are incorrect, set errno to EINVAL, if the syscall
5808         fails, set errno to the actual returned error number.
5810         * stdlib/bits/stdlib-ldbl.h (__strtold_internal): Remove.
5811         * wcsmbs/bits/wchar-ldbl.h (__wcstold_internal): Remove.
5813         * sysdeps/sparc/sparc32/sparcv9b/memcpy.S: Moved to...
5814         * sysdeps/sparc/sparc32/sparcv9/sparcv9b/memcpy.S: ... here.  New
5815         file.
5816         (ASI_PNF, ASI_BLK_P): Don't define.
5817         * sysdeps/sparc/sparc32/sparcv9v/memcpy.S: Moved to...
5818         * sysdeps/sparc/sparc32/sparcv9/sparcv9v/memcpy.S: ... here.  New
5819         file.
5820         * sysdeps/sparc/sparc32/sparcv9v/memset.S: Moved to...
5821         * sysdeps/sparc/sparc32/sparcv9/sparcv9v/memset.S: ... here.  New
5822         file.
5824 2007-08-15  Jakub Jelinek  <jakub@redhat.com>
5826         * sysdeps/sparc/fpu/fraiseexcpt.c (__feraiseexcept): Fix raising
5827         FE_UNDERFLOW on Niagara CPUs.
5829         * sysdeps/sparc/fpu/feholdexcpt.c (feholdexcept): Clear all
5830         exceptions.
5832 2007-08-14  Jakub Jelinek  <jakub@redhat.com>
5834         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_runtime_setup): No
5835         need to check GLRO(dl_hwcap) & HWCAP_SPARC_FLUSH on sparcv9.
5836         (sparc_fixup_plt): Add do_flush argument instead of figuring whether
5837         flush should be used or not inside of the function.
5838         (elf_machine_fixup_plt, elf_machine_rela): Adjust caller.
5840         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone,
5841         __thread_start): Use HIDDEN_JUMPTARGET.
5842         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__clone,
5843         __thread_start): Likewise.
5844         * sysdeps/unix/sysv/linux/sparc/sysdep.h (JUMPTARGET): Define.
5846         * sysdeps/ieee754/ldbl-64-128/strtold_l.c (__STRTOF): Declare.
5847         Add libc_hidden_proto.
5848         (STRTOF): Add libc_hidden_proto.
5849         (___new_strtold_l, ___new_wcstold_l): New weak aliases.
5850         (strtold_l, wcstold_l): Use them as second argument for
5851         long_double_symbol.
5853 2007-08-14  Ulrich Drepper  <drepper@redhat.com>
5855         * elf/dl-misc.c: Undo last change.  The kernel won't allow it.
5857 2007-08-13  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
5859         * stdlib/strtold_l.c: Include wchar.h if needed.  Add libc_hidden_def.
5861 2007-08-14  Ulrich Drepper  <drepper@redhat.com>
5863         * po/bg.po: New file.  From the translation team.
5865 2007-08-13  Jakub Jelinek  <jakub@redhat.com>
5867         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PSELECT,
5868         __ASSUME_PPOLL, __ASSUME_ATFCTS, __ASSUME_SET_ROBUST_LIST,
5869         __ASSUME_UTIMENSAT, __ASSUME_FALLOCATE): Update per-arch conditions
5870         when each feature was introduced.
5872         * sysdeps/unix/sysv/linux/dl-vdso.c: Don't include dl-hash.h.
5873         * sysdeps/unix/sysv/linux/dl-vdso.h: Don't include dl-hash.h if NDEBUG.
5874         (CHECK_HASH): New macro.
5875         (PREPARE_VERSION): Use it.
5877         * sysdeps/unix/sysv/linux/pselect.c (__generic_pselect): Only provide
5878         prototype if not __ASSUME_PSELECT.
5879         * sysdeps/unix/sysv/linux/ppoll.c (__generic_ppoll): Only provide
5880         prototype if not __ASSUME_PPOLL.
5882         * sysdeps/unix/sysv/linux/dl-osinfo.h (ROUND): #undef after use.
5884         * sysdeps/unix/clock_settime.c (freq, __pthread_clock_settime,
5885         hp_timing_settime): Don't define or declare if HANDLED_CPUTIME
5886         is defined.
5888 2007-08-13  Ulrich Drepper  <drepper@redhat.com>
5890         * sysdeps/unix/sysv/linux/x86_64/libc-start.c
5891         (_libc_vdso_platform_setup): If vDSO is not available point
5892         __vdso_gettimeofday to the vsyscall.
5893         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S [SHARED]: Use
5894         __vdso_gettimeofday instead of vsyscall.
5896 2007-08-13  Jakub Jelinek  <jakub@redhat.com>
5898         * nscd/servicescache.c: Include kernel-features.h.
5899         * nscd/gai.c: Likewise.
5900         * sysdeps/unix/sysv/linux/statfs64.c: Likewise.
5901         * sysdeps/unix/sysv/linux/fstatfs64.c: Likewise.
5902         * sysdeps/unix/sysv/linux/fxstatat.c: Likewise.
5903         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S: Likewise.
5904         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: Likewise.
5905         * sysdeps/unix/sysv/linux/xstatconv.c: Likewise.
5906         * sysdeps/unix/sysv/linux/if_index.c: Likewise.
5907         * sysdeps/unix/sysv/linux/sparc/sparc64/xstat.c: Likewise.
5908         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
5910 2007-08-12  Ulrich Drepper  <drepper@redhat.com>
5912         * elf/dl-dst.h: No need for _dl_dst_count, _dl_dst_substitute,
5913         and _dl_get_origin defines anymore.
5915         * sysdeps/unix/sysv/linux/clock_gettime.c (maybe_syscall_gettime_cpu):
5916         Build fix for systems which might lack POSIX timer support.
5918         * sysdeps/unix/sysv/linux/x86_64/libc-start.c
5919         (_libc_vdso_platform_setup): Mangle function pointers before storing
5920         them.
5921         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INLINE_VSYSCALL):
5922         Demangle vdso pointer before use.
5923         (INTERNAL_VSYSCALL): Likewise.
5925         * elf/cache.c (primes): Mark as const.
5926         Noted by Roland McGrath.
5928 2007-08-01  Andreas Jaeger  <aj@suse.de>
5929             Jakub Jelinek  <jakub@redhat.com>
5931         * elf/ldconfig.c (opt_ignore_aux_cache): Add new option.
5932         (options): Add option.
5933         (parse_opt): Handle option.
5934         (manual_link): Adjust process_file caller.  Call implicit_soname.
5935         (search_dir): Formatting.  Use and populate auxiliary cache.
5936         (main): Load and save auxiliary cache.
5937         * elf/readlib.c (process_file): Add stat_buf argument.  Pass struct
5938         stat64 from fstat64 to caller.
5939         (implicit_soname): New function.
5940         * elf/readelflib.c (process_elf_file): If DT_SONAME is not present,
5941         leave *soname as NULL.
5942         * elf/cache.c: Include libgen.h.
5943         (print_entry, print_cache, compare, save_cache, add_to_cache):
5944         Formatting and cleanups.
5945         (aux_cache_entry_id, aux_cache_entry, aux_cache_file_entry,
5946         aux_cache_file): New structures.
5947         (AUX_CACHEMAGIC): Define.
5948         (primes): New array.
5949         (aux_hash_size, aux_hash): New variables.
5950         (aux_cache_entry_id_hash, nextprime, init_aux_cache,
5951         search_aux_cache, insert_to_aux_cache, add_to_aux_cache,
5952         load_aux_cache, save_aux_cache): New functions.
5953         * sysdeps/generic/ldconfig.h (_PATH_LDCONFIG_AUX_CACHE): Define.
5954         (init_aux_cache, search_aux_cache, add_to_aux_cache,
5955         load_aux_cache, save_aux_cache, implicit_soname): New prototypes.
5956         (process_file): Adjust prototype.
5958 2007-08-12  Jakub Jelinek  <jakub@redhat.com>
5960         * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h: Include stddef.h
5961         with __need_size_t.
5963 2007-08-12  Ulrich Drepper  <drepper@redhat.com>
5965         * sysdeps/unix/sysv/linux/dl-vdso.c (_dl_vdso_vsym): Expect
5966         r_found_version structure as second parameter.
5967         * sysdeps/unix/sysv/linux/dl-vdso.h (PREPARE_VERSION): Define.
5968         (_dl_vdso_vsym): Change type of second parameter accordingly.
5969         * sysdeps/unix/sysv/linux/x86-64/libc-start.c
5970         (_libc_vdso_platform_setup): Adjust.
5971         * sysdeps/unix/sysv/linux/powerpc/libc-start.c
5972         (_libc_vdso_platform_setup): Likewise.
5974         * sysdeps/unix/sysv/linux/powerpc/dl-vdso.c: Move to...
5975         * sysdeps/unix/sysv/linux/dl-vdso.c: ...here.
5976         * sysdeps/unix/sysv/linux/powerpc/dl-vdso.h: Move to...
5977         * sysdeps/unix/sysv/linux/dl-vdso.h: ...here.
5978         * csu/libc-start.c: Pretty printing.
5979         Use VDSO_SETUP if defined.
5980         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Define VDSO_SETUP
5981         and let generic code call into _libc_vdso_platform_setup.
5982         * sysdeps/unix/sysv/linux/x86_64/libc-start.c: New file.
5983         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: New file.
5984         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Pretty printing.
5985         Define INLINE_VSYSCALL and INTERNAL_VSYSCALL.
5986         * sysdeps/unix/sysv/linux/x86_64/Versions: Export __vdso_clock_gettime
5987         for GLIBC_PRIVATE.
5988         * sysdeps/unix/sysv/linux/x86_64/Makefile [subdir=elf]
5989         (sysdep_rountines): Add dl-vdso.
5991         * sysdeps/unix/sysv/linux/powerpc/Makefile: Use sysdep_routines instead
5992         of routines.
5994         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Add
5995         attribute_hidden to __vdso_gettimeofday prototype.
5997 2007-08-12  Roland McGrath  <roland@redhat.com>
5999         * manual/stdio.texi (Variable Arguments Output): Fix xref to gcc manual.
6000         From: Karl Berry <karl@freefriends.org>.
6002 2007-08-11  Ulrich Drepper  <drepper@redhat.com>
6004         * elf/dl-misc.c (_dl_sysdep_read_whole_file): We really don't need
6005         an atime update for the files we read.
6007 2007-08-10  Ulrich Drepper  <drepper@redhat.com>
6009         * shadow/lckpwdf.c (__lckpwdf): Use O_CLOEXEC if possible.
6011         * nscd/connections.c: Use O_CLOEXEC if possible.  Use mkostemp
6012         instead of mkstemp.
6014         * misc/Makefile (routines): Add mkostemp and mkostemp64.
6015         * misc/Versions: Export mkostemp and mkostemp64 for GLIBC_2.7.
6016         * misc/mkostemp.c: New file.
6017         * misc/mkostemp64.c: New file.
6018         * stdlib/stdlib.h: Declare the new functions.
6019         * sysdeps/posix/tempname.c: Add new parameter which is added to
6020         the flags for open.  Remove __GT_BIGFILE handling.
6021         * stdio-common/tempname.c: Likewise.
6022         * include/stdio.h: Adjust __gen_tempname prototype.
6023         Renumber __GT_* constants.
6024         * libio/oldtmpfile.c: Adjust for __gen_tempname interface change.
6025         * misc/mkdtemp.c: Likewise.
6026         * misc/mkstemp.c: Likewise.
6027         * misc/mkstemp64.c: Likewise.
6028         * misc/mktemp.c: Likewise.
6029         * stdio-common/tempnam.c: Likewise.
6030         * stdio-common/tmpfile.c: Likewise.
6031         * stdio-common/tmpfile64.c: Likewise.
6032         * stdio-common/tmpnam.c: Likewise.
6033         * stdio-common/tmpnam_r.c: Likewise.
6035 2007-08-10  Roland McGrath  <roland@frob.com>
6037         * sysdeps/mach/hurd/bits/ioctls.h (NLDLY, TABDLY, BSDLY, VTDLY):
6038         New macros.
6039         (NLDELAY, CRDELAY, TBDELAY, BSDELAY, VTDELAY): Define to those.
6040         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
6042 2007-08-10  Ulrich Drepper  <drepper@redhat.com>
6044         * nss/nss_files/files-XXX.c (internal_setent): Use O_CLOEXEC if
6045         possible.
6046         * nss/nss_files/files-alias.c (internal_setent): Likewise.
6047         * nss/Makefile (libnss_files-routines): Add files-have_o_cloexec.
6048         * nss/nss_files/files-have_o_cloexec.c: New file.
6050         * sysdeps/unix/sysv/linux/shm_open.c (shm_open): Use O_CLOEXEC if
6051         available.
6053 2007-08-10  Jakub Jelinek  <jakub@redhat.com>
6055         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c (___new_strtold_l,
6056         ___new_wcstold_l): New weak aliases.
6057         (strtold_l, wcstold_l): Use them as second argument for
6058         long_double_symbol.
6060 2007-08-09  Ulrich Drepper  <drepper@redhat.com>
6062         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Use correct
6063         register in test for error.
6065         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_CLOEXEC): Define.
6066         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_CLOEXEC): Likewise.
6068         * po/sv.po: Update from translation team.
6070 2007-08-06  Roland McGrath  <roland@redhat.com>
6072         * include/stdlib.h: Add libc_hidden_proto for strto*, __strto*_l.
6073         Remove __strto*_l inlines.
6074         * include/wchar.h: Add libc_hidden_proto for wcsto*, __wcsto*_l.
6075         * stdlib/strtod.c: Add libc_hidden_def.
6076         * stdlib/strtod_l.c: Likewise.
6077         * stdlib/strtold.c [__LONG_DOUBLE_MATH_OPTIONAL]: Add libc_hidden_proto
6078         for __new_strtold and __new_wcstold.
6079         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Add libc_hidden_proto for
6080         __STRTOF, STRTOF.
6081         * stdlib/strtol.c: Add libc_hidden_def.
6082         * stdlib/strtol_l.c: Likewise.
6083         * sysdeps/wordsize-64/strtol.c: Add libc_hidden_ver for strtoll and
6084         strtoq.
6086         * scripts/data/localplt-powerpc-linux-gnu.data: New file.
6088         * scripts/data/localplt-x86_64-linux-gnu.data: File renamed to ...
6089         * scripts/data/localplt-generic.data: ... here.
6090         * elf/Makefile (check-data): Get generic file if no other.
6091         ($(objpfx)check-localplt.out): Make target unconditional.
6093         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion):
6094         Use ElfW(Nhdr).
6096 2007-08-05  Ulrich Drepper  <drepper@redhat.com>
6098         * po/zh_CN.po: Updated translation from translation team.
6100 2007-08-05  Jakub Jelinek  <jakub@redhat.com>
6102         * sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S (__socket):
6103         Don't use CGOTSETUP and CGOTRESTORE macros.
6105 2007-08-04  Roland McGrath  <roland@redhat.com>
6107         * posix/Makefile ($(objpfx)getconf.speclist): Fix typo.
6109 2007-08-04  Jakub Jelinek  <jakub@redhat.com>
6111         * io/bits/fcntl2.h (open, open64, openat, openat64): Add
6112         __extension__ around the whole statement expression.
6114 2007-08-04  Ulrich Drepper  <drepper@redhat.com>
6116         * sysdeps/unix/opendir.c (__alloc_dir): Correct order of DIR
6117         elements during initialization.
6119         * po/pl.po: Updated translation from translation team.
6120         * po/tr.po: Likewise.
6121         * po/nl.po: Likewise.
6123 2007-08-03  Ulrich Drepper  <drepper@redhat.com>
6125         * rt/aio.h: Add __nonnull attributes.
6127 2007-08-03  Jakub Jelinek  <jakub@redhat.com>
6129         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Properly handle -0.
6130         * stdlib/Makefile (tests): Add tst-strtod5.
6131         (tst-strtod5-ENV): New.
6132         * stdlib/tst-strtod5.c: New file.
6134         * intl/dcigettext.c (_nl_find_msg): Free encoding if __gconv_open
6135         failed.
6136         * intl/finddomain.c (_nl_find_domain): Free normalized_codeset
6137         on failure.
6139         * elf/dl-load.c (decompose_rpath): Free copy if result couldn't be
6140         allocated.
6142 2007-08-03  Jakub Jelinek  <jakub@redhat.com>
6144         * rt/mqueue.h (mq_timedreceive, mq_timedsend): Fix nonnull argument
6145         numbers.
6147 2007-08-02  Ulrich Drepper  <drepper@redhat.com>
6149         * io/Makefile (aux): Add have_o_cloexec.
6150         * include/fcntl.h: Declare __have_o_cloexec.
6151         * io/have_o_cloexec.c: New file.
6152         * sysdeps/unix/opendir.c (__opendir): Use O_CLOEXEC is available.
6153         (__alloc_dir): If O_CLOEXEC has been used, don't duplicate the
6154         fcntl call if not necessary.
6155         * login/utmp_file.c (setutent_file): Use __have_o_cloexec instead
6156         of local variable.
6158         * sysdeps/unix/opendir.c (__alloc_dir): Don't initialize ->data.
6159         Avoid memset, add explicit initialization.
6160         * sysdeps/unix/dirstream.h (struct __dirstream): Move data elemtn
6161         to the end and change into zero-sized array.
6162         Move lock member to fill a hole on 64-bit platforms.
6164         * stdlib/stdlib.h: Remove __strto*_internal prototypes and strto*
6165         inline functions.
6166         * include/stdlib.h: Add __strto*_internal prototypes here.
6167         * wcsmbs/wchar.h: Remove __wcsto*_internal prototypes and wcsto*
6168         inline functions.
6169         * include/wchar.h: Add __wcsto*_internal prototypes.
6170         * sysdeps/generic/inttypes.h: No need to protect the declaration
6171         of the __strto*_internal and __wcsto*_internal members here.
6173         * rt/mqueue.h: Change const to __const and add nonnull attributes.
6175 2007-08-02  Roland McGrath  <roland@redhat.com>
6177         * posix/Makefile ($(inst_libexecdir)/getconf): Make hard links to
6178         $(inst_bindir)/getconf if possible.
6180         * posix/Makefile ($(objpfx)getconf.speclist): New target.
6181         (generated): Add it.
6182         ($(inst_libexecdir)/getconf): Use it.
6184 2007-08-01  Ulrich Drepper  <drepper@redhat.com>
6186         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Using
6187         /proc is faster and sufficient.  /sys is still needed for
6188         __get_nprocs_conf.
6190 2007-08-01  Jakub Jelinek  <jakub@redhat.com>
6192         * sysdeps/unix/sysv/linux/i386/syscalls.list (fallocate): Add fallocate
6193         syscall as __fallocate64.
6194         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c: New file.
6195         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c: New file.
6197 2007-07-30  Jakub Jelinek  <jakub@redhat.com>
6199         * stdlib/tst-strtod2.c (do_test): Use %tu in fmt string for ptrdiff_t
6200         value.
6202         * stdio-common/tst-fmemopen2.c (do_test): Avoid fmt string warning
6203         if off_t is different rank from size_t.
6205         * sysdeps/generic/unwind-dw2.c (extract_cie_info, execute_cfa_program,
6206         uw_frame_state_for): Avoid type punning warnings.
6207         * sysdeps/generic/unwind-dw2-fde-glibc.c
6208         (_Unwind_IteratePhdrCallback): Likewise.
6209         * sysdeps/generic/unwind-dw2-fde.c (_Unwind_Find_FDE): Likewise.
6210         (binary_search_single_encoding_fdes, binary_search_mixed_encoding_fdes,
6211         get_cie_encoding, linear_search_fdes): Don't mix char and unsigned char
6212         pointers.
6214 2007-07-31  Ulrich Drepper  <drepper@redhat.com>
6216         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs_conf): Count
6217         total processors using sysfs.
6218         (__get_nprocs): Use sysfs to determine which processors are online.
6220 2007-07-31  Jakub Jelinek  <jakub@redhat.com>
6222         * sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate): Fix
6223         syscall arguments count.
6225         * stdio-common/tfformat.c (sprint_doubles): Add 12 new tests.
6227 2007-07-30  Roland McGrath  <roland@redhat.com>
6229         * manual/libc.texinfo: Update copyrights, formatting magic, and
6230         @dircategory.  From Karl Berry <karl@freefriends.org>.
6232 2007-07-29  Ulrich Drepper  <drepper@redhat.com>
6234         [BZ #4860]
6235         * io/Makefile (headers): Add bits/fcntl2.h.
6237         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_ZERO_S): Optimize
6238         using gcc builtin.
6239         (__CPU_EQUAL_S): Likewise.
6241         * posix/Makefile (routines): Add sched_cpualloc and sched_cpufree.
6242         (tests): Add tst-cpuset.
6243         * posix/sched_cpualloc.c: New file.
6244         * posix/sched_cpufree.c: New file.
6245         * posix/tst-cpuset.c: New file.
6246         * posix/Versions: Export __sched_cpualloc and __sched_cpufree for
6247         GLIBC_2.7.
6248         * sysdeps/unix/sysv/linux/bits/sched.h: Define __CPU_*_S macros.
6249         * posix/sched.h: Define old CPU_* macros in temers of __CPU_*_S
6250         macros.  Define CPU_*_S macros.
6252 2007-07-28  Ulrich Drepper  <drepper@redhat.com>
6254         * posix/getconf.c (vars): Add missing _SC_LEVEL4_CACHE_LINESIZE
6255         entry.
6257         [BZ #4858]
6258         * stdio-common/printf_fp.c (___printf_fp): Fix special case of
6259         #.0g and value rounded to 1.0.
6260         * stdio-common/tfformat.c (sprint_doubles): Add two new tests.
6262 2007-07-26  Jakub Jelinek  <jakub@redhat.com>
6264         * locale/programs/ld-monetary.c (monetary_finish): Avoid range check
6265         for int_frac_digits and frac_digits.
6267         * login/logout.c (logout): Avoid aliasing violation.
6268         * login/logwtmp.c (logwtmp): Likewise.
6270         * libio/genops.c (_IO_un_link): Avoid aliasing violation.
6272         * nscd/selinux.c (preserve_capabilities): Initialize new_caps
6273         to avoid warning.
6274         * iconv/gconv_open.c (__gconv_open): Initialize ptr to avoid
6275         warning.
6276         * nis/nis_subr.c (nis_getnames): Initialize saveptr to avoid
6277         warning.
6278         * resolv/inet_ntop.c (inet_ntop6): Initialize best.len and cur.len
6279         to avoid warnings.
6281         * nss/nsswitch.c (__nss_lookup_function): Don't cast &ni->known to
6282         void **.
6283         * nss/nsswitch.h (service_user): Use void * type for KNOWN field.
6285         * nss/nss_files/files-hosts.c (LINE_PARSER): Cast host_addr to
6286         char * to avoid warning.
6287         * nis/nss_nis/nis-hosts.c (LINE_PARSER): Likewise.
6289         * timezone/Makefile (CFLAGS-zdump.c): Add -fwrapv.
6291         * locale/programs/ld-ctype.c (ctype_finish, set_class_defaults,
6292         allocate_arrays): Cast second argument to charmap_find_symbol
6293         to char * to avoid warnings.
6295         * locale/programs/repertoire.c (repertoire_new_char): Change
6296         from_nr, to_nr and cnt to unsigned long, adjust printf format
6297         string.
6299         * locale/programs/ld-collate.c (insert_value, handle_ellipsis):
6300         Cast second argument to new_element to char * to avoid warnings.
6302         * locale/weightwc.h (findidx): Cast &extra[-i] to const int32_t *.
6304         * intl/gettextP.h (struct loaded_domain): Change plural to const
6305         struct expression *.
6306         * intl/plural-eval.c (plural_eval): Change first argument to
6307         const struct expression *.
6308         * intl/plural-exp.c (EXTRACT_PLURAL_EXPRESSION): Change first
6309         argument to const struct expression **.
6310         * intl/plural-exp.h (EXTRACT_PLURAL_EXPRESSION, plural_eval): Adjust
6311         prototypes.
6312         * intl/loadmsgcat (_nl_unload_domain): Cast away const
6313         in call to __gettext_free_exp.
6315         * posix/fnmatch.c (fnmatch): Rearrange code to avoid maybe
6316         unitialized wstring/wpattern var warnings.
6318         * posix/runtests.c (struct a_test): Make data field const char *.
6320         * stdio-common/tst-sprintf2.c (main): Don't declere u, v and buf
6321         vars if not LDBL_MANT_DIG >= 106.
6323         * stdio-common/Makefile (CFLAGS-vfwprintf.c): Add -Wno-unitialized.
6325         * stdio-common/vfprintf.c (vfprintf): Cast first arugment to
6326         __find_specmb to avoid warning.
6328         * rt/tst-mqueue1.c (do_one_test): Add casts to avoid warnings.
6330         * debug/test-strcpy_chk.c (do_tests, do_random_tests): Add casts
6331         to avoid warnings.
6333         * sysdeps/ieee754/ldbl-96/s_roundl.c (huge): Add L suffix to
6334         initializer.
6336         * sysdeps/unix/clock_gettime.c (clock_gettime): Only define
6337         tv var when it will be actually used.
6339         * sunrpc/rpc_cmsg.c (xdr_callmsg): Cast IXDR_PUT_* to void
6340         to avoid warnings.
6342         * iconvdata/gbk.c (BODY): Make buf and cp char instead of unsigned
6343         char array resp. pointer.
6344         * iconvdata/iso-2022-kr.c (BODY): Make buf unsigned char instead of
6345         char array.
6346         * iconvdata/cns11643.h (cns11643_to_ucs4): Change first argument
6347         to const unsigned char **.
6348         (ucs4_to_cns11643): Change second argument to unsigned char *.
6349         * iconvdata/euc-tw.c (BODY): Change endp type to
6350         const unsigned char *.
6351         * iconvdata/iso-ir-165.h (ucs4_to_isoir165): Change second argument
6352         to unsigned char *.
6353         * iconvdata/ibm1008_420.c (LOOP_NEED_FLAGS): Don't define.
6354         * iconvdata/iso-2022-cn.c (BODY): Change buf to unsigned char array.
6355         * iconvdata/iso-2022-cn-ext.c (BODY): Change buf, tmpbuf, tmp
6356         types to unsigned char pointers/arrays instead of char.
6357         * iconvdata/jis0201.h (ucs4_to_jisx0201): Change second argument
6358         to unsigned char *.
6359         * iconvdata/jis0208.h (ucs4_to_jisx0208): Likewise.
6360         * iconvdata/jis0212.h: Include assert.h.
6361         (ucs4_to_jisx0212): Change second argument to unsigned char *.
6362         assert that if cp[0] is not '\0', cp[1] is not '\0' either instead
6363         of trying to handle that.
6364         * iconvdata/euc-kr.c (euckr_from_ucs4): Initialize also cp[1] to
6365         shut up a warning.
6366         * iconvdata/euc-jp-ms.c (from_ucs4_lat1, from_ucs4_greek,
6367         from_ucs4_cjk, from_ucs4_cjkcpt, from_ucs4_extra): Change type to
6368         two dimensional const unsigned char arrays.
6369         (BODY): Cast "" to (const unsigned char *) for assignment to cp.
6370         Initialize endp to inptr to shut up a warning.
6372 2007-07-20  Jakub Jelinek  <jakub@redhat.com>
6374         [BZ #4772]
6375         * time/strptime_l.c (__strptime_internal): Silently ignore
6376         strftime modifiers and field width in recursive calls.
6378         * include/time.h (enum ptime_locale_status): Remove.
6379         (__strptime_internal): Remove decided and era_cnt arguments,
6380         add statep argument.
6381         * time/strptime_l.c (__strptime_internal): Remove decided
6382         and era_cnt arguments, add statep argument.  Don't recompute
6383         any fields in recursive calls, only update caller's tm
6384         and state, if recursive call fails, don't change tm nor
6385         any state.
6386         (get_alt_number): Adjust.
6387         (recursive): Adjust caller.
6388         (strptime): Likewise.
6389         * time/strptime.c (strptime): Likewise.
6391 2007-07-19  Jakub Jelinek  <jakub@redhat.com>
6393         * iconv/gconv_int.h (__GCONV_NULCONV): New internal only error code.
6394         * iconv/gconv_cache.c (__gconv_lookup_cache): Return __GCONV_NULCONV
6395         if from and to charsets are the same.
6396         * iconv/gconv_db.c (__gconv_find_transform): Likewise.
6397         * intl/dcigettext.c (_nl_find_msg): Return NULL even if __gconv_open
6398         returns __GCONV_NOCONV, but not for __GCONV_NULCONV.
6400 2007-07-17  Jakub Jelinek  <jakub@redhat.com>
6402         * wcsmbs/wchar.h: Only define wint_t if __need_wint_t.
6403         Don't define wint_t when __need_mbstate_t unless it
6404         is necessary.
6405         (__mbstate_t): Use __WINT_TYPE__ rather than wint_t
6406         in the typedef if possible.
6407         * wctype/wctype.h (wint_t): Define by including
6408         wchar.h with __need_wint_t instead of including stddef.h
6409         with __need_wint_t and as fallback definining it ourselves.
6410         * iconv/gconv.h (__need_wint_t): Define before including
6411         wchar.h.
6412         * sysdeps/gnu/_G_config.h: Don't include gconv.h if not _LIBC
6413         or _GLIBCPP_USE_WCHAR_T.
6414         (__need_wchar_t): Don't define
6415         if not _LIBC or _GLIBCPP_USE_WCHAR_T.
6416         (__need_wint_t): Don't define before including stddef.h,
6417         define before including wchar.h only if _LIBC or
6418         _GLIBCPP_USE_WCHAR_T.
6419         (_G_iconv_t): Don't define if not _LIBC or _GLIBCPP_USE_WCHAR_T.
6420         * sysdeps/mach/hurd/_G_config.h: Likewise.
6421         * sysdeps/generic/_G_config.h: Likewise.
6422         * libio/libio.h (__wunderflow, __wuflow, __woverflow): Only
6423         prototype if _LIBC or _GLIBCPP_USE_WCHAR_T.
6424         (_IO_getwc_unlocked, _IO_putwc_unlocked): Only define
6425         if _LIBC or _GLIBCPP_USE_WCHAR_T.
6427 2007-07-28  Ulrich Drepper  <drepper@redhat.com>
6429         * sysdeps/posix/posix_fallocate64.c: Undefine
6430         __posix_fallocate64_l64 before alias handling.
6431         * sysdeps/unix/sysv/linux/posix_fallocate.c: New file.
6432         * sysdeps/unix/sysv/linux/posix_fallocate64.c: New file.
6433         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c: New file.
6434         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate64.c: New file.
6436         * io/tst-posix_fallocate.c: Include <fcntl.h>.
6438 2007-07-23  Jakub Jelinek  <jakub@redhat.com>
6440         * locale/programs/ld-collate.c (atwc): New variable.
6441         (add_to_tablewc): New toplevel function, moved from collate_output.
6442         (collate_output): Remove add_to_tablewc nested function.
6444         * iconv/iconvconfig.c (hash_table, hash_size): New toplevel vars.
6445         (name_insert): New function.
6446         (write_output): Remove hash_table and hash_size vars and name_insert
6447         nested function.
6449 2007-07-24  Roland McGrath  <roland@redhat.com>
6451         * Makerules (install-others-programs-nosubdir): New target.
6452         (install-no-libc.a-nosubdir): Depend on it.
6454         * iconv/Makefile (install-others-programs): Set this instead of
6455         install-others.
6456         * login/Makefile (install-others-programs): Likewise.
6457         * posix/Makefile (install-others-programs): Likewise.
6459         * Makerules (install-no-libc.a-nosubdir): Clean up conditional
6460         dependencies.
6462 2007-07-23  Ulrich Drepper  <drepper@redhat.com>
6464         * io/Makefile (tests): Add tst-posix_fallocate.
6465         * io/tst-posix_fallocate.c: New file.
6467         * sysdeps/unix/sysv/linux/kernel-features.h: Define
6468         __ASSUME_FALLOCATE.
6470 2007-07-22  Roland McGrath  <roland@frob.com>
6472         * hurd/getdport.c: Add missing copyright year update.
6474         * sysdeps/mach/hurd/bits/fcntl.h [__USE_GNU] (O_CLOEXEC): New macro.
6475         * hurd/port2fd.c (_hurd_port2fd): Implement O_CLOEXEC.
6477 2007-07-22  Ulrich Drepper  <drepper@redhat.com>
6479         * login/utmp_file.c (setutent_file): Use O_CLOEXEC if possible.
6481         * libio/fileops.c (_IO_new_file_fopen): Recognize 'e' flag and set
6482         O_CLOEXEC is needed.
6483         * nis/nss_compat/compat-grp.c: Use 'e' flag when opening file.
6484         Avoid additional fcntl to set O_CLOEXEC if not needed.
6485         * nis/nss_compat/compat-initgroups.c: Likewise.
6486         * nis/nss_compat/compat-pwd.c: Likewise.
6487         * nis/nss_compat/compat-spwd.c: Likewise.
6489 2007-07-21  Samuel Thibault  <samuel.thibault@ens-lyon.org>
6491         [BZ #3665]
6492         * manual/errno.texi: Change ECANCELED value to 119.
6494         [BZ #4610]
6495         * mach/lock-intern.h: Include <sys/cdefs.h>.
6497         [BZ #4178]
6498         * sysdeps/mach/hurd/sigaction.c (__sigaction): Check ACT != NULL before
6499         reading A.
6501         [BZ #4126]
6502         * sysdeps/mach/hurd/sigsuspend.c (sigsuspend_not_cancel): Define alias
6503         to __sigsuspend.
6505         * sysdeps/mach/i386/sysdep.h: Include <dl-sysdep.h> and <tls.h>.
6507 2006-06-13  Thomas Schwinge  <tschwinge@gnu.org>
6509         * sysdeps/mach/hurd/tls.h: Change `ASSEMBLER' conditional to
6510         `__ASSEMBLER__'.
6511         * sysdeps/mach/hurd/i386/tls.h: Likewise.
6513 2007-07-21  Ulrich Drepper  <drepper@redhat.com>
6515         * nscd/nscd_helper.c (get_mapping): Use MSG_CMSG_CLOEXEC for
6516         descriptor received from nscd.
6518         * sysdeps/unix/sysv/linux/bits/socket.h: Define MSG_CMSG_CLOEXEC.
6520         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_CLOEXEC.
6521         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
6522         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
6523         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
6524         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
6525         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
6527 2007-07-20  Jakub Jelinek  <jakub@redhat.com>
6529         [BZ #4816]
6530         * manual/signal.texi (Non-atomic Example): Make memory var volatile.
6532         [BZ #4813]
6533         * login/forkpty.c (forkpty): Close master and slave fds on
6534         fork failure.  Patch by
6535         Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>.
6537 2007-07-18  Jakub Jelinek  <jakub@redhat.com>
6539         * include/features.h (__USE_ISOC95): New define.
6540         * wcsmbs/wchar.h (fwprintf, fwscanf, wprintf, wscanf, swprintf,
6541         swscanf, vfwprintf, vwprintf, vswprintf, fwide): Define even
6542         for -std=iso9899:199409.
6543         * CONFORMANCE: Remove comments about unsupported AMD1.
6545 2007-07-17  Jakub Jelinek  <jakub@redhat.com>
6547         * sysdeps/ia64/sched_cpucount.c: New file.
6548         * sysdeps/powerpc/sched_cpucount.c: New file.
6550         * sysdeps/unix/sysv/linux/bits/sched.h (__sched_cpucount): Add
6551         __BEGIN_DECLS/__END_DECLS around the prototype.
6552         * bits/sched.h (__sched_cpucount): Likewise.  Make second argument
6553         pointer to const cpu_set_t.
6555         * bits/types.h: Don't include stddef.h, don't define __need_size_t.
6556         * signal/signal.h <__USE_BSD || __USE_XOPEN_EXTENDED>: Define
6557         __need_size_t and include stddef.h.
6558         * sysvipc/sys/msg.h: Likewise.
6559         * posix/sched.h: Likewise.
6560         * hurd/hurd/signal.h (__need_size_t): Define.
6562         * CONFORMANCE: ctype.h and wctype.h no longer define size_t,
6563         neither does signal.h in pedantic ISO C namespaces.  stdio.h
6564         no longer defines wint_t or wchar_t.
6566         * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): New function.
6567         * debug/vfwprintf_chk.c (__vfwprintf_chk): Use
6568         _IO_acquire_lock_clear_flags2 instead of _IO_acquire_lock.
6569         * debug/vprintf_chk.c (__vprintf_chk): Likewise.
6570         * debug/vwprintf_chk.c (__vwprintf_chk): Likewise.
6571         * debug/vfprintf_chk.c (__vfprintf_chk): Likewise.
6572         * debug/fwprintf_chk.c (__fwprintf_chk): Likewise.
6573         * debug/printf_chk.c (__printf_chk): Likewise.
6574         * debug/fprintf_chk.c (__fprintf_chk): Likewise.
6575         * debug/wprintf_chk.c (__wprintf_chk): Likewise.
6577         * sysdeps/pthread/bits/stdio-lock.h (_IO_acquire_lock_clear_flags2):
6578         Define.
6580         * bits/confname.h (_CS_POSIX_V6_WIDTH_RESTRICTED_ENVS): Define.
6581         * posix/getconf.c (vars): Add POSIX_V6_WIDTH_RESTRICTED_ENVS.
6583 2007-07-16  Jakub Jelinek  <jakub@redhat.com>
6585         [BZ #4792]
6586         * stdlib/stdlib.h (realloc): Remove __attribute_malloc__.
6587         * malloc/malloc.h (realloc): Likewise.
6589         * libio/iopopen.c (_IO_new_proc_open): Don't close child_std_end
6590         if one of proc_file_chain streams has that fileno.
6591         * stdio-common/Makefile (tests): Add tst-popen2.
6592         * stdio-common/tst-popen2.c: New test.
6594 2007-07-14  Jakub Jelinek  <jakub@redhat.com>
6596         * elf/ldconfig.c: Allow GPLv2 or any later version.
6597         * elf/readlib.c: Likewise.
6598         * elf/chroot_canon.c: Likewise.
6599         * elf/cache.c: Likewise.
6600         * nscd/mem.c: Likewise.
6601         * nscd/getpwuid_r.c: Likewise.
6602         * nscd/grpcache.c: Likewise.
6603         * nscd/aicache.c: Likewise.
6604         * nscd/getsrvbynm_r.c: Likewise.
6605         * nscd/nscd.c: Likewise.
6606         * nscd/servicescache.c: Likewise.
6607         * nscd/getsrvbypt_r.c: Likewise.
6608         * nscd/initgrcache.c: Likewise.
6609         * nscd/gethstbyad_r.c: Likewise.
6610         * nscd/gethstbynm2_r.c: Likewise.
6611         * nscd/getgrnam_r.c: Likewise.
6612         * nscd/nscd_setup_thread.c: Likewise.
6613         * nscd/getpwnam_r.c: Likewise.
6614         * nscd/gai.c: Likewise.
6615         * nscd/connections.c: Likewise.
6616         * nscd/dbg_log.c: Likewise.
6617         * nscd/cache.c: Likewise.
6618         * nscd/hstcache.c: Likewise.
6619         * nscd/nscd_conf.c: Likewise.
6620         * nscd/getgrgid_r.c: Likewise.
6621         * nscd/pwdcache.c: Likewise.
6622         * catgets/gencat.c: Likewise.
6623         * locale/programs/linereader.h: Likewise.
6624         * locale/programs/locarchive.c: Likewise.
6625         * locale/programs/ld-paper.c: Likewise.
6626         * locale/programs/locfile-kw.h: Likewise.
6627         * locale/programs/ld-address.c: Likewise.
6628         * locale/programs/xmalloc.c: Likewise.
6629         * locale/programs/ld-time.c: Likewise.
6630         * locale/programs/localedef.c: Likewise.
6631         * locale/programs/simple-hash.c: Likewise.
6632         * locale/programs/xstrdup.c: Likewise.
6633         * locale/programs/ld-numeric.c: Likewise.
6634         * locale/programs/locfile-kw.gperf: Likewise.
6635         * locale/programs/ld-collate.c: Likewise.
6636         * locale/programs/charmap-kw.gperf: Likewise.
6637         * locale/programs/charmap.h: Likewise.
6638         * locale/programs/charmap-kw.h: Likewise.
6639         * locale/programs/config.h: Likewise.
6640         * locale/programs/locfile.c: Likewise.
6641         * locale/programs/ld-ctype.c: Likewise.
6642         * locale/programs/charmap.c: Likewise.
6643         * locale/programs/ld-messages.c: Likewise.
6644         * locale/programs/repertoire.h: Likewise.
6645         * locale/programs/locale.c: Likewise.
6646         * locale/programs/ld-name.c: Likewise.
6647         * locale/programs/linereader.c: Likewise.
6648         * locale/programs/locfile.h: Likewise.
6649         * locale/programs/3level.h: Likewise.
6650         * locale/programs/ld-monetary.c: Likewise.
6651         * locale/programs/ld-measurement.c: Likewise.
6652         * locale/programs/charmap-dir.c: Likewise.
6653         * locale/programs/ld-identification.c: Likewise.
6654         * locale/programs/localedef.h: Likewise.
6655         * locale/programs/charmap-dir.h: Likewise.
6656         * locale/programs/repertoire.c: Likewise.
6657         * locale/programs/simple-hash.h: Likewise.
6658         * locale/programs/ld-telephone.c: Likewise.
6659         * locale/programs/locale-spec.c: Likewise.
6660         * locale/programs/locfile-token.h: Likewise.
6661         * posix/getconf.c: Likewise.
6662         * iconv/dummy-repertoire.c: Likewise.
6663         * iconv/iconv_charmap.c: Likewise.
6664         * iconv/iconvconfig.c: Likewise.
6665         * iconv/iconv_prog.c: Likewise.
6666         * malloc/memusagestat.c: Likewise.
6667         * sysdeps/unix/sysv/linux/nscd_setup_thread.c: Likewise.
6669 2007-07-06  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
6671         * sysdeps/sh/bsd-setjmp.S (setjmp): Use correct argument registers.
6672         * sysdeps/sh/bsd-_setjmp.S (_setjmp): Likewise.
6673         * sysdeps/unix/sysv/linux/sh/clone.S (__clone): Do correct sanity
6674         check for the first argument.
6676 2007-07-12  Jakub Jelinek  <jakub@redhat.com>
6678         [BZ #4775]
6679         * math/tgmath.h (__tgmath_real_type_sub): Formatting.
6680         (__tgmath_real_type): Fix if expr is const int or other const
6681         qualified integral type.
6682         (__TGMATH_UNARY_REAL_ONLY): Rewritten to avoid using statement
6683         expressions and handle const qualified arguments.
6684         (__TGMATH_BINARY_FIRST_REAL_ONLY, __TGMATH_UNARY_REAL_IMAG,
6685         __TGMATH_UNARY_REAL_IMAG_RET_REAL): Likewise.
6686         (__TGMATH_UNARY_REAL_RET_ONLY): Rewritten to avoid using
6687         statement expressions.
6688         (__TGMATH_BINARY_REAL_ONLY, __TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY,
6689         __TGMATH_TERNARY_REAL_ONLY, __TGMATH_BINARY_REAL_IMAG): Likewise.
6690         (__TGMATH_UNARY_IMAG): Define.
6691         (conj, cproj): Use __TGMATH_UNARY_IMAG macro.
6692         * math/Makefile (tests): Add test-tgmath2.
6693         (CFLAGS-test-tgmath2.c): Add.
6694         * math/test-tgmath.c (fy, dy, ly, fz, dz, lz, count_cdouble,
6695         count_cfloat, count_cldouble): New variables.
6696         (NCCALLS): Define.
6697         (main): Check number of complex calls as well.
6698         (F(compile_test)): Add complex tests and tests with const qualified
6699         arguments.
6700         (y, z, ccount): Define.
6701         (F(cacos), F(casin), F(catan), F(ccos), F(csin), F(ctan), F(cacosh),
6702         F(casinh), F(catanh), F(ccosh), F(csinh), F(ctanh), F(cexp), F(clog),
6703         F(csqrt), F(cpow), F(cabs), F(carg), F(creal), F(cimag), F(conj),
6704         F(cproj)): New functions.
6705         * math/test-tgmath2.c: New test.
6707 2007-07-11  Jakub Jelinek  <jakub@redhat.com>
6709         [BZ #4776]
6710         * elf/dl-load.c (_dl_rtld_di_serinfo): Output / in LD_LIBRARY_PATH,
6711         RPATH etc. as "/" rather than "", don't segfault on empty paths,
6712         instead output ".".
6713         * dlfcn/Makefile (distribute): Add glreflib3.c.
6714         (module-names): Add glreflib3.
6715         ($(objpfx)tst-dlinfo.out): Depend on glreflib3.so rather than
6716         glreflib1.so.
6717         (LDFLAGS_glreflib3.so): New.
6718         * dlfcn/tst-dlinfo.c (do_test): Load glreflib3.so instead of
6719         glreflib1.so.
6720         * dlfcn/glreflib3.c: New file.
6722         * intl/finddomain.c (_nl_find_domain): If _nl_explode_name
6723         returned -1, return NULL.
6724         * intl/explodename.c (_nl_explode_name): Return -1 if
6725         _nl_normalize_codeset failed.
6727 2007-07-07  Steven Munroe  <sjmunroe@us.ibm.com>
6729         * sysdeps/powerpc/powerpc32/power6/memset.S: Update comments.
6730         Specify .machine power6 to get ISA-V2.0 branch hints.  Unroll loops
6731         and avoid branch misspredicts for > 31 bytes memset case.
6732         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
6733         Remove toc ref to __cache_line_size.
6735         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Specify .machine power4
6736         to get ISA-V2.0 branch hints.
6737         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Likewise
6738         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise
6739         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
6740         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
6741         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
6742         * sysdeps/powerpc/powerpc64/power4/memset.S: Likewise.
6743         Remove toc ref to __cache_line_size.
6745         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S:
6746         Include math_ldbl_opt.h.
6748 2007-07-10  Ulrich Drepper  <drepper@redhat.com>
6750         [BZ #4773]
6751         * time/strptime_l.c (__strptime_internal): Implement greedy
6752         matching of weekday and month names.
6754 2007-07-09  Roland McGrath  <roland@redhat.com>
6756         * elf/elf.h (NT_GNU_ABI_TAG): New macro.
6757         (ELF_NOTE_ABI): Use it.
6758         (NT_GNU_HWCAP, NT_GNU_BUILD_ID): New macros.
6760 2007-07-09  Ulrich Drepper  <drepper@redhat.com>
6762         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Add new entries.
6763         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
6765 2007-07-07  Ulrich Drepper  <drepper@redhat.com>
6767         [BZ #4745]
6768         * stdio-common/vfscanf.c (_IO_vfscanf): Add additional test for EOF
6769         in loop to look for conversion specifier to avoid testing of
6770         wrong errno value.
6771         * stdio-common/Makefile (tests): Add bug18, bug18a, bug19, bug19a.
6772         * stdio-common/bug18.c: New file.
6773         * stdio-common/bug18a.c: New file.
6774         * stdio-common/bug19.c: New file.
6775         * stdio-common/bug19a.c: New file.
6777 2007-07-05  Mike Frysinger  <vapier@gentoo.org>
6779         * Makeconfig ($(common-objpfx)gnu/lib-names.stmp): Use LC_ALL=C when
6780         running awk script.
6782 2007-07-01  Jakub Jelinek  <jakub@redhat.com>
6784         * elf/dl-sysdep.c (_dl_important_hwcaps): Add integer overflow check.
6785         * elf/dl-minimal.c (__libc_memalign): Likewise.  Handle malloc (0).
6786         Return NULL if mmap failed instead of asserting it does not.
6787         (calloc): Check for integer overflow.
6789         * elf/dl-minimal.c (__strtoul_internal): Fix parsing of numbers bigger
6790         than LONG_MAX / 10.
6792 2007-07-03  Jakub Jelinek  <jakub@redhat.com>
6794         [BZ #4702]
6795         * nis/nss-default.c: Include errno.h.
6796         (init): Preserve errno.
6798 2007-07-02  Ulrich Drepper  <drepper@redhat.com>
6800         * sysdeps/unix/sysv/linux/bits/socket.h (PF_UNIX): Update comment.
6802 2007-06-30  Ulrich Drepper  <drepper@redhat.com>
6804         * sysdeps/unix/sysv/linux/bits/socket.h: Add PF_RXRPC and AF_RXRPC.
6806 2007-06-29  Martin Schwidefsky  <schwidefsky@de.ibm.com>
6808         * sysdeps/unix/sysv/linux/bits/socket.h: Add PF_IUCV and AF_IUCV.
6810 2007-06-29  Martin Schwidefsky  <schwidefsky@de.ibm.com>
6812         * sysdeps/s390/dl-procinfo.c: New file.
6813         * sysdeps/s390/dl-procinfo.h: New file.
6814         * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: New file.
6816 2007-06-29  Jakub Jelinek  <jakub@redhat.com>
6818         * elf/dl-load.c (open_verify): Find .note.ABI-tag notes even
6819         in PT_NOTE segments with multiple notes.
6820         * elf/readelflib.c (process_elf_file): Likewise.
6822 2007-06-22  Ulrich Drepper  <drepper@redhat.com>
6824         * nis/nis_domain_of.c (__nis_domain_of): Make the code a bit more
6825         ISO C compliant.
6827 2007-06-19  Ulrich Drepper  <drepper@redhat.com>
6829         * elf/dl-close.c (free_mem): Free _dl_scope_free_list.
6831 2007-06-13  Jakub Jelinek  <jakub@redhat.com>
6833         * include/link.h: Don't include rtld-lowlevel.h.
6834         (struct link_map): Remove l_scope_lock.
6835         * sysdeps/generic/ldsodefs.h: Don't include rtld-lowlevel.h.
6836         (_dl_scope_free_list): New field (variable) in _rtld_global.
6837         (DL_LOOKUP_SCOPE_LOCK): Remove.
6838         (_dl_scope_free): New prototype.
6839         * elf/dl-runtime.c (_dl_fixup): Don't use __rtld_mrlock_*lock.
6840         Don't pass DL_LOOKUP_SCOPE_LOCK to _dl_lookup_symbol_x.
6841         (_dl_profile_fixup): Likewise.
6842         * elf/dl-sym.c (do_sym): Likewise.  Use wrapped _dl_lookup_symbol_x
6843         whenever !RTLD_SINGLE_THREAD_P, use THREAD_GSCOPE_SET_FLAG and
6844         THREAD_GSCOPE_RESET_FLAG around it.
6845         * elf/dl-close.c (_dl_close_worker): Don't use
6846         __rtld_mrlock_{change,done}.  Call _dl_scope_free on the old
6847         scope.  Make sure THREAD_GSCOPE_WAIT () happens if any old
6848         scopes were queued or if l_scope_mem has been abandoned.
6849         * elf/dl-open.c (_dl_scope_free): New function.
6850         (dl_open_worker): Use it.  Don't use __rtld_mrlock_{change,done}.
6851         * elf/dl-support.c (_dl_scope_free_list): New variable.
6852         * elf/dl-lookup.c (add_dependency): Remove flags argument.
6853         Remove DL_LOOKUP_SCOPE_LOCK handling.
6854         (_dl_lookup_symbol_x): Adjust caller.  Remove DL_LOOKUP_SCOPE_LOCK
6855         handling.
6856         * elf/dl-object.c (_dl_new_object): Don't use
6857         __rtld_mrlock_initialize.
6859 2007-06-19  Ulrich Drepper  <drepper@redhat.com>
6861         * sysdeps/generic/ldsodefs.h (rtld_global): Reorder some elements
6862         to fill in holes
6863         (rtld_global_ro): Likewise.
6865 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
6867         * elf/dl-addr.c (_dl_addr): Skip PT_LOAD checking if l_contiguous.
6868         Move PT_LOAD checking to...
6869         (_dl_addr_inside_object): ... here, new function.
6870         * elf/dl-sym.c (do_sym): If not l_contiguous,
6871         call _dl_addr_inside_object.
6872         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Likewise.
6873         * dlfcn/dlinfo.c (dlinfo_doit): Likewise.
6874         * elf/dl-open.c (dl_open_worker): Likewise.
6875         (_dl_addr_inside_object): New function if IS_IN_rtld.
6876         * elf/dl-load.c (_dl_map_object_from_fd): Set l_contiguous if no
6877         holes are present or are PROT_NONE protected.
6878         * include/link.h (struct link_map): Add l_contiguous field.
6879         * sysdeps/generic/ldsodefs.h (_dl_addr_inside_object): New prototype.
6881 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
6882             Tomas Janousek  <tjanouse@redhat.com>
6883             Ulrich Drepper  <drepper@redhat.com>
6885         [BZ #4647]
6886         * resolv/res_send.c (send_dg): Remove socket_pf.  Use ipv6_unavail
6887         member in __res_state, only convaddr4to6 if nssocks[ns] is a PF_INET6
6888         socket.
6889         * resolv/resolv.h (__res_state): Add ipv6_unavail member.  Make
6890         unused member a bitmap.
6891         * resolv/res_init.c (__res_vinit): Reset ipv6_unavail if IPv6
6892         servers are configured.
6894 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
6896         * elf/rtld.c (dl_main): Don't call init_tls more than once.
6898 2007-06-17  Andreas Schwab  <schwab@suse.de>
6900         * sysdeps/generic/initfini.c: Tell gcc about the nonstandard sections.
6902 2007-06-16  Andreas Jaeger  <aj@suse.de>
6904         [BZ #4125]
6905         * sysdeps/unix/sysv/linux/sys/ptrace.h
6906         (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK,
6907         PTRACE_O_TRACEVFORK, PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC,
6908         PTRACE_O_TRACEVFORKDONE, PTRACE_O_TRACEEXIT, PTRACE_O_MASK,
6909         PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK, PTRACE_EVENT_CLONE,
6910         PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE, PTRACE_EVENT_EXIT):
6911         Define.
6912         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
6913         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
6914         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
6915         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
6917 2007-06-16  Ulrich Drepper  <drepper@redhat.com>
6919         [BZ #4599]
6920         * sysdeps/unix/sysv/linux/check_pf.c (make_request): When
6921         determining whether there are IPv4/IPv6 addresses, ignore loopback
6922         addresses.
6924 2007-06-14 Uros Bizjak <ubizjak@gmail.com>
6926         * soft-fp/soft-fp.h (CMPtype): Define to "int" if undefined.
6927         * soft-fp/eqdf2.c (__eqdf2): Use CMPtype instead of int
6928         as the return type.  Change type of "r" variable to CMPtype.
6929         * soft-fp/eqsf2.c (__eqsf2): Likewise.
6930         * soft-fp/eqtf2.c (__eqtf2): Likewise.
6931         * soft-fp/gedf2.c (__gedf2): Likewise.
6932         * soft-fp/gesf2.c (__gesf2): Likewise.
6933         * soft-fp/getf2.c (__getf2): Likewise.
6934         * soft-fp/ledf2.c (__ledf2): Likewise.
6935         * soft-fp/lesf2.c (__lesf2): Likewise.
6936         * soft-fp/letf2.c (__letf2): Likewise.
6937         * soft-fp/unorddf2 (__unorddf2): Likewise.
6938         * soft-fp/unordsf2 (__unordsf2): Likewise.
6939         * soft-fp/unordtf2 (__unordtf2): Likewise.
6941 2007-06-09  Ulrich Drepper  <drepper@redhat.com>
6943         * elf/do-lookup.h (do_lookup_x): Read r_nlist before r_list and
6944         make sure gcc doesn't mess around with this.
6946 2007-06-08  Ulrich Drepper  <drepper@redhat.com>
6948         * elf/dl-lookup.c (_dl_lookup_symbol_x): Remove use of r_nlist.
6950 2007-06-08  Jakub Jelinek  <jakub@redhat.com>
6952         * elf/dl-close.c (_dl_close_worker): Remove all to be removed
6953         libraries from the global scope at once and call THREAD_GSCOPE_WAIT
6954         at most once per _dl_close_worker.
6956 2007-06-08  Ulrich Drepper  <drepper@redhat.com>
6958         * sysdeps/unix/sysv/linux/bits/sched.h: Make second parameter of
6959         __sched_cpucount as const.
6960         * posix/sched_cpucount.c: Adjust.
6962         * posix/sched_cpucount.c (__sched_cpucount): Allow using special
6963         instruction for counting bits.
6964         * sysdeps/x86_64/sched_cpucount.c: New file.
6966 2007-06-07  Ulrich Drepper  <drepper@redhat.com>
6968         * configure.in: Avoid variable named BASH.
6969         * config.make.in: Likewise.
6970         Patch in part by Mike Frysinger.
6972 2007-06-06  Jakub Jelinek  <jakub@redhat.com>
6974         [BZ #4586]
6975         * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Treat
6976         pseudo-zeros as zero.
6977         * sysdeps/x86_64/ldbl2mpn.c: New file.
6978         * sysdeps/ia64/ldbl2mpn.c: New file.
6980 2007-06-04  Jakub Jelinek  <jakub@redhat.com>
6982         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (nextafterl): Remove
6983         unused ily variable.  Fix nextafterl on +-__LDBL_MAX__ and +-Inf.
6984         Remove unreachable code at the end.
6986 2007-06-01  Steven Munroe  <sjmunroe@us.ibm.com>
6988         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Correct description of
6989         ldbl-128ibm in comment.
6990         (fpclassifyl): Correct classification of denormals.
6991         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (nextafterl): Correct
6992         return value for MIN denormal. Rewrite using long double math too
6993         correctly handle denormals and canonicalize the results.
6995 2007-06-05  Jakub Jelinek  <jakub@redhat.com>
6997         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c
6998         (__mpn_construct_long_double): Fix conversion where result ought
6999         to be smaller than __LDBL_MIN__, or the low double should be
7000         denormal.  Fix decision where to negate low double - honor round
7001         to even rules.
7002         * stdio-common/tst-sprintf2.c: Include string.h.
7003         (COMPARE_LDBL): Define.
7004         (TEST): Also test whether a string hexadecimal float representation
7005         can be parsed back to the number.
7006         (main): Add a couple of further tests.
7008 2007-06-04  Jakub Jelinek  <jakub@redhat.com>
7010         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c
7011         (PRINT_FPHEX_LONG_DOUBLE): Fix printing numbers where lower double
7012         is non-zero, but smaller than 2 * __DBL_MIN__.
7013         * stdio-common/tst-sprintf2.c: New test.
7014         * stdio-common/Makefile (tests): Add tst-sprintf2.
7016         * math/test-misc.c (main): Don't run last batch of tests with
7017         IBM long double format.
7019 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
7021         * sysdeps/powerpc/powerpc32/970/fpu/Implies: New file.
7022         * sysdeps/powerpc/powerpc32/power5/fpu/Implies: New file.
7023         * sysdeps/powerpc/powerpc32/power5+/fpu/Implies: New file.
7024         * sysdeps/powerpc/powerpc32/power6/fpu/Implies: New file.
7025         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
7026         * sysdeps/powerpc/powerpc64/970/fpu/Implies: New file.
7027         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: New file.
7028         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: New file.
7029         * sysdeps/powerpc/powerpc64/power6/fpu/Implies: New file.
7030         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: New file.
7031         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/fpu/Implies: New file.
7032         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/fpu/Implies:
7033         New file.
7034         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/fpu/Implies:
7035         New file.
7036         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/fpu/Implies:
7037         New file.
7038         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/Implies:
7039         New file.
7040         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/fpu/Implies:
7041         New file.
7042         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/fpu/Implies: New file.
7043         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/fpu/Implies:
7044         New file.
7045         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/fpu/Implies:
7046         New file.
7047         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/fpu/Implies:
7048         New file.
7049         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/Implies:
7050         New file.
7051         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/fpu/Implies:
7052         New file.
7054 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
7056         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S: Move.
7057         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: To here.
7058         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrintf.S: Move.
7059         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: To here.
7060         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llround.S: Move.
7061         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: To here.
7062         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llroundf.S: Move.
7063         * sysdeps/powerpc/powerpc32/power4/fpu/s_llroundf.S: To here.
7065 2007-05-22  Steven Munroe  <sjmunroe@us.ibm.com>
7067         * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S
7068         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
7069         * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S
7070         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
7071         * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S
7072         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
7073         * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S
7074         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
7076 2007-05-21  Steven Munroe  <sjmunroe@us.ibm.com>
7078         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: New file.
7079         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.c: New file.
7080         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: New file.
7081         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: New file.
7083 2007-03-15  Steven Munroe  <sjmunroe@us.ibm.com>
7085         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S
7086         [LONG_DOUBLE_COMPAT]: Add compat_symbol for llrintl@@GLIBC_2_1.
7088 2006-02-13  Steven Munroe  <sjmunroe@us.ibm.com>
7090         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: New File
7091         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: New File
7092         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: New File
7093         * sysdeps/powerpc/powerpc32/power6/fpu/s_llroundf.S: New File
7095 2006-10-20  Steven Munroe  <sjmunroe@us.ibm.com>
7097         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: New file.
7098         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: New file.
7100 2006-10-03  Steven Munroe  <sjmunroe@us.ibm.com>
7102         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llround.S: New file.
7103         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llroundf.S: New file.
7105         * sysdeps/powerpc/powerpc32/powerpc64/fpu/Makefile: Moved.
7106         * sysdeps/powerpc/powerpc32/powerpc64/fpu/mpa.c: Likewise.
7107         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile: To here.
7108         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
7110 2006-09-29  Steven Munroe  <sjmunroe@us.ibm.com>
7112         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S: New file.
7113         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: New file.
7114         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: New file.
7115         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: New file.
7117 2006-09-28  Steven Munroe  <sjmunroe@us.ibm.com>
7119         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: New file.
7120         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llroundf.S: New file.
7121         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: New file.
7122         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
7123         * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: New file.
7124         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: New file.
7126 2006-08-31  Steven Munroe  <sjmunroe@us.ibm.com>
7128         * sysdeps/powerpc/powerpc32/powerpc64/fpu/Makefile: New file.
7129         * sysdeps/powerpc/powerpc32/powerpc64/fpu/mpa.c: New file.
7130         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile: New file.
7131         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: New file.
7133 2006-06-15  Steven Munroe  <sjmunroe@us.ibm.com>
7135         * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S: New file.
7136         * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S: New file.
7137         * sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S: New file.
7138         * sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S: New file.
7139         * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S: New file.
7140         * sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S: New file.
7141         * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S: New file.
7142         * sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S: New file.
7143         * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S: New file.
7144         * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S: New file.
7145         * sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S: New file.
7146         * sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S: New file.
7147         * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S: New file.
7148         * sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S: New file.
7149         * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S: New file.
7150         * sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S: New file.
7152 2006-03-20  Steven Munroe  <sjmunroe@us.ibm.com>
7154         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S: New file.
7155         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrintf.S: New file.
7157 2007-06-01  Steven Munroe  <sjmunroe@us.ibm.com>
7159         * sysdeps/powerpc/powerpc32/power6/memset.S: New file.
7160         * sysdeps/powerpc/powerpc64/power6/memset.S: New file.
7162 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
7164         * sysdeps/powerpc/powerpc32/970/Implies: New file.
7165         * sysdeps/powerpc/powerpc32/power5/Implies: New file.
7166         * sysdeps/powerpc/powerpc32/power5+/Implies: New file.
7167         * sysdeps/powerpc/powerpc32/power6/Implies: New file.
7168         * sysdeps/powerpc/powerpc32/power6x/Implies: New file.
7169         * sysdeps/powerpc/powerpc64/970/Implies: New file.
7170         * sysdeps/powerpc/powerpc64/power5/Implies: New file.
7171         * sysdeps/powerpc/powerpc64/power5+/Implies: New file.
7172         * sysdeps/powerpc/powerpc64/power6/Implies: New file.
7173         * sysdeps/powerpc/powerpc64/power6x/Implies: New file.
7175 2007-05-21  Steven Munroe  <sjmunroe@us.ibm.com>
7177         * sysdeps/powerpc/powerpc32/power4/memset.S: New file
7179 2007-03-13  Steven Munroe  <sjmunroe@us.ibm.com>
7181         * sysdeps/powerpc/powerpc64/memcpy.S: Improve aligned loop to minimize
7182         branch miss-predicts. Ensure that cache line crossing does not impact
7183         dispatch grouping.
7185 2006-12-13  Steven Munroe  <sjmunroe@us.ibm.com>
7187         * sysdeps/powerpc/powerpc64/power4/memcopy.h: Replace with include
7188         "../../powerpc32/power4/memcopy.h".
7189         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: Replace with include
7190         "../../powerpc32/power4/wordcopy.c".
7192 2006-10-03  Steven Munroe  <sjmunroe@us.ibm.com>
7194         * sysdeps/powerpc/powerpc32/powerpc64/Makefile: Moved.
7195         * sysdeps/powerpc/powerpc32/powerpc64/memcopy.h: Likewise.
7196         * sysdeps/powerpc/powerpc32/powerpc64/wordcopy.c: Likewise.
7197         * sysdeps/powerpc/powerpc32/power4/Makefile: To here.
7198         * sysdeps/powerpc/powerpc32/power4/memcopy.h: Likewise.
7199         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Likewise.
7201 2006-09-10  Steven Munroe  <sjmunroe@us.ibm.com>
7203         * sysdeps/powerpc/powerpc32/power6/memcpy.S: New file.
7205 2006-08-31  Steven Munroe  <sjmunroe@us.ibm.com>
7207         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: New file.
7208         * sysdeps/powerpc/powerpc32/powerpc64/Makefile: New file.
7209         * sysdeps/powerpc/powerpc32/powerpc64/memcopy.h: New file.
7210         * sysdeps/powerpc/powerpc32/powerpc64/wordcopy.c: New file.
7211         * sysdeps/powerpc/powerpc64/power4/Makefile: New file.
7212         * sysdeps/powerpc/powerpc64/power4/memcopy.h: New file.
7213         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: New file.
7214         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: New file.
7216 2006-07-06  Steven Munroe  <sjmunroe@us.ibm.com>
7218         * sysdeps/powerpc/powerpc64/power6/memcpy.S: New file.
7220 2006-03-20  Steven Munroe  <sjmunroe@us.ibm.com>
7222         * sysdeps/powerpc/powerpc32/power4/memcmp.S: New file.
7223         * sysdeps/powerpc/powerpc32/power4/memcpy.S: New file.
7224         * sysdeps/powerpc/powerpc32/power4/memset.S: New file.
7225         * sysdeps/powerpc/powerpc32/power4/strncmp.S: New file.
7226         * sysdeps/powerpc/powerpc64/power4/memcmp.S: New file.
7227         * sysdeps/powerpc/powerpc64/power4/memcpy.S: New file.
7228         * sysdeps/powerpc/powerpc64/power4/strncmp.S: New file.
7230 2007-05-29  Roland McGrath  <roland@redhat.com>
7232         * po/Makefile (po-sed-cmd): New variable.
7233         (libc.pot.files): Move sed command text in there, avoid \ inside ''.
7235 2007-05-29  Ulrich Drepper  <drepper@redhat.com>
7237         * crypt/md5-crypt.c: Fix comment.
7239         * nscd/nscd_helper.c (get_mapping): Handle short replies instead
7240         of crashing.  When this is the case or if the reply is malformed,
7241         don't try to close the new file descriptor since it does not
7242         exist.
7243         Patch in part by Guillaume Chazarain <guichaz@yahoo.fr>.
7245 2007-05-28  Jakub Jelinek  <jakub@redhat.com>
7247         * sysdeps/unix/sysv/linux/futimes.c (miss_utimensat): Don't define
7248         if __NR_utimensat is not defined.
7250 2007-05-26  Ulrich Drepper  <drepper@redhat.com>
7252         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Include <sysdep.h>.
7254 2007-05-25  Jakub Jelinek  <jakub@redhat.com>
7256         * io/bits/fcntl2.h (__open_2): Add nonnull attribute.
7257         (open): Fix comment typos.  Don't call __open_2 if flags
7258         is a compile time constant without O_CREAT.
7259         (__open64_2): Add nonnull attribute.
7260         (open64): Fix comment typos.  Don't call __open64_2 if flags
7261         is a compile time constant without O_CREAT.
7262         (__openat_2): Add nonnull attribute, fix nonnull attribute
7263         on redirect.
7264         (openat): Fix comment typos.  Don't call __openat_2 if flags
7265         is a compile time constant without O_CREAT.
7266         (__openat64_2): Add nonnull attribute, fix nonnull attribute
7267         on redirect.
7268         (openat64): Fix comment typos.  Don't call __openat64_2 if flags
7269         is a compile time constant without O_CREAT.
7271 2007-05-24  Ulrich Drepper  <drepper@redhat.com>
7273         * Makerules (sysd-rules): Define PTW for ptw-* files.
7274         * Versions: Define GLIBC_2.7 for libc.
7275         * include/stdio.h: Declare __fortify_fail.
7276         * debug/fortify_fail.c: New file.
7277         * debug/Makefile (routines): Add fortify_fail.
7278         * debug/chk_fail.c: Use __fortify_fail.
7279         * debug/stack_chk_fail.c: Likewise.
7280         * io/Versions: Export __open_2, __open64_2, __openat_2, and
7281         __openat64_2 for GLIBC_2.7.
7282         * io/fcntl.h: When compiling with fortification, include bits/fcntl2.h.
7283         * io/open.c: Define *_2 variant of function which checks for O_CREAT
7284         and fails if necessary.
7285         * io/open64.c: Likewise.
7286         * io/openat.c: Likewise.
7287         * io/openat64.c: Likewise.
7288         * sysdeps/unix/sysv/linux/open64.c: Likewise.
7289         * sysdeps/unix/sysv/linux/openat.c: Likewise.
7290         * sysdeps/unix/sysv/linux/openat64.c: Likewise.
7291         * io/bits/fcntl2.h: New file.
7292         * include/fcntl.h: Declare __open_2, __open64_2, __openat_2, and
7293         __openat64_2.
7294         * include/bits/fcntl2.h: New file.
7295         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
7296         Add open_2.
7297         * sysdeps/unix/sysv/linux/open_2.c: New file.
7299 2007-05-21  Ulrich Drepper  <drepper@redhat.com>
7301         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Pass correct value
7302         as second parameter to handle_intel.
7304         * nscd/aicache.c (addhstaiX): If reported TTL is zero don't cache
7305         the entry.
7307         * sysdeps/unix/sysv/linux/x86_64/sysconf.c: Move cache information
7308         handling to ...
7309         * sysdeps/x86_64/cacheinfo.c: ... here.  New file.
7310         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
7311         cacheinfo.
7312         * sysdeps/x86_64/memcpy.S: Complete rewrite.
7313         * sysdeps/x86_64/mempcpy.S: Adjust appropriately.
7314         Patch by Evandro Menezes <evandro.menezes@amd.com>.
7316         * sysdeps/unix/sysv/linux/i386/epoll_pwait.S: New file.
7318 2007-05-21  Jakub Jelinek  <jakub@redhat.com>
7320         [BZ #4525]
7321         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add epoll_pwait.
7322         * sysdeps/unix/sysv/linux/epoll_pwait.c: New file.
7323         * sysdeps/unix/sysv/linux/syscalls.list (epoll_pwait): Remove.
7325         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h (epoll_pwait): Declare.
7327         [BZ #4514]
7328         * stdio-common/vfprintf.c (vfprintf): Don't shadow workstart variable,
7329         reinitialize workend at the start of each do_positional format spec
7330         loop, free workstart before do_positional loops.
7331         (printf_unknown): Fix size of work_buffer.
7332         * stdio-common/tst-sprintf.c (main): Add 3 new testcases.
7334         * malloc/hooks.c (MALLOC_STATE_VERSION): Bump.
7335         (public_sET_STATe): If ms->version < 3, put all chunks into
7336         unsorted chunks and clear {fd,bk}_nextsize fields of largebin
7337         chunks.
7339         * malloc/malloc.c [MALLOC_DEBUG]: Revert 2007-05-13 changes.
7340         * malloc/hooks.c: Likewise.
7341         * malloc/arena.c: Likewise.
7342         * malloc/malloc.c (do_check_malloc_state): Don't assert
7343         n_mmaps is not greater than n_mmaps_max.  This removes the need
7344         for the previous change.
7346         * malloc/Makefile (CFLAGS-malloc.c): Revert accidental
7347         2007-05-07 commit.
7349 2007-05-19  Ulrich Drepper  <drepper@redhat.com>
7351         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PRIVATE_FUTEX):
7352         Define for kernel >= 2.6.22.
7354 2007-05-18  Ulrich Drepper  <drepper@redhat.com>
7356         * elf/dl-close.c (_dl_close_worker): When removing object from
7357         global scope, wait for all lookups to finish afterwards.
7358         * elf/dl-open.c (add_to_global): When global scope array must
7359         grow, allocate a new one and free old array only after all
7360         lookups finish.
7361         * elf/dl-runtime.c (_dl_fixup): Protect using global scope.
7362         (_dl_lookup_symbol_x): Likewise.
7363         * elf/dl-support.c: Define _dl_wait_lookup_done.
7364         * sysdeps/generic/ldsodefs.h (struct rtld_global): Add
7365         _dl_wait_lookup_done.
7367         * malloc/malloc.c (do_check_chunk): Correct check for mmaped block
7368         not overlapping with arena.
7370         * malloc/mcheck.c (reallochook): If size==0, free the block.
7372         * rt/tst-shm.c: Use fstat64 instead of fstat.
7374         * sysdeps/unix/sysv/linux/i386/sync_file_range.S: Fix case where
7375         __NR_sync_file_range is not defined.
7377 2007-05-17  Ulrich Drepper  <drepper@redhat.com>
7379         Dummy files to prevent stub versions from being used.
7380         * sysdeps/x86_64/fpu/k_cosl.c: New file.
7381         * sysdeps/x86_64/fpu/k_rem_pio2l.c: New file.
7382         * sysdeps/x86_64/fpu/k_sinl.c: New file.
7383         * sysdeps/x86_64/fpu/k_tanl.c: New file.
7385         * version.h (VERSION): Set to 2.6.90.
7387 2007-05-14  Ulrich Drepper  <drepper@redhat.com>
7389         * version.h (VERSION): Define to 2.6.
7390         * include/features.h (__GLIBC_MINOR__): Define to 6.
7392         * malloc/malloc.c: Use all small bin slots on 64-bit archs.
7394         * malloc/malloc.c (largebin_index): Really have 32 buckets with 64
7395         sizes.
7397 2007-05-13  Ulrich Drepper  <drepper@redhat.com>
7399         * malloc/malloc.c [MALLOC_DEBUG]: Keep track of current maximum
7400         number of mmaps.  n_mmaps_max is the target.
7401         * malloc/hooks.c: Likewise.
7402         * malloc/arena.c: Likewise.
7404 2007-05-12  Andreas Jaeger  <aj@suse.de>
7406         * sysdeps/unix/sysv/linux/tst-getcpu.c: Include <unistd.h> for
7407         getpid.
7409 2007-05-11  Ulrich Drepper  <drepper@redhat.com>
7411         * elf/dl-close.c (_dl_close_worker): Help gcc to optimize by
7412         adding new variables.
7414         * elf/dl-open.c (add_to_global): Introduce variable ns to help gcc
7415         optimize.  Completely extend global scope array before making the
7416         new entries visible.
7418 2007-05-10  Ulrich Drepper  <drepper@redhat.com>
7420         * sysdeps/unix/sysv/linux/tst-getcpu.c: New file.
7421         * sysdeps/unix/sysv/linux/Makefile [subdir=posix] (tests): Add
7422         tst-getcpu.
7424         * include/link.h: Move l_version and l_nversion members around to
7425         fill gaps.
7427         * scripts/check-c++-types.sh: Don't use -fnu89-inline option.
7429         * sysdeps/unix/sysv/linux/sched_setaffinity.c
7430         (__sched_setaffinity_new): If syscall was successful and
7431         RESET_VGETCPU_CACHE is defined, use it before returning.
7432         * sysdeps/unix/sysv/linux/x86_64/sched_setaffinity.c: New file.
7434         * io/sys/stat.h: Make sure struct timespec is defined for
7435         __USE_ATFILE.
7437         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Define UTIME_NOW and
7438         UTIME_OMIT.
7439         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
7440         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
7441         * sysdeps/unix/sysv/linux/alpha/bits/stat.h: Likewise.
7442         * sysdeps/unix/sysv/linux/ia64/bits/stat.h: Likewise.
7443         * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
7444         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
7445         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_UTIMENSAT.
7446         * io/sys/stat.h: Declare utimensat, futimens.
7447         * io/utimensat.c: New file.
7448         * io/futimens.c: New file.
7449         * sysdeps/unix/sysv/linux/utimensat.c: New file.
7450         * sysdeps/unix/sysv/linux/futimens.c: New file.
7451         * io/Makefile (routines): Add utimensat, futimens.
7452         * io/Versions: Add utimensat, futimens to GLIBC_2.6.
7453         * sysdeps/unix/sysv/linux/lutimes.c: New file.
7454         * sysdeps/unix/sysv/linux/futimes.c: Use utimensat syscall if
7455         available.
7457         * include/sys/cdefs.h: Redefine __nonnull so that test for
7458         incorrect parameters in the libc code itself are not omitted.
7460 2007-05-09  Jakub Jelinek  <jakub@redhat.com>
7462         * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow
7463         exception in addition to inexact when asked to raise only FE_INEXACT.
7465         [BZ #3427]
7466         * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Don't clear exceptions
7467         in *envp.
7469 2007-05-07  Ulrich Drepper  <drepper@redhat.com>
7471         [BZ #4403]
7472         * string/strfry.c (strfry): Make result more random.
7474 2007-05-07  Richard Henderson  <rth@redhat.com>
7476         * sysdeps/alpha/fpu/bits/mathinline.h (__isnanl): Don't define
7477         if __NO_LONG_DOUBLE_MATH.
7478         * sysdeps/unix/sysv/linux/alpha/ioperm.c: If BWX insns not
7479         available in the compiler, add .arch directive to the assembly.
7481 2007-05-07  Jakub Jelinek  <jakub@redhat.com>
7483         * sysdeps/alpha/fpu/s_nearbyint.c (nearbyintl): Fix version on
7484         compat_symbol to GLIBC_2_1.
7485         * sysdeps/alpha/fpu/s_fmin.S (fminl): Likewise.
7486         * sysdeps/alpha/fpu/s_trunc.c (truncl): Likewise.
7487         * sysdeps/alpha/fpu/s_fmax.S (fmaxl): Likewise.
7488         * sysdeps/alpha/fpu/s_lrint.c (lrintl, llrintl): Likewise.
7489         * sysdeps/alpha/fpu/s_lround.c (lroundl, llroundl): Likewise.
7490         * sysdeps/alpha/fpu/s_round.c (roundl): Likewise.
7491         * sysdeps/alpha/fpu/s_isnan.c (isnanl): Provide compat_symbol in
7492         libc, not libm.
7493         (__isnanl): New compat_symbol.
7495 2007-05-07  Ulrich Drepper  <drepper@redhat.com>
7496             Jakub Jelinek  <jakub@redhat.com>
7498         * malloc/arena.c (heap_info): Add mprotect_size field, adjust pad.
7499         (new_heap): Initialize mprotect_size.
7500         (grow_heap): When growing, only mprotect from mprotect_size till
7501         new_size if mprotect_size is smaller.  When shrinking, use PROT_NONE
7502         MMAP for __libc_enable_secure only, otherwise use MADV_DONTNEED.
7504 2007-04-30  Steven Munroe  <sjmunroe@us.ibm.com>
7505             Peter Bergner  <bergner@us.ibm.com>
7507         * sysdeps/powerpc/bits/fenv.h: Declare __fe_mask_env extern.
7508         Define FE_NOMASK_ENV as FE_EANBLED_ENV.  Define FE_MASK_ENV.
7509         * sysdeps/powerpc/fpu/Makefile: Add fe_mask to libm-support.
7510         * sysdeps/powerpc/fpu/fe_mask.c: New file.
7511         * sysdeps/powerpc/fpu/fe_nomask.c: Correct comment.
7512         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept):
7513         Call __fe_mask_env() if all FP exceptions disabled.
7514         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Copy high 32-bits
7515         from old FPSCR to new fenv to propagate DFP rounding modes.
7516         Call __fe_mask_env() if FP exceptions previously enabled.
7517         * sysdeps/powerpc/fpu/fesetenv.c (fesetenv): Change mask to merge
7518         exceptions from env.  Use __fe_nomask_env() or __fe_mask_env() when
7519         transitioning from all exceptions disabled to any exception enabled
7520         or visa versa.
7521         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Change mask to
7522         merge exceptions from env.  Call __fe_nomask_env or __fe_mask_env
7523         when transitioning from all exceptions disabled to any exception
7524         enabled or visa versa.
7525         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fe_nomask.c: Moved to...
7526         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: ...here.
7527         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c: Moved to...
7528         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: ...here.
7529         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c: New file.
7530         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c: New file.
7532 2007-05-06  Ulrich Drepper  <drepper@redhat.com>
7534         [BZ #4465]
7535         * posix/unistd.h: Remove __THROW from fdatasync.
7537 2007-05-06  Mike Frysinger  <vapier@gentoo.org>
7539         [BZ #4465]
7540         * sysdeps/unix/sysv/linux/syscalls.list (fdatasync): Add "C" to args.
7542 2007-05-06  Ulrich Drepper  <drepper@redhat.com>
7544         * stdio-common/vfprintf.c (process_string_arg): Optimize
7545         ridiculous precision in wide char code printing multi-byte string.
7546         Reported by Jim Meyering <jim@meyering.net>.
7548         [BZ #4131]
7549         * elf/dl-addr.c (_dl_addr): Compare address with actual segment
7550         boundaries to work around systems with overlapping binary loading.
7551         Based on a patch by Suzuki <suzuki@in.ibm.com>.
7553 2007-05-04  Ulrich Drepper  <drepper@redhat.com>
7555         * stdio-common/vfprintf.c (process_string_arg): Adjust call to
7556         __mbsnrtowcs after last change.
7558         * locale/programs/linereader.c (get_symname): Fix adding final NUL.
7559         (get_ident): Likewise.
7561 2007-05-03  Jakub Jelinek  <jakub@redhat.com>
7563         * soft-fp/op-common.h (FP_TRUNC): Replace raising of FP_EX_INEXACT
7564         with setting the sticky bit.
7565         * math/test-misc.c (main): Add more truncation tests.
7567 2007-04-14  Uros Bizjak  <ubizjak@gmail.com>
7569         * soft-fp/floatunsidf.c (__floatunsidf): Use DFtype instead of
7570         double in the function declaration.
7571         * soft-fp/floatundidf.c (__floatundidf): Use DFtype instead of
7572         double in the function declaration.
7573         * soft-fp/floatunsisf.c (__floatunsisf): Use SFtype instead of
7574         float in the function declaration.
7575         * soft-fp/floatunsisf.c (__floatunsisf): Use SFtype instead of
7576         float in the function declaration.
7578         * soft-fp/extended.h (FP_UNPACK_RAW_E): Do not increase X##_e for
7579         denormal operands.  Do not generate FP_EX_DENORM exception.
7580         (FP_UNPACK_RAW_EP): Ditto.
7581         (FP_UNPACK_SEMIRAW_E): Use FP_UNPACK_RAW_E instead of
7582         undefined _FP_UNPACK_RAW_E.
7583         (FP_UNPACK_SEMIRAW_EP): Use FP_UNPACK_RAW_EP instead of
7584         undefined _FP_UNPACK_RAW_EP.
7585         (FP_PACK_SEMIRAW_E): Use FP_PACK_RAW_E instead of
7586         undefined _FP_PACK_RAW_E.
7587         (FP_PACK_SEMIRAW_EP): Use FP_PACK_RAW_EP instead of
7588         undefined _FP_PACK_RAW_EP.
7590         * soft-fp/op-2.h (_FP_FRAC_COPY_2_2): Define as alias to
7591         _FP_FRAC_COPY_2.
7592         * soft-fp/op-4.h (_FP_FRAC_COPY_2_2): Define as alias to
7593         _FP_FRAC_COPY_4.
7595 2007-04-16  Uros Bizjak  <ubizjak@gmail.com>
7596             Jakub Jelinek  <jakub@redhat.com>
7598         * soft-fp/op-common.h (FP_EXTEND): Do not abort when
7599         _FP_EXPBIAS_##dfs == _FP_EXPBIAS_##sfs.  Handle denormals for
7600         this case.
7601         * soft-fp/op-common.h (FP_TRUNC): Ditto.
7603 2007-05-03  Jakub Jelinek  <jakub@redhat.com>
7605         * math/test-misc.c (main): Add tests for rounding long double
7606         values close to smallest double denormalized value to double.
7608 2007-04-30  Joseph Myers  <joseph@codesourcery.com>
7610         * soft-fp/op-common.h (FP_TRUNC): Correct off-by-one error in
7611         condition for truncating to 0.  Set sticky bit for such
7612         truncation.
7614 2007-05-02  Jakub Jelinek  <jakub@redhat.com>
7616         * stdio-common/vfprintf.c (process_string_arg): Use a VLA rather than
7617         fixed length array for ignore.
7619 2007-04-30  Ulrich Drepper  <drepper@redhat.com>
7621         [BZ #4438]
7622         * stdio-common/vfprintf.c (process_string_arg): Don't overflow the
7623         stack for large precisions.
7624         * stdio-common/test-vfprintf.c (main): Add test for large
7625         precision.
7627 2007-04-30  Jakub Jelinek  <jakub@redhat.com>
7629         * stdio-common/printf_fp.c (___printf_fp): Don't print negative sign
7630         for exponent 0.
7631         * stdio-common/tfformat.c (sprint_doubles): Add a new test.
7633         [BZ #4439]
7634         * resolv/inet_ntop.c (inet_ntop4): Take terminating '\0' into
7635         account in the size check.
7636         * resolv/tst-inet_ntop.c: New test.
7637         * resolv/Makefile (tests): Add tst-inet_ntop.
7639 2007-04-30  Ulrich Drepper  <drepper@redhat.com>
7640             Jakub Jelinek  <jakub@redhat.com>
7642         [BZ #4349]
7643         * malloc/malloc.c: Keep separate list for first blocks on the bin
7644         lists with a given size.  This helps skipping over list elements
7645         we know won't fit in two places.
7646         Inspired by a patch by Tomash Brechko <tomash.brechko@gmail.com>.
7648 2007-04-28  Ulrich Drepper  <drepper@redhat.com>
7650         [BZ #4102]
7651         * sysdeps/posix/getaddrinfo.c (default_labels): Assign separate
7652         label to Teredo tunnel addresses 2001://32.
7654 2007-04-27  Ulrich Drepper  <drepper@redhat.com>
7656         * locale/programs/ld-collate.c (collate_read): Allow order_start
7657         after copy.
7659         * locale/programs/ld-collate.c (collate_read): Fix printing of
7660         error message.
7662         [BZ #3213]
7663         * locale/C-translit.h.in: Add entry for U2044.
7665         [BZ #4342]
7666         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Allow
7667         hexa-decimal floats without exponent.
7668         * stdio-common/tstscanf.c (main): Adjust Test 8 test for success.
7670 2007-04-25  Ulrich Drepper  <drepper@redhat.com>
7672         * sysdeps/unix/sysv/linux/bits/sched.h: Declare sched_getcpu.
7673         * sysdeps/unix/sysv/linux/sched_getcpu.c: New file.
7674         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: New file.
7675         * sysdeps/unix/sysv/linux/Versions: Export sched_getcpu for
7676         GLIBC_2.6.
7677         * sysdeps/unix/sysv/linux/Makefile [subdir=posix] (sysdep_routines):
7678         Add sched_getcpu.
7680 2007-04-25  Jakub Jelinek  <jakub@redhat.com>
7682         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Return -1 instead
7683         of 0 after the out_fail label.
7685 2007-04-25  Ulrich Drepper  <drepper@redhat.com>
7687         [BZ #4406]
7688         * iconv/gconv_charset.h (strip): Allow ':'.
7689         * iconv/iconv_open.c (iconv_open): Adjust comment.
7691 2007-04-25  Jakub Jelinek  <jakub@redhat.com>
7693         * libio/bits/stdio.h (fgetc_unlocked): Add extern inline optimized
7694         version.
7696 2007-04-23  Jakub Jelinek  <jakub@redhat.com>
7698         [BZ #4381]
7699         * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Ensure sufficient
7700         alignment of buffer and tmp_buffer.
7701         * nis/nss_nis/nis-hosts.c (internal_nis_gethostent_r,
7702         internal_gethostbyname2_r, _nss_nis_gethostbyaddr_r): Ensure sufficient
7703         alignment of buffer.
7704         * resolv/nss_dns/dns-hosts.c (getanswer_r): Likewise.  Handle buflen
7705         bigger than INT_MAX.
7706         * resolv/nss_dns/dns-network.c (getanswer_r): Likewise.  Add errnop and
7707         h_errnop arguments.  Fail if buflen is too small.
7708         (_nss_dns_getnetbyname_r, _nss_dns_getnetbyaddr_r): Adjust callers.
7710 2007-04-23  Jakub Jelinek  <jakub@redhat.com>
7712         [BZ #4405]
7713         * iconvdata/gconv-modules (E13B): Add a missing slash to the alias
7714         name.  Patch by Aurelien Jarno <aurelien@aurel32.net>.
7716 2007-04-22  Roland McGrath  <roland@redhat.com>
7718         * elf/elf.h (NT_PRXFPREG): New macro.
7720 2007-04-19  Andreas Jaeger  <aj@suse.de>
7722         [BZ #3905]
7723         * bits/in.h (IPV6_ROUTER_ALERT, IPV6_MTU_DISCOVER, IPV6_MTU,
7724         IPV6_RECVERR, IPV6_V6ONLY, IPV6_JOIN_ANYCAST, IPV6_LEAVE_ANYCAST):
7725         Added.
7727 2007-04-19  Ulrich Drepper  <drepper@redhat.com>
7729         * include/sys/mman.h: Mark madvise hidden.
7730         * misc/madvise.c: Add libc_hidden_def.
7732 2007-04-06  Jakub Jelinek  <jakub@redhat.com>
7734         * nis/nis_domain_of.c (__nis_domain_of): New function.
7735         * include/rpcsvc/nislib.h (__nis_domain_of): New prototype.
7736         * nis/nis_lookup.c (nis_lookup): Use __nis_domain_of.
7737         * nis/nis_call.c (rec_dirsearch): Likewise.
7738         (first_shoot): Likewise.  Remove search_parent_first argument.
7739         (struct nis_server_cache): Rename search_parent_first field
7740         to search_parent.
7741         (nis_server_cache_search, nis_server_cache_add): Rename
7742         search_parent_first argument to search_parent.
7743         (__nisfind_server): Likewise.  If search_parent, call
7744         __nis_domain_of.
7746 2007-04-18  Ulrich Drepper  <drepper@redhat.com>
7748         * sysdeps/posix/getaddrinfo.c: Remove commented-out code.
7750 2007-04-17  Ulrich Drepper  <drepper@redhat.com>
7752         [BZ #4368]
7753         * stdlib/stdlib.h: Remove obsolete part of comment for realpath.
7755 2007-04-16  Ulrich Drepper  <drepper@redhat.com>
7757         [BZ #4364]
7758         * posix/unistd.h (_XOPEN_VERSION): Define appropriately for SUSv3.
7760 2007-04-15  Jakub Jelinek  <jakub@redhat.com>
7762         * locale/programs/locarchive.c (INITIAL_NUM_NAMES,
7763         INITIAL_SIZE_STRINGS, INITIAL_NUM_LOCREC): Update to accomodate
7764         current number of locales in SUPPORTED.
7765         (create_archive): Initialize serial.
7766         (enlarge_archive): Preserve aliases rather than duplicating
7767         their locrecs.
7769 2007-04-13  Jakub Jelinek  <jakub@redhat.com>
7771         * libio/genops.c (_IO_default_finish): Call _IO_lock_fini
7772         after _IO_un_link, not before it.
7774         * stdio-common/printf_fp.c (___printf_fp): Fix exponent -4
7775         special case handling when wcp == wstartp + 1.  Fix a comment typo.
7776         * stdio-common/tfformat.c (sprint_doubles): Add a new testcase.
7778 2007-03-30  Jakub Jelinek  <jakub@redhat.com>
7780         * libio/libio.h (__underflow, __uflow, __overflow, __wunderflow,
7781         __wuflow, __woverflow, _IO_getc, _IO_putc, _IO_peekc_locked, _IO_padn,
7782         _IO_sgetn, _IO_seekoff, _IO_seekpos, _IO_getwc, _IO_putwc, _IO_wpadn):
7783         Remove __THROW.
7784         * libio/fileops.c (new_do_write, _IO_file_xsgetn_mmap,
7785         _IO_file_xsgetn_maybe_mmap): Likewise.
7786         * libio/oldfileops.c (old_do_write): Likewise.
7787         * libio/libioP.h (_IO_switch_to_get_mode, _IO_switch_to_wget_mode,
7788         _IO_init_marker, _IO_init_wmarker, _IO_default_uflow,
7789         _IO_wdefault_uflow, _IO_default_setbuf, _IO_default_seekpos,
7790         _IO_do_write, _IO_new_do_write, _IO_old_do_write, _IO_wdo_write,
7791         _IO_flush_all_lockp, _IO_flush_all, _IO_cleanup,
7792         _IO_flush_all_linebuffered, _IO_new_fgetpos, _IO_old_fgetpos,
7793         _IO_new_fsetpos, _IO_old_fsetpos, _IO_new_fgetpos64,
7794         _IO_old_fgetpos64, _IO_new_fsetpos64, _IO_old_fsetpos64,
7795         _IO_file_setbuf, _IO_file_seekoff, _IO_file_xsputn, _IO_file_xsgetn,
7796         _IO_file_underflow, _IO_file_underflow_mmap,
7797         _IO_file_underflow_maybe_mmap, _IO_file_overflow, _IO_file_attach,
7798         _IO_file_open, _IO_file_fopen, _IO_file_write, _IO_file_read,
7799         _IO_file_sync, _IO_file_close_it, _IO_file_finish,
7800         _IO_new_file_attach, _IO_new_file_close_it, _IO_new_file_finish,
7801         _IO_new_file_fopen, _IO_new_file_setbuf, _IO_file_setbuf_mmap,
7802         _IO_new_file_sync, _IO_new_file_underflow, _IO_new_file_overflow,
7803         _IO_new_file_seekoff, _IO_new_file_write, _IO_new_file_xsputn,
7804         _IO_old_file_setbuf, _IO_old_file_seekoff, _IO_old_file_xsputn,
7805         _IO_old_file_underflow, _IO_old_file_overflow, _IO_old_file_attach,
7806         _IO_old_file_fopen, _IO_old_file_write, _IO_old_file_sync,
7807         _IO_old_file_close_it, _IO_old_file_finish, _IO_wfile_xsputn,
7808         _IO_wfile_setbuf, _IO_wfile_sync, _IO_wfile_underflow,
7809         _IO_wfile_overflow, _IO_wfile_seekoff, _IO_old_proc_open,
7810         _IO_old_proc_close, _IO_getdelim, _IO_flush_all_internal,
7811         _IO_adjust_column_internal, _IO_default_uflow_internal,
7812         _IO_default_xsgetn_internal, _IO_wdefault_xsputn_internal,
7813         _IO_wdefault_xsgetn_internal, _IO_wdefault_uflow_internal,
7814         _IO_file_setbuf_internal, _IO_file_seekoff_internal,
7815         _IO_file_xsputn_internal, _IO_file_xsgetn_internal,
7816         _IO_file_close_it_internal, _IO_file_underflow_internal,
7817         _IO_file_overflow_internal, _IO_file_attach_internal,
7818         _IO_file_fopen_internal, _IO_file_sync_internal,
7819         _IO_file_finish_internal, _IO_wfile_xsputn_internal,
7820         _IO_wfile_seekoff_internal, _IO_wfile_sync_internal,
7821         _IO_switch_to_wget_mode_internal, _IO_padn_internal,
7822         _IO_switch_to_get_mode_internal, _IO_seekoff_unlocked,
7823         _IO_seekpos_unlocked): Likewise.
7824         (_IO_strtod, _IO_dtoa, _IO_outfloat, _IO_read, _IO_write,
7825         _IO_lseek, _IO_close, _IO_fstat): Remove unused prototypes.
7827 2007-04-16  Jakub Jelinek  <jakub@redhat.com>
7829         * locale/programs/locarchive.c (show_archive_content): Fix sizeof
7830         argument in xmalloc size computation.
7832 2007-04-01  Jakub Jelinek  <jakub@redhat.com>
7834         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Use
7835         math_opt_barrier and math_force_eval macros.
7837 2007-03-27  Jakub Jelinek  <jakub@redhat.com>
7839         [BZ #3306]
7840         * math/math_private.h (math_opt_barrier, math_force_eval): Define.
7841         * sysdeps/i386/fpu/math_private.h: New file.
7842         * sysdeps/x86_64/fpu/math_private.h: New file.
7843         * math/s_nexttowardf.c (__nexttowardf): Use math_opt_barrier and
7844         math_force_eval macros.  Use "+m" constraint on asm rather than
7845         "=m" and "m".
7846         * math/s_nextafter.c (__nextafter): Likewise.
7847         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward):
7848         Likewise.
7849         * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
7850         * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward): Likewise.
7851         * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
7852         * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Use
7853         math_opt_barrier and math_force_eval macros.
7854         * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl): Likewise.
7855         * sysdeps/ieee754/ldbl-96/s_nextafterl.c (__nextafterl): Likewise.
7856         * sysdeps/i386/fpu/s_nexttoward.c: Include float.h.
7857         (__nexttoward): Use math_opt_barrier and
7858         math_force_eval macros.  Use "+m" constraint on asm rather than
7859         "=m" and "m".  Only use asm to force double result if
7860         FLT_EVAL_METHOD is 2.
7861         * sysdeps/i386/fpu/s_nexttowardf.c: Include float.h.
7862         (__nexttowardf): Use math_opt_barrier and
7863         math_force_eval macros.  Use "+m" constraint on asm rather than
7864         "=m" and "m".  Only use asm to force double result if
7865         FLT_EVAL_METHOD is not 0.
7866         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Include float.h.
7867         (__nexttowardf): Use math_opt_barrier and
7868         math_force_eval macros.  If FLT_EVAL_METHOD is not 0, force
7869         x to float using asm.
7870         * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c: Include float.h.
7871         (__nldbl_nexttowardf): Use math_opt_barrier and
7872         math_force_eval macros.  If FLT_EVAL_METHOD is not 0, force
7873         x to float using asm.
7874         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Include float.h.
7875         (__nexttowardf): Use math_opt_barrier and math_force_eval
7876         macros.  If FLT_EVAL_METHOD is not 0, force x to float using asm.
7877         * math/bug-nextafter.c (zero, inf): New variables.
7878         (main): Add new tests.
7879         * math/bug-nexttoward.c (zero, inf): New variables.
7880         (main): Add new tests.
7882 2007-03-22  Jakub Jelinek  <jakub@redhat.com>
7884         [BZ #3427]
7885         * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Clear all
7886         exceptions both in SW and MXCSR.
7887         * sysdeps/x86_64/fpu/feupdateenv.c: New file.
7888         * sysdeps/x86_64/fpu/feenablxcpt.c (feenableexcept): Remove dead code.
7889         * sysdeps/x86_64/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
7890         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
7891         in MXCSR if SSE is available.
7892         * sysdeps/i386/fpu/feupdateenv.c: Include unistd.h, dl-procinfo.h
7893         and ldsodefs.h.
7894         (__feupdateenv): Query exceptions also from MXCSR if SSE is available.
7895         Fix comment typo.
7896         * sysdeps/ia64/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions.
7897         Return 0 rather than 1.
7898         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Fix comment typo.
7899         Remove incorrect part of a comment.  Fix argument to feraiseexcept.
7900         * math/test-fenv.c (feholdexcept_tests): New function.
7901         (main): Call it.
7903 2007-01-05  Richard B. Kreckel  <kreckel@ginac.de>
7905         [BZ #3427]
7906         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
7907         in SW.
7909 2007-04-13  Jakub Jelinek  <jakub@redhat.com>
7911         [BZ #4344]
7912         * elf/ldconfig.c (search_dir): Fix 2 off-by-2 errors.
7913         Reported by David Anderson <davea42@earthlink.net>.
7915 2007-04-07  Ulrich Drepper  <drepper@redhat.com>
7917         * posix/sys/wait.h: Remove unnecessary forward declaration.
7919 2007-04-05  Jakub Jelinek  <jakub@redhat.com>
7921         * nis/nis_call.c (__nisfind_server): Replace (*dir)->do_servers
7922         with obj->do_servers after first_shoot.
7924 2007-04-03  Ulrich Drepper  <drepper@redhat.com>
7926         * posix/Makefile (routines): Add sched_cpucount.
7927         (tests): Add tst-cpucount.
7928         * posix/sched_cpucount.c: New file.
7929         * posix/tst-cpucount.c: New file.
7930         * posix/Versions: Export __sched_cpucount with version GLIBC_2.6.
7931         * bits/sched.h: Define __CPU_COUNT.  Declare __sched_cpucount.
7932         * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
7933         * posix/sched.h: Define CPU_COUNT.
7935 2007-03-27  Jakub Jelinek  <jakub@redhat.com>
7937         * posix/fnmatch.c (STRUCT): Define.
7938         (fnmatch): Pass NULL as last argument to internal_fn{,w}match.
7939         * posix/fnmatch_loop.c (struct STRUCT): New type.
7940         (FCT): Add ends argument.  If ends != NULL and normal * is
7941         seen in the pattern, store current pattern and string pointers
7942         and return.  Adjust recursive calls.
7943         (EXT): Adjust FCT callers.
7944         (STRUCT): Undef at the end of the file.
7945         * posix/Makefile (tests): Add tst-fnmatch2.
7946         * posix/tst-fnmatch2.c: New test.
7948 2007-04-01  Jakub Jelinek  <jakub@redhat.com>
7950         * sysdeps/ia64/fpu/fesetround.c (fesetround): Return 0 on success
7951         and 1 on failure.
7953         * sysdeps/unix/sysv/linux/sync_file_range.c (sync_file_range):
7954         Change last argument to unsigned int.
7956 2007-03-23  Jakub Jelinek  <jakub@redhat.com>
7958         * scripts/check-local-headers.sh: Filter out sys/capability.h.
7960 2007-03-22  Jakub Jelinek  <jakub@redhat.com>
7962         * config.h.in (HAVE_LIBCAP): Add.
7963         * nscd/selinux.h: Include sys/capability.h rather than non-existent
7964         sys/capabilities.h.
7965         * nscd/selinux.c (preserve_capabilities): Use cap_free instead of
7966         free_caps.  Cast away const from 4th cap_set_flag argument.
7968 2007-03-26  Ulrich Drepper  <drepper@redhat.com>
7970         * sysdeps/unix/sysv/linux/Versions: Move sync_file_range to
7971         GLIBC_2.6.
7972         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
7973         Add sync_file_range.
7974         Reported by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
7976 2007-03-19  Steven Munroe  <sjmunroe@us.ibm.com>
7978         * sysdeps/powerpc/bits/atomic.h
7979         [!MUTEX_HINT_ACQ]: Define MUTEX_HINT_ACQ.
7980         [!MUTEX_HINT_REL]: Define MUTEX_HINT_REL.
7981         (__arch_compare_and_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
7982         (__arch_compare_and_exchange_val_32_rel): Add MUTEX_HINT_REL to lwarx.
7983         (__arch_atomic_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
7984         (__arch_atomic_exchange_rel_32_rel): Add MUTEX_HINT_REL to lwarx.
7985         * sysdeps/powerpc/powerpc32/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6X]:
7986         Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
7987         (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
7988         (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
7989         * sysdeps/powerpc/powerpc64/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6D]:
7990         Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
7991         (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
7992         (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
7993         (__arch_compare_and_exchange_bool_64_acq): Add MUTEX_HINT_ACQ to lwarx.
7994         (__arch_compare_and_exchange_bool_64_rel): Add MUTEX_HINT_REL to lwarx.
7995         (__arch_compare_and_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
7996         (__arch_compare_and_exchange_val_64_rel): Add MUTEX_HINT_REL to lwarx.
7997         (__arch_atomic_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
7998         (__arch_atomic_exchange_rel_64_rel): Add MUTEX_HINT_REL to lwarx.
8000 2007-03-20  Jakub Jelinek  <jakub@redhat.com>
8002         * sysdeps/unix/sysv/linux/powerpc/libc-start.c
8003         (__cache_line_size): Define the variable here.  Add
8004         attribute_hidden, remove weak_extern.
8005         (__libc_start_main): Set __cache_line_size
8006         unconditionally.
8007         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
8008         (__cache_line_size): Define the variable here.  Add
8009         attribute_hidden, remove weak_extern.
8010         (DL_PLATFORM_AUXV): Set __cache_line_size
8011         unconditionally.
8012         * sysdeps/powerpc/powerpc32/dl-machine.c (__cache_line_size): Remove
8013         weak_extern, add attribute_hidden.
8014         (__elf_machine_runtime_setup): Assume __cache_line_size is always
8015         defined in ld.so.
8016         * sysdeps/powerpc/powerpc32/memset.S (__cache_line_size): Remove
8017         definition.
8018         * sysdeps/powerpc/powerpc64/memset.S (__cache_line_size): Likewise.
8020 2007-03-26  Jakub Jelinek  <jakub@redhat.com>
8022         [BZ #4276]
8023         * timezone/africa: Update from tzdata2007d.
8024         * timezone/asia: Likewise.
8025         * timezone/australasia: Likewise.
8026         * timezone/backward: Likewise.
8027         * timezone/europe: Likewise.
8028         * timezone/iso3166.tab: Likewise.
8029         * timezone/leapseconds: Likewise.
8030         * timezone/northamerica: Likewise.
8031         * timezone/southamerica: Likewise.
8032         * timezone/zone.tab: Likewise.
8034         * timezone/private.h: Update from tzcode2007d.
8035         * timezone/zdump.c: Likewise.
8036         * timezone/zic.c: Likewise.
8038 2007-03-21  Jakub Jelinek  <jakub@redhat.com>
8040         * nis/nis_call.c: Include bits/libc-lock.h, sys/stat.h, unistd.h.
8041         (nis_server_cache, nis_server_cache_lock, nis_cold_start_mtime): New
8042         variables.
8043         (nis_server_cache_search, nis_server_cache_add): New functions.
8044         (__nisfind_server): Use them.  Add dbp and flags argument, if
8045         call __nisbind_create.
8046         (__nisbind_create): Add server_used and current_ep arguments,
8047         only call __nis_findfastest if server_used is ~0.
8048         (__do_niscall2, __prepare_niscall): Adjust callers.
8049         (ckey_cache, ckey_cache_size, ckey_cache_allocated, ckey_cache_pid,
8050         ckey_cache_euid, ckey_cache_lock): New variables.
8051         (get_ckey): New function.
8052         (__nisbind_connect): If not dbp->use_udp, pass IPPROTO_TCP to
8053         __pmap_getnisport.  Save __pmap_getnisport result in
8054         dbp->addr.sin_port if non-zero.  Use get_ckey to create conversation
8055         key.
8056         * nis/nis_lookup.c (nis_lookup): Likewise.
8057         * nis/nis_table.c (nis_list): Likewise.
8058         * nis/rpcsvc/nislib.h (__nisbind_create, __nisfind_server): Adjust
8059         prototypes.
8061         * nis/nss_nisplus/nisplus-pwd.c (_nss_nisplus_getpwnam_r,
8062         _nss_nisplus_getpwuid_r): Pass USE_DGRAM flag to nis_list.
8063         * nis/nss_nisplus/nisplus-service.c (_nss_nisplus_getservbyname_r,
8064         _nss_nisplus_getservbyport_r): Likewise.
8065         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r,
8066         _nss_nisplus_getnetbyaddr_r): Likewise.
8067         * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_getspnam_r): Likewise.
8068         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r,
8069         _nss_nisplus_getntohost_r): Likewise.
8070         * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r,
8071         _nss_nisplus_getrpcbynumber_r): Likewise.
8073 2007-03-20  Jakub Jelinek  <jakub@redhat.com>
8075         * configure.in (libc_cv_gnu89_inline): Only do compile test.
8076         * configure: Rebuilt.
8078         * soft-fp/double.h (_FP_UNION_D): Use _FP_W_TYPE for frac
8079         bit-fields.
8080         * soft-fp/extended.h (_FP_UNION_E): Likewise.
8082 2006-06-07  Joseph Myers  <joseph@codesourcery.com>
8084         [BZ #2831]
8085         * soft-fp/quad.h (_FP_UNION_Q): Use _FP_W_TYPE for frac
8086         bit-fields.
8088 2007-03-18  Jakub Jelinek  <jakub@redhat.com>
8090         * nscd/gai.c: Include alloca.h.
8091         (__libc_use_alloca): Define.
8093 2007-03-16  Jakub Jelinek  <jakub@redhat.com>
8095         * elf/dl-open.c (dl_open_worker): Declare l in 2 different
8096         smaller scopes.
8097         * elf/dl-dst.h (DL_DST_REQ_STATIC): Add l as macro argument.
8098         (DL_DST_REQUIRED): Adjust user.
8100         * include/dlfcn.h (struct link_map): New forward decl.
8102         * inet/getnameinfo.c: Include stddef.h.
8103         (getnameinfo): Use offsetof.
8105         * time/tst-mktime2.c (do_test): Don't rely on signed wrap.
8107         * stdio-common/vfprintf.c (_itoa): Undef before redefining.
8109         * string/strerror_l.c: Include stdlib.h.
8111         * configure.in (libc_cv_gnu89_inline): Test for -fgnu89-inline.
8112         * config.make.in (gnu89-inline-CFLAGS): New variable.
8113         * Makeconfig (CFLAGS): Use $(gnu89-inline-CFLAGS) together with
8114         -std=gnu99.
8115         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline): Define.
8116         * argp/argp.h: Use it.
8117         * bits/mathinline.h: Likewise.
8118         * bits/sigset.h: Likewise.
8119         * bits/string.h: Likewise.
8120         * ctype/ctype.h: Likewise.
8121         * hurd/hurd.h: Likewise.
8122         * hurd/hurd/fd.h: Likewise.
8123         * hurd/hurd/port.h: Likewise.
8124         * hurd/hurd/signal.h: Likewise.
8125         * hurd/hurd/threadvar.h: Likewise.
8126         * hurd/hurd/userlink.h: Likewise.
8127         * io/sys/stat.h: Likewise.
8128         * libio/bits/stdio.h: Likewise.
8129         * libio/bits/stdio2.h: Likewise.
8130         * mach/lock-intern.h: Likewise.
8131         * mach/mach/mig_support.h: Likewise.
8132         * math/bits/cmathcalls.h: Likewise.
8133         * posix/bits/unistd.h: Likewise.
8134         * socket/bits/socket2.h: Likewise.
8135         * stdlib/bits/stdlib.h: Likewise.
8136         * stdlib/stdlib.h: Likewise.
8137         * string/argz.h: Likewise.
8138         * string/bits/string2.h: Likewise.
8139         * string/bits/string3.h: Likewise.
8140         * sysdeps/alpha/fpu/bits/mathinline.h: Likewise.
8141         * sysdeps/generic/inttypes.h: Likewise.
8142         * sysdeps/generic/machine-lock.h: Likewise.
8143         * sysdeps/generic/machine-sp.h: Likewise.
8144         * sysdeps/i386/fpu/bits/mathinline.h: Likewise.
8145         * sysdeps/i386/i486/bits/string.h: Likewise.
8146         * sysdeps/ia64/fpu/bits/mathinline.h: Likewise.
8147         * sysdeps/mach/alpha/machine-lock.h: Likewise.
8148         * sysdeps/mach/alpha/machine-sp.h: Likewise.
8149         * sysdeps/mach/i386/machine-lock.h: Likewise.
8150         * sysdeps/mach/powerpc/machine-lock.h: Likewise.
8151         * sysdeps/mach/powerpc/machine-sp.h: Likewise.
8152         * sysdeps/powerpc/fpu/bits/mathinline.h: Likewise.
8153         * sysdeps/s390/bits/string.h: Likewise.
8154         * sysdeps/s390/fpu/bits/mathinline.h: Likewise.
8155         * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
8156         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
8157         * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
8158         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
8159         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Likewise.
8160         * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
8161         * wcsmbs/bits/wchar2.h: Likewise.
8162         * wcsmbs/wchar.h: Likewise.
8163         * stdlib/gmp.h: Likewise.  Include <features.h> to get
8164         __extern_inline definition.
8166 2007-03-15  Jakub Jelinek  <jakub@redhat.com>
8168         * locale/programs/ld-ctype.c (find_translit): Return NULL if ctype is
8169         NULL.
8171         [BZ #3919]
8172         * math/libm-test.inc (log_test): Test -Inf and NaN.
8173         (log10_test, log1p_test, log2_test): Test -Inf.
8174         * sysdeps/i386/fpu/e_log.S (__ieee754_log): Don't raise
8175         FE_INVALID when argument is qNaN.
8176         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
8177         * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
8178         * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
8179         * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Replace
8180         andb $1, %ah with testb $1, %ah, don't test for parity, instead
8181         testb $4, %ah and jump if non-zero.
8182         * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Likewise.
8183         * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Likewise.
8185         [BZ #4101]
8186         * argp/argp-help.c (hol_cluster_cmp): Fix comparisons used to find
8187         ancestors with the same depths.
8188         Patch by Niels Moeller <nisse@lysator.liu.se>.
8189         (filter_doc): Don't crash if argp is NULL.
8190         * argp/Makefile (tests): Add tst-argp2.
8191         * argp/tst-argp2.c: New test.
8193         [BZ #4130]
8194         * login/utmp_file.c (setutent_file): Use O_LARGEFILE for
8195         open_not_cancel_2.
8196         (updwtmp_file): Likewise.
8198         [BZ #4181]
8199         * inet/inet6_opt.c (add_padding): Only insert padding if npad > 0.
8200         (inet6_opt_append): Don't check extlen is big enough if extbuf
8201         is NULL.
8202         (inet6_opt_finish): Likewise.
8203         * inet/Makefile (tests): Add test-inet6_opt.
8204         * inet/test-inet6_opt.c: New test.
8206         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Never
8207         reallocate the buffer, instead fail for MSG_TRUNC or for EBUSY
8208         NLMSG_ERR.  Instead use a page sized buffer.
8209         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use page sized
8210         buffer.
8212 2007-03-14  Richard Henderson  <rth@redhat.com>
8214         * sysdeps/alpha/fpu/s_llround.c: New file.
8215         * sysdeps/alpha/fpu/s_llroundf.c: New file.
8216         * sysdeps/alpha/fpu/s_lround.c: New file.
8217         * sysdeps/alpha/fpu/s_lroundf.c: New file.
8218         * sysdeps/alpha/fpu/s_round.c: New file.
8219         * sysdeps/alpha/fpu/s_roundf.c: New file.
8220         * sysdeps/alpha/fpu/s_trunc.c: New file.
8221         * sysdeps/alpha/fpu/s_truncf.c: New file.
8223         * sysdeps/alpha/fpu/s_ceil.c: Rewrite without branches.
8224         * sysdeps/alpha/fpu/s_ceilf.c: Likewise.
8225         * sysdeps/alpha/fpu/s_floor.c: Likewise.
8226         * sysdeps/alpha/fpu/s_floorf.c: Likewise.
8227         * sysdeps/alpha/fpu/s_rint.c: Likewise.
8228         * sysdeps/alpha/fpu/s_rintf.c: Likewise.
8230         * sysdeps/alpha/fpu/s_fmax.S: New file.
8231         * sysdeps/alpha/fpu/s_fmaxf.S: New file.
8232         * sysdeps/alpha/fpu/s_fmin.S: New file.
8233         * sysdeps/alpha/fpu/s_fminf.S: New file.
8234         * sysdeps/alpha/fpu/s_isnan.c: New file.
8235         * sysdeps/alpha/fpu/s_isnanf.c: New file.
8236         * sysdeps/alpha/fpu/s_llrint.c: New file.
8237         * sysdeps/alpha/fpu/s_llrintf.c: New file.
8238         * sysdeps/alpha/fpu/s_lrint.c: New file.
8239         * sysdeps/alpha/fpu/s_lrintf.c: New file.
8240         * sysdeps/alpha/fpu/s_nearbyint.c: New file.
8241         * sysdeps/alpha/fpu/s_nearbyintf.c: New file.
8243         * sysdeps/alpha/fpu/bits/mathinline.h (__floorf, __floor): Remove.
8244         (__fdimf, fdimf, __fdim, fdim): Remove.
8245         (__signbitf, __signbit, __signbitl): Use gcc builtin if available.
8246         (__isnanf, __isnan, __isnanl): New.
8248 2007-03-13  Richard Henderson  <rth@redhat.com>
8250         * sysdeps/ieee754/ldbl-128/Makefile: New file.
8252 2007-03-13  Richard Henderson  <rth@redhat.com>
8254         * sysdeps/alpha/Makefile (sysdep-CFLAGS): Force dynamic rounding.
8255         * sysdeps/alpha/fpu/bits/mathinline.h (__signbitl): New.
8256         * sysdeps/alpha/fpu/libm-test-ulps: Regenerate.
8257         * sysdeps/unix/sysv/linux/alpha/alphaev6/fpu/Implies: New file.
8258         * sysdeps/unix/sysv/linux/alpha/alphaev67/fpu/Implies: New file.
8259         * sysdeps/unix/sysv/linux/alpha/fpu/Implies: New file.
8261 2007-03-13  Richard Henderson  <rth@redhat.com>
8263         * elf/dl-support.c (_dl_aux_init): Honor DL_PLATFORM_AUXV.
8264         * sysdeps/unix/sysv/linux/alpha/dl-auxv.h: New file.
8265         * sysdeps/unix/sysv/linux/alpha/dl-support.c: New file.
8266         * sysdeps/unix/sysv/linux/alpha/dl-sysdep.c (__libc_alpha_cache_shape):
8267         Move to dl-auxv.h; initialize instead of extern weak.
8268         (DL_PLATFORM_AUXV): Move to dl-auxv.h; don't test for undef
8269         weak symbol.
8270         * sysdeps/unix/sysv/linux/alpha/sysconf.c (__libc_alpha_cache_shape):
8271         Extern instead of initialized.
8273 2007-03-13  Richard Henderson  <rth@redhat.com>
8275         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S: Add support for
8276         __sigsuspend_nocancel.
8278 2007-03-06  Ulrich Drepper  <drepper@redhat.com>
8280         * sysdeps/posix/getaddrinfo.c (get_scope): Correct test for
8281         172.16/12 address range.
8283 2007-03-02  Jakub Jelinek  <jakub@redhat.com>
8285         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Retry with
8286         a new netlink socket if NLMSG_ERR -EBUSY is seen after some MSG_TRUNC
8287         message.
8289 2007-03-01  Jakub Jelinek  <jakub@redhat.com>
8291         [BZ #4069]
8292         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Check for NaN
8293         earlier.
8294         * math/libm-test.inc (pow_test): Add more tests involving NaNs.
8296         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Avoid invalid exception
8297         for x qNaN and y either +-inf or non-integer value.
8298         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Likewise.
8299         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
8300         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
8302 2007-02-10  Mike Frysinger  <vapier@gentoo.org>
8304         * sysdeps/unix/sysv/linux/sh/Makefile: Remove sys/io.h
8305         from sysdep_headers.
8307 2007-02-28  Jakub Jelinek  <jakub@redhat.com>
8309         * time/tzfile.c (find_transition): Instead of a linear search try to
8310         guess the transition index, use a linear search if the result is at
8311         most 10 transitions away from the guess or binary search otherwise.
8313 2007-02-27  Jakub Jelinek  <jakub@redhat.com>
8315         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Fix
8316         memory reallocation.
8318 2007-02-21  Ulrich Drepper  <drepper@redhat.com>
8320         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Add branch predictions
8321         and fix some typos.
8322         Optimize use of TOLOWER.
8324         [BZ #3325]
8325         * sysdeps/i386/fpu/e_fmodf.S: Revert last changes, keep using fprem.
8326         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
8327         * sysdeps/i386/fpu/e_fmod.S: Likewise.
8329         [BZ #3458]
8330         * sysdeps/unix/sysv/linux/posix_madvise.c: New file.
8331         * sysdeps/unix/sysv/linux/syscalls.list: Remove posix_madvise entry.
8333         [BZ #4076]
8334         * io/ftw.c (ftw_startup): Handle special case of FTW_CHDIR in /.
8335         (open_dir_stream): Likewise.
8336         * io/Makefile (tests): Add bug-ftw5.
8337         * io/bug-ftw5.c: New file.
8339         * nscd/hstcache.c (cache_addhst): Remove unnecessary conditional.
8340         * nscd/servicescache.c (cache_addserv): Likewise.
8342         * nscd/grpcache.c (cache_addgr): In case a record changed on
8343         refresh, adjust key_copy.
8345         [BZ #4074]
8346         * nscd/pwdcache.c (cache_addpw): In case a record changed on
8347         refresh, adjust key_copy.
8349         [BZ #4070]
8350         * stdio-common/printf_fp.c (___printf_fp): Handle a few more
8351         special cases.
8352         * stdio-common/tfformat.c (sprint_doubles): Some more tests.
8354 2007-02-19  Ulrich Drepper  <drepper@redhat.com>
8356         * stdio-common/printf_fp.c (___printf_fp): Cleanups and minor
8357         optimization.
8359         * stdio-common/vfscanf.c: Small cleanups throughout.
8361 2007-02-18  Ulrich Drepper  <drepper@redhat.com>
8363         [BZ #3325]
8364         * sysdeps/i386/fpu/e_fmodf.S: Use fprem1 instead of fprem.
8365         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
8366         * sysdeps/i386/fpu/e_fmod.S: Likewise.
8367         Patch by Jared Casper <jaredcasper@gmail.com>.
8369         * sysdeps/unix/closedir.c: Outside libc don't use locking.
8370         * sysdeps/unix/opendir.c: Likewise.
8371         * sysdeps/unix/readdir.c: Likewise.
8373         [BZ #2211]
8374         * stdio-common/vfscanf.c: Handle localized digits etc for floating
8375         point numbers.
8376         Patch mostly by Hamed Malek <hamed@farsiweb.info>.
8378         * stdio-common/vfscanf.c: Fix problems in width accounting.
8379         * stdio-common/tst-sscanf.c (double_tests): New tests.
8380         (main): Hook them up.
8382         * stdio-common/vfscanf.c: Remove unused WIDTH handling.
8383         More simplifications of floating-point reader.
8385         * stdio-common/Makefile (tests): Add tst-swscanf.
8386         * stdio-common/tst-sscanf.c: Make tests usable for swscanf
8387         testing.
8388         * stdio-common/tst-swscanf.c: New file.
8390 2007-02-17  Ulrich Drepper  <drepper@redhat.com>
8392         [BZ #2633]
8393         * libio/stdio.h: Define struct _IO_FILE in global namespace.
8394         * setjmp/setjmp.h: Define __jmp_buf_tag in global namespace.
8395         Remove using for __jmp_buf_tag.
8396         * locale/locale.h (struct lconv): Also define in std namespace.
8397         * wcsmbs/wchar.h: Move using declaration for tm out of namespace.
8399         [BZ #3842]
8400         * sysdeps/posix/euidaccess.c [_LIBC] (euidaccess): Remove shortcut
8401         using __libc_enable_secure.
8403         [BZ #3818]
8404         * sysdeps/unix/sysv/linux/sys/acct.h (struct acct_v3): Define.
8406         [BZ #3745]
8407         * locale/programs/ld-collate.c (handle_ellipsis): Fix generation
8408         of names for ellipsises.
8410         [BZ #3348]
8411         * malloc/memusage.sh: Cleanups.
8412         * debug/xtrace.sh: Quoting and trap changes.
8414 2007-02-16  Ulrich Drepper  <drepper@redhat.com>
8416         * locale/iso-3166.def: Add Jersey, Guernsey, and Isle Of Man entries.
8418         * locale/iso-3166.def: Update entry for Serbia.
8419         * locale/iso-4217.def: Define RSD, remove CSD.
8421         * sysdeps/x86_64/bits/atomic.h: One more change, this time for 16-
8422         and 64-bit operations.
8424         [BZ #4040]
8425         * sysdeps/i386/i486/bits/atomic.h: One more change, this time for
8426         16-bit operations.
8428         * nscd/nscd.c (parse_opt): One more conversion to use send instead
8429         of writev.
8431 2007-02-15  Ulrich Drepper  <drepper@redhat.com>
8433         [BZ #3991]
8434         * assert/assert.h (assert): Simplify.
8435         (assert_perror): Likewise.
8436         Patch by Israel G. Lugo <ilugo@bridonsecurity.com>.
8438         * nscd/nscd_helper.c (open_socket): Don't send padding bytes from
8439         reqdata.
8441         * sysdeps/unix/sysv/linux/x86_64/send.c (__libc_send): Cosmetic
8442         change: don't pass NULL in place of an integer.
8444 2007-02-02  Bruno Haible  <bruno@clisp.org>
8446         [BZ #3954]
8447         * iconvdata/ksc5601.c (__ksc5601_sym_to_ucs, __ksc5601_sym_from_ucs):
8448         Add mapping for U+327E.
8449         * iconvdata/ksc5601.h (KSC5601_SYMBOL): Increment.
8450         * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
8451         mapping of 0xD9 0xE8.
8452         * iconvdata/uhc.c (BODY for FROM_LOOP, BODY for TO_LOOP): Disable
8453         mapping of U+327E.
8454         Reported by Jungshik Shin <jungshik@google.com>.
8456         [BZ #3955]
8457         * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
8458         mapping of 0xD9 0xE6 and of 0xD9 0xE7.
8459         Reported by Jungshik Shin <jungshik@google.com>.
8461 2007-02-14  Ulrich Drepper  <drepper@redhat.com>
8463         * sysdeps/x86_64/bits/atomic;h: Fix asm parameters for some
8464         byte variants.
8466         [BZ #4040]
8467         * sysdeps/i386/i486/bits/atomic.h: Fix asm parameters for some
8468         byte variants.  Patch mostly be tom@tommay.net.
8470 2007-02-14  Jakub Jelinek  <jakub@redhat.com>
8472         [BZ #3996]
8473         * posix/glob.c (attribute_hidden): Define if not defined.
8474         (glob): Unescape dirname, filename or username when needed and not
8475         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
8476         is NULL.  Handle unescaped [ in pattern without closing ].
8477         Don't pass GLOB_CHECK down to recursive glob for directories.
8478         (__glob_pattern_type): New function.
8479         (__glob_pattern_p): Implement using __glob_pattern_type.
8480         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
8481         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
8482         Remove unreachable code.
8483         * posix/globtest.sh: Add a couple of new tests.
8485 2007-02-13  Ulrich Drepper  <drepper@redhat.com>
8487         * po/ru.po: Update from translation team.
8489 2007-02-12  Jakub Jelinek  <jakub@redhat.com>
8491         * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __amdfam10__
8492         to the list of i486+ CPUs.
8493         * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
8495 2007-02-12  Ulrich Drepper  <drepper@redhat.com>
8497         * elf/rtld.c (RESOLVE_MAP): Always return bootstrap_map reference.
8498         * elf/Makefile ($(objpfx)ld.so): Check that ld.so has no undefined
8499         references.
8501 2007-02-09  Ulrich Drepper  <drepper@redhat.com>
8503         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Remove incorrect comment.
8505         * resolv/res_init.c (res_setoptions): Recognize edns0 option.
8506         * resolv/res_mkquery.c: Define __res_nopt.
8507         * resolv/res_query.c (__libc_res_nquery): If RES_USE_EDNS0 is set
8508         try adding EDNS0 record.
8509         * resolv/res_send.c (send_dg): If request failed with FORMERR and
8510         EDNS0 record was send make sure we don't try it again.
8511         * resolv/resolv.h: Define RES_F_EDNS0ERR and RES_USE_EDNS0.
8512         * include/resolv.h: Declare __res_nopt.
8514 2007-02-08  Jakub Jelinek  <jakub@redhat.com>
8516         [BZ #3944]
8517         * time/strptime_l.c (__strptime_internal): Set have_mon for
8518         %b/%B/%h.  Set have_mon and have_mday if tm_mon and tm_mday
8519         have been computed from tm_yday and tm_year.  Don't crash
8520         in day_of_the_week or day_of_the_year if not have_mon
8521         and tm_mon contains bogus value.
8522         * time/Makefile (tests): Add tst-strptime3.
8523         * time/tst-strptime3.c: New test.
8525 2007-02-05  Jakub Jelinek  <jakub@redhat.com>
8527         [BZ #3957]
8528         * posix/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
8529         bit for RE_HAT_LISTS_NOT_NEWLINE.
8530         (build_charclass_op): Remove bogus comment.
8531         * posix/Makefile (tests): Add bug-regex27 and bug-regex28.
8532         * posix/bug-regex27.c: New test.
8533         * posix/bug-regex28.c: New test.
8535 2007-02-03  Ulrich Drepper  <drepper@redhat.com>
8537         * po/sv.po: Update from translation team.
8539 2007-02-02  Ulrich Drepper  <drepper@redhat.com>
8541         * nscd/nscd_helper.c (open_socket): Minor size optimization.
8543 2007-02-02  Jakub Jelinek  <jakub@redhat.com>
8545         * include/locale.h (__uselocale): Add libc_hidden_proto.
8546         * locale/uselocale.c (__uselocale): Add libc_hidden_def.
8548         * nscd/nscd_helper.c (open_socket): Use __gettimeofday instead of
8549         gettimeofday.
8551 2007-02-01  Ulrich Drepper  <drepper@redhat.com>
8553         * sysdeps/unix/sysv/linux/i386/sysdep.h (PTR_MANGLE): Roll value before
8554         returning.
8555         (PTR_DEMANGLE): Real definition now that it's not the same as
8556         PRT_MANGLE anymore.
8557         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
8559         * string/strerror_l.c: New file.
8560         * string/Makefile (routines): Add strerror_l.
8561         * string/string.h: Declare strerror_l.
8562         * string/Versions: Export strerror_l for GLIBC_2.6.
8564 2007-01-31  Ulrich Drepper  <drepper@redhat.com>
8566         * nscd/nscd_helper.c (open_socket): Now takes request type and key
8567         as parameter.  Construct request record.  Try sending request
8568         before the first poll use, it usually succeeds.  Adjust all
8569         callers.
8570         * nscd/nscd-client.h: Define MAXKEYLEN.
8571         * nscd/connections.c (nscd_run): Don't define MAXKEYLEN here.
8573 2007-01-31  Jakub Jelinek  <jakub@redhat.com>
8575         * nscd/nscd-client.h (__nscd_cache_search): Remove const qualifier
8576         from return value.
8577         * nscd/nscd_helper.c: Include string.h.
8578         (__nscd_cache_search): Remove const qualifier from return value.
8579         On strict alignment architectures check hash entry and data head
8580         alignment.
8581         * nscd/nscd_getpw_r.c (nscd_getpw_r): Don't crash or fail because
8582         mmapped data during GC cycle contains garbage.  If
8583         __nscd_drop_map_ref fails, decrement mapped->counter when returning
8584         error or if retrying with NO_MAPPING, only __nscd_unmap if counter
8585         dropped to 0.
8586         * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
8587         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
8588         * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
8589         * nscd/nscd_getai.c (__nscd_getai): Likewise.
8590         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
8592 2007-01-30  Ulrich Drepper  <drepper@redhat.com>
8594         * misc/hsearch_r.c (hdestroy_r): Remove unnecessary test.
8596 2007-01-26  Ulrich Drepper  <drepper@redhat.com>
8598         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Use register
8599         names not numbers in cfi_*.
8601 2007-01-26  Andreas Jaeger  <aj@suse.de>
8603         * sysdeps/unix/sysv/linux/sys/personality.h (ADDR_NO_RANDOMIZE,
8604         ADDR_LIMIT_3GB, PER_LINUX_32BIT, PER_LINUX32_3GB): Add.
8605         Correct values of PER_HPUX and PER_OSF4.
8607 2007-01-24  Ulrich Drepper  <drepper@redhat.com>
8609         * elf/dl-minimal.c: Undefine _itoa first.
8610         * stdio-common/_itoa.h: Define _itoa and _fitoa for 64-bit platforms.
8611         * malloc/mtrace.c: Revert last change.
8612         * posix/wordexp.c: Likewise.
8614 2007-01-24  Jakub Jelinek  <jakub@redhat.com>
8616         * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __nocona__, __core2__
8617         and __geode__ to the list of i486+ CPUs.
8618         * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
8620 2007-01-23  Ulrich Drepper  <drepper@redhat.com>
8622         * stdio-common/_itoa.c: Include <limits.h>.
8623         * stdio-common/_itowa.c: Likewise.
8625 2007-01-22  Ulrich Drepper  <drepper@redhat.com>
8627         * stdio-common/_itowa.c: Don't compile _itowa for 64-bit
8628         platforms.
8629         * stdio-common/_itoa.c: Don't compile in _itoa and _fitoa for
8630         64-bit platforms.
8631         * malloc/mtrace.c (tr_where): Use _fitoa_word instead of _fitoa if
8632         possible.
8633         * posix/wordexp.c (parse_arith): Use _itoa_word instead of _itoa
8634         if possible.
8636         [BZ #3902]
8637         * stdio-common/_itoa.c (_itoa): Make sure at least a zero is emitted.
8638         * stdio-common/Makefile (tests): Add bug17.
8639         * stdio-common/bug17.c: New file.
8641 2007-01-19  Ulrich Drepper  <drepper@redhat.com>
8643         * iconvdata/brf.c: New file.
8644         * iconvdata/testdata/BRF: New file.
8645         * iconvdata/testdata/BRF..UTF8: New file.
8646         Contributed by Samuel Thibault <samuel.thibault@ens-lyon.org>.
8647         * iconvdata/Makefile: Add rules to build BRF.
8648         * iconvdata/TESTS: Add BRF entry.
8649         * iconvdata/gconv-modules: Likewise.
8650         * iconvdata/tst-tables.sh: Likewise.
8652 2007-01-18  Anton Nikishaev  <anton.nik@gmail.com>
8654         * wcsmbs/wchar.h (wcstoll): Fix comment, function returns value of
8655         type `long long int', not `long int'.
8656         (wcstoq): Likewise.
8658 2007-01-18  Ulrich Drepper  <drepper@redhat.com>
8660         * scripts/gen-as-const.awk: Add cast to long to avoid int promotion
8661         of values on 64-bit platforms which are too large.
8663 2007-01-12  Steven Munroe  <sjmunroe@us.ibm.com>
8664             Joe Kerian  <jkerian@us.us.ibm.com>
8666         [BZ #2749]
8667         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Include
8668         <math_ldbl_opt.h>.  Remove weak_alias.  Use long_double_symbol macro.
8669         (__copysignl): Use signbit() for comparison.
8670         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Correct parms for
8671         SET_LDOUBLE_WORDS64.
8673         [BZ #2423, #2749]
8674         * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Don't include <fenv_libc.h>.
8675         (__ceill): Remove calls to fegetround(), fesetround().
8676         * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
8677         * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
8678         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
8680 2007-01-17  Jakub Jelinek  <jakub@redhat.com>
8682         * nscd/nscd_getserv_r.c (nscd_getserv_r): Fix pastos.
8684         * sysdeps/unix/sysv/linux/getdents.c (offsetof): Remove.
8686 2007-01-17  Ulrich Drepper  <drepper@redhat.com>
8688         * sysdeps/unix/sysv/linux/fatal-prepare.h: Use PTHFCT_CALL to
8689         demangle pointer.
8690         * csu/libc-start.c: Likewise.
8692 2007-01-16  Ulrich Drepper  <drepper@redhat.com>
8694         * sysdeps/posix/system.c: Remove NO_WAITPID support, it cannot
8695         really work anyway.
8697 2007-01-15  Ulrich Drepper  <drepper@redhat.com>
8699         * nscd/connections.c (servinfo): Renamed to reqinfo.  Change all
8700         users.
8701         (handle_request): Remove unnecessary tests.
8703         * nscd/cache.c (cache_add): Record the failure to add to the cache.
8705 2007-01-15  Jakub Jelinek  <jakub@redhat.com>
8707         * soft-fp/op-common.h (FP_TRUNC): When truncating a NaN, clear
8708         workbits in semi-raw fraction.
8710         * math/test-misc.c: Add new tests.
8712 2007-01-14  Steven Munroe  <sjmunroe@us.ibm.com>
8714         * math/basic-test.c: Include test-skeleton.c.
8715         (TEST_TRUNC): Define.
8716         (truncdfsf_test, trunctfsf_test, trunctfdf_test): New.
8717         (main): Rename to ...
8718         (do_test): ...this.  Run new tests.
8719         (TEST_FUNCTION): Define.
8721 2006-10-05  Steven Munroe  <sjmunroe@us.ibm.com>
8722             Joe Kerian  <jkerian@us.us.ibm.com>
8724         [BZ #2749]
8725         * soft-fp/op-4.h (__FP_FRAC_SUB_3, __FP_FRAC_SUB_4): Correct borrow
8726         handling for high words.
8727         * soft-fp/op-common.h (_FP_OVERFLOW_SEMIRAW): Always set inexact
8728         and overflow for infinity.
8730 2007-01-15  Ulrich Drepper  <drepper@redhat.com>
8732         * nscd/connections.c (handle_request): Add a __builtin_expect.
8734         * nscd/connections.c (serv2db): Change type into structure which
8735         also says whether this is a request for data.  Renamed to
8736         servinfo.  All users changed.
8737         (handle_request): Much simpler test whether we should search the cache.
8739         * nscd/connections.c (handle_request): Fix thinko in selinux test
8740         invocation.
8742         * sysdeps/generic/ldsodefs.h: Define DL_LOOKUP_SCOPE_LOCK.
8743         * elf/dl-lookup.c (add_dependency): If scope map is locked, unlock
8744         it before getting dl_load_lock and then relock.
8745         (_dl_lookup_symbol_x): Pass flags to add_dependency.
8746         When rerunning _dl_lookup_symbol_x, compute symbol_scope again in
8747         case we unlocked the scope.
8748         * elf/dl-runtime.c (_dl_fixup): Pass DL_LOOKUP_SCOPE_LOCK to
8749         _dl_lookup_symbol_x in case we locked the scope.
8750         (_dl_profile_fixup): Likewise.
8751         * elf/dl-sym.c (do_sym): In flags passed to call_dl_lookup, also
8752         set DL_LOOKUP_SCOPE_LOCK.
8754 2007-01-13  Ulrich Drepper  <drepper@redhat.com>
8756         * inet/Makefile: Define CFLAGS-getsrvbynm_r.c and
8757         CFLAGS-getsrvbynpt_r.c.
8758         * nscd/getsrvbynm_r.c: New file.
8759         * nscd/getsrvbypt_r.c: New file.
8760         * nscd/nscd_getserv_r.c: New file.
8761         * nscd/servicescache.c: New file.
8762         * nscd/Makefile (routines): Add nscd_getserv_r.
8763         (nscd-modules): Add getsrvbynm_r, getsrvbypt_r, and servicescache.
8764         Define CFLAGS-servicescache.c, CFLAGS-getsrvbynm_r.c, and
8765         CFLAGS-getsrvbypt_r.c.
8766         * nscd/cache.c (prune_cache): Rewrite to get re-add function from
8767         table.  Add entries for services database.
8768         * nscd/connections.c (serv2str): Mark as const.  Add entries for
8769         services database.
8770         (dbs): Add .reset_res and servdb initialization.
8771         (serv2db): Add entries for services database.
8772         (verify_persistent_db): Accept dbnr == servdb.
8773         (invalidate_cache): Rewrite database name recognition to use a table.
8774         Call res_init() if .reset_res is set for database.
8775         (handle_request): Add code to handle services database.
8776         * nscd/gai.c: Don't define __getservbyname_r.
8777         * nscd/nscd-client.h (request_type): Remove LASTDBREQ, add
8778         GETSERVBYNAME, GETSERVBYPORT, GETFDSERV.
8779         (serv_response_header): Define.
8780         (struct datahead): Add serv_response_header member.
8781         * nscd/nscd.c (parse_opt): Rewrite parsing of -i parameter value
8782         using table.
8783         * nscd/nscd.conf: Add entries for services database.
8784         * nscd/nscd.h: Adjust declaration of dbnames and serv2str.
8785         Declare serv_iov_disabled.
8786         Declare addservbyname, readdservbyname, addservbyport, and
8787         readdservbyport.
8788         * nscd/nscd_conf.c (dbnames): Mark as const.  Add services entry.
8789         (find_db): Fix error message.
8790         * nscd/nscd_proto.h: Declare __nss_not_use_nscd_services,
8791         __nscd_getservbyname_r, and __nscd_getservbyport_r.
8792         * nscd/selinux.c (perms): Add entries for services database.
8793         * nss/Versions: Export __nss_services_lookup with GLIBC_PRIVATE.
8794         * nss/nsswitch.c (__nss_disable_nscd): Also disable services database.
8796         * nscd/grpcache.c: Remove obsolete code.  Cleanups.
8797         * nscd/hstcache.c: Likewise.
8798         * nscd/pwdcache.c: Likewise.
8800         * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r): Correct
8801         computation of keylen.
8803         * include/string.h: Only redefine strndupa if this is really for
8804         libc code.
8806 2007-01-12  Ulrich Drepper  <drepper@redhat.com>
8808         * nscd/nscd_gethst_r.c: Minor cleanups.
8810         * nscd/connections.c (handle_request): Check selinux permissions
8811         for all non-admin commands.
8813         * sysdeps/i386/i486/bits/atomic.h: Define
8814         atomic_compare_and_exchange_val_acq,
8815         atomic_compare_and_exchange_bool_acq, and atomic_exchange_and_add
8816         using __sync_* built-ins for gcc >= 4.1.
8817         * sysdeps/x86_64/bits/atomic.h: Likewise.
8819         [BZ #3840]
8820         * scripts/check-local-headers.sh: Restrict to testing .o.d, .os.d,
8821         and .oS.d files.
8823 2007-01-05  Steven Munroe  <sjmunroe@us.ibm.com>
8825         * stdlib/tst-makecontext.c: Include errno.h.  Change main()
8826         to do_test().  Define TEST_FUNCTION. Include test-skeleton.c.
8827         (do_test): Check errno and exit(0) if ENOSYS.
8829 2007-01-11  Jakub Jelinek  <jakub@redhat.com>
8831         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix handling of multi-byte
8832         thousands separators.
8833         * stdlib/Makefile: Add rules to build and run tst-strtod4.
8834         * stdlib/tst-strtod4.c: New test.
8836         [BZ #3855]
8837         * stdlib/strtod_l.c (____STRTOF_INTERNAL): 0x. not followed by
8838         hexadecimal digit should accept just the initial 0.
8839         * stdlib/tst-strtod2.c (tests): New variable.
8840         (do_test): Run several tests rather than just one.
8842 2007-01-11  Jakub Jelinek  <jakub@redhat.com>
8844         * sysdeps/i386/soft-fp/sfp-machine.h: Remove.
8845         * sysdeps/x86_64/soft-fp/sfp-machine.h: Likewise.
8847 2007-01-10  Ulrich Drepper  <drepper@redhat.com>
8849         * io/fts.c: Make sure fts_cur is always valid after return from
8850         fts_read.
8851         Patch by Miloslav Trmac <mitr@redhat.com>.
8853 2006-10-27  Richard Sandiford  <richard@codesourcery.com>
8855         * elf/elf.h (R_MIPS_GLOB_DAT): Define.
8856         (R_MIPS_NUM): Bump by 1.
8858 2007-01-03  Jakub Jelinek  <jakub@redhat.com>
8860         * posix/execvp.c: Include alloca.h.
8861         (allocate_scripts_argv): Renamed to...
8862         (scripts_argv): ... this.  Don't allocate buffer here nor count
8863         arguments.
8864         (execvp): Use alloca if possible.
8865         * posix/Makefile: Add rules to build and run tst-vfork3 test.
8866         * posix/tst-vfork3.c: New test.
8868 2007-01-03  Ulrich Drepper  <drepper@redhat.com>
8870         * string/Makefile (tst-strxfrm2-ENV): Define.
8871         * stdlib/Makefile (tst-strtod3-ENV): Define.
8873 2007-01-02  Ulrich Drepper  <drepper@redhat.com>
8875         * posix/getconf.c: Update copyright year.
8876         * nss/getent.c: Likewise.
8877         * iconv/iconvconfig.c: Likewise.
8878         * iconv/iconv_prog.c: Likewise.
8879         * elf/ldconfig.c: Likewise.
8880         * catgets/gencat.c: Likewise.
8881         * csu/version.c: Likewise.
8882         * elf/ldd.bash.in: Likewise.
8883         * elf/sprof.c (print_version): Likewise.
8884         * locale/programs/locale.c: Likewise.
8885         * locale/programs/localedef.c: Likewise.
8886         * nscd/nscd.c (print_version): Likewise.
8887         * debug/xtrace.sh: Likewise.
8888         * malloc/memusage.sh: Likewise.
8889         * malloc/mtrace.pl: Likewise.
8890         * debug/catchsegv.sh: Likewise.
8892 2006-12-24  Ulrich Drepper  <drepper@redhat.com>
8894         * malloc/malloc.c (sYSMALLOc): Remove some unnecessary alignment
8895         attempts.
8897 2006-12-23  Ulrich Drepper  <drepper@redhat.com>
8899         * posix/wordexp.c: Remove some unnecessary tests.
8901 2006-12-22  Gavin Romig-Koch  <gavin@redhat.com>
8903         * nis/nss_compat/compat-grp.c (internal_getgrgid_r): Don't
8904         blacklist the group till after we look it up.
8906 2006-12-21  Ulrich Drepper  <drepper@redhat.com>
8908         * include/atomic.h (atomic_forced_read): New macro.
8910 2006-12-20  SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
8912         * sysdeps/unix/sysv/linux/sh/bits/shm.h: New file.
8914 2006-12-19  Jakub Jelinek  <jakub@redhat.com>
8916         * nss/getXXbyYY_r.c: Include atomic.h.
8917         (INTERNAL (REENTRANT_NAME)): Write startp after start_fct,
8918         add atomic_write_barrier () in between.
8920         * stdlib/Makefile (tests): Add tst-makecontext.
8921         * stdlib/tst-makecontext.c: New test.
8923         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
8924         (__makecontext): Don't realign uc_mcontext.uc_regs.
8926 2006-11-28  Jakub Jelinek  <jakub@redhat.com>
8928         * elf/dl-support.c: Include dl-procinfo.h.
8929         * sysdeps/powerpc/dl-procinfo.h (PPC_PLATFORM_POWER4,
8930         PPC_PLATFORM_PPC970, PPC_PLATFORM_POWER5, PPC_PLATFORM_POWER5_PLUS,
8931         PPC_PLATFORM_POWER6, PPC_PLATFORM_CELL_BE, PPC_PLATFORM_POWER6X):
8932         Define.
8933         (_dl_string_platform): Use PPC_PLATFORM_* macros instead of
8934         hardcoded constants.
8935         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platform): Use
8936         PPC_PLATFORM_* macros for array designators.
8938 2006-11-11  Steven Munroe  <sjmunroe@us.ibm.com>
8940         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 3 new cap
8941         names to the beginning.
8942         (_dl_powerpc_platforms): Add "power6x".
8943         * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
8944         (HWCAP_IMPORTANT): Add PPC_FEATURE_HAS_DFP.
8945         (_DL_PLATFORMS_COUNT): Increase.
8946         (_dl_string_platform): Handle power6x case.
8947         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_PA6T, PPC_FEATURE_HAS_DFP,
8948         PPC_FEATURE_POWER6_EXT): Define.
8949         (PPC_FEATURE_POWER5, PPC_FEATURE_POWER5_PLUS): Correct Comment.
8951 2006-12-18  Jakub Jelinek  <jakub@redhat.com>
8953         [BZ #3747]
8954         * stdlib/jrand48_r.c (__jrand48_r): Make sure result is in the
8955         [-2^31 .. 2^31) range.
8956         * stdlib/tst-rand48.c (main): Fix expected values for 64-bit
8957         targets.
8958         * stdlib/tst-rand48-2.c: New test.
8959         * stdlib/Makefile (tests): Add tst-rand48-2.
8961 2006-12-14  Jakub Jelinek  <jakub@redhat.com>
8963         * misc/tst-pselect.c (do_test): Fix sigblock argument.
8965 2006-12-14  Ulrich Drepper  <drepper@redhat.com>
8967         * misc/tst-pselect.c (do_test): Make sure the helper process is
8968         terminating when the test is aborted.
8970 2006-12-13  Ulrich Drepper  <drepper@redhat.com>
8972         * sysdeps/unix/sysv/linux/bits/statvfs.h: Define ST_RELATIME.
8973         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
8974         Handle relatime mount option.
8976         [BZ #2337]
8977         * libio/Makefile (tests): Add tst-setvbuf1.
8978         * libio/tst-setvbuf1.c: New file.
8980 2006-12-08  Jakub Jelinek  <jakub@redhat.com>
8982         [BZ #2337]
8983         * libio/genops.c (__uflow): Fix a typo.
8984         * libio/wfiledoalloc.c (_IO_wfile_doallocate): Don't stat
8985         nor set _IO_LINE_BUF bit here.  Size the wide buffer based on
8986         the narrow buffer size.
8988 2006-11-24  Jakub Jelinek  <jakub@redhat.com>
8990         [BZ #2337]
8991         * libio/libio.h (_IO_FLAGS2_USER_WBUF): Define.
8992         * libio/wgenops.c (_IO_wsetb, _IO_wdefault_finish): Test and set
8993         _IO_FLAGS2_USER_WBUF bit in _flags2 instead of _IO_USER_BUF bit
8994         in _flags.
8995         * libio/wstrops.c (_IO_wstr_overflow, enlarge_userbuf,
8996         _IO_wstr_finish): Likewise.
8997         * libio/wmemstream.c (open_wmemstream): Likewise.
8998         * libio/fileops.c (_IO_new_file_close_it): Call _IO_set[bgp]
8999         even for wide streams.
9001 2006-12-13  Jakub Jelinek  <jakub@redhat.com>
9003         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Include
9004         kernel-features.h.
9006 2006-12-11  Ulrich Drepper  <drepper@redhat.com>
9008         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Parse thousand
9009         separators also if no non-zero digits found.
9010         * stdlib/Makefile (tests): Add tst-strtod3.
9012 2006-12-09  Ulrich Drepper  <drepper@redhat.com>
9014         [BZ #3632]
9015         * include/features.h: Fix comment about default value for
9016         _POSIX_C_SOURCE.
9018         [BZ #3664]
9019         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix test to recognize
9020         empty parsed strings.
9021         * stdlib/Makefile (tests): Add tst-strtod2.
9022         * stdlib/tst-strtod2.c: New file.
9024         [BZ #3673]
9025         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix exp_limit
9026         computation.
9027         * stdlib/Makefile (tests): Add tst-atof2.
9028         * stdlib/tst-atof2.c: New file.
9030         [BZ #3674]
9031         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Adjust exponent value
9032         correctly if removing trailing zero of hex-float.
9033         * stdlib/Makefile (tests): Add tst-atof1.
9034         * stdlib/tst-atof1.c: New file.
9036 2006-12-09  Jakub Jelinek  <jakub@redhat.com>
9038         * misc/mntent_r.c (__hasmntopt): Check p[optlen] even when p == rest.
9039         Start searching for next comma at p rather than rest.
9040         * misc/Makefile (tests): Add tst-mntent2.
9041         * misc/tst-mntent2.c: New test.
9043         * misc/getusershell.c (initshells): Check for integer overflows.
9044         Make strings buffer one bigger as fgets always succeeds when second
9045         argument is 1.  Don't use calloc for shells array.  Disallow
9046         / as shell.
9048 2006-12-08  Ulrich Drepper  <drepper@redhat.com>
9050         * malloc/memusage.c: Handle realloc with new size of zero and
9051         non-NULL pointer correctly.
9052         (me): Really write first record twice.
9053         (struct entry): Make format bi-arch safe.
9054         (dest): Write out more realloc statistics.
9055         * malloc/memusagestat.c (struct entry): Make format bi-arch safe.
9057 2006-12-05  Jakub Jelinek  <jakub@redhat.com>
9059         * nis/nis_subr.c (nis_getnames): Revert last change.
9061 2006-12-04  Jakub Jelinek  <jakub@redhat.com>
9063         * sysdeps/unix/sysv/linux/ttyname.c: Include termios.h.
9064         (ttyname): Use tcgetattr instead of isatty, don't set errno to ENOTTY.
9065         * sysdeps/unix/sysv/linux/ttyname_r.c: Include termios.h.
9066         (__ttyname_r): Use tcgetattr instead of isatty, don't set errno to
9067         ENOTTY.
9068         * io/Makefile: Add rules to build and run tst-ttyname_r test.
9069         * io/tst-ttyname_r.c: New test.
9071 2006-12-03  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
9073         * sysdeps/unix/sysv/linux/sh/sys/io.h: Removed.
9075 2006-11-30  H.J. Lu  <hongjiu.lu@intel.com>
9077         * sysdeps/i386/i686/memcmp.S: Use jump table as the base of
9078         jump table entries.
9080 2006-11-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
9082         * sysdeps/unix/sysv/linux/i386/clone.S: Provide CFI for the outermost
9083         `clone' function to ensure proper unwinding stop of gdb.
9084         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
9086 2006-12-01  Ulrich Drepper  <drepper@redhat.com>
9088         * nscd/nscd.init: Remove obsolete and commented-out -S option
9089         handling.
9091 2006-11-23  Jakub Jelinek  <jakub@redhat.com>
9093         [BZ #3514]
9094         * manual/string.texi (strncmp): Fix pastos from wcscmp description.
9096         [BZ #3515]
9097         * manual/string.texi (strtok): Remove duplicate paragraph.
9099 2006-12-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
9101         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Fix compatibility with
9102         libgcc not supporting `rflags' unwinding (register # >= 17).
9104 2006-11-30  Jakub Jelinek  <jakub@redhat.com>
9106         * sunrpc/svc_run.c (svc_run): Set my_pollfd to new_pollfd if realloc
9107         succeeded.
9109 2006-11-29  Daniel Jacobowitz  <dan@codesourcery.com>
9110             Jakub Jelinek  <jakub@redhat.com>
9111             Jan Kratochvil  <jan.kratochvil@redhat.com>
9113         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (restore_rt): Add correct
9114         unwind information.
9115         * sysdeps/unix/sysv/linux/x86_64/Makefile: Provide symbols for
9116         'restore_rt' even in the 'signal' directory.
9117         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.sym: Extend the regs list.
9119 2006-11-27  Jakub Jelinek  <jakub@redhat.com>
9121         [BZ #3559]
9122         * sunrpc/svc_run.c (svc_run): Fail instead of segfaulting if
9123         malloc crashed.  Don't allocate memory unnecessarily in each
9124         loop.
9126 2006-10-21  Jakub Jelinek  <jakub@redhat.com>
9128         * resolv/mapv4v6addr.h (map_v4v6_address): Fix last change.
9130 2006-11-20  Ulrich Drepper  <drepper@redhat.com>
9132         * resolv/mapv4v6addr.h (map_v4v6_address): Optimize a bit.
9134 2006-11-18  Bruno Haible  <bruno@clisp.org>
9136         * sysdeps/unix/sysv/linux/i386/getgroups.c (__getgroups): Invoke
9137         __sysconf only after having tried to call getgroups32.
9139 2006-11-19  Ulrich Drepper  <drepper@redhat.com>
9141         * nss/nss_files/files-hosts.c (LINE_PARSER): Support IPv6-style
9142         addresses for IPv4 queries if they can be mapped.
9144 2006-11-16  Jakub Jelinek  <jakub@redhat.com>
9146         * sysdeps/x86_64/fpu/s_copysignf.S (__copysignf): Switch to .text.
9147         * sysdeps/x86_64/fpu/s_copysign.S (__copysign): Likewise.
9148         (signmask): Add .size directive.
9149         (othermask): Add .type directive.
9151 2006-11-14  Ulrich Drepper  <drepper@redhat.com>
9153         * po/nl.po: Update from translation team.
9155         * timezone/zdump.c: Redo fix for BZ #3137.
9157 2006-11-14  Jakub Jelinek  <jakub@redhat.com>
9159         * nss/nss_files/files-alias.c (get_next_alias): Set line back
9160         to first_unused after parsing :include: file.
9162 2006-11-10  Ulrich Drepper  <drepper@redhat.com>
9164         * timezone/africa: Update from tzdata2006o.
9165         * timezone/antarctica: Likewise.
9166         * timezone/asia: Likewise.
9167         * timezone/australasia: Likewise.
9168         * timezone/backward: Likewise.
9169         * timezone/europe: Likewise.
9170         * timezone/iso3166.tab: Likewise.
9171         * timezone/northamerica: Likewise.
9172         * timezone/southamerica: Likewise.
9173         * timezone/zone.tab: Likewise.
9175         * time/tzfile.c (__tzfile_read): Extend to handle new file format
9176         on machines with 64-bit time_t.
9178         * timezone/checktab.awk: Update from tzcode2006o.
9179         * timezone/ialloc.c: Likewise.
9180         * timezone/private.h: Likewise.
9181         * timezone/scheck.c: Likewise.
9182         * timezone/tzfile.h: Likewise.
9183         * timezone/tzselect.ksh: Likewise.
9184         * timezone/zdump.c: Likewise.
9185         * timezone/zic.c: Likewise.
9187         [BZ #3483]
9188         * elf/ldconfig.c (main): Call setlocale and textdomain.
9189         Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
9191         [BZ #3480]
9192         * manual/argp.texi: Fix typos.
9193         * manual/charset.texi: Likewise.
9194         * manual/errno.texi: Likewise.
9195         * manual/filesys.texi: Likewise.
9196         * manual/lang.texi: Likewise.
9197         * manual/maint.texi: Likewise.
9198         * manual/memory.texi: Likewise.
9199         * manual/message.texi: Likewise.
9200         * manual/resource.texi: Likewise.
9201         * manual/search.texi: Likewise.
9202         * manual/signal.texi: Likewise.
9203         * manual/startup.texi: Likewise.
9204         * manual/stdio.texi: Likewise.
9205         * manual/sysinfo.texi: Likewise.
9206         * manual/syslog.texi: Likewise.
9207         * manual/time.texi: Likewise.
9208         Patch by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9210         [BZ #3465]
9211         * sunrpc/clnt_raw.c: Minimal message improvements.
9212         * sunrpc/pm_getmaps.c: Likewise.
9213         * nis/nss_nisplus/nisplus-publickey.c: Likewise.
9214         * nis/nis_print_group_entry.c: Likewise.
9215         * locale/programs/repertoire.c: Likewise.
9216         * locale/programs/charmap.c: Likewise.
9217         * malloc/memusage.sh: Likewise.
9218         * elf/dl-deps.c: Likewise.
9219         * locale/programs/ld-collate.c: Likewise.
9220         * libio/vswprintf.c: Likewise.
9221         * malloc/memusagestat.c: Likewise.
9222         * sunrpc/auth_unix.c: Likewise.
9223         * sunrpc/rpc_main.c: Likewise.
9224         * nscd/cache.c: Likewise.
9225         * locale/programs/repertoire.c: Unify output messages.
9226         * locale/programs/charmap.c: Likewise.
9227         * locale/programs/ld-ctype.c: Likewise.
9228         * locale/programs/ld-monetary.c: Likewise.
9229         * locale/programs/ld-numeric.c: Likewise.
9230         * locale/programs/ld-time.c: Likewise.
9231         * elf/ldconfig.c: Likewise.
9232         * nscd/selinux.c: Likewise.
9233         * elf/cache.c: Likewise.
9234         Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
9236         [BZ #3451]
9237         * sysdeps/i386/fpu/bits/mathinline.h (floor): Make rounding mode
9238         change atomic.
9239         (ceil): Likewise.
9241 2006-11-10  Jakub Jelinek  <jakub@redhat.com>
9243         * string/strxfrm_l.c (STRXFRM): Fix trailing \1 optimization
9244         if N is one bigger than return value.
9245         * string/tst-strxfrm2.c (do_test): Also test strxfrm with l1 + 1
9246         and l1 last arguments, if buf is defined, verify the return value
9247         equals to strlen (buf) and verify no byte beyond passed length
9248         is modified.
9250 2006-11-10  Ulrich Drepper  <drepper@redhat.com>
9252         * po/sv.po: Update from translation team.
9254 2006-11-09  Ulrich Drepper  <drepper@redhat.com>
9256         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word): Add
9257         noinline attribute.
9259 2006-11-10  Jakub Jelinek  <jakub@redhat.com>
9261         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Add
9262         noinline attribute.
9264         * sysdeps/gnu/siglist.c (__old_sys_siglist, __old_sys_sigabbrev):
9265         Use __new_sys_siglist instead of _sys_siglist_internal as
9266         second macro argument.
9267         (_old_sys_siglist): Use declare_symbol_alias macro instead of
9268         strong_alias.
9270 2006-11-09  Ulrich Drepper  <drepper@redhat.com>
9272         [BZ #3493]
9273         * posix/unistd.h (sysconf): Remove const attribute.
9275         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix test for
9276         temporary or deprecated addresses.
9277         Patch by Sridhar Samudrala <sri@us.ibm.com>.
9279         * string/Makefile (tests): Add tst-strxfrm2.
9280         * string/tst-strxfrm2.c: New file.
9282 2006-10-09  Jakub Jelinek  <jakub@redhat.com>
9284         * elf/dl-debug.c (_dl_debug_initialize): Check r->r_map for 0
9285         rather than r->r_brk.
9287 2006-11-08  Jakub Jelinek  <jakub@redhat.com>
9289         * string/strxfrm_l.c (STRXFRM): Do the trailing \1 removal
9290         optimization even if needed > n.
9292         * elf/dl-load.c (decompose_rpath): Return bool rather than void.
9293         If l->l_name is on inhibit_rpath list, set sps->dirs to -1 and
9294         return false, otherwise return true.
9295         (cache_rpath): Return decompose_rpath return value.
9297 2006-11-07  Jakub Jelinek  <jakub@redhat.com>
9299         * include/libc-symbols.h (declare_symbol): Rename to...
9300         (declare_symbol_alias): ... this.  Add ORIGINAL argument, imply
9301         strong_alias (ORIGINAL, SYMBOL) in asm to make sure it preceedes
9302         .size directive.
9303         * sysdeps/gnu/errlist-compat.awk: Adjust for declare_symbol_alias
9304         changes.
9305         * sysdeps/gnu/siglist.c: Likewise.
9307 2006-11-03  Steven Munroe  <sjmunroe@us.ibm.com>
9309         * sysdeps/powerpc/fpu/bits/mathinline.h
9310         [__LIBC_INTERNAL_MATH_INLINES]: Moved to ...
9311         * sysdeps/powerpc/fpu/math_private.h: ...here.  New file.
9313 2006-11-05  Ulrich Drepper  <drepper@redhat.com>
9315         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
9316         Update handling of cache descriptor 0x49 for new models.
9317         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word):
9318         Likewise.
9320 2006-11-02  Jakub Jelinek  <jakub@redhat.com>
9322         * malloc/memusage.c (dest): Reset not_me back to false after
9323         printing statistics.
9325 2006-11-02  Ulrich Drepper  <drepper@redhat.com>
9327         * configure.in: Work around ld --help change and avoid -z relro
9328         test completely if the architecture doesn't care about security.
9330 2006-11-01  Ulrich Drepper  <drepper@redhat.com>
9332         * po/sv.po: Update from translation team.
9334 2006-10-31  Ulrich Drepper  <drepper@redhat.com>
9336         * stdlib/atexit.c (atexit): Don't mark as hidden when used to
9337         generate compatibility version.
9339 2006-10-29  Ulrich Drepper  <drepper@redhat.com>
9341         * configure.in: Relax -z relro requirement a bit.
9343         * po/sv.po: Update from translation team.
9345 2006-10-29  Jakub Jelinek  <jakub@redhat.com>
9347         * elf/dl-sym.c (do_sym): Use RTLD_SINGLE_THREAD_P.
9348         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
9349         * elf/dl-close.c (_dl_close_worker): Likewise.
9350         * elf/dl-open.c (_dl_open_worker): Likewise.
9351         * sysdeps/generic/sysdep-cancel.h (RTLD_SINGLE_THREAD_P): Define.
9353 2006-10-27  Ulrich Drepper  <drepper@redhat.com>
9355         * configure.in: Require assembler support for visibility, compiler
9356         support for visibility and aliases, linker support for various -z
9357         options.
9358         * Makeconfig: Remove conditional code which now is unnecessary.
9359         * config.h.in: Likewise.
9360         * config.make.in: Likewise.
9361         * dlfcn/Makefile: Likewise.
9362         * elf/Makefile: Likewise.
9363         * elf/dl-load.c: Likewise.
9364         * elf/rtld.c: Likewise.
9365         * include/libc-symbols.h: Likewise.
9366         * include/stdio.h: Likewise.
9367         * io/Makefile: Likewise.
9368         * io/fstat.c: Likewise.
9369         * io/fstat64.c: Likewise.
9370         * io/fstatat.c: Likewise.
9371         * io/fstatat64.c: Likewise.
9372         * io/lstat.c: Likewise.
9373         * io/lstat64.c: Likewise.
9374         * io/mknod.c: Likewise.
9375         * io/mknodat.c: Likewise.
9376         * io/stat.c: Likewise.
9377         * io/stat64.c: Likewise.
9378         * libio/stdio.c: Likewise.
9379         * nscd/Makefile: Likewise.
9380         * stdlib/Makefile: Likewise.
9381         * stdlib/atexit.c: Likewise.
9382         * sysdeps/generic/ldsodefs.h: Likewise.
9383         * sysdeps/i386/dl-machine.h: Likewise.
9384         * sysdeps/i386/sysdep.h: Likewise.
9385         * sysdeps/i386/i686/memcmp.S: Likewise.
9386         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
9387         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
9388         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
9390         * Makerules: USE_TLS support is now default.
9391         * tls.make.c: Likewise.
9392         * csu/Versions: Likewise.
9393         * csu/libc-start.c: Likewise.
9394         * csu/libc-tls.c: Likewise.
9395         * csu/version.c: Likewise.
9396         * dlfcn/dlinfo.c: Likewise.
9397         * elf/dl-addr.c: Likewise.
9398         * elf/dl-cache.c: Likewise.
9399         * elf/dl-close.c: Likewise.
9400         * elf/dl-iteratephdr.c: Likewise.
9401         * elf/dl-load.c: Likewise.
9402         * elf/dl-lookup.c: Likewise.
9403         * elf/dl-object.c: Likewise.
9404         * elf/dl-open.c: Likewise.
9405         * elf/dl-reloc.c: Likewise.
9406         * elf/dl-support.c: Likewise.
9407         * elf/dl-sym.c: Likewise.
9408         * elf/dl-sysdep.c: Likewise.
9409         * elf/dl-tls.c: Likewise.
9410         * elf/ldconfig.c: Likewise.
9411         * elf/rtld.c: Likewise.
9412         * elf/tst-tls-dlinfo.c: Likewise.
9413         * elf/tst-tls1.c: Likewise.
9414         * elf/tst-tls10.h: Likewise.
9415         * elf/tst-tls14.c: Likewise.
9416         * elf/tst-tls2.c: Likewise.
9417         * elf/tst-tls3.c: Likewise.
9418         * elf/tst-tls4.c: Likewise.
9419         * elf/tst-tls5.c: Likewise.
9420         * elf/tst-tls6.c: Likewise.
9421         * elf/tst-tls7.c: Likewise.
9422         * elf/tst-tls8.c: Likewise.
9423         * elf/tst-tls9.c: Likewise.
9424         * elf/tst-tlsmod1.c: Likewise.
9425         * elf/tst-tlsmod13.c: Likewise.
9426         * elf/tst-tlsmod13a.c: Likewise.
9427         * elf/tst-tlsmod14a.c: Likewise.
9428         * elf/tst-tlsmod2.c: Likewise.
9429         * elf/tst-tlsmod3.c: Likewise.
9430         * elf/tst-tlsmod4.c: Likewise.
9431         * elf/tst-tlsmod5.c: Likewise.
9432         * elf/tst-tlsmod6.c: Likewise.
9433         * include/errno.h: Likewise.
9434         * include/link.h: Likewise.
9435         * include/tls.h: Likewise.
9436         * locale/global-locale.c: Likewise.
9437         * locale/localeinfo.h: Likewise.
9438         * malloc/arena.c: Likewise.
9439         * malloc/hooks.c: Likewise.
9440         * malloc/malloc.c: Likewise.
9441         * resolv/Versions: Likewise.
9442         * sysdeps/alpha/dl-machine.h: Likewise.
9443         * sysdeps/alpha/libc-tls.c: Likewise.
9444         * sysdeps/generic/ldsodefs.h: Likewise.
9445         * sysdeps/generic/tls.h: Likewise.
9446         * sysdeps/i386/dl-machine.h: Likewise.
9447         * sysdeps/ia64/dl-machine.h: Likewise.
9448         * sysdeps/ia64/libc-tls.c: Likewise.
9449         * sysdeps/mach/hurd/fork.c: Likewise.
9450         * sysdeps/mach/hurd/i386/tls.h: Likewise.
9451         * sysdeps/powerpc/powerpc32/dl-machine.c: Likwise.
9452         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
9453         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
9454         * sysdeps/s390/libc-tls.c: Likewise.
9455         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
9456         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
9457         * sysdeps/sh/dl-machine.h: Likewise.
9458         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
9459         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
9460         * sysdeps/x86_64/dl-machine.h: Likewise.
9462         * elf/dl-close.c (_dl_close_worker): Renamed from _dl_close and
9463         split out locking and parameter checking.
9464         (_dl_close): Call _dl_close_worker after locking and checking.
9465         * elf/dl-open.c (_dl_open): Call _dl_close_worker instead of
9466         _dl_close.
9467         * elf/Makefile: Add rules to build and run tst-thrlock.
9468         * elf/tst-thrlock.c:  New file.
9470         [BZ #3426]
9471         * stdlib/stdlib.h: Adjust comment for canonicalize_file_name to
9472         reality.
9474         [BZ #3429]
9475         * elf/dl-open.c (dl_open_worker): Keep holding dl_load_lock until
9476         we are sure we do not need it anymore for _dl_close.  Also move
9477         the asserts inside the lock region.
9478         Patch mostly by Suzuki <suzuki@in.ibm.com>.
9480 2006-10-27  Jakub Jelinek  <jakub@redhat.com>
9482         * elf/dl-lookup.c (_dl_debug_bindings): Remove unused symbol_scope
9483         argument.
9484         (_dl_lookup_symbol_x): Adjust caller.
9486         * sysdeps/generic/ldsodefs.h (struct link_namespaces): Remove
9487         _ns_global_scope.
9488         * elf/rtld.c (dl_main): Don't initialize _ns_global_scope.
9490         * elf/dl-libc.c: Revert l_scope name changes.
9491         * elf/dl-load.c: Likewise.
9492         * elf/dl-object.c: Likewise.
9493         * elf/rtld.c: Likewise.
9494         * elf/dl-close.c (_dl_close): Likewise.
9495         * elf/dl-open.c (dl_open_worker): Likewise.  If not SINGLE_THREAD_P,
9496         always use __rtld_mrlock_{change,done}.  Always free old scope list
9497         here if not l_scope_mem.
9498         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Revert l_scope name
9499         change.  Never free scope list here.  Just __rtld_mrlock_lock before
9500         the lookup and __rtld_mrlock_unlock it after the lookup.
9501         * elf/dl-sym.c: Likewise.
9502         * include/link.h (struct r_scoperec): Remove.
9503         (struct link_map): Replace l_scoperec with l_scope, l_scoperec_mem
9504         with l_scope_mem and l_scoperec_lock with l_scope_lock.
9506 2006-10-25  Ulrich Drepper  <drepper@redhat.com>
9508         * sysdeps/gnu/netinet/tcp.h: Define TCP_CONGESTION.
9510 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
9512         * configure.in: Disable building profile libraries by default.
9514 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
9516         * sunrpc/xdr_mem.c (xdrmem_setpos): Don't compare addresses
9517         as signed longs, check for x_base + pos overflow.
9518         * sunrpc/Makefile (tests): Add tst-xdrmem2.
9519         * sunrpc/tst-xdrmem2.c: New test.
9521 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
9523         * elf/dl-lookup.c (_dl_lookup_symbol_x): Add warning to
9524         _dl_lookup_symbol_x code.
9526 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
9528         * elf/dl-runtime.c: Include sysdep-cancel.h.
9529         (_dl_fixup, _dl_profile_fixup): Use __rtld_mrlock_* and
9530         scoperec->nusers only if !SINGLE_THREAD_P.  Use atomic_*
9531         instead of catomic_* macros.
9532         * elf/dl-sym.c: Include sysdep-cancel.h.
9533         (do_sym): Use __rtld_mrlock_* and scoperec->nusers only
9534         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
9535         * elf/dl-close.c: Include sysdep-cancel.h.
9536         (_dl_close): Use __rtld_mrlock_* and scoperec->nusers only
9537         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
9538         * elf/dl-open.c: Include sysdep-cancel.h.
9539         (dl_open_worker): Use __rtld_mrlock_* and scoperec->nusers only
9540         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
9542 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
9544         [BZ #3313]
9545         * malloc/malloc.c (malloc_consolidate): Set maxfb to address of last
9546         fastbin rather than end of fastbin array.
9548 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
9550         * sysdeps/i386/i486/bits/atomic.h (catomic_decrement): Use correct
9551         body macro.
9552         * sysdeps/x86_64/bits/atomic.h
9553         (__arch_c_compare_and_exchange_val_64_acq): Add missing casts.
9554         (catomic_decrement): Use correct body macro.
9556 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
9558         * include/atomic.h: Add a unique prefix to all local variables
9559         in macros.
9560         * csu/tst-atomic.c (do_test): Test also catomic_* macros.
9562 2006-10-16  Ulrich Drepper  <drepper@redhat.com>
9564         [BZ #3369]
9565         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Fix typos in rules 4
9566         and 7.
9568 2006-10-14  Ulrich Drepper  <drepper@redhat.com>
9570         * resolv/arpa/nameser.h: Document that ns_t_a6 is deprecated.
9572 2006-10-13  Ulrich Drepper  <drepper@redhat.com>
9574         [BZ #3313]
9575         * malloc/malloc.c (malloc_consolidate): Don't use get_fast_max to
9576         determine highest fast bin to consolidate, always look into all of
9577         them.
9578         (do_check_malloc_state): Only require for empty bins for large
9579         sizes in main arena.
9581         * libio/stdio.h: Add more __wur attributes.
9583         * elf/dl-minimal.c (realloc): Optimize last patch.
9585 2006-10-12  Richard Sandiford  <richard@codesourcery.com>
9587         [BZ #3352]
9588         * elf/dl-minimal.c (realloc): Let malloc() return a new pointer,
9589         and use memcpy() if it does.
9591 2006-11-12  Andreas Jaeger  <aj@suse.de>
9593         [BZ #2510]
9594         * manual/search.texi (Hash Search Function): Clarify.
9595         (Array Search Function): Clarify.
9597 2006-11-12  Joseph Myers  <joseph@codesourcery.com>
9599         [BZ #2830]
9600         * math/atest-exp.c (main): Cast hex value to mp_limb_t before
9601         shifting.
9602         * math/atest-exp2.c (read_mpn_hex): Likewise.
9603         * math/atest-sincos.c (main): Likewise.
9605 2006-10-11  Ulrich Drepper  <drepper@redhat.com>
9607         * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_pwait.
9608         * sysdeps/unix/sysv/linux/sys/epoll.h: Declare epoll_pwait.
9609         * sysdeps/unix/sysv/linux/Versions (libc): Add epoll_pwait for
9610         version GLIBC_2.6.
9611         * Versions.def: Add GLIBC_2.6 for libc.
9613         * sysdeps/unix/sysv/linux/i386/sysdep.h (DOARGS_6): Fix offset.
9615         * sysdeps/i386/i486/bits/atomic.h: Add catomic_* support.
9617 2006-10-11  Jakub Jelinek  <jakub@redhat.com>
9619         * malloc/malloc.c (_int_malloc): Remove unused any_larger variable.
9621         * nis/nis_defaults.c (__nis_default_access): Don't call getenv twice.
9623         * nis/nis_subr.c (nis_getnames): Use __secure_getenv instead of getenv.
9624         * sysdeps/generic/unsecvars.h: Add NIS_PATH.
9626 2006-10-11  Ulrich Drepper  <drepper@redhat.com>
9628         * include/atomic.c: Define catomic_* operations.
9629         * sysdeps/x86_64/bits/atomic.h: Likewise.  Fix a few minor problems.
9630         * stdlib/cxa_finalize.c: Use catomic_* operations instead of atomic_*.
9631         * malloc/memusage.c: Likewise.
9632         * gmon/mcount.c: Likewise.
9633         * elf/dl-close.c: Likewise.
9634         * elf/dl-open.c: Likewise.
9635         * elf/dl-profile.c: Likewise.
9636         * elf/dl-sym.c: Likewise.
9637         * elf/dl-runtime.c: Likewise.
9638         * elf/dl-fptr.c: Likewise.
9639         * resolv/res_libc.c: Likewise.
9641 2006-10-10  Ulrich Drepper  <drepper@redhat.com>
9643         * nis/nis_subr.c (nis_getnames): Add trailing dot to NIS_PATH
9644         components which lack them.
9646         * nis/nis_subr.c (nis_getnames): Make sure that we always return
9647         at least one entry consisting of the parameter concatenated with
9648         the domain.
9650 2006-10-10  Roland McGrath  <roland@frob.com>
9652         * sysdeps/mach/hurd/utimes.c: Use a union to avoid an improper cast.
9653         * sysdeps/mach/hurd/futimes.c: Likewise.
9654         * sysdeps/mach/hurd/lutimes.c: Likewise.
9656 2006-10-09  Ulrich Drepper  <drepper@redhat.com>
9657             Jakub Jelinek  <jakub@redhat.com>
9659         Implement reference counting of scope records.
9660         * elf/dl-close.c (_dl_close): Remove all scopes from removed objects
9661         from the list in objects which remain.  Always allocate new scope
9662         record.
9663         * elf/dl-open.c (dl_open_worker): When growing array for scopes,
9664         don't resize, allocate a new one.
9665         * elf/dl-runtime.c: Update reference counters before using a scope
9666         array.
9667         * elf/dl-sym.c: Likewise.
9668         * elf/dl-libc.c: Adjust for l_scope name change.
9669         * elf/dl-load.c: Likewise.
9670         * elf/dl-object.c: Likewise.
9671         * elf/rtld.c: Likewise.
9672         * include/link.h: Include <rtld-lowlevel.h>.  Define struct
9673         r_scoperec.  Replace r_scope with pointer to r_scoperec structure.
9674         Add l_scoperec_lock.
9675         * sysdeps/generic/ldsodefs.h: Include <rtld-lowlevel.h>.
9676         * sysdeps/generic/rtld-lowlevel.h: New file.
9678         * include/atomic.h: Rename atomic_and to atomic_and_val and
9679         atomic_or to atomic_or_val.  Define new macros atomic_and and
9680         atomic_or which do not return values.
9681         * sysdeps/x86_64/bits/atomic.h: Define atomic_and and atomic_or.
9682         Various cleanups.
9683         * sysdeps/i386/i486/bits/atomic.h: Likewise.
9685         * po/sv.po: Update from translation team.
9687 2006-10-07  Ulrich Drepper  <drepper@redhat.com>
9689         * Versions.def: Add GLIBC_2.6 to libpthread.
9691         * include/shlib-compat.h (SHLIB_COMPAT): Expand parameters before use.
9692         (versioned_symbol): Likewise.
9693         (compat_symbol): Likewise.
9695         * po/tr.po: Update from translation team.
9697 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
9699         * nis/Banner: Removed.  It's been integral part forever and the
9700         author info is incomplete anyway.
9701         * libio/Banner: Likewise.
9703         * nis/nis_table.c (nis_list): If __follow_path fails in the new
9704         code, make sure the nis_freeresult call doesn't crash and that the
9705         result is reported correctly.
9707 2006-09-27  Jakub Jelinek  <jakub@redhat.com>
9709         * nis/nis_table.c (nis_list): Handle FOLLOW_PATH | ALL_RESULTS
9710         when callback is NULL.
9712         * nis/Versions (libnss_nisplus): Add
9713         _nss_nisplus_initgroups_dyn@@GLIBC_PRIVATE.
9714         * nis/Makefile (libnss_nisplus-routines): Add nisplus-initgroups.
9715         * nis/nss_nisplus/nisplus-grp.c (tablename_val, tablename_len,
9716         _nss_create_tablename): Rename to...
9717         (grp_tablename_val, grp_tablename_len, _nss_grp_create_tablename):
9718         ... these.  No longer static.
9719         (internal_setgrent): Adjust users.
9720         (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
9721         Don't use locking around _nss_grp_create_tablename call.
9722         * nis/nss_nisplus/nisplus-initgroups.c: New file.
9724 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
9726         * version.h (VERSION): Bump to 2.5.90 for new development tree.
9728 2006-10-06  Andreas Jaeger  <aj@suse.de>
9730         * include/features.h (__GLIBC_MINOR__): It's glibc 2.5 now.
9732 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
9734         * po/pl.po: Update from translation team.
9736         * nscd/nscd.c (main): Fix typo in message.
9737         Patch by Jakub Bogsz <qboosh@pld-linux.org>.
9739 2006-10-02  Jakub Jelinek  <jakub@redhat.com>
9741         [BZ #3291]
9742         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Include
9743         errno.h, signal.h, unistd.h and sysdep-cancel.h.
9744         (__sigprocmask): Define.
9746 2006-10-02  Ulrich Drepper  <drepper@redhat.com>
9748         * elf/rtld.c (dl_main): Don't use prelinking if LD_DYNAMIC_WEAK is
9749         used.
9751 2006-10-02  Jakub Jelinek  <jakub@redhat.com>
9753         * nscd/mem.c (mempool_alloc): Round array size to 16 bytes
9754         in oldtotal and newtotal calculation.
9755         * nscd/nscd-client.h (struct mapped_database): Add datasize
9756         field.
9757         * nscd/nscd_helper.c (get_mapping): Initialize datasize field.
9758         (__nscd_get_map_ref): Get a new mapping even if mapping's data_size
9759         increased.
9760         (__nscd_cache_search): Add checks to make sure we never reference
9761         data beyond the current mapping.
9763 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
9765         * sysdeps/posix/getaddrinfo.c (match_prefix): Make mask and val
9766         variables const to avoid compiler warnings.
9768         * io/fts.c (fts_close): Remove redundant checks.
9769         (fts_build): Likewise.
9770         (fts_palloc): Likewise.
9772         * manual/message.texi (Advanced gettext functions,
9773         Using gettextized software): Fix typos.
9775 2006-09-30  Ulrich Drepper  <drepper@redhat.com>
9777         * posix/glob.c (glob_in_dir): Add some comments and asserts to
9778         explain why there are no leaks.
9780 2006-09-29  Ulrich Drepper  <drepper@redhat.com>
9782         * libio/wmemstream.c: Include <wchar.h>.
9783         * libio/bug-wmemstream1.c: Likewise.
9784         * libio/tst-wmemstream1.c: Likewise.
9785         * libio/tst-wmemstream2.c: Likewise.
9787         * version.h (RELEASE): Bump to 2.5.
9788         * README: Regenerated.
9790         * locale/iso-3166.def: Add Aaland Islands and Montenegro.
9792         [BZ #3273]
9793         * nscd/nscd_initgroups.c (__nscd_getgrouplist): It is OK to have
9794         found no group members.
9795         Patch by Petr Baudis.
9797 2006-09-29  Jakub Jelinek  <jakub@redhat.com>
9799         * elf/rtld.c (_dl_start_final): If not USE___THREAD, don't
9800         assert bootstrap_map.l_tls_modid is zero.
9801         (_dl_start): Initialize bootstrap_map.l_tls_modid to 0
9802         if USE___THREAD.
9804 2006-09-27  Ulrich Drepper  <drepper@redhat.com>
9806         * libio/stdio.h: Move open_wmemstream prototype to ...
9807         * wcsmbs/wchar.h: ... here.
9809 2006-09-25  Jakub Jelinek  <jakub@redhat.com>
9811         [BZ #3252]
9812         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Handle only
9813         fchownat syscall and __ASSUME_LCHOWN_SYSCALL case inline, call
9814         __{,l}chown to handle the rest.
9815         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Handle only
9816         fchownat syscall and __ASSUME_32BITUIDS case inline, call
9817         __{,l}chown to handle the rest.
9818         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Include
9819         i386/fchownat.c.
9820         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Likewise.
9821         * sysdeps/unix/sysv/linux/sh/fchownat.c: Likewise.
9823         [BZ #3253]
9824         * posix/glob.c (glob_in_dir): Don't alloca one struct globlink at a
9825         time, rather allocate increasingly bigger arrays of pointers, if
9826         possible with alloca, if too large with malloc.
9828 2006-09-24  Jakub Jelinek  <jakub@redhat.com>
9830         * sysdeps/powerpc/fpu/libm-test-ulps: Updated.
9832         * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Fix 2 typos.
9834 2006-09-24  Ulrich Drepper  <drepper@redhat.com>
9836         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Implement rule 4,
9837         home addresses.
9838         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Recognize
9839         IFA_F_HOMEADDRESS flag for interfaces.
9840         * include/ifaddrs.h (struct in6addrinfo): Define
9841         in6ai_homeaddress.
9843 2006-09-21  Jakub Jelinek  <jakub@redhat.com>
9845         [BZ #3225]
9846         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (PTR_MANGLE3,
9847         PTR_DEMANGLE3): Define.
9848         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h (PTR_MANGLE3,
9849         PTR_DEMANGLE3): Likewise.
9850         * sysdeps/powerpc/powerpc32/__longjmp-common.S (__longjmp): Use them.
9851         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
9852         Likewise.
9853         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
9855 2006-09-20  Jakub Jelinek  <jakub@redhat.com>
9857         * po/libc.pot: Regenerated.
9858         * po/be.po: Updated.
9859         * po/ca.po: Likewise.
9860         * po/cs.po: Likewise.
9861         * po/da.po: Likewise.
9862         * po/de.po: Likewise.
9863         * po/el.po: Likewise.
9864         * po/en_GB.po: Likewise.
9865         * po/es.po: Likewise.
9866         * po/fi.po: Likewise.
9867         * po/fr.po: Likewise.
9868         * po/gl.po: Likewise.
9869         * po/hr.po: Likewise.
9870         * po/hu.po: Likewise.
9871         * po/ja.po: Likewise.
9872         * po/ko.po: Likewise.
9873         * po/nb.po: Likewise.
9874         * po/nl.po: Likewise.
9875         * po/pl.po: Likewise.
9876         * po/pt_BR.po: Likewise.
9877         * po/ru.po: Likewise.
9878         * po/rw.po: Likewise.
9879         * po/sk.po: Likewise.
9880         * po/sv.po: Likewise.
9881         * po/tr.po: Likewise.
9882         * po/zh_CN.po: Likewise.
9883         * po/zh_TW.po: Likewise.
9885         [BZ #3137]
9886         * iconv/iconv_prog.c (main): Fix spelling in error message.
9887         * iconv/iconvconfig.c (main): Likewise.
9888         * locale/programs/ld-collate.c (handle_ellipsis): Likewise.
9889         * locale/programs/ld-ctype.c (charclass_symbolic_ellipsis): Likewise.
9890         * locale/programs/localedef.c (main): Likewise.
9891         * locale/programs/repertoire.c (repertoire_read): Likewise.
9892         * timezone/zdump.c (main): Likewise.
9893         * nscd/connections.c (handle_request): Fix spelling in log message.
9894         Patch by Malcolm Parsons <malcolm.parsons@gmail.com>.
9896 2006-09-20  Ulrich Drepper  <drepper@redhat.com>
9898         * inet/inet6_option.c: Also emit linker warnings for the RFC 2292
9899         interfaces.
9901 2006-09-20  Andreas Jaeger  <aj@suse.de>
9903         * math/libm-test.inc (lrint_test_upward): Fix typo.
9905 2006-06-17  Joseph S. Myers  <joseph@codesourcery.com>
9907         [BZ #2592]
9908         * math/libm-test.inc (lrint_test_tonearest): New function.
9909         (lrint_test_towardzero): New function.
9910         (lrint_test_downward): New function.
9911         (lrint_test_upward): New function.
9912         (main): Run these new tests.
9913         * sysdeps/ieee754/dbl-64/s_llrint.c (__llrint): Correct rounding
9914         of values near to 0.
9915         (two52): Use double not long double.
9916         * sysdeps/ieee754/dbl-64/s_lrint.c (__lrint): Likewise.
9917         * sysdeps/ieee754/flt-32/s_llrintf.c (__llrintf): Likewise.
9918         (two23): Use float not double.
9919         * sysdeps/ieee754/flt-32/s_lrintf.c (__lrintf): Likewise.
9920         (two23): Use float not double.
9921         * sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Likewise.
9922         * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Likewise.
9923         * sysdeps/ieee754/ldbl-96/s_llrintl.c (__llrintl): Likewise.
9924         * sysdeps/ieee754/ldbl-96/s_lrintl.c (__lrintl): Likewise.
9926 2006-09-20  Martin Schwidefsky  <schwidefsky@de.ibm.com>
9928         * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c (__makecontext):
9929         Cast sp to unsigned long to avoid compiler warning.
9930         Use __makecontext_ret function instead of a trampoline on the stack.
9931         (__makecontext_ret): New function.
9932         * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Likewise.
9934 2006-09-19  Jakub Jelinek  <jakub@redhat.com>
9936         * elf/dl-cache.c (HWCAP_CHECK): If _DL_PLATFORMS_COUNT, but
9937         platform == -1, reject any libs with non-zero _DL_HWCAP_PLATFORM
9938         bits.
9940 2006-09-19  Ulrich Drepper  <drepper@redhat.com>
9942         * elf/dl-close.c (_dl_close): If dependency is not unloaded make
9943         sure no reference to the unloaded map's search list remains in the
9944         dependency's scope.
9946 2006-09-16  Jakub Jelinek  <jakub@redhat.com>
9948         * elf/Makefile: Add rules to build and run unload7 test.
9949         * elf/unload7.c: New test.
9950         * elf/unload7mod1.c: New file.
9951         * elf/unload7mod2.c: New file.
9953 2006-09-18  Jakub Jelinek  <jakub@redhat.com>
9955         * sysdeps/unix/sysv/linux/sys/ptrace.h (PT_GETEVENTMSG): Fix pasto.
9956         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_SETOPTIONS,
9957         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
9958         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_SETOPTIONS,
9959         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
9960         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_SETOPTIONS,
9961         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
9962         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h (PTRACE_SETOPTIONS,
9963         PTRACE_GETEVENTMSG): Likewise.
9964         (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Change to the arch independent
9965         values.
9967 2006-09-17  Mike Frysinger  <vapier@gentoo.org>
9969         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_SETOPTIONS,
9970         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
9971         * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Check PTRACE_SETOPTIONS,
9972         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO and PTRACE_SETSIGINFO.
9974 2006-09-16  Jakub Jelinek  <jakub@redhat.com>
9976         * sysdeps/powerpc/powerpc32/register-dump.h (register_dump): Don't
9977         write '\0' to the fd.
9978         * sysdeps/mach/hurd/powerpc/register-dump.h (register_dump): Likewise.
9979         * sysdeps/powerpc/powerpc64/register-dump.h (register_dump): Likewise.
9980         Change regs to unsigned long pointer from unsigned int, fix fscr
9981         offset.
9983 2006-09-14  Jakub Jelinek  <jakub@redhat.com>
9985         * io/Makefile (CFLAGS-fstatat.c): Set.
9986         (CFLAGS-fstatat64.c): Likewise.
9987         (CFLAGS-mknodat.c): Likewise.
9989         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Comment fixes.
9990         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
9991         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Rewritten.
9992         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Rewritten.
9994 2006-09-14  Jakub Jelinek  <jakub@redhat.com>
9995             Steven Munroe  <sjmunroe@us.ibm.com>
9997         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 4 new cap
9998         names to the beginning.  Rename "cell" to "cellbe".
9999         (_dl_powerpc_platforms): New.
10000         * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
10001         (HWCAP_IMPORTANT): Remove power{4,5,5+} and cell.
10002         (_DL_PLATFORMS_COUNT, _DL_FIRST_PLATFORM): Define.
10003         (_DL_HWCAP_PLATFORM): Define to new mask.
10004         (_dl_platform_string, _dl_string_platform): New functions.
10005         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_BOOKE, PPC_FEATURE_SMT,
10006         PPC_FEATURE_ICACHE_SNOOP, PPC_FEATURE_ARCH_2_05): Define.
10008 2006-09-12  Jakub Jelinek  <jakub@redhat.com>
10010         [BZ #2526]
10011         * README.libm: Fix a thinko in sqrt algorithm description.
10013         [BZ #3143]
10014         * manual/string.texi (argz_delete): Fix prototype.
10015         Patch by <alpt@freaknet.org>.
10017 2006-08-26  Joseph Myers  <joseph@codesourcery.com>
10019         [BZ #3138]
10020         * io/test-lfs.c (do_prepare): Give name_len type size_t.
10021         * io/tst-fcntl.c (do_prepare): Likewise.
10022         * posix/tst-exec.c (do_prepare): Likewise.
10023         * posix/tst-preadwrite.c (do_prepare): Likewise.
10024         * posix/tst-spawn.c (do_prepare): Likewise.
10025         * posix/tst-truncate.c (do_prepare): Likewise.
10026         * rt/tst-aio.c (do_prepare): Likewise.
10027         * rt/tst-aio64.c (do_prepare): Likewise.
10028         * stdlib/test-canon2.c (do_prepare): Give test_dir_len type
10029         size_t.
10031 2006-09-09  Ulrich Drepper  <drepper@redhat.com>
10033         [BZ #2821]
10034         * time/mktime.c (guess_time_tm): Fix overflow detection.
10035         * time/Makefile (tests): Add bug-mktime1.
10036         * time/bug-mktime1.c: New file.
10038         [BZ #3189, #3188]
10039         * misc/sys/mman.h (remap_file_pages): Make available for _GNU_SOURCE.
10040         (mremap): Likewise.
10042 2006-09-07  Jakub Jelinek  <jakub@redhat.com>
10044         [BZ #1006]
10045         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
10046         Ensure relocation doesn't clobber any bits outside of the
10047         immediate field for R_SPARC_TLS_LE_HIX22, R_SPARC_WDISP30,
10048         R_SPARC_HI22 and R_SPARC_H44.
10050         [BZ #2775]
10051         * malloc/malloc.c (sYSMALLOc): Only call grow_heap if
10052         (long) (MINSIZE + nb - old_size) is positive.
10054         * malloc/arena.c (grow_heap): When growing bail even if new_size
10055         is negative.
10057         [BZ #3155]
10058         * sysdeps/powerpc/powerpc32/fpu/s_lrint.S (__lrint): Don't access
10059         stack below r1.
10061 2006-09-06  Jakub Jelinek  <jakub@redhat.com>
10063         * posix/regex_internal.c (re_string_reconstruct): Handle
10064         offset < pstr->valid_raw_len && pstr->offsets_needed case.
10065         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
10066         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
10067         re_string_context_at.
10068         * posix/Makefile: Add rules to build and run bug-regex26 test.
10069         * posix/bug-regex26.c: New test.
10071         * locale/programs/ld-collate.c (collate_read): Goto sym_equiv_free
10072         rather than col_sym_free.  Move seqp declaration earlier.
10074         * resolv/gai_suspend.c (gai_suspend): Make sure result is initialized.
10076 2006-09-05  Jakub Jelinek  <jakub@redhat.com>
10078         * nscd/initgrcache.c (addinitgroupsX): Move any_success
10079         decl before first goto out.
10081 2006-09-04  Jakub Jelinek  <jakub@redhat.com>
10083         * Makerules (shlib.lds): If have-hash-style, put .hash section
10084         at the end of the RO segment.
10086 2006-09-04  Ulrich Drepper  <drepper@redhat.com>
10088         * elf/do-lookup.h (do_lookup_x): Initialize symidx in case the new
10089         style hash table format is used.
10091 2006-09-04  Jakub Jelinek  <jakub@redhat.com>
10093         * resolv/res_mkquery.c (res_nmkquery): Set hp->id to statp->id after
10094         randomization rather than before.
10095         * resolv/res_init.c (res_randomid): Don't call gettimeofday here.
10097 2006-08-31  Jakub Jelinek  <jakub@redhat.com>
10099         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Add ld.so.
10101         * malloc/malloc.c (_int_malloc): Use full list insert and not
10102         shortcut which assumes the list is empty for large requests
10103         too.
10105         * elf/tst-addr1.c (do_test): Allow i.dli_sname "_IO_printf".
10107 2006-08-30  Jakub Jelinek  <jakub@redhat.com>
10109         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (splice): Add offin
10110         and offout arguments to the prototype.
10111         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (splice): Likewise.
10112         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (splice): Likewise.
10113         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (splice): Likewise.
10114         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (splice): Likewise.
10115         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (splice): Likewise.
10116         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (splice): Likewise.
10117         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (splice): Likewise.
10118         * sysdeps/unix/sysv/linux/syscalls.list (splice): Adjust args string.
10120 2006-08-28  Ulrich Drepper  <drepper@redhat.com>
10122         * elf/dl-load.c (_dl_init_paths): Expand DSTs.
10124         * elf/dl-open.c (dl_open_worker): Allow $LIB and $PLATFORM in
10125         dlopen parameters.
10127 2006-08-28  Jakub Jelinek  <jakub@redhat.com>
10129         * inet/getnameinfo.c (getnameinfo): For AF_INET, check errno
10130         only if herrno is NETDB_INTERNAL.  Handle errors other than
10131         ERANGE outside of the loops, handle TRY_AGAIN.
10133         * locale/programs/ld-ctype.c (translit_flatten): Issue error
10134         if other's ctype category was missing.
10135         * locale/programs/ld-collate.c (collate_read): Return if
10136         copy_locale's collate category is missing.
10138 2006-08-27  Ulrich Drepper  <drepper@redhat.com>
10140         [BZ #2684]
10141         * malloc/malloc.c (public_rEALLOc): Try harder by using other
10142         arenas if allocation failed.
10143         Patch mostly by Jan Edler <jan.edler@indexengines.com>.
10145 2006-08-26  Ulrich Drepper  <drepper@redhat.com>
10147         * malloc/malloc.c (bin_at): Rewrite to be more clear and to not
10148         waste bins[0..1].
10149         (malloc_state): Reduce bins size by 2.
10150         (_int_malloc): Fix test for large enough buffer for early termination.
10151         When no unsorted block matches perfectly and an exiting block has
10152         to be split, use full list insert and not shortcut which assumes
10153         the list is empty.
10155         * locale/programs/ld-ctype.c (ctype_read): Better patch for read
10156         failure.
10158 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
10160         * locale/programs/ld-ctype.c (ctype_read): If CTYPE is NULL, don't
10161         do anything.
10163         * sysdeps/generic/ldsodefs.h (DL_ADDR_SYM_MATCH): For undefined
10164         symbol require exact match (these are PLTs).
10165         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
10166         (_dl_ppc64_addr_sym_match): Likewise.
10168         [BZ #2683]
10169         * elf/dl-addr.c (_dl_addr): Don't ignore all undefined symbols.
10170         If symbol has a value use it.
10171         * elf/tst-dladdr1.c: New file.
10172         * elf/Makefile: Add rules to build and run tst-addr1.
10174 2006-08-24  Jakub Jelinek  <jakub@redhat.com>
10176         * malloc/malloc.c (sYSMALLOc): Avoid infinite loop if MMAP
10177         keeps failing and heap growth or new heap creation isn't
10178         successful either.
10179         * malloc/tst-malloc.c (main): Add new tests.
10181 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
10183         [BZ #2734]
10184         * sysdeps/i386/bits/byteswap.h (__bswap_32): Use same conditions
10185         as in the x86-64 code to use bswap.
10187 2006-05-21  Joseph S. Myers  <joseph@codesourcery.com>
10189         [BZ #2680]
10190         * posix/unistd.h (getlogin_r): Condition on __USE_POSIX199506, not
10191         __USE_UNIX98.
10192         * posix/bits/unistd.h: Likewise.
10194 2006-05-15  Mike Frysinger  <vapier@gentoo.org>
10196         [BZ #2751]
10197         * string/strchr.c: Add cast to avoid warning.
10199 2006-08-21  Ulrich Drepper  <drepper@redhat.com>
10201         * malloc/malloc.c (DEFAULT_MMAP_THRESHOLD_MAX): For 32-bit
10202         platforms define as 512K.  For 64-bit platforms as 32MB.  The lower
10203         limit is needed to avoid the exploding of the address space
10204         requirement for secondary heaps.
10205         * malloc/arena.c (HEAP_MAX_SIZE): Define using
10206         DEFAULT_MMAP_THRESHOLD_MAX if it is defined.
10208 2006-07-30  Joseph S. Myers  <joseph@codesourcery.com>
10210         [BZ #3018]
10211         * Makerules (depfiles): Handle extra-test-objs the same as
10212         extra-objs.
10213         (common-mostlyclean): Likewise.
10214         * dlfcn/Makefile (extra-objs): Add modules to extra-test-objs
10215         instead.
10216         * elf/Makefile (extra-objs): Likewise.
10217         * stdlib/Makefile (extra-objs): Likewise.
10219 2006-08-14  Eric Blake  <ebb9@byu.net>
10221         [BZ #3044]
10222         * misc/error.h: Assume C89 or better.
10223         * misc/error.c: Likewise.
10225 2006-08-21  Ulrich Drepper  <drepper@redhat.com>
10227         [BZ #3040]
10228         * sysdeps/unix/sysv/linux/openat.c: Fix compilation if
10229         __ASSUME_ATFCTS is defined.
10231 2006-08-19  Ulrich Drepper  <drepper@redhat.com>
10233         * malloc/malloc.c (_int_malloc): Limit number of unsorted blocks
10234         to sort in each call.
10236         * nis/nss_nis/nis-service.c (internal_nis_getservent_r): . If map
10237         is empty simply return and use next service.
10238         * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r): Likewise.
10240         * locale/programs/charmap.c (charmap_read): Add new parameter.  It
10241         tells us when not finding a charmap file is an error.
10242         * locale/programs/charmap.h: Adjust charmap_read prototype.
10243         * iconv/iconv_prog.c (main): Tell charmap_read it's no error if we
10244         cannot find a charmap.
10245         * locale/programs/localedef.c (main): Adjust charmap_read call.
10247 2006-08-15  Jakub Jelinek  <jakub@redhat.com>
10249         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Use
10250         sysdeps/posix/pause.c implementation instead.
10252 2006-08-09  Jakub Jelinek  <jakub@redhat.com>
10254         * sysdeps/unix/nice.c (nice): Transform EACCES errno from setpriority
10255         to EPERM.
10257 2006-08-13  Andreas Schwab  <schwab@suse.de>
10259         * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve):
10260         Don't clobber caller's LRSAVE.
10261         (_dl_prof_resolve): Likewise.
10263 2006-08-14  Ulrich Drepper  <drepper@redhat.com>
10265         [BZ #1996]
10266         * libio/memstream.c (open_memstream): Allocate initial buffer with
10267         calloc.
10268         * libio/wmemstream.c (open_wmemstream): Likewise.
10269         * libio/strops.c: Pretty printing.
10270         (_IO_str_overflow): Clear uninitialized part of the new buffer.
10271         (enlarge_userbuf): New function.
10272         (_IO_str_seekoff): Call it if seek position is larger than current
10273         buffer.
10274         * libio/wstrops.c: Likewise.
10275         * libio/vasprintf.c: Add comment as to why we do not have to use
10276         calloc instead of malloc to allocate initial buffer.
10277         * libio/Makefile (tests): Add bug-memstream1 and bug-wmemstream1.
10278         * libio/bug-memstream1.c: New file.
10279         * libio/bug-wmemstream1.c: New file.
10281 2006-08-13  Ulrich Drepper  <drepper@redhat.com>
10283         * libio/wstrops.c: Remove dead macro definitions and comments.
10284         * libio/strops.c: Likewise.
10286         [BZ #2764]
10287         * login/utmpname.c (__utmpname): Remove unnecessary test.
10289 2006-06-08  Joseph Myers  <jsm28@gcc.gnu.org>
10291         [BZ #2832]
10292         * math/gen-libm-test.pl (clean_up_number): Do not remove trailing
10293         0s from integers.
10295 2006-08-13  Ulrich Drepper  <drepper@redhat.com>
10297         [BZ #2987]
10298         * sysdeps/unix/sysv/linux/clock_settime.c: Add code to use syscall
10299         for CPU clocks.
10300         * sysdeps/unix/clock_settime.c: Add support for platform-specific
10301         setting of CPU clocks.
10303 2006-06-23  Paul Eggert  <eggert@cs.ucla.edu>
10305         [BZ #2841]
10306         * sysdeps/generic/stdint.h (UINT8_C, UINT16_C): Don't append 'U',
10307         since C99 requires the result to promote to 'int' when uint_least8_t
10308         and uint_least16_t promote to 'int'.
10310 2006-08-12  Ulrich Drepper  <drepper@redhat.com>
10312         [BZ #3013]
10313         * locale/programs/ld-ctype.c (ctype_output): Adjust alignments, fix
10314         lenght of one output field, correct bitmask creation.
10315         * locale/programs/ld-time.c: Add alignment.
10317         [BZ #2997]
10318         * misc/error.c: Add space between program name and message if file
10319         name is missing.
10321 2006-08-03  Eric Blake  <ebb9@byu.net>
10323         [BZ #2998]
10324         * misc/error.c (error_tail) [_LIBC]: Avoid invalid free.
10326 2006-08-09  Ulrich Drepper  <drepper@redhat.com>
10328         * malloc/memusagestat.c: Silence warnings.
10330         * malloc/malloc.c: Dynamically size mmap treshold if the program
10331         frees mmaped blocks.
10332         Patch by Valerie Henson and Arjan van de Ven.
10334 2006-08-08  Jakub Jelinek  <jakub@redhat.com>
10336         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (O_DIRECT): Protect with
10337         __USE_GNU.
10339         * stdlib/strtol_l.c (__strtol_ul_max_tab, __strtol_ul_rem_tab,
10340         __strtol_ull_max_tab, __strtol_ull_rem_tab): Declare.
10341         (DEF): Don't put the var into .gnu.linkonce.r.* section.
10342         Only provide var definitions in strtol_l (or for *ull*
10343         in strtoll_l).
10345         * stdio-common/bug16.c (tests): New array.
10346         (do_tests): Allow the first hexadecimal digit
10347         to be 1, 2, 4 or 8.  Do 3 additional tests.
10349         * sysdeps/s390/fpu/libm-test-ulps: Update.
10351         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c (fchownat): Use
10352         fchownat syscall if available.
10353         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
10354         * sysdeps/unix/sysv/linux/sh/fchownat.c (fchownat): Likewise.
10355         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
10357 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
10359         * nis/nis_xdr.c: Avoid some function calls.
10361 2006-08-07  Jakub Jelinek  <jakub@redhat.com>
10362             Ulrich Drepper  <drepper@redhat.com>
10364         * nis/nis_call.c (rec_dirsearch) [case LOWER_NAME]: Don't take
10365         short cut if only one name component is stripped away.
10367 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
10369         * nis/nis_call.c: Minor cleanups throughout.
10370         (rec_dirsearch) [case HIGHER_NAME]: Correctly size ndomain array.
10371         (first_shoot): Add search_parent_first parameter.  Only if it is set
10372         search parent server first.
10373         If directory for table found through cold start cache is not the same
10374         as referenced in the cache, don't use it.
10375         (__nisfind_server): Take additional parameter.  Pass it on to
10376         first_shoot.
10377         (__prepare_niscall): Adjust __nisfind_server call.
10378         * nis/rpcsvc/nislib.h: Adjust __nisfind_server prototype.
10379         * nis/nis_table.c: Adjust __nisfind_server call.
10380         * nis/nis_lookup.c: Likewise.
10381         (nis_lookup): Don't loop endlessly if name is reduced to ".".
10383 2006-08-03  Ulrich Drepper  <drepper@redhat.com>
10385         [BZ #2182]
10386         * math/s_cacosh.c: Return values from positive branch.
10387         * math/s_cacoshf.c: Likewise.
10388         * math/s_cacoshl.c: Likewise.
10390         [BZ #2883]
10391         * sysvipc/sys/msg.h: Change return value to ssize_t.
10392         * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
10393         * sysvipc/msgrcv.c: Likewise.
10394         * include/sys/msg.h: Likewise.
10396         * grp/initgroups.c (internal_getgrouplist): Remove unnecessary
10397         test introduced in patch for bz #661.
10398         (getgrouplist): Simplify code a bit.  Don't allocate one additional
10399         element for NEWGROUPS.
10401         [BZ #2908]
10402         * stdio-common/printf_fphex.c (__printf_fphex): When rounding up
10403         'f', use '1' as leading digit not '\1'.
10404         * stdio-common/Makefile (tests): Add bug16.
10405         * stdio-common/bug16.c: New file.
10407         [BZ #2914]
10408         * sysdeps/unix/sysv/linux/gethostid.c: Don't define OLD_HOSTIDFILE
10409         and don't try to open it.  The patch introducing the macro
10410         contained a bug and used the same file name as the new file
10411         instead of using /var/adm/hostid.  Nobody complaint so I'm taking
10412         this out completely.
10414         [BZ #2926]
10415         * assert/assert.h: Move cast to void inside ?: to quiet gcc.
10416         Patch by Jerry James <Jerry.James@usu.edu>.
10418         * rt/Makefile (tests): Add tst-clock2.
10419         * rt/tst-clock2.c: New file.
10421         [BZ #2978]
10422         * resolv/gai_notify.c (__gai_notify_only): Copy memory for thread
10423         function and its parameters and pass it to new thread.
10424         (__gai_notify): Add support for alternative waiting for completion.
10425         * resolv/gai_suspend.c (gai_suspend): Add support for alternative
10426         waiting for completion.
10427         * resolv/getaddrinfo_a.c: Likewise.
10428         * resolv/gai_misc.h (struct waitlist): Don't add cond if alternative
10429         waiting for completion is used.
10430         * resolv/gai_misc.c: Allow overwriting code to start helper thread.
10431         * resolv/gai_cancel.c: Include <gai_misc.h> not "gai_misc.h".
10432         * resolv/gai_error.c: Likewise.
10433         * resolv/gai_sigqueue.c: Likewise.
10435 2006-08-02  Thomas Schwinge  <tschwinge@gnu.org>
10437         * hurd/getdport.c (__getdport): Don't return EBADF; instead set
10438         errno to EBADF and return MACH_PORT_NULL.
10440 2006-06-23  Joseph Myers  <joseph@codesourcery.com>
10442         [BZ #2980]
10443         * posix/Makefile (CFLAGS-waitid.c): Add -fasynchronous-unwind-tables.
10445 2006-08-02  Ulrich Drepper  <drepper@redhat.com>
10447         * elf/dl-addr.c (_dl_addr): If GNU-style hash tables are present,
10448         walk them instead of the symbol table.
10450 2006-08-01  Ulrich Drepper  <drepper@redhat.com>
10452         [BZ #2098]
10453         * nscd/initgrcache.c (addinitgroupsX): Judge successful lookups by
10454         status of NSS calls, not the number of returned entries.
10456         * sysdeps/unix/sysv/linux/syscalls.list: Remove add_key,
10457         request_key, keyctl.
10459 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
10461         * sysdeps/unix/sysv/linux/dl-osinfo.h: Remove unnecessary include.
10463 2006-07-16  Jeff Bailey  <jbailey@ubuntu.com>
10465         * elf/tst-auditmod1.c: Fix typo in #error.
10467 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
10469         * elf/tst-auditmod1.c: Remove code for unsupported architectures.
10471         * iconvdata/run-iconv-test.sh: Run cmp in C locale.
10473 2006-07-20  Adam Nemet  <anemet@caviumnetworks.com>
10475         * stdlib/test-canon.c (do_test): Close fd before unlinking file so
10476         that the directory is empty even on non-POSIX filesystems.
10478 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
10480         * elf/dl-open.c (dl_open_worker): Add branch prediction.
10482         * nis/nss_compat/compat-grp.c: Avoid unnecessary setgrent calls into
10483         the backend NSS module.  If backend setgrent call failed, don't have
10484         internal_setgrent fail.  Just remember this until it is needed.
10485         * nis/nss_compat/compat-pwd.c: Likewise.
10486         * nis/nss_compat/compat-spwd.c: Likewise.
10488 2006-07-30  Roland McGrath  <roland@redhat.com>
10490         * sysdeps/unix/sysv/linux/ia64/sigsuspend.c: File removed.
10491         * sysdeps/unix/sysv/linux/x86_64/sigsuspend.c: File removed.
10492         * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c: File removed.
10493         * sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c: File removed.
10495         * sysdeps/unix/sysv/linux/not-cancel.h (pause_not_cancel): New macro.
10496         (nanosleep_not_cancel): New macro.
10497         (sigsuspend_not_cancel): new macro.
10498         * sysdeps/unix/sysv/linux/sigsuspend.c [__ASSUME_REALTIME_SIGNALS]
10499         (do_sigsuspend): Define as inline.
10500         (__sigsuspend): Always use do_sigsuspend.
10501         [! NO_CANCELLATION] (__sigsuspend_nocancel): New function.
10502         * include/signal.h: Declare __sigsuspend_nocancel.
10503         * sysdeps/posix/pause.c
10504         [! NO_CANCELLATION] (__pause_nocancel): New function.
10506         * include/unistd.h (__pause_nocancel): Add attribute_hidden.
10507         * include/time.h (__nanosleep_nocancel): Likewise.
10509 2006-07-30  Ulrich Drepper  <drepper@redhat.com>
10511         * locale/programs/localedef.c (add_to_readlist): Rename local
10512         variables to avoid confusion.
10514         * locale/programs/charmap.c (charmap_read): Emit error message if
10515         charmap couldn't be found or read.
10517 2006-07-28  Ulrich Drepper  <drepper@redhat.com>
10519         * sysdeps/unix/sysv/linux/kernel-features.h: Define
10520         __ASSUME_FUTEX_LOCK_PI.
10521         * include/time.h: Declare __nanosleep_nocancel.
10522         * include/unistd.h: Declare __pause_nocancel.
10524         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Use this instead of
10525         LDFLAGS.  Add -lgcc_eh and libc_nonshared (again) to make sure we
10526         get the __stack_chk_fail_local definition when it's needed.
10528 2006-07-26  Ulrich Drepper  <drepper@redhat.com>
10530         * dlfcn/Makefile: Add rules to build and run bug-atexit3.
10531         * dlfcn/bug-atexit3.c: New file.
10532         * dlfcn/bug-atexit3-lib.cc: New file.
10534         * dlfcn/dlmopen.c (dlmopen_doit): Don't allow RTLD_GLOBAL to be
10535         used when the namespace is not the base namespace.
10537 2006-07-26  Gavin Romig-Koch  <gavin@redhat.com>
10539         * stdlib/cxa_atexit.c (__new_exitfn_called): New variable.
10540         (__new_exitfn): Bump it in every successful call.
10541         * stdlib/cxa_finalize.c (__cxa_finalize): If destructor registered
10542         more exit handlers, call them right away.
10543         * stdlib/exit.h: Declare __new_exitfn_called.
10545 2006-07-25  Ulrich Drepper  <drepper@redhat.com>
10547         * stdlib/cxa_finalize.c (__cxa_finalize): Fix race condition when
10548         calling registered handler.
10550         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Fix comment.
10551         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
10552         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
10553         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
10554         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
10555         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
10556         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
10557         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
10559 2006-07-10  Ulrich Drepper  <drepper@redhat.com>
10561         * elf/dl-lookup.c (dl_new_hash): New functions.
10562         (_dl_lookup_symbol_x): Rename hash to old_hash and don't compute
10563         value here.  Compute new-style hash value.  Pass new hash value
10564         and reference to variable with the old value to do_lookup_x.
10565         (_dl_setup_hash): If DT_GNU_HASH is defined, use it and not
10566         old-style hash table.
10567         (_dl_debug_bindings): Pass new hash value and reference to variable
10568         with the old value to do_lookup_x.
10569         * elf/do-lookup.h (do_lookup_x): Accept additional parameter with
10570         new-style hash value and change old-style hash value parameter to
10571         be a reference.  Reoganize functions to determine whether
10572         new-style hash table is available.  Only fall back on old-style
10573         table.  If old-style hash value is needed, compute it here.
10574         * elf/dynamic-link.h (elf_get_dynamic_info): Relocate DT_GNU_HASH
10575         entry.
10576         * elf/elf.h: Define SHT_GNU_HASH, DT_GNU_HASH, DT_TLSDEC_PLT,
10577         DT_TLSDEC_GOT.  Adjust DT_ADDRNUM.
10578         * include/link.h (struct link_map): Add l_gnu_bitmask_idxbits,
10579         l_gnu_shift, l_gnu_bitmask, l_gnu_buckets and l_gnu_chain_zero.
10580         * Makeconfig: If linker supports --hash-style option add it to all
10581         linker command lines to build DSOs.
10582         * config.make.in: Define have-hash-style.
10583         * configure.in: Test whether linker supports --hash-style option.
10585         * elf/dl-misc.c (_dl_name_match_p): Make MAP parameter const.
10586         * sysdeps/generic/ldsodefs.h: Adjust prototype.
10588 2006-06-27  Ulrich Drepper  <drepper@redhat.com>
10590         * elf/dl-load.c (open_path): Fix test to determine whether DSO is
10591         auditing.
10593         * elf/dl-load.c (_dl_map_object): Try harder to avoid looking at
10594         RPATH of main map twice.
10596 2006-06-22  Ulrich Drepper  <drepper@redhat.com>
10598         * intl/dcigettext.c (DCIGETTEXT): If _nl_find_msg returns -1 don't
10599         look further, return original strings.
10600         (_nl_find_msg): Do not return found translation if the conversion
10601         failed.  Either signal the string is unusable or that something went
10602         wrong and the original should be used.
10604 2006-06-21  Ulrich Drepper  <drepper@redhat.com>
10606         * string/_strerror.c (__strerror_r): Add __builtin_expect.
10608 2006-06-14  Jakub Jelinek  <jakub@redhat.com>
10610         [BZ #2766]
10611         * misc/insremque.c (insque): Handle prev == NULL.
10612         * misc/Makefile (tests): Add tst-insremque.
10613         * misc/tst-insremque.c: New test.
10615 2006-06-17  Ulrich Drepper  <drepper@redhat.com>
10617         [BZ #2792]
10618         * elf/dl-deps.c (expand_dst): Rename __cnt variable to not
10619         conflict with DL_DST_REQUIRED.
10621 2006-06-16  Ulrich Drepper  <drepper@redhat.com>
10623         * nis/nis_subr.c (nis_getnames): Fix the implementation to better
10624         match what Solaris does.
10626 2006-06-04  Ulrich Drepper  <drepper@redhat.com>
10628         * sysdeps/posix/spawni.c (__spawni): Use local_seteuid and
10629         local_setegid instead of seteuid and setegid.
10630         * sysdeps/generic/local-setxid.h: New file.
10631         * sysdeps/unix/sysv/linux/local-setxid.h: New file.
10633         * sysdeps/posix/spawni.c (__spawni): Use non-cancelable interfaces.
10635         * string/Makefile (tests): Add bug-envz1.
10636         * string/bug-envz1.c: New file.
10638 2006-06-02  Jakub Jelinek  <jakub@redhat.com>
10640         * posix/regex_internal.c (re_string_skip_chars): If no character has
10641         been converted at all, set *last_wc to WEOF.  If mbrtowc failed, set wc
10642         to the byte which couldn't be converted.
10643         (re_string_reconstruct): Don't clear valid_raw_len before calling
10644         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
10645         tip_context using re_string_context_at.
10646         * posix/Makefile: Add rules to build and run bug-regex25 test.
10647         * posix/bug-regex25.c: New test.
10649 2006-06-02  Ryan S. Arnold  <rsa@us.ibm.com>
10651         [BZ #2703]
10652         * string/envz.c (envz_strip): Correct erroneously reversed src
10653         and dest parameters to memmove() invocation.
10655 2006-05-30  Jakub Jelinek  <jakub@redhat.com>
10657         * nscd/nscd.h (prune_cache): Add fd argument to prototype.
10658         * nscd/nscd.c (parse_opt): Read response from INVALIDATE request
10659         to make sure the database has been already invalidated.
10660         * nscd/cache.c (prune_cache): Add fd argument.  Write response to fd
10661         after the cache has been invalidated.  Use pthread_mutex_lock rather
10662         than pthread_mutex_trylock if fd != -1.
10663         * nscd/connections.c (invalidate_cache): Add fd argument, write
10664         response to fd if not calling prune_cache, pass fd to prune_cache.
10665         (handle_request): Adjust invalidate_cache caller.
10666         (nscd_run): Pass -1 as fd to prune_cache.
10668 2006-05-30  Ulrich Drepper  <drepper@redhat.com>
10670         * sysdeps/posix/getaddrinfo.c (gaiconf_init): Initialize bits in
10671         the correct place.
10673 2006-05-29  Ulrich Drepper  <drepper@redhat.com>
10675         * nscd/nscd.h (struct database_dyn): Add prunelock field.
10676         * nscd/cache.c (prune_cache): Take prunelock before starting the
10677         work.  Just return in case it is already taken.
10678         * nscd/connections.c (dbs): Initialize .prunelock.
10680 2006-05-25  Ulrich Drepper  <drepper@redhat.com>
10682         * nis/nis_removemember.c (nis_removemember): Avoid unnecessary
10683         copying.  No need to allocate new array for group members.  Just
10684         move the pointers and update the size.
10686         * nis/nis_addmember.c (nis_addmember): Avoid unnecessary copying.
10687         Avoid memory leak in case realloc fails.  Simplification for
10688         better code generation.
10690         Avoid deprecation warning because of libc_hidden_proto for
10691         inet6_option_alloc.
10692         * inet/inet6_option.c (option_alloc): Renamed from
10693         inet6_option_alloc.  Made static.
10694         (inet6_option_alloc): Now a simple wrapper around option_alloc.
10695         (inet6_option_append): Call option_alloc.
10696         * include/netinet/in.h: Remove libc_hidden_proto for
10697         inet6_option_alloc.
10699         * nis/nis_callback.c (__nis_create_callback): Always call xdr_free
10700         for cleanup when cb!=NULL [Coverity CID 233].
10702 2006-05-24  Ulrich Drepper  <drepper@redhat.com>
10704         [BZ #2693]
10705         * inet/Makefile (routines): Add inet6_opt and inet6_rth.
10706         * inet/Versions (libc, GLIBC_2.5): Add inet6_opt_init,
10707         inet6_opt_append, inet6_opt_finish, inet6_opt_set_val, inet6_opt_next,
10708         inet6_opt_find, inet6_opt_get_val, inet6_rth_space, inet6_rth_init,
10709         inet6_rth_add, inet6_rth_reverse, inet6_rth_segments,
10710         and inet6_rth_getaddr.
10711         * inet/netinet/ip6.h (struct ip6_rthdr0): Make ip6r0_addr a flexible
10712         array.
10713         * inet/netinet/in.h (struct ip6_mtuinfo): Define.
10714         Mark inet6_option_* interfaces as deprecated.
10715         Declare inet6_opt_init, inet6_opt_append, inet6_opt_finish,
10716         inet6_opt_set_val, inet6_opt_next, inet6_opt_find, inet6_opt_get_val,
10717         inet6_rth_space, inet6_rth_init, inet6_rth_add, inet6_rth_reverse,
10718         inet6_rth_segments, and inet6_rth_getaddr.
10719         * inet/inet6_opt.c: New file.
10720         * inet/inet6_rth.c: New file.
10722         * inet/netinet/icmp6.h: Pretty printing.
10724         [BZ #2683]
10725         * elf/dl-addr.c (_dl_addr): Don't match undefined references.
10727 2006-05-23  Ulrich Drepper  <drepper@redhat.com>
10729         * nis/nis_lookup.c (nis_lookup): Use __prepare_niscall instead of
10730         doing it all here.  When server does not know the answer do not
10731         fail immediate, try parent first.
10733         * nis/nis_domain_of_r.c (nis_domain_of_r): Add missing buffer
10734         overflow test.
10736 2006-05-20  Ulrich Drepper  <drepper@redhat.com>
10738         * nis/nis_call.c (__prepare_niscall): New function.  Split out
10739         from __do_niscall.
10740         * nis/nis_table.c (__create_ib_request): Renamed from create_ib_request
10741         and exported.
10742         (__follow_path): New function.  Split out from nis_list.
10743         * nis/nis_xdr.h: Add libnsl_hidden_proto for _xdr_ib_request and
10744         _xdr_nis_result.
10745         * nis/nis_xdr.c: Add libnsl_hidden_def for _xdr_ib_request and
10746         _xdr_nis_result.
10747         * nis/libnsl.h: Declare __prepare_niscall, __create_ib_request,
10748         and __follow_path.
10749         * nis/Versions: Export __prepare_niscall, __create_ib_request,
10750         __follow_path, __do_niscall3, _xdr_ib_request, and _xdr_nis_result
10751         from libnsl for version GLIBC_PRIVATE.
10752         * nis/nisplus-parser.h: Remove _nss_nisplus_parse_pwent_chk.
10753         Remove entry parameter from _nss_nisplus_parse_pwent and
10754         _nss_nisplus_parse_grent.
10755         * nis/nss_nisplus/nisplus-parser.c: Likewise.
10756         * nis/nss_nisplus/nisplus-pwd.c: Remove support for SETENT_BATCH_READ
10757         again.  Rewrite getpwent handling to not use nis_first_entry and
10758         nis_next_entry.  Roll out own niscall handling.
10759         * nis/nss_nisplus/nisplus-grp.c: Likewise.
10761         * sunrpc/xdr_rec.c: Fix typo in comment.
10763 2006-05-19  Ulrich Drepper  <drepper@redhat.com>
10765         * nis/nis_call.c (__do_niscall3): Avoid code duplication in error
10766         handling.
10768         * nis/nis_callback.c (internal_nis_do_callback): Don't use malloc
10769         to allocate memory for my_pollfd.  Better initialization of
10770         cb_is_running.  Use TEMP_FAILURE_RETRY.
10772         * malloc/memusage.sh (memusageso): Add quotes.
10773         (memusagestat): Likewise.
10774         * debug/xtrace.sh (pcprofileso): Likewise.
10775         (pcprofiledump): Likewise.
10776         * debug/Makefile ($(objpfx)xtrace): Use $LIB in SLIBDIR
10777         replacement.
10778         * malloc/Makefile ($(objpfx)memusage): Likewise.
10780         * nis/nis_callback.c (__nis_create_callback): Calls to
10781         svcudp_bufcreate and svctcp_create can fail.  Free ->xprt if
10782         asprintf call fails.
10784         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_sendreq): Make sure
10785         no uninitialized memory is passed to sendto.
10787 2006-05-18  Ulrich Drepper  <drepper@redhat.com>
10789         * nis/nis_callback.c (__nis_create_callback): Use asprinf instead
10790         of snprintf+strdup.  Handle OOM.
10791         * nis/nis_callback.c (__nis_create_callback): Allocate cb and
10792         cb->serv together.  Remove now obsolete free calls.
10793         (__nis_destroy_callback): Remove now obsolete free call.
10795 2006-05-18  David Woodhouse  <dwmw2@redhat.com>
10797         * sysdeps/posix/getaddrinfo.c: Add unique labels to the default
10798         RFC3484 precedence table for fec0::/10 and fc00::/7 (site-local
10799         and ULA respectively). Set precedence for IPv4 address to 10 as
10800         defined in RFC3484 for preferring IPv6.
10801         * posix/gai.conf: Update to match the new default tables.
10803 2006-05-18  Jakub Jelinek  <jakub@redhat.com>
10805         * nis/nss_compat/compat-pwd.c (internal_setpwent): If nss_set*ent
10806         returned NSS_STATUS_UNAVAIL, still return NSS_STATUS_SUCCESS.
10807         * nis/nss_compat/compat-spwd.c (internal_setspent): Likewise.
10808         * nis/nss_compat/compat-grp.c (internal_setgrent): Likewise.
10810         * nis/nss_compat/compat-initgroups.c (nss_setgrent, nss_endgrent):
10811         Removed.
10812         (init_nss_interface): Remove initialization of these variables.
10814 2006-05-18  Ulrich Drepper  <drepper@redhat.com>
10816         * nis/nis_call.c (rec_dirsearch): Little optimization: pull
10817         nis_free_directory forward to avoid duplication.
10819 2006-05-17  Ulrich Drepper  <drepper@redhat.com>
10821         * nis/nis_call.c (rec_dirsearch): Handle __nis_finddirectory and
10822         rec_dirsearch returning NULL.
10823         (first_shoot): Handle __nis_finddirectory returning NULL.
10824         (__nisfind_server): Fix leak when rec_dirsearch returns NULL.
10826         * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOSE, IN_MOVE,
10827         IN_ONLYDIR, IN_DONT_FOLLOW, and IN_MASK_ADD.
10829 2006-05-17  Jakub Jelinek  <jakub@redhat.com>
10831         * sunrpc/key_call.c (getkeyserv_handle): Call auth_destroy if
10832         pid changed.
10834 2006-05-15  Ulrich Drepper  <drepper@redhat.com>
10836         * include/rpc/pmap_prot.h: Mark all functions as hidden.
10838         * nscd/nscd_initgroups.c: Mark __gr_map_handle as hidden.
10839         * nscd/nscd_getgr_r.c: Likewise.
10841         * include/rpc/pmap_rmt.h: Mark all functions as hidden.
10843         * nscd/nscd_getai.c (__hst_map_handle): Mark as hidden.
10844         * nscd/nscd_gethst_r.c (__hst_map_handle): Likewise.
10846         * stdlib/longlong.h (__clz_tab): Mark as hidden.
10848         * iconv/gconv_int.h: Mark __gconv_lock as hidden.
10850         * include/rpc/key_prot.h: Mark all _internal functions as hidden.
10852         * include/rpc/auth.h: Mark xdr_des_block_internal and
10853         xdr_opaque_auth_internal as hidden.
10855         * sysdeps/unix/sysv/linux/getdents.c: Mark __have_no_getdents64 as
10856         hidden.
10858         * include/rpc/xdr.h: Mark all _internal functions as hidden.
10860         * misc/getusershell.c (okshells): Don't use static initializers,
10861         do it dynamically.
10863         * stdlib/fmtmsg.c (keywords): Change type of len element to
10864         uint32_t to not waste space on 64bit machines.
10866         * locale/setlocale.c: Change _nl_category_names into a string.
10867         Add new _nl_category_name_idxs.  Change all users.
10868         * locale/localeinfo.h: Adjust declaration of _nl_category_names.
10869         Declare _nl_category_name_idxs.
10870         * locale/findlocale.c: Adjust for _nl_category_names change.
10871         * locale/loadlocale.c: Likewise.
10872         * locale/newlocale.c: Likewise.
10873         * intl/dcigettext.c: Likewise.
10875         * iconv/gconv_conf.c (add_alias): Move actual alias handling to...
10876         (add_alias2): ...here.  New function.
10877         (__gconv_read_conf): Simplify builtin alias handling.
10878         (builtin_aliases): Convert to string to avoid relocations.
10879         * iconv/gconv_builtin.h: Add comment about correct formatting.
10881 2006-05-15  Jakub Jelinek  <jakub@redhat.com>
10883         * resolv/res_debug.c (loc_ntoa): Make error const.
10885 2006-05-14  Andreas Schwab  <schwab@suse.de>
10887         * math/complex.h [__LDBL_COMPAT]: Use __REDIRECT_NTH.
10889 2006-05-12  Jakub Jelinek  <jakub@redhat.com>
10891         * sysdeps/unix/sysv/linux/sched_getaffinity.c: Include sys/param.h.
10892         (__sched_getaffinity_new): Don't crash if cpusetsize is smaller than
10893         sizeof (cpu_set_t).
10895 2006-05-11  Ulrich Drepper  <drepper@redhat.com>
10897         * resolv/res_debug.c (loc_ntoa): Define error as array, not pointer.
10899         * include/arpa/nameser.h: Declare _ns_flagdata as hidden.
10901         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_master.
10902         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_master.
10904         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypbind_resp.
10905         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypbind_resp.
10907         * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_cback_data.
10908         * include/rpcsvc/nis_callback.h: Add libnsl_hidden_proto for
10909         xdr_cback_data.
10911         * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypupdate_args.
10912         * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
10913         xdr_ypupdate_args.
10915         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_order.
10916         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_order.
10918         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_maplist.
10919         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_maplist.
10921         * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_obj_p.
10922         * include/rpcsvc/nis_callback.h: New file.
10924         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_val.
10925         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_val.
10927         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
10928         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
10930         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypmaplist.
10931         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypmaplist.
10933         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
10934         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
10936         * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypdelete_args.
10937         * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
10938         xdr_ypdelete_args.
10940         * nis/nis_xdr.h: Mark all functions as hidden.  Remove
10941         __BEGIN_DECLS and __END_DECLS, the header is not installed.
10943         * nis/nis_error.c: Remove table of strings.  Use position
10944         independent mechanism.
10945         * nis/nis_error.h: New file.
10947 2006-05-11  Jakub Jelinek  <jakub@redhat.com>
10949         * locale/programs/ld-time.c (time_finish): If wide era name or
10950         format aren't provided, set both wname and wformat to L"".
10952 2006-05-10  Ulrich Drepper  <drepper@redhat.com>
10954         * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Only store
10955         results if the call was succesful.
10957         * nis/nss-nis.h: Mark __yperr2nss_tab and __yperr2nss_count as hidden.
10959         * nis/nss-nisplus.h: Mark __niserr2nss_tab and __niserr2nss_count
10960         as hidden.
10962 2006-05-10  Jakub Jelinek  <jakub@redhat.com>
10964         * misc/sys/queue.h: Remove uses of all QUEUEDEBUG_* macros.
10966 2006-05-10  Ulrich Drepper  <drepper@redhat.com>
10968         * posix/wordexp.c (parse_glob): No need to check ifs for NULL, the
10969         caller makes sure this is not the case.
10970         (wordexp): Simplify ifs_white creation.  [Coverity CID 231]
10972 2006-05-09  Ulrich Drepper  <drepper@redhat.com>
10974         * posix/wordexp.c: Remove numerous NULL pointer tests before FREE
10975         calls.
10977         * io/ftw.c (open_dir_stream): Return right away if REALLOC fails.
10978         [Coverity CID 229, 230]
10980         * argp/argp-help.c (hol_entry_help): Handle STATE==NULL in ARG and
10981         DGETTEXT calls.
10982         (hol_help): Likewise.  [Coverity CID 226, 227]
10984         * string/argz-replace.c (__argz_replace): Unconditionally call
10985         free on SRC.  [Coverity CID 225]
10987         * nis/nis_creategroup.c (nis_creategroup): No need to duplicate
10988         the return value of __nis_default_owner and __nis_default_group,
10989         it has been especially allocated.  [Coverity CID 224]
10991         * nis/nis_defaults.c (searchXYX): New functions.  Used by both
10992         searchgroup and searchowner.  Significantly simplified.
10993         (__nis_default_owner): Remove duplication.  Do not locally copy the
10994         string before duplicating it.
10995         (__nis_default_group): Likewise.
10997         * nis/nis_lookup.c (nis_lookup): After calling nis_free_directory,
10998         we must clear the variable before calling __nisfind_server.
11000         * nis/nis_lookup.c (nis_lookup): Always free memory allocated with
11001         nis_getnames.  [Coverity CID 223]
11003         * locale/programs/locfile.c (locfile_read): Use alloca instead of
11004         xmalloc to allocate local repertoire name.  [Coverity CID 222]
11006         * iconv/iconv_charmap.c (use_to_charmap): No need to dynamically
11007         allocate memory for the input to add_bytes.  [Coverity CID 221]
11009         * posix/wordexp.c (w_addword): Free word if realloc fails and it
11010         was allocated here.  [Coverity CID 219, 220]
11012         * posix/getconf.c (print_all): Free confstr data after printing.
11013         [Coverity CID 218]
11015         * sysdeps/posix/getaddrinfo.c (gaih_inet): Free canon string if
11016         list allocation fails.  [Coverity CID 215]
11018         * nss/nsswitch.c (__nss_configure_lookup): Fix loop end condition.
11019         [Coverity CID 213]
11021         * argp/argp-help.c (hol_entry_cmp): Don't call canon_doc_option if
11022         string is NULL.  [Coverity CID 212]
11023         * argp/Makefile: Add rules to build and run bug-argp1.
11024         * argp/bug-argp1.c: New file.
11026         * io/ftw.c (ftw_dir): Use __rawmemchr instead of strchr to find
11027         end of string.
11028         * stdlib/canonicalize.c (__realpath): Likewise.
11030         * locale/programs/ld-time.c (time_finish): Don't dereference NULL
11031         pointer.  [Coverity CID 206]
11033         * elf/dl-dst.h (DL_DST_REQUIRED): Be prepared for missing link map
11034         in statically linked code.
11035         * elf/dl-load.c (_dl_dst_substitute): When replacing ORIGIN in
11036         statically built code, be prepared to have no link map.
11037         [Coverity CID 205]
11039         * argp/argp-help.c (fill_in_uparams): Handle STATE==NULL in
11040         dgettext calls. [Coverity CID 204]
11042         * argp/argp-help.c (struct uparams): Remove valid member.  Change
11043         the one user.
11044         (uparam_names): Reduce size.  Avoid relative relocations.
11045         Moved to read-only segment.
11046         (fill_in_uparams): Update for new layout.
11048         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs): Parameter can be
11049         assumed to always be != NULL. [Coverity CID 202]
11051         * argp/argp-help.c (hol_entry_help): Remove some dead code
11052         [Coverity CID 200].
11054         * nis/nss_nis/nis-service.c (_nss_nis_getservbyport_r): Optimize
11055         away a few more unconditional yperr2nss calls.
11056         (_nss_nis_getservbyname_r): Likewise.
11058 2006-05-06  Ulrich Drepper  <drepper@redhat.com>
11060         * sysdeps/generic/ldsodefs.h: Remove support for non-core
11061         architectures.
11063         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Make sure
11064         that unused memory passed to sendto is nevertheless initialized.
11066         [BZ #2499]
11067         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Avoid
11068         possibly unaligned memory accesses.
11070         * include/arpa/nameser.h: Also optimize NS_PUT16 and NS_PUT32.
11071         * resolv/res_mkquery.c: Use NS_PUT16 and NS_PUT32 instead of __putshort
11072         and __putlong respectively.  Correct buffer overflow check for
11073         NS_NOTIFY_OP.
11075         * resolv/res_send.c (send_vc): Use ns_put16 instead of putshort.
11077         * resolv/res_send.c (res_queriesmatch): Fix typo in comment.
11078         (send_dg): Rewrite error handling to be more compact and avoid
11079         double recomputation of timeouts.  Pass MSG_NOSIGNAL to send.
11081         * include/arpa/nameser.h: Add optimizations for NS_GET16 and NS_GET32.
11083         * resolv/res_send.c (res_nameinquery): Use NS_GET16 directly
11084         instead of ns_get16.
11085         (res_queriesmatch): Likewise.  Minor optimization.
11087         [BZ #2499]
11088         * resolv/res_query.c (__libc_res_nquery): If answerp != NULL,
11089         __libc_res_nsend might reallocate the buffer for the answer.  In
11090         this case we have to reload the HP pointer.
11092 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
11094         * stdio-common/vfscanf.c (memory_error): Remove definition.  Add
11095         some branch prediction hints.
11097         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Define SPLICE_F_*.
11098         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
11099         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
11100         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
11101         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
11102         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
11103         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
11104         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
11106 2006-05-05  Martin Schwidefsky  <schwidefsky@de.ibm.com>
11108         * sysdeps/s390/s390-32/elf/start.S: Replace pc relative relocation
11109         by a GOT relocation to make Scrt1.o position independent.
11110         * sysdeps/s390/s390-64/elf/start.S: Likewise.
11112         * sysdeps/unix/sysv/linux/s390/s390-32/syscall.S: Add support for
11113         six system call parameters.
11114         * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
11116 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
11118         * sunrpc/svcauth_des.c (cache_init): Use calloc instead of
11119         malloc&bzero.
11121         * sunrpc/svc_udp.c (BZERO): Remove definition.
11122         (CALLOC): Define.
11123         (svc_enablecache): Use CALLOC instead of ALLOC&BZERO.
11125         * sunrpc/des_impl.c: Remove ALT_ECB support.  We never used it.
11126         (des_SPtrans): Use uint32_t type.
11127         (des_skb): Likewise.
11129         * sunrpc/xdr_ref.c (xdr_reference): Use calloc instead of malloc&bzero.
11131 2006-05-05  Jakub Jelinek  <jakub@redhat.com>
11133         [BZ #2509]
11134         * stdio-common/tst-printf.sh: Adjust for tst-printf.c change even
11135         on 32-bit arches.
11137 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
11139         * locale/programs/ld-address.c (address_finish): Fix one more
11140         place where the iso639 array might be accessed beyond the limits.
11142 2006-05-04  Ulrich Drepper  <drepper@redhat.com>
11144         * nis/nis_table.c (nis_list): Avoid clearing res twice before
11145         filling it for the first time.
11147         * nis/nis_table.c (get_tablepath): Renamed from __get_tablepath.
11148         Adjust all callers.
11149         Free res object content before returning.
11151         * sunrpc/xdr_array.c (xdr_array): Use calloc instead of malloc&bzero.
11153         * sunrpc/key_call.c (__rpc_thread_key_cleanup): Also free
11154         client->cl_auth.
11156         * sunrpc/rpc_thread.c (__rpc_thread_destroy): Don't skip entire
11157         cleanup for initial thread, just the free call on TVP.
11159         * nscd/gai.c (__getline): Define.
11162 See ChangeLog.16 for earlier changes.