* sysdeps/ieee754/ldbl-64-128/strtold_l.c (__STRTOF): Declare.
[glibc.git] / ChangeLog
blob4477bafbfa35e666597c42f25e56dd666c1b29d2
1 2007-08-14  Jakub Jelinek  <jakub@redhat.com>
3         * sysdeps/ieee754/ldbl-64-128/strtold_l.c (__STRTOF): Declare.
4         Add libc_hidden_proto.
5         (STRTOF): Add libc_hidden_proto.
6         (___new_strtold_l, ___new_wcstold_l): New weak aliases.
7         (strtold_l, wcstold_l): Use them as second argument for
8         long_double_symbol.
10 2007-08-14  Ulrich Drepper  <drepper@redhat.com>
12         * elf/dl-misc.c: Undo last change.  The kernel won't allow it.
14 2007-08-13  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
16         * stdlib/strtold_l.c: Include wchar.h if needed.  Add libc_hidden_def.
18 2007-08-14  Ulrich Drepper  <drepper@redhat.com>
20         * po/bg.po: New file.  From the translation team.
22 2007-08-13  Jakub Jelinek  <jakub@redhat.com>
24         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PSELECT,
25         __ASSUME_PPOLL, __ASSUME_ATFCTS, __ASSUME_SET_ROBUST_LIST,
26         __ASSUME_UTIMENSAT, __ASSUME_FALLOCATE): Update per-arch conditions
27         when each feature was introduced.
29         * sysdeps/unix/sysv/linux/dl-vdso.c: Don't include dl-hash.h.
30         * sysdeps/unix/sysv/linux/dl-vdso.h: Don't include dl-hash.h if NDEBUG.
31         (CHECK_HASH): New macro.
32         (PREPARE_VERSION): Use it.
34         * sysdeps/unix/sysv/linux/pselect.c (__generic_pselect): Only provide
35         prototype if not __ASSUME_PSELECT.
36         * sysdeps/unix/sysv/linux/ppoll.c (__generic_ppoll): Only provide
37         prototype if not __ASSUME_PPOLL.
39         * sysdeps/unix/sysv/linux/dl-osinfo.h (ROUND): #undef after use.
41         * sysdeps/unix/clock_settime.c (freq, __pthread_clock_settime,
42         hp_timing_settime): Don't define or declare if HANDLED_CPUTIME
43         is defined.
45 2007-08-13  Ulrich Drepper  <drepper@redhat.com>
47         * sysdeps/unix/sysv/linux/x86_64/libc-start.c
48         (_libc_vdso_platform_setup): If vDSO is not available point
49         __vdso_gettimeofday to the vsyscall.
50         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S [SHARED]: Use
51         __vdso_gettimeofday instead of vsyscall.
53 2007-08-13  Jakub Jelinek  <jakub@redhat.com>
55         * nscd/servicescache.c: Include kernel-features.h.
56         * nscd/gai.c: Likewise.
57         * sysdeps/unix/sysv/linux/statfs64.c: Likewise.
58         * sysdeps/unix/sysv/linux/fstatfs64.c: Likewise.
59         * sysdeps/unix/sysv/linux/fxstatat.c: Likewise.
60         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S: Likewise.
61         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: Likewise.
62         * sysdeps/unix/sysv/linux/xstatconv.c: Likewise.
63         * sysdeps/unix/sysv/linux/if_index.c: Likewise.
64         * sysdeps/unix/sysv/linux/sparc/sparc64/xstat.c: Likewise.
65         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
67 2007-08-12  Ulrich Drepper  <drepper@redhat.com>
69         * elf/dl-dst.h: No need for _dl_dst_count, _dl_dst_substitute,
70         and _dl_get_origin defines anymore.
72         * sysdeps/unix/sysv/linux/clock_gettime.c (maybe_syscall_gettime_cpu):
73         Build fix for systems which might lack POSIX timer support.
75         * sysdeps/unix/sysv/linux/x86_64/libc-start.c
76         (_libc_vdso_platform_setup): Mangle function pointers before storing
77         them.
78         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INLINE_VSYSCALL):
79         Demangle vdso pointer before use.
80         (INTERNAL_VSYSCALL): Likewise.
82         * elf/cache.c (primes): Mark as const.
83         Noted by Roland McGrath.
85 2007-08-01  Andreas Jaeger  <aj@suse.de>
86             Jakub Jelinek  <jakub@redhat.com>
88         * elf/ldconfig.c (opt_ignore_aux_cache): Add new option.
89         (options): Add option.
90         (parse_opt): Handle option.
91         (manual_link): Adjust process_file caller.  Call implicit_soname.
92         (search_dir): Formatting.  Use and populate auxiliary cache.
93         (main): Load and save auxiliary cache.
94         * elf/readlib.c (process_file): Add stat_buf argument.  Pass struct
95         stat64 from fstat64 to caller.
96         (implicit_soname): New function.
97         * elf/readelflib.c (process_elf_file): If DT_SONAME is not present,
98         leave *soname as NULL.
99         * elf/cache.c: Include libgen.h.
100         (print_entry, print_cache, compare, save_cache, add_to_cache):
101         Formatting and cleanups.
102         (aux_cache_entry_id, aux_cache_entry, aux_cache_file_entry,
103         aux_cache_file): New structures.
104         (AUX_CACHEMAGIC): Define.
105         (primes): New array.
106         (aux_hash_size, aux_hash): New variables.
107         (aux_cache_entry_id_hash, nextprime, init_aux_cache,
108         search_aux_cache, insert_to_aux_cache, add_to_aux_cache,
109         load_aux_cache, save_aux_cache): New functions.
110         * sysdeps/generic/ldconfig.h (_PATH_LDCONFIG_AUX_CACHE): Define.
111         (init_aux_cache, search_aux_cache, add_to_aux_cache,
112         load_aux_cache, save_aux_cache, implicit_soname): New prototypes.
113         (process_file): Adjust prototype.
115 2007-08-12  Jakub Jelinek  <jakub@redhat.com>
117         * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h: Include stddef.h
118         with __need_size_t.
120 2007-08-12  Ulrich Drepper  <drepper@redhat.com>
122         * sysdeps/unix/sysv/linux/dl-vdso.c (_dl_vdso_vsym): Expect
123         r_found_version structure as second parameter.
124         * sysdeps/unix/sysv/linux/dl-vdso.h (PREPARE_VERSION): Define.
125         (_dl_vdso_vsym): Change type of second parameter accordingly.
126         * sysdeps/unix/sysv/linux/x86-64/libc-start.c
127         (_libc_vdso_platform_setup): Adjust.
128         * sysdeps/unix/sysv/linux/powerpc/libc-start.c
129         (_libc_vdso_platform_setup): Likewise.
131         * sysdeps/unix/sysv/linux/powerpc/dl-vdso.c: Move to...
132         * sysdeps/unix/sysv/linux/dl-vdso.c: ...here.
133         * sysdeps/unix/sysv/linux/powerpc/dl-vdso.h: Move to...
134         * sysdeps/unix/sysv/linux/dl-vdso.h: ...here.
135         * csu/libc-start.c: Pretty printing.
136         Use VDSO_SETUP if defined.
137         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Define VDSO_SETUP
138         and let generic code call into _libc_vdso_platform_setup.
139         * sysdeps/unix/sysv/linux/x86_64/libc-start.c: New file.
140         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: New file.
141         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Pretty printing.
142         Define INLINE_VSYSCALL and INTERNAL_VSYSCALL.
143         * sysdeps/unix/sysv/linux/x86_64/Versions: Export __vdso_clock_gettime
144         for GLIBC_PRIVATE.
145         * sysdeps/unix/sysv/linux/x86_64/Makefile [subdir=elf]
146         (sysdep_rountines): Add dl-vdso.
148         * sysdeps/unix/sysv/linux/powerpc/Makefile: Use sysdep_routines instead
149         of routines.
151         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Add
152         attribute_hidden to __vdso_gettimeofday prototype.
154 2007-08-12  Roland McGrath  <roland@redhat.com>
156         * manual/stdio.texi (Variable Arguments Output): Fix xref to gcc manual.
157         From: Karl Berry <karl@freefriends.org>.
159 2007-08-11  Ulrich Drepper  <drepper@redhat.com>
161         * elf/dl-misc.c (_dl_sysdep_read_whole_file): We really don't need
162         an atime update for the files we read.
164 2007-08-10  Ulrich Drepper  <drepper@redhat.com>
166         * shadow/lckpwdf.c (__lckpwdf): Use O_CLOEXEC if possible.
168         * nscd/connections.c: Use O_CLOEXEC if possible.  Use mkostemp
169         instead of mkstemp.
171         * misc/Makefile (routines): Add mkostemp and mkostemp64.
172         * misc/Versions: Export mkostemp and mkostemp64 for GLIBC_2.7.
173         * misc/mkostemp.c: New file.
174         * misc/mkostemp64.c: New file.
175         * stdlib/stdlib.h: Declare the new functions.
176         * sysdeps/posix/tempname.c: Add new parameter which is added to
177         the flags for open.  Remove __GT_BIGFILE handling.
178         * stdio-common/tempname.c: Likewise.
179         * include/stdio.h: Adjust __gen_tempname prototype.
180         Renumber __GT_* constants.
181         * libio/oldtmpfile.c: Adjust for __gen_tempname interface change.
182         * misc/mkdtemp.c: Likewise.
183         * misc/mkstemp.c: Likewise.
184         * misc/mkstemp64.c: Likewise.
185         * misc/mktemp.c: Likewise.
186         * stdio-common/tempnam.c: Likewise.
187         * stdio-common/tmpfile.c: Likewise.
188         * stdio-common/tmpfile64.c: Likewise.
189         * stdio-common/tmpnam.c: Likewise.
190         * stdio-common/tmpnam_r.c: Likewise.
192 2007-08-10  Roland McGrath  <roland@frob.com>
194         * sysdeps/mach/hurd/bits/ioctls.h (NLDLY, TABDLY, BSDLY, VTDLY):
195         New macros.
196         (NLDELAY, CRDELAY, TBDELAY, BSDELAY, VTDELAY): Define to those.
197         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
199 2007-08-10  Ulrich Drepper  <drepper@redhat.com>
201         * nss/nss_files/files-XXX.c (internal_setent): Use O_CLOEXEC if
202         possible.
203         * nss/nss_files/files-alias.c (internal_setent): Likewise.
204         * nss/Makefile (libnss_files-routines): Add files-have_o_cloexec.
205         * nss/nss_files/files-have_o_cloexec.c: New file.
207         * sysdeps/unix/sysv/linux/shm_open.c (shm_open): Use O_CLOEXEC if
208         available.
210 2007-08-10  Jakub Jelinek  <jakub@redhat.com>
212         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c (___new_strtold_l,
213         ___new_wcstold_l): New weak aliases.
214         (strtold_l, wcstold_l): Use them as second argument for
215         long_double_symbol.
217 2007-08-09  Ulrich Drepper  <drepper@redhat.com>
219         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Use correct
220         register in test for error.
222         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_CLOEXEC): Define.
223         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_CLOEXEC): Likewise.
225         * po/sv.po: Update from translation team.
227 2007-08-06  Roland McGrath  <roland@redhat.com>
229         * include/stdlib.h: Add libc_hidden_proto for strto*, __strto*_l.
230         Remove __strto*_l inlines.
231         * include/wchar.h: Add libc_hidden_proto for wcsto*, __wcsto*_l.
232         * stdlib/strtod.c: Add libc_hidden_def.
233         * stdlib/strtod_l.c: Likewise.
234         * stdlib/strtold.c [__LONG_DOUBLE_MATH_OPTIONAL]: Add libc_hidden_proto
235         for __new_strtold and __new_wcstold.
236         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Add libc_hidden_proto for
237         __STRTOF, STRTOF.
238         * stdlib/strtol.c: Add libc_hidden_def.
239         * stdlib/strtol_l.c: Likewise.
240         * sysdeps/wordsize-64/strtol.c: Add libc_hidden_ver for strtoll and
241         strtoq.
243         * scripts/data/localplt-powerpc-linux-gnu.data: New file.
245         * scripts/data/localplt-x86_64-linux-gnu.data: File renamed to ...
246         * scripts/data/localplt-generic.data: ... here.
247         * elf/Makefile (check-data): Get generic file if no other.
248         ($(objpfx)check-localplt.out): Make target unconditional.
250         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion):
251         Use ElfW(Nhdr).
253 2007-08-05  Ulrich Drepper  <drepper@redhat.com>
255         * po/zh_CN.po: Updated translation from translation team.
257 2007-08-05  Jakub Jelinek  <jakub@redhat.com>
259         * sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S (__socket):
260         Don't use CGOTSETUP and CGOTRESTORE macros.
262 2007-08-04  Roland McGrath  <roland@redhat.com>
264         * posix/Makefile ($(objpfx)getconf.speclist): Fix typo.
266 2007-08-04  Jakub Jelinek  <jakub@redhat.com>
268         * io/bits/fcntl2.h (open, open64, openat, openat64): Add
269         __extension__ around the whole statement expression.
271 2007-08-04  Ulrich Drepper  <drepper@redhat.com>
273         * sysdeps/unix/opendir.c (__alloc_dir): Correct order of DIR
274         elements during initialization.
276         * po/pl.po: Updated translation from translation team.
277         * po/tr.po: Likewise.
278         * po/nl.po: Likewise.
280 2007-08-03  Ulrich Drepper  <drepper@redhat.com>
282         * rt/aio.h: Add __nonnull attributes.
284 2007-08-03  Jakub Jelinek  <jakub@redhat.com>
286         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Properly handle -0.
287         * stdlib/Makefile (tests): Add tst-strtod5.
288         (tst-strtod5-ENV): New.
289         * stdlib/tst-strtod5.c: New file.
291         * intl/dcigettext.c (_nl_find_msg): Free encoding if __gconv_open
292         failed.
293         * intl/finddomain.c (_nl_find_domain): Free normalized_codeset
294         on failure.
296         * elf/dl-load.c (decompose_rpath): Free copy if result couldn't be
297         allocated.
299 2007-08-03  Jakub Jelinek  <jakub@redhat.com>
301         * rt/mqueue.h (mq_timedreceive, mq_timedsend): Fix nonnull argument
302         numbers.
304 2007-08-02  Ulrich Drepper  <drepper@redhat.com>
306         * io/Makefile (aux): Add have_o_cloexec.
307         * include/fcntl.h: Declare __have_o_cloexec.
308         * io/have_o_cloexec.c: New file.
309         * sysdeps/unix/opendir.c (__opendir): Use O_CLOEXEC is available.
310         (__alloc_dir): If O_CLOEXEC has been used, don't duplicate the
311         fcntl call if not necessary.
312         * login/utmp_file.c (setutent_file): Use __have_o_cloexec instead
313         of local variable.
315         * sysdeps/unix/opendir.c (__alloc_dir): Don't initialize ->data.
316         Avoid memset, add explicit initialization.
317         * sysdeps/unix/dirstream.h (struct __dirstream): Move data elemtn
318         to the end and change into zero-sized array.
319         Move lock member to fill a hole on 64-bit platforms.
321         * stdlib/stdlib.h: Remove __strto*_internal prototypes and strto*
322         inline functions.
323         * include/stdlib.h: Add __strto*_internal prototypes here.
324         * wcsmbs/wchar.h: Remove __wcsto*_internal prototypes and wcsto*
325         inline functions.
326         * include/wchar.h: Add __wcsto*_internal prototypes.
327         * sysdeps/generic/inttypes.h: No need to protect the declaration
328         of the __strto*_internal and __wcsto*_internal members here.
330         * rt/mqueue.h: Change const to __const and add nonnull attributes.
332 2007-08-02  Roland McGrath  <roland@redhat.com>
334         * posix/Makefile ($(inst_libexecdir)/getconf): Make hard links to
335         $(inst_bindir)/getconf if possible.
337         * posix/Makefile ($(objpfx)getconf.speclist): New target.
338         (generated): Add it.
339         ($(inst_libexecdir)/getconf): Use it.
341 2007-08-01  Ulrich Drepper  <drepper@redhat.com>
343         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Using
344         /proc is faster and sufficient.  /sys is still needed for
345         __get_nprocs_conf.
347 2007-08-01  Jakub Jelinek  <jakub@redhat.com>
349         * sysdeps/unix/sysv/linux/i386/syscalls.list (fallocate): Add fallocate
350         syscall as __fallocate64.
351         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c: New file.
352         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c: New file.
354 2007-07-30  Jakub Jelinek  <jakub@redhat.com>
356         * stdlib/tst-strtod2.c (do_test): Use %tu in fmt string for ptrdiff_t
357         value.
359         * stdio-common/tst-fmemopen2.c (do_test): Avoid fmt string warning
360         if off_t is different rank from size_t.
362         * sysdeps/generic/unwind-dw2.c (extract_cie_info, execute_cfa_program,
363         uw_frame_state_for): Avoid type punning warnings.
364         * sysdeps/generic/unwind-dw2-fde-glibc.c
365         (_Unwind_IteratePhdrCallback): Likewise.
366         * sysdeps/generic/unwind-dw2-fde.c (_Unwind_Find_FDE): Likewise.
367         (binary_search_single_encoding_fdes, binary_search_mixed_encoding_fdes,
368         get_cie_encoding, linear_search_fdes): Don't mix char and unsigned char
369         pointers.
371 2007-07-31  Ulrich Drepper  <drepper@redhat.com>
373         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs_conf): Count
374         total processors using sysfs.
375         (__get_nprocs): Use sysfs to determine which processors are online.
377 2007-07-31  Jakub Jelinek  <jakub@redhat.com>
379         * sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate): Fix
380         syscall arguments count.
382         * stdio-common/tfformat.c (sprint_doubles): Add 12 new tests.
384 2007-07-30  Roland McGrath  <roland@redhat.com>
386         * manual/libc.texinfo: Update copyrights, formatting magic, and
387         @dircategory.  From Karl Berry <karl@freefriends.org>.
389 2007-07-29  Ulrich Drepper  <drepper@redhat.com>
391         [BZ #4860]
392         * io/Makefile (headers): Add bits/fcntl2.h.
394         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_ZERO_S): Optimize
395         using gcc builtin.
396         (__CPU_EQUAL_S): Likewise.
398         * posix/Makefile (routines): Add sched_cpualloc and sched_cpufree.
399         (tests): Add tst-cpuset.
400         * posix/sched_cpualloc.c: New file.
401         * posix/sched_cpufree.c: New file.
402         * posix/tst-cpuset.c: New file.
403         * posix/Versions: Export __sched_cpualloc and __sched_cpufree for
404         GLIBC_2.7.
405         * sysdeps/unix/sysv/linux/bits/sched.h: Define __CPU_*_S macros.
406         * posix/sched.h: Define old CPU_* macros in temers of __CPU_*_S
407         macros.  Define CPU_*_S macros.
409 2007-07-28  Ulrich Drepper  <drepper@redhat.com>
411         * posix/getconf.c (vars): Add missing _SC_LEVEL4_CACHE_LINESIZE
412         entry.
414         [BZ #4858]
415         * stdio-common/printf_fp.c (___printf_fp): Fix special case of
416         #.0g and value rounded to 1.0.
417         * stdio-common/tfformat.c (sprint_doubles): Add two new tests.
419 2007-07-26  Jakub Jelinek  <jakub@redhat.com>
421         * locale/programs/ld-monetary.c (monetary_finish): Avoid range check
422         for int_frac_digits and frac_digits.
424         * login/logout.c (logout): Avoid aliasing violation.
425         * login/logwtmp.c (logwtmp): Likewise.
427         * libio/genops.c (_IO_un_link): Avoid aliasing violation.
429         * nscd/selinux.c (preserve_capabilities): Initialize new_caps
430         to avoid warning.
431         * iconv/gconv_open.c (__gconv_open): Initialize ptr to avoid
432         warning.
433         * nis/nis_subr.c (nis_getnames): Initialize saveptr to avoid
434         warning.
435         * resolv/inet_ntop.c (inet_ntop6): Initialize best.len and cur.len
436         to avoid warnings.
438         * nss/nsswitch.c (__nss_lookup_function): Don't cast &ni->known to
439         void **.
440         * nss/nsswitch.h (service_user): Use void * type for KNOWN field.
442         * nss/nss_files/files-hosts.c (LINE_PARSER): Cast host_addr to
443         char * to avoid warning.
444         * nis/nss_nis/nis-hosts.c (LINE_PARSER): Likewise.
446         * timezone/Makefile (CFLAGS-zdump.c): Add -fwrapv.
448         * locale/programs/ld-ctype.c (ctype_finish, set_class_defaults,
449         allocate_arrays): Cast second argument to charmap_find_symbol
450         to char * to avoid warnings.
452         * locale/programs/repertoire.c (repertoire_new_char): Change
453         from_nr, to_nr and cnt to unsigned long, adjust printf format
454         string.
456         * locale/programs/ld-collate.c (insert_value, handle_ellipsis):
457         Cast second argument to new_element to char * to avoid warnings.
459         * locale/weightwc.h (findidx): Cast &extra[-i] to const int32_t *.
461         * intl/gettextP.h (struct loaded_domain): Change plural to const
462         struct expression *.
463         * intl/plural-eval.c (plural_eval): Change first argument to
464         const struct expression *.
465         * intl/plural-exp.c (EXTRACT_PLURAL_EXPRESSION): Change first
466         argument to const struct expression **.
467         * intl/plural-exp.h (EXTRACT_PLURAL_EXPRESSION, plural_eval): Adjust
468         prototypes.
469         * intl/loadmsgcat (_nl_unload_domain): Cast away const
470         in call to __gettext_free_exp.
472         * posix/fnmatch.c (fnmatch): Rearrange code to avoid maybe
473         unitialized wstring/wpattern var warnings.
475         * posix/runtests.c (struct a_test): Make data field const char *.
477         * stdio-common/tst-sprintf2.c (main): Don't declere u, v and buf
478         vars if not LDBL_MANT_DIG >= 106.
480         * stdio-common/Makefile (CFLAGS-vfwprintf.c): Add -Wno-unitialized.
482         * stdio-common/vfprintf.c (vfprintf): Cast first arugment to
483         __find_specmb to avoid warning.
485         * rt/tst-mqueue1.c (do_one_test): Add casts to avoid warnings.
487         * debug/test-strcpy_chk.c (do_tests, do_random_tests): Add casts
488         to avoid warnings.
490         * sysdeps/ieee754/ldbl-96/s_roundl.c (huge): Add L suffix to
491         initializer.
493         * sysdeps/unix/clock_gettime.c (clock_gettime): Only define
494         tv var when it will be actually used.
496         * sunrpc/rpc_cmsg.c (xdr_callmsg): Cast IXDR_PUT_* to void
497         to avoid warnings.
499         * iconvdata/gbk.c (BODY): Make buf and cp char instead of unsigned
500         char array resp. pointer.
501         * iconvdata/iso-2022-kr.c (BODY): Make buf unsigned char instead of
502         char array.
503         * iconvdata/cns11643.h (cns11643_to_ucs4): Change first argument
504         to const unsigned char **.
505         (ucs4_to_cns11643): Change second argument to unsigned char *.
506         * iconvdata/euc-tw.c (BODY): Change endp type to
507         const unsigned char *.
508         * iconvdata/iso-ir-165.h (ucs4_to_isoir165): Change second argument
509         to unsigned char *.
510         * iconvdata/ibm1008_420.c (LOOP_NEED_FLAGS): Don't define.
511         * iconvdata/iso-2022-cn.c (BODY): Change buf to unsigned char array.
512         * iconvdata/iso-2022-cn-ext.c (BODY): Change buf, tmpbuf, tmp
513         types to unsigned char pointers/arrays instead of char.
514         * iconvdata/jis0201.h (ucs4_to_jisx0201): Change second argument
515         to unsigned char *.
516         * iconvdata/jis0208.h (ucs4_to_jisx0208): Likewise.
517         * iconvdata/jis0212.h: Include assert.h.
518         (ucs4_to_jisx0212): Change second argument to unsigned char *.
519         assert that if cp[0] is not '\0', cp[1] is not '\0' either instead
520         of trying to handle that.
521         * iconvdata/euc-kr.c (euckr_from_ucs4): Initialize also cp[1] to
522         shut up a warning.
523         * iconvdata/euc-jp-ms.c (from_ucs4_lat1, from_ucs4_greek,
524         from_ucs4_cjk, from_ucs4_cjkcpt, from_ucs4_extra): Change type to
525         two dimensional const unsigned char arrays.
526         (BODY): Cast "" to (const unsigned char *) for assignment to cp.
527         Initialize endp to inptr to shut up a warning.
529 2007-07-20  Jakub Jelinek  <jakub@redhat.com>
531         [BZ #4772]
532         * time/strptime_l.c (__strptime_internal): Silently ignore
533         strftime modifiers and field width in recursive calls.
535         * include/time.h (enum ptime_locale_status): Remove.
536         (__strptime_internal): Remove decided and era_cnt arguments,
537         add statep argument.
538         * time/strptime_l.c (__strptime_internal): Remove decided
539         and era_cnt arguments, add statep argument.  Don't recompute
540         any fields in recursive calls, only update caller's tm
541         and state, if recursive call fails, don't change tm nor
542         any state.
543         (get_alt_number): Adjust.
544         (recursive): Adjust caller.
545         (strptime): Likewise.
546         * time/strptime.c (strptime): Likewise.
548 2007-07-19  Jakub Jelinek  <jakub@redhat.com>
550         * iconv/gconv_int.h (__GCONV_NULCONV): New internal only error code.
551         * iconv/gconv_cache.c (__gconv_lookup_cache): Return __GCONV_NULCONV
552         if from and to charsets are the same.
553         * iconv/gconv_db.c (__gconv_find_transform): Likewise.
554         * intl/dcigettext.c (_nl_find_msg): Return NULL even if __gconv_open
555         returns __GCONV_NOCONV, but not for __GCONV_NULCONV.
557 2007-07-17  Jakub Jelinek  <jakub@redhat.com>
559         * wcsmbs/wchar.h: Only define wint_t if __need_wint_t.
560         Don't define wint_t when __need_mbstate_t unless it
561         is necessary.
562         (__mbstate_t): Use __WINT_TYPE__ rather than wint_t
563         in the typedef if possible.
564         * wctype/wctype.h (wint_t): Define by including
565         wchar.h with __need_wint_t instead of including stddef.h
566         with __need_wint_t and as fallback definining it ourselves.
567         * iconv/gconv.h (__need_wint_t): Define before including
568         wchar.h.
569         * sysdeps/gnu/_G_config.h: Don't include gconv.h if not _LIBC
570         or _GLIBCPP_USE_WCHAR_T.
571         (__need_wchar_t): Don't define
572         if not _LIBC or _GLIBCPP_USE_WCHAR_T.
573         (__need_wint_t): Don't define before including stddef.h,
574         define before including wchar.h only if _LIBC or
575         _GLIBCPP_USE_WCHAR_T.
576         (_G_iconv_t): Don't define if not _LIBC or _GLIBCPP_USE_WCHAR_T.
577         * sysdeps/mach/hurd/_G_config.h: Likewise.
578         * sysdeps/generic/_G_config.h: Likewise.
579         * libio/libio.h (__wunderflow, __wuflow, __woverflow): Only
580         prototype if _LIBC or _GLIBCPP_USE_WCHAR_T.
581         (_IO_getwc_unlocked, _IO_putwc_unlocked): Only define
582         if _LIBC or _GLIBCPP_USE_WCHAR_T.
584 2007-07-28  Ulrich Drepper  <drepper@redhat.com>
586         * sysdeps/posix/posix_fallocate64.c: Undefine
587         __posix_fallocate64_l64 before alias handling.
588         * sysdeps/unix/sysv/linux/posix_fallocate.c: New file.
589         * sysdeps/unix/sysv/linux/posix_fallocate64.c: New file.
590         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c: New file.
591         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate64.c: New file.
593         * io/tst-posix_fallocate.c: Include <fcntl.h>.
595 2007-07-23  Jakub Jelinek  <jakub@redhat.com>
597         * locale/programs/ld-collate.c (atwc): New variable.
598         (add_to_tablewc): New toplevel function, moved from collate_output.
599         (collate_output): Remove add_to_tablewc nested function.
601         * iconv/iconvconfig.c (hash_table, hash_size): New toplevel vars.
602         (name_insert): New function.
603         (write_output): Remove hash_table and hash_size vars and name_insert
604         nested function.
606 2007-07-24  Roland McGrath  <roland@redhat.com>
608         * Makerules (install-others-programs-nosubdir): New target.
609         (install-no-libc.a-nosubdir): Depend on it.
611         * iconv/Makefile (install-others-programs): Set this instead of
612         install-others.
613         * login/Makefile (install-others-programs): Likewise.
614         * posix/Makefile (install-others-programs): Likewise.
616         * Makerules (install-no-libc.a-nosubdir): Clean up conditional
617         dependencies.
619 2007-07-23  Ulrich Drepper  <drepper@redhat.com>
621         * io/Makefile (tests): Add tst-posix_fallocate.
622         * io/tst-posix_fallocate.c: New file.
624         * sysdeps/unix/sysv/linux/kernel-features.h: Define
625         __ASSUME_FALLOCATE.
627 2007-07-22  Roland McGrath  <roland@frob.com>
629         * hurd/getdport.c: Add missing copyright year update.
631         * sysdeps/mach/hurd/bits/fcntl.h [__USE_GNU] (O_CLOEXEC): New macro.
632         * hurd/port2fd.c (_hurd_port2fd): Implement O_CLOEXEC.
634 2007-07-22  Ulrich Drepper  <drepper@redhat.com>
636         * login/utmp_file.c (setutent_file): Use O_CLOEXEC if possible.
638         * libio/fileops.c (_IO_new_file_fopen): Recognize 'e' flag and set
639         O_CLOEXEC is needed.
640         * nis/nss_compat/compat-grp.c: Use 'e' flag when opening file.
641         Avoid additional fcntl to set O_CLOEXEC if not needed.
642         * nis/nss_compat/compat-initgroups.c: Likewise.
643         * nis/nss_compat/compat-pwd.c: Likewise.
644         * nis/nss_compat/compat-spwd.c: Likewise.
646 2007-07-21  Samuel Thibault  <samuel.thibault@ens-lyon.org>
648         [BZ #3665]
649         * manual/errno.texi: Change ECANCELED value to 119.
651         [BZ #4610]
652         * mach/lock-intern.h: Include <sys/cdefs.h>.
654         [BZ #4178]
655         * sysdeps/mach/hurd/sigaction.c (__sigaction): Check ACT != NULL before
656         reading A.
658         [BZ #4126]
659         * sysdeps/mach/hurd/sigsuspend.c (sigsuspend_not_cancel): Define alias
660         to __sigsuspend.
662         * sysdeps/mach/i386/sysdep.h: Include <dl-sysdep.h> and <tls.h>.
664 2006-06-13  Thomas Schwinge  <tschwinge@gnu.org>
666         * sysdeps/mach/hurd/tls.h: Change `ASSEMBLER' conditional to
667         `__ASSEMBLER__'.
668         * sysdeps/mach/hurd/i386/tls.h: Likewise.
670 2007-07-21  Ulrich Drepper  <drepper@redhat.com>
672         * nscd/nscd_helper.c (get_mapping): Use MSG_CMSG_CLOEXEC for
673         descriptor received from nscd.
675         * sysdeps/unix/sysv/linux/bits/socket.h: Define MSG_CMSG_CLOEXEC.
677         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_CLOEXEC.
678         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
679         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
680         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
681         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
682         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
684 2007-07-20  Jakub Jelinek  <jakub@redhat.com>
686         [BZ #4816]
687         * manual/signal.texi (Non-atomic Example): Make memory var volatile.
689         [BZ #4813]
690         * login/forkpty.c (forkpty): Close master and slave fds on
691         fork failure.  Patch by
692         Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>.
694 2007-07-18  Jakub Jelinek  <jakub@redhat.com>
696         * include/features.h (__USE_ISOC95): New define.
697         * wcsmbs/wchar.h (fwprintf, fwscanf, wprintf, wscanf, swprintf,
698         swscanf, vfwprintf, vwprintf, vswprintf, fwide): Define even
699         for -std=iso9899:199409.
700         * CONFORMANCE: Remove comments about unsupported AMD1.
702 2007-07-17  Jakub Jelinek  <jakub@redhat.com>
704         * sysdeps/ia64/sched_cpucount.c: New file.
705         * sysdeps/powerpc/sched_cpucount.c: New file.
707         * sysdeps/unix/sysv/linux/bits/sched.h (__sched_cpucount): Add
708         __BEGIN_DECLS/__END_DECLS around the prototype.
709         * bits/sched.h (__sched_cpucount): Likewise.  Make second argument
710         pointer to const cpu_set_t.
712         * bits/types.h: Don't include stddef.h, don't define __need_size_t.
713         * signal/signal.h <__USE_BSD || __USE_XOPEN_EXTENDED>: Define
714         __need_size_t and include stddef.h.
715         * sysvipc/sys/msg.h: Likewise.
716         * posix/sched.h: Likewise.
717         * hurd/hurd/signal.h (__need_size_t): Define.
719         * CONFORMANCE: ctype.h and wctype.h no longer define size_t,
720         neither does signal.h in pedantic ISO C namespaces.  stdio.h
721         no longer defines wint_t or wchar_t.
723         * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): New function.
724         * debug/vfwprintf_chk.c (__vfwprintf_chk): Use
725         _IO_acquire_lock_clear_flags2 instead of _IO_acquire_lock.
726         * debug/vprintf_chk.c (__vprintf_chk): Likewise.
727         * debug/vwprintf_chk.c (__vwprintf_chk): Likewise.
728         * debug/vfprintf_chk.c (__vfprintf_chk): Likewise.
729         * debug/fwprintf_chk.c (__fwprintf_chk): Likewise.
730         * debug/printf_chk.c (__printf_chk): Likewise.
731         * debug/fprintf_chk.c (__fprintf_chk): Likewise.
732         * debug/wprintf_chk.c (__wprintf_chk): Likewise.
734         * sysdeps/pthread/bits/stdio-lock.h (_IO_acquire_lock_clear_flags2):
735         Define.
737         * bits/confname.h (_CS_POSIX_V6_WIDTH_RESTRICTED_ENVS): Define.
738         * posix/getconf.c (vars): Add POSIX_V6_WIDTH_RESTRICTED_ENVS.
740 2007-07-16  Jakub Jelinek  <jakub@redhat.com>
742         [BZ #4792]
743         * stdlib/stdlib.h (realloc): Remove __attribute_malloc__.
744         * malloc/malloc.h (realloc): Likewise.
746         * libio/iopopen.c (_IO_new_proc_open): Don't close child_std_end
747         if one of proc_file_chain streams has that fileno.
748         * stdio-common/Makefile (tests): Add tst-popen2.
749         * stdio-common/tst-popen2.c: New test.
751 2007-07-14  Jakub Jelinek  <jakub@redhat.com>
753         * elf/ldconfig.c: Allow GPLv2 or any later version.
754         * elf/readlib.c: Likewise.
755         * elf/chroot_canon.c: Likewise.
756         * elf/cache.c: Likewise.
757         * nscd/mem.c: Likewise.
758         * nscd/getpwuid_r.c: Likewise.
759         * nscd/grpcache.c: Likewise.
760         * nscd/aicache.c: Likewise.
761         * nscd/getsrvbynm_r.c: Likewise.
762         * nscd/nscd.c: Likewise.
763         * nscd/servicescache.c: Likewise.
764         * nscd/getsrvbypt_r.c: Likewise.
765         * nscd/initgrcache.c: Likewise.
766         * nscd/gethstbyad_r.c: Likewise.
767         * nscd/gethstbynm2_r.c: Likewise.
768         * nscd/getgrnam_r.c: Likewise.
769         * nscd/nscd_setup_thread.c: Likewise.
770         * nscd/getpwnam_r.c: Likewise.
771         * nscd/gai.c: Likewise.
772         * nscd/connections.c: Likewise.
773         * nscd/dbg_log.c: Likewise.
774         * nscd/cache.c: Likewise.
775         * nscd/hstcache.c: Likewise.
776         * nscd/nscd_conf.c: Likewise.
777         * nscd/getgrgid_r.c: Likewise.
778         * nscd/pwdcache.c: Likewise.
779         * catgets/gencat.c: Likewise.
780         * locale/programs/linereader.h: Likewise.
781         * locale/programs/locarchive.c: Likewise.
782         * locale/programs/ld-paper.c: Likewise.
783         * locale/programs/locfile-kw.h: Likewise.
784         * locale/programs/ld-address.c: Likewise.
785         * locale/programs/xmalloc.c: Likewise.
786         * locale/programs/ld-time.c: Likewise.
787         * locale/programs/localedef.c: Likewise.
788         * locale/programs/simple-hash.c: Likewise.
789         * locale/programs/xstrdup.c: Likewise.
790         * locale/programs/ld-numeric.c: Likewise.
791         * locale/programs/locfile-kw.gperf: Likewise.
792         * locale/programs/ld-collate.c: Likewise.
793         * locale/programs/charmap-kw.gperf: Likewise.
794         * locale/programs/charmap.h: Likewise.
795         * locale/programs/charmap-kw.h: Likewise.
796         * locale/programs/config.h: Likewise.
797         * locale/programs/locfile.c: Likewise.
798         * locale/programs/ld-ctype.c: Likewise.
799         * locale/programs/charmap.c: Likewise.
800         * locale/programs/ld-messages.c: Likewise.
801         * locale/programs/repertoire.h: Likewise.
802         * locale/programs/locale.c: Likewise.
803         * locale/programs/ld-name.c: Likewise.
804         * locale/programs/linereader.c: Likewise.
805         * locale/programs/locfile.h: Likewise.
806         * locale/programs/3level.h: Likewise.
807         * locale/programs/ld-monetary.c: Likewise.
808         * locale/programs/ld-measurement.c: Likewise.
809         * locale/programs/charmap-dir.c: Likewise.
810         * locale/programs/ld-identification.c: Likewise.
811         * locale/programs/localedef.h: Likewise.
812         * locale/programs/charmap-dir.h: Likewise.
813         * locale/programs/repertoire.c: Likewise.
814         * locale/programs/simple-hash.h: Likewise.
815         * locale/programs/ld-telephone.c: Likewise.
816         * locale/programs/locale-spec.c: Likewise.
817         * locale/programs/locfile-token.h: Likewise.
818         * posix/getconf.c: Likewise.
819         * iconv/dummy-repertoire.c: Likewise.
820         * iconv/iconv_charmap.c: Likewise.
821         * iconv/iconvconfig.c: Likewise.
822         * iconv/iconv_prog.c: Likewise.
823         * malloc/memusagestat.c: Likewise.
824         * sysdeps/unix/sysv/linux/nscd_setup_thread.c: Likewise.
826 2007-07-06  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
828         * sysdeps/sh/bsd-setjmp.S (setjmp): Use correct argument registers.
829         * sysdeps/sh/bsd-_setjmp.S (_setjmp): Likewise.
830         * sysdeps/unix/sysv/linux/sh/clone.S (__clone): Do correct sanity
831         check for the first argument.
833 2007-07-12  Jakub Jelinek  <jakub@redhat.com>
835         [BZ #4775]
836         * math/tgmath.h (__tgmath_real_type_sub): Formatting.
837         (__tgmath_real_type): Fix if expr is const int or other const
838         qualified integral type.
839         (__TGMATH_UNARY_REAL_ONLY): Rewritten to avoid using statement
840         expressions and handle const qualified arguments.
841         (__TGMATH_BINARY_FIRST_REAL_ONLY, __TGMATH_UNARY_REAL_IMAG,
842         __TGMATH_UNARY_REAL_IMAG_RET_REAL): Likewise.
843         (__TGMATH_UNARY_REAL_RET_ONLY): Rewritten to avoid using
844         statement expressions.
845         (__TGMATH_BINARY_REAL_ONLY, __TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY,
846         __TGMATH_TERNARY_REAL_ONLY, __TGMATH_BINARY_REAL_IMAG): Likewise.
847         (__TGMATH_UNARY_IMAG): Define.
848         (conj, cproj): Use __TGMATH_UNARY_IMAG macro.
849         * math/Makefile (tests): Add test-tgmath2.
850         (CFLAGS-test-tgmath2.c): Add.
851         * math/test-tgmath.c (fy, dy, ly, fz, dz, lz, count_cdouble,
852         count_cfloat, count_cldouble): New variables.
853         (NCCALLS): Define.
854         (main): Check number of complex calls as well.
855         (F(compile_test)): Add complex tests and tests with const qualified
856         arguments.
857         (y, z, ccount): Define.
858         (F(cacos), F(casin), F(catan), F(ccos), F(csin), F(ctan), F(cacosh),
859         F(casinh), F(catanh), F(ccosh), F(csinh), F(ctanh), F(cexp), F(clog),
860         F(csqrt), F(cpow), F(cabs), F(carg), F(creal), F(cimag), F(conj),
861         F(cproj)): New functions.
862         * math/test-tgmath2.c: New test.
864 2007-07-11  Jakub Jelinek  <jakub@redhat.com>
866         [BZ #4776]
867         * elf/dl-load.c (_dl_rtld_di_serinfo): Output / in LD_LIBRARY_PATH,
868         RPATH etc. as "/" rather than "", don't segfault on empty paths,
869         instead output ".".
870         * dlfcn/Makefile (distribute): Add glreflib3.c.
871         (module-names): Add glreflib3.
872         ($(objpfx)tst-dlinfo.out): Depend on glreflib3.so rather than
873         glreflib1.so.
874         (LDFLAGS_glreflib3.so): New.
875         * dlfcn/tst-dlinfo.c (do_test): Load glreflib3.so instead of
876         glreflib1.so.
877         * dlfcn/glreflib3.c: New file.
879         * intl/finddomain.c (_nl_find_domain): If _nl_explode_name
880         returned -1, return NULL.
881         * intl/explodename.c (_nl_explode_name): Return -1 if
882         _nl_normalize_codeset failed.
884 2007-07-07  Steven Munroe  <sjmunroe@us.ibm.com>
886         * sysdeps/powerpc/powerpc32/power6/memset.S: Update comments.
887         Specify .machine power6 to get ISA-V2.0 branch hints.  Unroll loops
888         and avoid branch misspredicts for > 31 bytes memset case.
889         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
890         Remove toc ref to __cache_line_size.
892         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Specify .machine power4
893         to get ISA-V2.0 branch hints.
894         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Likewise
895         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise
896         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
897         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
898         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
899         * sysdeps/powerpc/powerpc64/power4/memset.S: Likewise.
900         Remove toc ref to __cache_line_size.
902         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S:
903         Include math_ldbl_opt.h.
905 2007-07-10  Ulrich Drepper  <drepper@redhat.com>
907         [BZ #4773]
908         * time/strptime_l.c (__strptime_internal): Implement greedy
909         matching of weekday and month names.
911 2007-07-09  Roland McGrath  <roland@redhat.com>
913         * elf/elf.h (NT_GNU_ABI_TAG): New macro.
914         (ELF_NOTE_ABI): Use it.
915         (NT_GNU_HWCAP, NT_GNU_BUILD_ID): New macros.
917 2007-07-09  Ulrich Drepper  <drepper@redhat.com>
919         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Add new entries.
920         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
922 2007-07-07  Ulrich Drepper  <drepper@redhat.com>
924         [BZ #4745]
925         * stdio-common/vfscanf.c (_IO_vfscanf): Add additional test for EOF
926         in loop to look for conversion specifier to avoid testing of
927         wrong errno value.
928         * stdio-common/Makefile (tests): Add bug18, bug18a, bug19, bug19a.
929         * stdio-common/bug18.c: New file.
930         * stdio-common/bug18a.c: New file.
931         * stdio-common/bug19.c: New file.
932         * stdio-common/bug19a.c: New file.
934 2007-07-05  Mike Frysinger  <vapier@gentoo.org>
936         * Makeconfig ($(common-objpfx)gnu/lib-names.stmp): Use LC_ALL=C when
937         running awk script.
939 2007-07-01  Jakub Jelinek  <jakub@redhat.com>
941         * elf/dl-sysdep.c (_dl_important_hwcaps): Add integer overflow check.
942         * elf/dl-minimal.c (__libc_memalign): Likewise.  Handle malloc (0).
943         Return NULL if mmap failed instead of asserting it does not.
944         (calloc): Check for integer overflow.
946         * elf/dl-minimal.c (__strtoul_internal): Fix parsing of numbers bigger
947         than LONG_MAX / 10.
949 2007-07-03  Jakub Jelinek  <jakub@redhat.com>
951         [BZ #4702]
952         * nis/nss-default.c: Include errno.h.
953         (init): Preserve errno.
955 2007-07-02  Ulrich Drepper  <drepper@redhat.com>
957         * sysdeps/unix/sysv/linux/bits/socket.h (PF_UNIX): Update comment.
959 2007-06-30  Ulrich Drepper  <drepper@redhat.com>
961         * sysdeps/unix/sysv/linux/bits/socket.h: Add PF_RXRPC and AF_RXRPC.
963 2007-06-29  Martin Schwidefsky  <schwidefsky@de.ibm.com>
965         * sysdeps/unix/sysv/linux/bits/socket.h: Add PF_IUCV and AF_IUCV.
967 2007-06-29  Martin Schwidefsky  <schwidefsky@de.ibm.com>
969         * sysdeps/s390/dl-procinfo.c: New file.
970         * sysdeps/s390/dl-procinfo.h: New file.
971         * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: New file.
973 2007-06-29  Jakub Jelinek  <jakub@redhat.com>
975         * elf/dl-load.c (open_verify): Find .note.ABI-tag notes even
976         in PT_NOTE segments with multiple notes.
977         * elf/readelflib.c (process_elf_file): Likewise.
979 2007-06-22  Ulrich Drepper  <drepper@redhat.com>
981         * nis/nis_domain_of.c (__nis_domain_of): Make the code a bit more
982         ISO C compliant.
984 2007-06-19  Ulrich Drepper  <drepper@redhat.com>
986         * elf/dl-close.c (free_mem): Free _dl_scope_free_list.
988 2007-06-13  Jakub Jelinek  <jakub@redhat.com>
990         * include/link.h: Don't include rtld-lowlevel.h.
991         (struct link_map): Remove l_scope_lock.
992         * sysdeps/generic/ldsodefs.h: Don't include rtld-lowlevel.h.
993         (_dl_scope_free_list): New field (variable) in _rtld_global.
994         (DL_LOOKUP_SCOPE_LOCK): Remove.
995         (_dl_scope_free): New prototype.
996         * elf/dl-runtime.c (_dl_fixup): Don't use __rtld_mrlock_*lock.
997         Don't pass DL_LOOKUP_SCOPE_LOCK to _dl_lookup_symbol_x.
998         (_dl_profile_fixup): Likewise.
999         * elf/dl-sym.c (do_sym): Likewise.  Use wrapped _dl_lookup_symbol_x
1000         whenever !RTLD_SINGLE_THREAD_P, use THREAD_GSCOPE_SET_FLAG and
1001         THREAD_GSCOPE_RESET_FLAG around it.
1002         * elf/dl-close.c (_dl_close_worker): Don't use
1003         __rtld_mrlock_{change,done}.  Call _dl_scope_free on the old
1004         scope.  Make sure THREAD_GSCOPE_WAIT () happens if any old
1005         scopes were queued or if l_scope_mem has been abandoned.
1006         * elf/dl-open.c (_dl_scope_free): New function.
1007         (dl_open_worker): Use it.  Don't use __rtld_mrlock_{change,done}.
1008         * elf/dl-support.c (_dl_scope_free_list): New variable.
1009         * elf/dl-lookup.c (add_dependency): Remove flags argument.
1010         Remove DL_LOOKUP_SCOPE_LOCK handling.
1011         (_dl_lookup_symbol_x): Adjust caller.  Remove DL_LOOKUP_SCOPE_LOCK
1012         handling.
1013         * elf/dl-object.c (_dl_new_object): Don't use
1014         __rtld_mrlock_initialize.
1016 2007-06-19  Ulrich Drepper  <drepper@redhat.com>
1018         * sysdeps/generic/ldsodefs.h (rtld_global): Reorder some elements
1019         to fill in holes
1020         (rtld_global_ro): Likewise.
1022 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
1024         * elf/dl-addr.c (_dl_addr): Skip PT_LOAD checking if l_contiguous.
1025         Move PT_LOAD checking to...
1026         (_dl_addr_inside_object): ... here, new function.
1027         * elf/dl-sym.c (do_sym): If not l_contiguous,
1028         call _dl_addr_inside_object.
1029         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Likewise.
1030         * dlfcn/dlinfo.c (dlinfo_doit): Likewise.
1031         * elf/dl-open.c (dl_open_worker): Likewise.
1032         (_dl_addr_inside_object): New function if IS_IN_rtld.
1033         * elf/dl-load.c (_dl_map_object_from_fd): Set l_contiguous if no
1034         holes are present or are PROT_NONE protected.
1035         * include/link.h (struct link_map): Add l_contiguous field.
1036         * sysdeps/generic/ldsodefs.h (_dl_addr_inside_object): New prototype.
1038 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
1039             Tomas Janousek  <tjanouse@redhat.com>
1040             Ulrich Drepper  <drepper@redhat.com>
1042         [BZ #4647]
1043         * resolv/res_send.c (send_dg): Remove socket_pf.  Use ipv6_unavail
1044         member in __res_state, only convaddr4to6 if nssocks[ns] is a PF_INET6
1045         socket.
1046         * resolv/resolv.h (__res_state): Add ipv6_unavail member.  Make
1047         unused member a bitmap.
1048         * resolv/res_init.c (__res_vinit): Reset ipv6_unavail if IPv6
1049         servers are configured.
1051 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
1053         * elf/rtld.c (dl_main): Don't call init_tls more than once.
1055 2007-06-17  Andreas Schwab  <schwab@suse.de>
1057         * sysdeps/generic/initfini.c: Tell gcc about the nonstandard sections.
1059 2007-06-16  Andreas Jaeger  <aj@suse.de>
1061         [BZ #4125]
1062         * sysdeps/unix/sysv/linux/sys/ptrace.h
1063         (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK,
1064         PTRACE_O_TRACEVFORK, PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC,
1065         PTRACE_O_TRACEVFORKDONE, PTRACE_O_TRACEEXIT, PTRACE_O_MASK,
1066         PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK, PTRACE_EVENT_CLONE,
1067         PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE, PTRACE_EVENT_EXIT):
1068         Define.
1069         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
1070         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
1071         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
1072         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
1074 2007-06-16  Ulrich Drepper  <drepper@redhat.com>
1076         [BZ #4599]
1077         * sysdeps/unix/sysv/linux/check_pf.c (make_request): When
1078         determining whether there are IPv4/IPv6 addresses, ignore loopback
1079         addresses.
1081 2007-06-14 Uros Bizjak <ubizjak@gmail.com>
1083         * soft-fp/soft-fp.h (CMPtype): Define to "int" if undefined.
1084         * soft-fp/eqdf2.c (__eqdf2): Use CMPtype instead of int
1085         as the return type.  Change type of "r" variable to CMPtype.
1086         * soft-fp/eqsf2.c (__eqsf2): Likewise.
1087         * soft-fp/eqtf2.c (__eqtf2): Likewise.
1088         * soft-fp/gedf2.c (__gedf2): Likewise.
1089         * soft-fp/gesf2.c (__gesf2): Likewise.
1090         * soft-fp/getf2.c (__getf2): Likewise.
1091         * soft-fp/ledf2.c (__ledf2): Likewise.
1092         * soft-fp/lesf2.c (__lesf2): Likewise.
1093         * soft-fp/letf2.c (__letf2): Likewise.
1094         * soft-fp/unorddf2 (__unorddf2): Likewise.
1095         * soft-fp/unordsf2 (__unordsf2): Likewise.
1096         * soft-fp/unordtf2 (__unordtf2): Likewise.
1098 2007-06-09  Ulrich Drepper  <drepper@redhat.com>
1100         * elf/do-lookup.h (do_lookup_x): Read r_nlist before r_list and
1101         make sure gcc doesn't mess around with this.
1103 2007-06-08  Ulrich Drepper  <drepper@redhat.com>
1105         * elf/dl-lookup.c (_dl_lookup_symbol_x): Remove use of r_nlist.
1107 2007-06-08  Jakub Jelinek  <jakub@redhat.com>
1109         * elf/dl-close.c (_dl_close_worker): Remove all to be removed
1110         libraries from the global scope at once and call THREAD_GSCOPE_WAIT
1111         at most once per _dl_close_worker.
1113 2007-06-08  Ulrich Drepper  <drepper@redhat.com>
1115         * sysdeps/unix/sysv/linux/bits/sched.h: Make second parameter of
1116         __sched_cpucount as const.
1117         * posix/sched_cpucount.c: Adjust.
1119         * posix/sched_cpucount.c (__sched_cpucount): Allow using special
1120         instruction for counting bits.
1121         * sysdeps/x86_64/sched_cpucount.c: New file.
1123 2007-06-07  Ulrich Drepper  <drepper@redhat.com>
1125         * configure.in: Avoid variable named BASH.
1126         * config.make.in: Likewise.
1127         Patch in part by Mike Frysinger.
1129 2007-06-06  Jakub Jelinek  <jakub@redhat.com>
1131         [BZ #4586]
1132         * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Treat
1133         pseudo-zeros as zero.
1134         * sysdeps/x86_64/ldbl2mpn.c: New file.
1135         * sysdeps/ia64/ldbl2mpn.c: New file.
1137 2007-06-04  Jakub Jelinek  <jakub@redhat.com>
1139         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (nextafterl): Remove
1140         unused ily variable.  Fix nextafterl on +-__LDBL_MAX__ and +-Inf.
1141         Remove unreachable code at the end.
1143 2007-06-01  Steven Munroe  <sjmunroe@us.ibm.com>
1145         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Correct description of
1146         ldbl-128ibm in comment.
1147         (fpclassifyl): Correct classification of denormals.
1148         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (nextafterl): Correct
1149         return value for MIN denormal. Rewrite using long double math too
1150         correctly handle denormals and canonicalize the results.
1152 2007-06-05  Jakub Jelinek  <jakub@redhat.com>
1154         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c
1155         (__mpn_construct_long_double): Fix conversion where result ought
1156         to be smaller than __LDBL_MIN__, or the low double should be
1157         denormal.  Fix decision where to negate low double - honor round
1158         to even rules.
1159         * stdio-common/tst-sprintf2.c: Include string.h.
1160         (COMPARE_LDBL): Define.
1161         (TEST): Also test whether a string hexadecimal float representation
1162         can be parsed back to the number.
1163         (main): Add a couple of further tests.
1165 2007-06-04  Jakub Jelinek  <jakub@redhat.com>
1167         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c
1168         (PRINT_FPHEX_LONG_DOUBLE): Fix printing numbers where lower double
1169         is non-zero, but smaller than 2 * __DBL_MIN__.
1170         * stdio-common/tst-sprintf2.c: New test.
1171         * stdio-common/Makefile (tests): Add tst-sprintf2.
1173         * math/test-misc.c (main): Don't run last batch of tests with
1174         IBM long double format.
1176 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
1178         * sysdeps/powerpc/powerpc32/970/fpu/Implies: New file.
1179         * sysdeps/powerpc/powerpc32/power5/fpu/Implies: New file.
1180         * sysdeps/powerpc/powerpc32/power5+/fpu/Implies: New file.
1181         * sysdeps/powerpc/powerpc32/power6/fpu/Implies: New file.
1182         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
1183         * sysdeps/powerpc/powerpc64/970/fpu/Implies: New file.
1184         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: New file.
1185         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: New file.
1186         * sysdeps/powerpc/powerpc64/power6/fpu/Implies: New file.
1187         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: New file.
1188         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/fpu/Implies: New file.
1189         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/fpu/Implies:
1190         New file.
1191         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/fpu/Implies:
1192         New file.
1193         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/fpu/Implies:
1194         New file.
1195         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/Implies:
1196         New file.
1197         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/fpu/Implies:
1198         New file.
1199         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/fpu/Implies: New file.
1200         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/fpu/Implies:
1201         New file.
1202         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/fpu/Implies:
1203         New file.
1204         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/fpu/Implies:
1205         New file.
1206         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/Implies:
1207         New file.
1208         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/fpu/Implies:
1209         New file.
1211 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
1213         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S: Move.
1214         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: To here.
1215         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrintf.S: Move.
1216         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: To here.
1217         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llround.S: Move.
1218         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: To here.
1219         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llroundf.S: Move.
1220         * sysdeps/powerpc/powerpc32/power4/fpu/s_llroundf.S: To here.
1222 2007-05-22  Steven Munroe  <sjmunroe@us.ibm.com>
1224         * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S
1225         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
1226         * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S
1227         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
1228         * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S
1229         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
1230         * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S
1231         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
1233 2007-05-21  Steven Munroe  <sjmunroe@us.ibm.com>
1235         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: New file.
1236         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.c: New file.
1237         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: New file.
1238         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: New file.
1240 2007-03-15  Steven Munroe  <sjmunroe@us.ibm.com>
1242         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S
1243         [LONG_DOUBLE_COMPAT]: Add compat_symbol for llrintl@@GLIBC_2_1.
1245 2006-02-13  Steven Munroe  <sjmunroe@us.ibm.com>
1247         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: New File
1248         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: New File
1249         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: New File
1250         * sysdeps/powerpc/powerpc32/power6/fpu/s_llroundf.S: New File
1252 2006-10-20  Steven Munroe  <sjmunroe@us.ibm.com>
1254         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: New file.
1255         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: New file.
1257 2006-10-03  Steven Munroe  <sjmunroe@us.ibm.com>
1259         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llround.S: New file.
1260         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llroundf.S: New file.
1262         * sysdeps/powerpc/powerpc32/powerpc64/fpu/Makefile: Moved.
1263         * sysdeps/powerpc/powerpc32/powerpc64/fpu/mpa.c: Likewise.
1264         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile: To here.
1265         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
1267 2006-09-29  Steven Munroe  <sjmunroe@us.ibm.com>
1269         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S: New file.
1270         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: New file.
1271         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: New file.
1272         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: New file.
1274 2006-09-28  Steven Munroe  <sjmunroe@us.ibm.com>
1276         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: New file.
1277         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llroundf.S: New file.
1278         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: New file.
1279         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
1280         * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: New file.
1281         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: New file.
1283 2006-08-31  Steven Munroe  <sjmunroe@us.ibm.com>
1285         * sysdeps/powerpc/powerpc32/powerpc64/fpu/Makefile: New file.
1286         * sysdeps/powerpc/powerpc32/powerpc64/fpu/mpa.c: New file.
1287         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile: New file.
1288         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: New file.
1290 2006-06-15  Steven Munroe  <sjmunroe@us.ibm.com>
1292         * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S: New file.
1293         * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S: New file.
1294         * sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S: New file.
1295         * sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S: New file.
1296         * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S: New file.
1297         * sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S: New file.
1298         * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S: New file.
1299         * sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S: New file.
1300         * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S: New file.
1301         * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S: New file.
1302         * sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S: New file.
1303         * sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S: New file.
1304         * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S: New file.
1305         * sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S: New file.
1306         * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S: New file.
1307         * sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S: New file.
1309 2006-03-20  Steven Munroe  <sjmunroe@us.ibm.com>
1311         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S: New file.
1312         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrintf.S: New file.
1314 2007-06-01  Steven Munroe  <sjmunroe@us.ibm.com>
1316         * sysdeps/powerpc/powerpc32/power6/memset.S: New file.
1317         * sysdeps/powerpc/powerpc64/power6/memset.S: New file.
1319 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
1321         * sysdeps/powerpc/powerpc32/970/Implies: New file.
1322         * sysdeps/powerpc/powerpc32/power5/Implies: New file.
1323         * sysdeps/powerpc/powerpc32/power5+/Implies: New file.
1324         * sysdeps/powerpc/powerpc32/power6/Implies: New file.
1325         * sysdeps/powerpc/powerpc32/power6x/Implies: New file.
1326         * sysdeps/powerpc/powerpc64/970/Implies: New file.
1327         * sysdeps/powerpc/powerpc64/power5/Implies: New file.
1328         * sysdeps/powerpc/powerpc64/power5+/Implies: New file.
1329         * sysdeps/powerpc/powerpc64/power6/Implies: New file.
1330         * sysdeps/powerpc/powerpc64/power6x/Implies: New file.
1332 2007-05-21  Steven Munroe  <sjmunroe@us.ibm.com>
1334         * sysdeps/powerpc/powerpc32/power4/memset.S: New file
1336 2007-03-13  Steven Munroe  <sjmunroe@us.ibm.com>
1338         * sysdeps/powerpc/powerpc64/memcpy.S: Improve aligned loop to minimize
1339         branch miss-predicts. Ensure that cache line crossing does not impact
1340         dispatch grouping.
1342 2006-12-13  Steven Munroe  <sjmunroe@us.ibm.com>
1344         * sysdeps/powerpc/powerpc64/power4/memcopy.h: Replace with include
1345         "../../powerpc32/power4/memcopy.h".
1346         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: Replace with include
1347         "../../powerpc32/power4/wordcopy.c".
1349 2006-10-03  Steven Munroe  <sjmunroe@us.ibm.com>
1351         * sysdeps/powerpc/powerpc32/powerpc64/Makefile: Moved.
1352         * sysdeps/powerpc/powerpc32/powerpc64/memcopy.h: Likewise.
1353         * sysdeps/powerpc/powerpc32/powerpc64/wordcopy.c: Likewise.
1354         * sysdeps/powerpc/powerpc32/power4/Makefile: To here.
1355         * sysdeps/powerpc/powerpc32/power4/memcopy.h: Likewise.
1356         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Likewise.
1358 2006-09-10  Steven Munroe  <sjmunroe@us.ibm.com>
1360         * sysdeps/powerpc/powerpc32/power6/memcpy.S: New file.
1362 2006-08-31  Steven Munroe  <sjmunroe@us.ibm.com>
1364         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: New file.
1365         * sysdeps/powerpc/powerpc32/powerpc64/Makefile: New file.
1366         * sysdeps/powerpc/powerpc32/powerpc64/memcopy.h: New file.
1367         * sysdeps/powerpc/powerpc32/powerpc64/wordcopy.c: New file.
1368         * sysdeps/powerpc/powerpc64/power4/Makefile: New file.
1369         * sysdeps/powerpc/powerpc64/power4/memcopy.h: New file.
1370         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: New file.
1371         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: New file.
1373 2006-07-06  Steven Munroe  <sjmunroe@us.ibm.com>
1375         * sysdeps/powerpc/powerpc64/power6/memcpy.S: New file.
1377 2006-03-20  Steven Munroe  <sjmunroe@us.ibm.com>
1379         * sysdeps/powerpc/powerpc32/power4/memcmp.S: New file.
1380         * sysdeps/powerpc/powerpc32/power4/memcpy.S: New file.
1381         * sysdeps/powerpc/powerpc32/power4/memset.S: New file.
1382         * sysdeps/powerpc/powerpc32/power4/strncmp.S: New file.
1383         * sysdeps/powerpc/powerpc64/power4/memcmp.S: New file.
1384         * sysdeps/powerpc/powerpc64/power4/memcpy.S: New file.
1385         * sysdeps/powerpc/powerpc64/power4/strncmp.S: New file.
1387 2007-05-29  Roland McGrath  <roland@redhat.com>
1389         * po/Makefile (po-sed-cmd): New variable.
1390         (libc.pot.files): Move sed command text in there, avoid \ inside ''.
1392 2007-05-29  Ulrich Drepper  <drepper@redhat.com>
1394         * crypt/md5-crypt.c: Fix comment.
1396         * nscd/nscd_helper.c (get_mapping): Handle short replies instead
1397         of crashing.  When this is the case or if the reply is malformed,
1398         don't try to close the new file descriptor since it does not
1399         exist.
1400         Patch in part by Guillaume Chazarain <guichaz@yahoo.fr>.
1402 2007-05-28  Jakub Jelinek  <jakub@redhat.com>
1404         * sysdeps/unix/sysv/linux/futimes.c (miss_utimensat): Don't define
1405         if __NR_utimensat is not defined.
1407 2007-05-26  Ulrich Drepper  <drepper@redhat.com>
1409         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Include <sysdep.h>.
1411 2007-05-25  Jakub Jelinek  <jakub@redhat.com>
1413         * io/bits/fcntl2.h (__open_2): Add nonnull attribute.
1414         (open): Fix comment typos.  Don't call __open_2 if flags
1415         is a compile time constant without O_CREAT.
1416         (__open64_2): Add nonnull attribute.
1417         (open64): Fix comment typos.  Don't call __open64_2 if flags
1418         is a compile time constant without O_CREAT.
1419         (__openat_2): Add nonnull attribute, fix nonnull attribute
1420         on redirect.
1421         (openat): Fix comment typos.  Don't call __openat_2 if flags
1422         is a compile time constant without O_CREAT.
1423         (__openat64_2): Add nonnull attribute, fix nonnull attribute
1424         on redirect.
1425         (openat64): Fix comment typos.  Don't call __openat64_2 if flags
1426         is a compile time constant without O_CREAT.
1428 2007-05-24  Ulrich Drepper  <drepper@redhat.com>
1430         * Makerules (sysd-rules): Define PTW for ptw-* files.
1431         * Versions: Define GLIBC_2.7 for libc.
1432         * include/stdio.h: Declare __fortify_fail.
1433         * debug/fortify_fail.c: New file.
1434         * debug/Makefile (routines): Add fortify_fail.
1435         * debug/chk_fail.c: Use __fortify_fail.
1436         * debug/stack_chk_fail.c: Likewise.
1437         * io/Versions: Export __open_2, __open64_2, __openat_2, and
1438         __openat64_2 for GLIBC_2.7.
1439         * io/fcntl.h: When compiling with fortification, include bits/fcntl2.h.
1440         * io/open.c: Define *_2 variant of function which checks for O_CREAT
1441         and fails if necessary.
1442         * io/open64.c: Likewise.
1443         * io/openat.c: Likewise.
1444         * io/openat64.c: Likewise.
1445         * sysdeps/unix/sysv/linux/open64.c: Likewise.
1446         * sysdeps/unix/sysv/linux/openat.c: Likewise.
1447         * sysdeps/unix/sysv/linux/openat64.c: Likewise.
1448         * io/bits/fcntl2.h: New file.
1449         * include/fcntl.h: Declare __open_2, __open64_2, __openat_2, and
1450         __openat64_2.
1451         * include/bits/fcntl2.h: New file.
1452         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
1453         Add open_2.
1454         * sysdeps/unix/sysv/linux/open_2.c: New file.
1456 2007-05-21  Ulrich Drepper  <drepper@redhat.com>
1458         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Pass correct value
1459         as second parameter to handle_intel.
1461         * nscd/aicache.c (addhstaiX): If reported TTL is zero don't cache
1462         the entry.
1464         * sysdeps/unix/sysv/linux/x86_64/sysconf.c: Move cache information
1465         handling to ...
1466         * sysdeps/x86_64/cacheinfo.c: ... here.  New file.
1467         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
1468         cacheinfo.
1469         * sysdeps/x86_64/memcpy.S: Complete rewrite.
1470         * sysdeps/x86_64/mempcpy.S: Adjust appropriately.
1471         Patch by Evandro Menezes <evandro.menezes@amd.com>.
1473         * sysdeps/unix/sysv/linux/i386/epoll_pwait.S: New file.
1475 2007-05-21  Jakub Jelinek  <jakub@redhat.com>
1477         [BZ #4525]
1478         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add epoll_pwait.
1479         * sysdeps/unix/sysv/linux/epoll_pwait.c: New file.
1480         * sysdeps/unix/sysv/linux/syscalls.list (epoll_pwait): Remove.
1482         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h (epoll_pwait): Declare.
1484         [BZ #4514]
1485         * stdio-common/vfprintf.c (vfprintf): Don't shadow workstart variable,
1486         reinitialize workend at the start of each do_positional format spec
1487         loop, free workstart before do_positional loops.
1488         (printf_unknown): Fix size of work_buffer.
1489         * stdio-common/tst-sprintf.c (main): Add 3 new testcases.
1491         * malloc/hooks.c (MALLOC_STATE_VERSION): Bump.
1492         (public_sET_STATe): If ms->version < 3, put all chunks into
1493         unsorted chunks and clear {fd,bk}_nextsize fields of largebin
1494         chunks.
1496         * malloc/malloc.c [MALLOC_DEBUG]: Revert 2007-05-13 changes.
1497         * malloc/hooks.c: Likewise.
1498         * malloc/arena.c: Likewise.
1499         * malloc/malloc.c (do_check_malloc_state): Don't assert
1500         n_mmaps is not greater than n_mmaps_max.  This removes the need
1501         for the previous change.
1503         * malloc/Makefile (CFLAGS-malloc.c): Revert accidental
1504         2007-05-07 commit.
1506 2007-05-19  Ulrich Drepper  <drepper@redhat.com>
1508         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PRIVATE_FUTEX):
1509         Define for kernel >= 2.6.22.
1511 2007-05-18  Ulrich Drepper  <drepper@redhat.com>
1513         * elf/dl-close.c (_dl_close_worker): When removing object from
1514         global scope, wait for all lookups to finish afterwards.
1515         * elf/dl-open.c (add_to_global): When global scope array must
1516         grow, allocate a new one and free old array only after all
1517         lookups finish.
1518         * elf/dl-runtime.c (_dl_fixup): Protect using global scope.
1519         (_dl_lookup_symbol_x): Likewise.
1520         * elf/dl-support.c: Define _dl_wait_lookup_done.
1521         * sysdeps/generic/ldsodefs.h (struct rtld_global): Add
1522         _dl_wait_lookup_done.
1524         * malloc/malloc.c (do_check_chunk): Correct check for mmaped block
1525         not overlapping with arena.
1527         * malloc/mcheck.c (reallochook): If size==0, free the block.
1529         * rt/tst-shm.c: Use fstat64 instead of fstat.
1531         * sysdeps/unix/sysv/linux/i386/sync_file_range.S: Fix case where
1532         __NR_sync_file_range is not defined.
1534 2007-05-17  Ulrich Drepper  <drepper@redhat.com>
1536         Dummy files to prevent stub versions from being used.
1537         * sysdeps/x86_64/fpu/k_cosl.c: New file.
1538         * sysdeps/x86_64/fpu/k_rem_pio2l.c: New file.
1539         * sysdeps/x86_64/fpu/k_sinl.c: New file.
1540         * sysdeps/x86_64/fpu/k_tanl.c: New file.
1542         * version.h (VERSION): Set to 2.6.90.
1544 2007-05-14  Ulrich Drepper  <drepper@redhat.com>
1546         * version.h (VERSION): Define to 2.6.
1547         * include/features.h (__GLIBC_MINOR__): Define to 6.
1549         * malloc/malloc.c: Use all small bin slots on 64-bit archs.
1551         * malloc/malloc.c (largebin_index): Really have 32 buckets with 64
1552         sizes.
1554 2007-05-13  Ulrich Drepper  <drepper@redhat.com>
1556         * malloc/malloc.c [MALLOC_DEBUG]: Keep track of current maximum
1557         number of mmaps.  n_mmaps_max is the target.
1558         * malloc/hooks.c: Likewise.
1559         * malloc/arena.c: Likewise.
1561 2007-05-12  Andreas Jaeger  <aj@suse.de>
1563         * sysdeps/unix/sysv/linux/tst-getcpu.c: Include <unistd.h> for
1564         getpid.
1566 2007-05-11  Ulrich Drepper  <drepper@redhat.com>
1568         * elf/dl-close.c (_dl_close_worker): Help gcc to optimize by
1569         adding new variables.
1571         * elf/dl-open.c (add_to_global): Introduce variable ns to help gcc
1572         optimize.  Completely extend global scope array before making the
1573         new entries visible.
1575 2007-05-10  Ulrich Drepper  <drepper@redhat.com>
1577         * sysdeps/unix/sysv/linux/tst-getcpu.c: New file.
1578         * sysdeps/unix/sysv/linux/Makefile [subdir=posix] (tests): Add
1579         tst-getcpu.
1581         * include/link.h: Move l_version and l_nversion members around to
1582         fill gaps.
1584         * scripts/check-c++-types.sh: Don't use -fnu89-inline option.
1586         * sysdeps/unix/sysv/linux/sched_setaffinity.c
1587         (__sched_setaffinity_new): If syscall was successful and
1588         RESET_VGETCPU_CACHE is defined, use it before returning.
1589         * sysdeps/unix/sysv/linux/x86_64/sched_setaffinity.c: New file.
1591         * io/sys/stat.h: Make sure struct timespec is defined for
1592         __USE_ATFILE.
1594         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Define UTIME_NOW and
1595         UTIME_OMIT.
1596         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
1597         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
1598         * sysdeps/unix/sysv/linux/alpha/bits/stat.h: Likewise.
1599         * sysdeps/unix/sysv/linux/ia64/bits/stat.h: Likewise.
1600         * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
1601         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
1602         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_UTIMENSAT.
1603         * io/sys/stat.h: Declare utimensat, futimens.
1604         * io/utimensat.c: New file.
1605         * io/futimens.c: New file.
1606         * sysdeps/unix/sysv/linux/utimensat.c: New file.
1607         * sysdeps/unix/sysv/linux/futimens.c: New file.
1608         * io/Makefile (routines): Add utimensat, futimens.
1609         * io/Versions: Add utimensat, futimens to GLIBC_2.6.
1610         * sysdeps/unix/sysv/linux/lutimes.c: New file.
1611         * sysdeps/unix/sysv/linux/futimes.c: Use utimensat syscall if
1612         available.
1614         * include/sys/cdefs.h: Redefine __nonnull so that test for
1615         incorrect parameters in the libc code itself are not omitted.
1617 2007-05-09  Jakub Jelinek  <jakub@redhat.com>
1619         * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow
1620         exception in addition to inexact when asked to raise only FE_INEXACT.
1622         [BZ #3427]
1623         * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Don't clear exceptions
1624         in *envp.
1626 2007-05-07  Ulrich Drepper  <drepper@redhat.com>
1628         [BZ #4403]
1629         * string/strfry.c (strfry): Make result more random.
1631 2007-05-07  Richard Henderson  <rth@redhat.com>
1633         * sysdeps/alpha/fpu/bits/mathinline.h (__isnanl): Don't define
1634         if __NO_LONG_DOUBLE_MATH.
1635         * sysdeps/unix/sysv/linux/alpha/ioperm.c: If BWX insns not
1636         available in the compiler, add .arch directive to the assembly.
1638 2007-05-07  Jakub Jelinek  <jakub@redhat.com>
1640         * sysdeps/alpha/fpu/s_nearbyint.c (nearbyintl): Fix version on
1641         compat_symbol to GLIBC_2_1.
1642         * sysdeps/alpha/fpu/s_fmin.S (fminl): Likewise.
1643         * sysdeps/alpha/fpu/s_trunc.c (truncl): Likewise.
1644         * sysdeps/alpha/fpu/s_fmax.S (fmaxl): Likewise.
1645         * sysdeps/alpha/fpu/s_lrint.c (lrintl, llrintl): Likewise.
1646         * sysdeps/alpha/fpu/s_lround.c (lroundl, llroundl): Likewise.
1647         * sysdeps/alpha/fpu/s_round.c (roundl): Likewise.
1648         * sysdeps/alpha/fpu/s_isnan.c (isnanl): Provide compat_symbol in
1649         libc, not libm.
1650         (__isnanl): New compat_symbol.
1652 2007-05-07  Ulrich Drepper  <drepper@redhat.com>
1653             Jakub Jelinek  <jakub@redhat.com>
1655         * malloc/arena.c (heap_info): Add mprotect_size field, adjust pad.
1656         (new_heap): Initialize mprotect_size.
1657         (grow_heap): When growing, only mprotect from mprotect_size till
1658         new_size if mprotect_size is smaller.  When shrinking, use PROT_NONE
1659         MMAP for __libc_enable_secure only, otherwise use MADV_DONTNEED.
1661 2007-04-30  Steven Munroe  <sjmunroe@us.ibm.com>
1662             Peter Bergner  <bergner@us.ibm.com>
1664         * sysdeps/powerpc/bits/fenv.h: Declare __fe_mask_env extern.
1665         Define FE_NOMASK_ENV as FE_EANBLED_ENV.  Define FE_MASK_ENV.
1666         * sysdeps/powerpc/fpu/Makefile: Add fe_mask to libm-support.
1667         * sysdeps/powerpc/fpu/fe_mask.c: New file.
1668         * sysdeps/powerpc/fpu/fe_nomask.c: Correct comment.
1669         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept):
1670         Call __fe_mask_env() if all FP exceptions disabled.
1671         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Copy high 32-bits
1672         from old FPSCR to new fenv to propagate DFP rounding modes.
1673         Call __fe_mask_env() if FP exceptions previously enabled.
1674         * sysdeps/powerpc/fpu/fesetenv.c (fesetenv): Change mask to merge
1675         exceptions from env.  Use __fe_nomask_env() or __fe_mask_env() when
1676         transitioning from all exceptions disabled to any exception enabled
1677         or visa versa.
1678         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Change mask to
1679         merge exceptions from env.  Call __fe_nomask_env or __fe_mask_env
1680         when transitioning from all exceptions disabled to any exception
1681         enabled or visa versa.
1682         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fe_nomask.c: Moved to...
1683         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: ...here.
1684         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c: Moved to...
1685         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: ...here.
1686         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c: New file.
1687         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c: New file.
1689 2007-05-06  Ulrich Drepper  <drepper@redhat.com>
1691         [BZ #4465]
1692         * posix/unistd.h: Remove __THROW from fdatasync.
1694 2007-05-06  Mike Frysinger  <vapier@gentoo.org>
1696         [BZ #4465]
1697         * sysdeps/unix/sysv/linux/syscalls.list (fdatasync): Add "C" to args.
1699 2007-05-06  Ulrich Drepper  <drepper@redhat.com>
1701         * stdio-common/vfprintf.c (process_string_arg): Optimize
1702         ridiculous precision in wide char code printing multi-byte string.
1703         Reported by Jim Meyering <jim@meyering.net>.
1705         [BZ #4131]
1706         * elf/dl-addr.c (_dl_addr): Compare address with actual segment
1707         boundaries to work around systems with overlapping binary loading.
1708         Based on a patch by Suzuki <suzuki@in.ibm.com>.
1710 2007-05-04  Ulrich Drepper  <drepper@redhat.com>
1712         * stdio-common/vfprintf.c (process_string_arg): Adjust call to
1713         __mbsnrtowcs after last change.
1715         * locale/programs/linereader.c (get_symname): Fix adding final NUL.
1716         (get_ident): Likewise.
1718 2007-05-03  Jakub Jelinek  <jakub@redhat.com>
1720         * soft-fp/op-common.h (FP_TRUNC): Replace raising of FP_EX_INEXACT
1721         with setting the sticky bit.
1722         * math/test-misc.c (main): Add more truncation tests.
1724 2007-04-14  Uros Bizjak  <ubizjak@gmail.com>
1726         * soft-fp/floatunsidf.c (__floatunsidf): Use DFtype instead of
1727         double in the function declaration.
1728         * soft-fp/floatundidf.c (__floatundidf): Use DFtype instead of
1729         double in the function declaration.
1730         * soft-fp/floatunsisf.c (__floatunsisf): Use SFtype instead of
1731         float in the function declaration.
1732         * soft-fp/floatunsisf.c (__floatunsisf): Use SFtype instead of
1733         float in the function declaration.
1735         * soft-fp/extended.h (FP_UNPACK_RAW_E): Do not increase X##_e for
1736         denormal operands.  Do not generate FP_EX_DENORM exception.
1737         (FP_UNPACK_RAW_EP): Ditto.
1738         (FP_UNPACK_SEMIRAW_E): Use FP_UNPACK_RAW_E instead of
1739         undefined _FP_UNPACK_RAW_E.
1740         (FP_UNPACK_SEMIRAW_EP): Use FP_UNPACK_RAW_EP instead of
1741         undefined _FP_UNPACK_RAW_EP.
1742         (FP_PACK_SEMIRAW_E): Use FP_PACK_RAW_E instead of
1743         undefined _FP_PACK_RAW_E.
1744         (FP_PACK_SEMIRAW_EP): Use FP_PACK_RAW_EP instead of
1745         undefined _FP_PACK_RAW_EP.
1747         * soft-fp/op-2.h (_FP_FRAC_COPY_2_2): Define as alias to
1748         _FP_FRAC_COPY_2.
1749         * soft-fp/op-4.h (_FP_FRAC_COPY_2_2): Define as alias to
1750         _FP_FRAC_COPY_4.
1752 2007-04-16  Uros Bizjak  <ubizjak@gmail.com>
1753             Jakub Jelinek  <jakub@redhat.com>
1755         * soft-fp/op-common.h (FP_EXTEND): Do not abort when
1756         _FP_EXPBIAS_##dfs == _FP_EXPBIAS_##sfs.  Handle denormals for
1757         this case.
1758         * soft-fp/op-common.h (FP_TRUNC): Ditto.
1760 2007-05-03  Jakub Jelinek  <jakub@redhat.com>
1762         * math/test-misc.c (main): Add tests for rounding long double
1763         values close to smallest double denormalized value to double.
1765 2007-04-30  Joseph Myers  <joseph@codesourcery.com>
1767         * soft-fp/op-common.h (FP_TRUNC): Correct off-by-one error in
1768         condition for truncating to 0.  Set sticky bit for such
1769         truncation.
1771 2007-05-02  Jakub Jelinek  <jakub@redhat.com>
1773         * stdio-common/vfprintf.c (process_string_arg): Use a VLA rather than
1774         fixed length array for ignore.
1776 2007-04-30  Ulrich Drepper  <drepper@redhat.com>
1778         [BZ #4438]
1779         * stdio-common/vfprintf.c (process_string_arg): Don't overflow the
1780         stack for large precisions.
1781         * stdio-common/test-vfprintf.c (main): Add test for large
1782         precision.
1784 2007-04-30  Jakub Jelinek  <jakub@redhat.com>
1786         * stdio-common/printf_fp.c (___printf_fp): Don't print negative sign
1787         for exponent 0.
1788         * stdio-common/tfformat.c (sprint_doubles): Add a new test.
1790         [BZ #4439]
1791         * resolv/inet_ntop.c (inet_ntop4): Take terminating '\0' into
1792         account in the size check.
1793         * resolv/tst-inet_ntop.c: New test.
1794         * resolv/Makefile (tests): Add tst-inet_ntop.
1796 2007-04-30  Ulrich Drepper  <drepper@redhat.com>
1797             Jakub Jelinek  <jakub@redhat.com>
1799         [BZ #4349]
1800         * malloc/malloc.c: Keep separate list for first blocks on the bin
1801         lists with a given size.  This helps skipping over list elements
1802         we know won't fit in two places.
1803         Inspired by a patch by Tomash Brechko <tomash.brechko@gmail.com>.
1805 2007-04-28  Ulrich Drepper  <drepper@redhat.com>
1807         [BZ #4102]
1808         * sysdeps/posix/getaddrinfo.c (default_labels): Assign separate
1809         label to Teredo tunnel addresses 2001://32.
1811 2007-04-27  Ulrich Drepper  <drepper@redhat.com>
1813         * locale/programs/ld-collate.c (collate_read): Allow order_start
1814         after copy.
1816         * locale/programs/ld-collate.c (collate_read): Fix printing of
1817         error message.
1819         [BZ #3213]
1820         * locale/C-translit.h.in: Add entry for U2044.
1822         [BZ #4342]
1823         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Allow
1824         hexa-decimal floats without exponent.
1825         * stdio-common/tstscanf.c (main): Adjust Test 8 test for success.
1827 2007-04-25  Ulrich Drepper  <drepper@redhat.com>
1829         * sysdeps/unix/sysv/linux/bits/sched.h: Declare sched_getcpu.
1830         * sysdeps/unix/sysv/linux/sched_getcpu.c: New file.
1831         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: New file.
1832         * sysdeps/unix/sysv/linux/Versions: Export sched_getcpu for
1833         GLIBC_2.6.
1834         * sysdeps/unix/sysv/linux/Makefile [subdir=posix] (sysdep_routines):
1835         Add sched_getcpu.
1837 2007-04-25  Jakub Jelinek  <jakub@redhat.com>
1839         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Return -1 instead
1840         of 0 after the out_fail label.
1842 2007-04-25  Ulrich Drepper  <drepper@redhat.com>
1844         [BZ #4406]
1845         * iconv/gconv_charset.h (strip): Allow ':'.
1846         * iconv/iconv_open.c (iconv_open): Adjust comment.
1848 2007-04-25  Jakub Jelinek  <jakub@redhat.com>
1850         * libio/bits/stdio.h (fgetc_unlocked): Add extern inline optimized
1851         version.
1853 2007-04-23  Jakub Jelinek  <jakub@redhat.com>
1855         [BZ #4381]
1856         * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Ensure sufficient
1857         alignment of buffer and tmp_buffer.
1858         * nis/nss_nis/nis-hosts.c (internal_nis_gethostent_r,
1859         internal_gethostbyname2_r, _nss_nis_gethostbyaddr_r): Ensure sufficient
1860         alignment of buffer.
1861         * resolv/nss_dns/dns-hosts.c (getanswer_r): Likewise.  Handle buflen
1862         bigger than INT_MAX.
1863         * resolv/nss_dns/dns-network.c (getanswer_r): Likewise.  Add errnop and
1864         h_errnop arguments.  Fail if buflen is too small.
1865         (_nss_dns_getnetbyname_r, _nss_dns_getnetbyaddr_r): Adjust callers.
1867 2007-04-23  Jakub Jelinek  <jakub@redhat.com>
1869         [BZ #4405]
1870         * iconvdata/gconv-modules (E13B): Add a missing slash to the alias
1871         name.  Patch by Aurelien Jarno <aurelien@aurel32.net>.
1873 2007-04-22  Roland McGrath  <roland@redhat.com>
1875         * elf/elf.h (NT_PRXFPREG): New macro.
1877 2007-04-19  Andreas Jaeger  <aj@suse.de>
1879         [BZ #3905]
1880         * bits/in.h (IPV6_ROUTER_ALERT, IPV6_MTU_DISCOVER, IPV6_MTU,
1881         IPV6_RECVERR, IPV6_V6ONLY, IPV6_JOIN_ANYCAST, IPV6_LEAVE_ANYCAST):
1882         Added.
1884 2007-04-19  Ulrich Drepper  <drepper@redhat.com>
1886         * include/sys/mman.h: Mark madvise hidden.
1887         * misc/madvise.c: Add libc_hidden_def.
1889 2007-04-06  Jakub Jelinek  <jakub@redhat.com>
1891         * nis/nis_domain_of.c (__nis_domain_of): New function.
1892         * include/rpcsvc/nislib.h (__nis_domain_of): New prototype.
1893         * nis/nis_lookup.c (nis_lookup): Use __nis_domain_of.
1894         * nis/nis_call.c (rec_dirsearch): Likewise.
1895         (first_shoot): Likewise.  Remove search_parent_first argument.
1896         (struct nis_server_cache): Rename search_parent_first field
1897         to search_parent.
1898         (nis_server_cache_search, nis_server_cache_add): Rename
1899         search_parent_first argument to search_parent.
1900         (__nisfind_server): Likewise.  If search_parent, call
1901         __nis_domain_of.
1903 2007-04-18  Ulrich Drepper  <drepper@redhat.com>
1905         * sysdeps/posix/getaddrinfo.c: Remove commented-out code.
1907 2007-04-17  Ulrich Drepper  <drepper@redhat.com>
1909         [BZ #4368]
1910         * stdlib/stdlib.h: Remove obsolete part of comment for realpath.
1912 2007-04-16  Ulrich Drepper  <drepper@redhat.com>
1914         [BZ #4364]
1915         * posix/unistd.h (_XOPEN_VERSION): Define appropriately for SUSv3.
1917 2007-04-15  Jakub Jelinek  <jakub@redhat.com>
1919         * locale/programs/locarchive.c (INITIAL_NUM_NAMES,
1920         INITIAL_SIZE_STRINGS, INITIAL_NUM_LOCREC): Update to accomodate
1921         current number of locales in SUPPORTED.
1922         (create_archive): Initialize serial.
1923         (enlarge_archive): Preserve aliases rather than duplicating
1924         their locrecs.
1926 2007-04-13  Jakub Jelinek  <jakub@redhat.com>
1928         * libio/genops.c (_IO_default_finish): Call _IO_lock_fini
1929         after _IO_un_link, not before it.
1931         * stdio-common/printf_fp.c (___printf_fp): Fix exponent -4
1932         special case handling when wcp == wstartp + 1.  Fix a comment typo.
1933         * stdio-common/tfformat.c (sprint_doubles): Add a new testcase.
1935 2007-03-30  Jakub Jelinek  <jakub@redhat.com>
1937         * libio/libio.h (__underflow, __uflow, __overflow, __wunderflow,
1938         __wuflow, __woverflow, _IO_getc, _IO_putc, _IO_peekc_locked, _IO_padn,
1939         _IO_sgetn, _IO_seekoff, _IO_seekpos, _IO_getwc, _IO_putwc, _IO_wpadn):
1940         Remove __THROW.
1941         * libio/fileops.c (new_do_write, _IO_file_xsgetn_mmap,
1942         _IO_file_xsgetn_maybe_mmap): Likewise.
1943         * libio/oldfileops.c (old_do_write): Likewise.
1944         * libio/libioP.h (_IO_switch_to_get_mode, _IO_switch_to_wget_mode,
1945         _IO_init_marker, _IO_init_wmarker, _IO_default_uflow,
1946         _IO_wdefault_uflow, _IO_default_setbuf, _IO_default_seekpos,
1947         _IO_do_write, _IO_new_do_write, _IO_old_do_write, _IO_wdo_write,
1948         _IO_flush_all_lockp, _IO_flush_all, _IO_cleanup,
1949         _IO_flush_all_linebuffered, _IO_new_fgetpos, _IO_old_fgetpos,
1950         _IO_new_fsetpos, _IO_old_fsetpos, _IO_new_fgetpos64,
1951         _IO_old_fgetpos64, _IO_new_fsetpos64, _IO_old_fsetpos64,
1952         _IO_file_setbuf, _IO_file_seekoff, _IO_file_xsputn, _IO_file_xsgetn,
1953         _IO_file_underflow, _IO_file_underflow_mmap,
1954         _IO_file_underflow_maybe_mmap, _IO_file_overflow, _IO_file_attach,
1955         _IO_file_open, _IO_file_fopen, _IO_file_write, _IO_file_read,
1956         _IO_file_sync, _IO_file_close_it, _IO_file_finish,
1957         _IO_new_file_attach, _IO_new_file_close_it, _IO_new_file_finish,
1958         _IO_new_file_fopen, _IO_new_file_setbuf, _IO_file_setbuf_mmap,
1959         _IO_new_file_sync, _IO_new_file_underflow, _IO_new_file_overflow,
1960         _IO_new_file_seekoff, _IO_new_file_write, _IO_new_file_xsputn,
1961         _IO_old_file_setbuf, _IO_old_file_seekoff, _IO_old_file_xsputn,
1962         _IO_old_file_underflow, _IO_old_file_overflow, _IO_old_file_attach,
1963         _IO_old_file_fopen, _IO_old_file_write, _IO_old_file_sync,
1964         _IO_old_file_close_it, _IO_old_file_finish, _IO_wfile_xsputn,
1965         _IO_wfile_setbuf, _IO_wfile_sync, _IO_wfile_underflow,
1966         _IO_wfile_overflow, _IO_wfile_seekoff, _IO_old_proc_open,
1967         _IO_old_proc_close, _IO_getdelim, _IO_flush_all_internal,
1968         _IO_adjust_column_internal, _IO_default_uflow_internal,
1969         _IO_default_xsgetn_internal, _IO_wdefault_xsputn_internal,
1970         _IO_wdefault_xsgetn_internal, _IO_wdefault_uflow_internal,
1971         _IO_file_setbuf_internal, _IO_file_seekoff_internal,
1972         _IO_file_xsputn_internal, _IO_file_xsgetn_internal,
1973         _IO_file_close_it_internal, _IO_file_underflow_internal,
1974         _IO_file_overflow_internal, _IO_file_attach_internal,
1975         _IO_file_fopen_internal, _IO_file_sync_internal,
1976         _IO_file_finish_internal, _IO_wfile_xsputn_internal,
1977         _IO_wfile_seekoff_internal, _IO_wfile_sync_internal,
1978         _IO_switch_to_wget_mode_internal, _IO_padn_internal,
1979         _IO_switch_to_get_mode_internal, _IO_seekoff_unlocked,
1980         _IO_seekpos_unlocked): Likewise.
1981         (_IO_strtod, _IO_dtoa, _IO_outfloat, _IO_read, _IO_write,
1982         _IO_lseek, _IO_close, _IO_fstat): Remove unused prototypes.
1984 2007-04-16  Jakub Jelinek  <jakub@redhat.com>
1986         * locale/programs/locarchive.c (show_archive_content): Fix sizeof
1987         argument in xmalloc size computation.
1989 2007-04-01  Jakub Jelinek  <jakub@redhat.com>
1991         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Use
1992         math_opt_barrier and math_force_eval macros.
1994 2007-03-27  Jakub Jelinek  <jakub@redhat.com>
1996         [BZ #3306]
1997         * math/math_private.h (math_opt_barrier, math_force_eval): Define.
1998         * sysdeps/i386/fpu/math_private.h: New file.
1999         * sysdeps/x86_64/fpu/math_private.h: New file.
2000         * math/s_nexttowardf.c (__nexttowardf): Use math_opt_barrier and
2001         math_force_eval macros.  Use "+m" constraint on asm rather than
2002         "=m" and "m".
2003         * math/s_nextafter.c (__nextafter): Likewise.
2004         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward):
2005         Likewise.
2006         * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
2007         * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward): Likewise.
2008         * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
2009         * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Use
2010         math_opt_barrier and math_force_eval macros.
2011         * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl): Likewise.
2012         * sysdeps/ieee754/ldbl-96/s_nextafterl.c (__nextafterl): Likewise.
2013         * sysdeps/i386/fpu/s_nexttoward.c: Include float.h.
2014         (__nexttoward): Use math_opt_barrier and
2015         math_force_eval macros.  Use "+m" constraint on asm rather than
2016         "=m" and "m".  Only use asm to force double result if
2017         FLT_EVAL_METHOD is 2.
2018         * sysdeps/i386/fpu/s_nexttowardf.c: Include float.h.
2019         (__nexttowardf): Use math_opt_barrier and
2020         math_force_eval macros.  Use "+m" constraint on asm rather than
2021         "=m" and "m".  Only use asm to force double result if
2022         FLT_EVAL_METHOD is not 0.
2023         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Include float.h.
2024         (__nexttowardf): Use math_opt_barrier and
2025         math_force_eval macros.  If FLT_EVAL_METHOD is not 0, force
2026         x to float using asm.
2027         * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c: Include float.h.
2028         (__nldbl_nexttowardf): Use math_opt_barrier and
2029         math_force_eval macros.  If FLT_EVAL_METHOD is not 0, force
2030         x to float using asm.
2031         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Include float.h.
2032         (__nexttowardf): Use math_opt_barrier and math_force_eval
2033         macros.  If FLT_EVAL_METHOD is not 0, force x to float using asm.
2034         * math/bug-nextafter.c (zero, inf): New variables.
2035         (main): Add new tests.
2036         * math/bug-nexttoward.c (zero, inf): New variables.
2037         (main): Add new tests.
2039 2007-03-22  Jakub Jelinek  <jakub@redhat.com>
2041         [BZ #3427]
2042         * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Clear all
2043         exceptions both in SW and MXCSR.
2044         * sysdeps/x86_64/fpu/feupdateenv.c: New file.
2045         * sysdeps/x86_64/fpu/feenablxcpt.c (feenableexcept): Remove dead code.
2046         * sysdeps/x86_64/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
2047         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
2048         in MXCSR if SSE is available.
2049         * sysdeps/i386/fpu/feupdateenv.c: Include unistd.h, dl-procinfo.h
2050         and ldsodefs.h.
2051         (__feupdateenv): Query exceptions also from MXCSR if SSE is available.
2052         Fix comment typo.
2053         * sysdeps/ia64/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions.
2054         Return 0 rather than 1.
2055         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Fix comment typo.
2056         Remove incorrect part of a comment.  Fix argument to feraiseexcept.
2057         * math/test-fenv.c (feholdexcept_tests): New function.
2058         (main): Call it.
2060 2007-01-05  Richard B. Kreckel  <kreckel@ginac.de>
2062         [BZ #3427]
2063         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
2064         in SW.
2066 2007-04-13  Jakub Jelinek  <jakub@redhat.com>
2068         [BZ #4344]
2069         * elf/ldconfig.c (search_dir): Fix 2 off-by-2 errors.
2070         Reported by David Anderson <davea42@earthlink.net>.
2072 2007-04-07  Ulrich Drepper  <drepper@redhat.com>
2074         * posix/sys/wait.h: Remove unnecessary forward declaration.
2076 2007-04-05  Jakub Jelinek  <jakub@redhat.com>
2078         * nis/nis_call.c (__nisfind_server): Replace (*dir)->do_servers
2079         with obj->do_servers after first_shoot.
2081 2007-04-03  Ulrich Drepper  <drepper@redhat.com>
2083         * posix/Makefile (routines): Add sched_cpucount.
2084         (tests): Add tst-cpucount.
2085         * posix/sched_cpucount.c: New file.
2086         * posix/tst-cpucount.c: New file.
2087         * posix/Versions: Export __sched_cpucount with version GLIBC_2.6.
2088         * bits/sched.h: Define __CPU_COUNT.  Declare __sched_cpucount.
2089         * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
2090         * posix/sched.h: Define CPU_COUNT.
2092 2007-03-27  Jakub Jelinek  <jakub@redhat.com>
2094         * posix/fnmatch.c (STRUCT): Define.
2095         (fnmatch): Pass NULL as last argument to internal_fn{,w}match.
2096         * posix/fnmatch_loop.c (struct STRUCT): New type.
2097         (FCT): Add ends argument.  If ends != NULL and normal * is
2098         seen in the pattern, store current pattern and string pointers
2099         and return.  Adjust recursive calls.
2100         (EXT): Adjust FCT callers.
2101         (STRUCT): Undef at the end of the file.
2102         * posix/Makefile (tests): Add tst-fnmatch2.
2103         * posix/tst-fnmatch2.c: New test.
2105 2007-04-01  Jakub Jelinek  <jakub@redhat.com>
2107         * sysdeps/ia64/fpu/fesetround.c (fesetround): Return 0 on success
2108         and 1 on failure.
2110         * sysdeps/unix/sysv/linux/sync_file_range.c (sync_file_range):
2111         Change last argument to unsigned int.
2113 2007-03-23  Jakub Jelinek  <jakub@redhat.com>
2115         * scripts/check-local-headers.sh: Filter out sys/capability.h.
2117 2007-03-22  Jakub Jelinek  <jakub@redhat.com>
2119         * config.h.in (HAVE_LIBCAP): Add.
2120         * nscd/selinux.h: Include sys/capability.h rather than non-existent
2121         sys/capabilities.h.
2122         * nscd/selinux.c (preserve_capabilities): Use cap_free instead of
2123         free_caps.  Cast away const from 4th cap_set_flag argument.
2125 2007-03-26  Ulrich Drepper  <drepper@redhat.com>
2127         * sysdeps/unix/sysv/linux/Versions: Move sync_file_range to
2128         GLIBC_2.6.
2129         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
2130         Add sync_file_range.
2131         Reported by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
2133 2007-03-19  Steven Munroe  <sjmunroe@us.ibm.com>
2135         * sysdeps/powerpc/bits/atomic.h
2136         [!MUTEX_HINT_ACQ]: Define MUTEX_HINT_ACQ.
2137         [!MUTEX_HINT_REL]: Define MUTEX_HINT_REL.
2138         (__arch_compare_and_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
2139         (__arch_compare_and_exchange_val_32_rel): Add MUTEX_HINT_REL to lwarx.
2140         (__arch_atomic_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
2141         (__arch_atomic_exchange_rel_32_rel): Add MUTEX_HINT_REL to lwarx.
2142         * sysdeps/powerpc/powerpc32/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6X]:
2143         Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
2144         (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
2145         (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
2146         * sysdeps/powerpc/powerpc64/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6D]:
2147         Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
2148         (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
2149         (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
2150         (__arch_compare_and_exchange_bool_64_acq): Add MUTEX_HINT_ACQ to lwarx.
2151         (__arch_compare_and_exchange_bool_64_rel): Add MUTEX_HINT_REL to lwarx.
2152         (__arch_compare_and_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
2153         (__arch_compare_and_exchange_val_64_rel): Add MUTEX_HINT_REL to lwarx.
2154         (__arch_atomic_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
2155         (__arch_atomic_exchange_rel_64_rel): Add MUTEX_HINT_REL to lwarx.
2157 2007-03-20  Jakub Jelinek  <jakub@redhat.com>
2159         * sysdeps/unix/sysv/linux/powerpc/libc-start.c
2160         (__cache_line_size): Define the variable here.  Add
2161         attribute_hidden, remove weak_extern.
2162         (__libc_start_main): Set __cache_line_size
2163         unconditionally.
2164         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
2165         (__cache_line_size): Define the variable here.  Add
2166         attribute_hidden, remove weak_extern.
2167         (DL_PLATFORM_AUXV): Set __cache_line_size
2168         unconditionally.
2169         * sysdeps/powerpc/powerpc32/dl-machine.c (__cache_line_size): Remove
2170         weak_extern, add attribute_hidden.
2171         (__elf_machine_runtime_setup): Assume __cache_line_size is always
2172         defined in ld.so.
2173         * sysdeps/powerpc/powerpc32/memset.S (__cache_line_size): Remove
2174         definition.
2175         * sysdeps/powerpc/powerpc64/memset.S (__cache_line_size): Likewise.
2177 2007-03-26  Jakub Jelinek  <jakub@redhat.com>
2179         [BZ #4276]
2180         * timezone/africa: Update from tzdata2007d.
2181         * timezone/asia: Likewise.
2182         * timezone/australasia: Likewise.
2183         * timezone/backward: Likewise.
2184         * timezone/europe: Likewise.
2185         * timezone/iso3166.tab: Likewise.
2186         * timezone/leapseconds: Likewise.
2187         * timezone/northamerica: Likewise.
2188         * timezone/southamerica: Likewise.
2189         * timezone/zone.tab: Likewise.
2191         * timezone/private.h: Update from tzcode2007d.
2192         * timezone/zdump.c: Likewise.
2193         * timezone/zic.c: Likewise.
2195 2007-03-21  Jakub Jelinek  <jakub@redhat.com>
2197         * nis/nis_call.c: Include bits/libc-lock.h, sys/stat.h, unistd.h.
2198         (nis_server_cache, nis_server_cache_lock, nis_cold_start_mtime): New
2199         variables.
2200         (nis_server_cache_search, nis_server_cache_add): New functions.
2201         (__nisfind_server): Use them.  Add dbp and flags argument, if
2202         call __nisbind_create.
2203         (__nisbind_create): Add server_used and current_ep arguments,
2204         only call __nis_findfastest if server_used is ~0.
2205         (__do_niscall2, __prepare_niscall): Adjust callers.
2206         (ckey_cache, ckey_cache_size, ckey_cache_allocated, ckey_cache_pid,
2207         ckey_cache_euid, ckey_cache_lock): New variables.
2208         (get_ckey): New function.
2209         (__nisbind_connect): If not dbp->use_udp, pass IPPROTO_TCP to
2210         __pmap_getnisport.  Save __pmap_getnisport result in
2211         dbp->addr.sin_port if non-zero.  Use get_ckey to create conversation
2212         key.
2213         * nis/nis_lookup.c (nis_lookup): Likewise.
2214         * nis/nis_table.c (nis_list): Likewise.
2215         * nis/rpcsvc/nislib.h (__nisbind_create, __nisfind_server): Adjust
2216         prototypes.
2218         * nis/nss_nisplus/nisplus-pwd.c (_nss_nisplus_getpwnam_r,
2219         _nss_nisplus_getpwuid_r): Pass USE_DGRAM flag to nis_list.
2220         * nis/nss_nisplus/nisplus-service.c (_nss_nisplus_getservbyname_r,
2221         _nss_nisplus_getservbyport_r): Likewise.
2222         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r,
2223         _nss_nisplus_getnetbyaddr_r): Likewise.
2224         * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_getspnam_r): Likewise.
2225         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r,
2226         _nss_nisplus_getntohost_r): Likewise.
2227         * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r,
2228         _nss_nisplus_getrpcbynumber_r): Likewise.
2230 2007-03-20  Jakub Jelinek  <jakub@redhat.com>
2232         * configure.in (libc_cv_gnu89_inline): Only do compile test.
2233         * configure: Rebuilt.
2235         * soft-fp/double.h (_FP_UNION_D): Use _FP_W_TYPE for frac
2236         bit-fields.
2237         * soft-fp/extended.h (_FP_UNION_E): Likewise.
2239 2006-06-07  Joseph Myers  <joseph@codesourcery.com>
2241         [BZ #2831]
2242         * soft-fp/quad.h (_FP_UNION_Q): Use _FP_W_TYPE for frac
2243         bit-fields.
2245 2007-03-18  Jakub Jelinek  <jakub@redhat.com>
2247         * nscd/gai.c: Include alloca.h.
2248         (__libc_use_alloca): Define.
2250 2007-03-16  Jakub Jelinek  <jakub@redhat.com>
2252         * elf/dl-open.c (dl_open_worker): Declare l in 2 different
2253         smaller scopes.
2254         * elf/dl-dst.h (DL_DST_REQ_STATIC): Add l as macro argument.
2255         (DL_DST_REQUIRED): Adjust user.
2257         * include/dlfcn.h (struct link_map): New forward decl.
2259         * inet/getnameinfo.c: Include stddef.h.
2260         (getnameinfo): Use offsetof.
2262         * time/tst-mktime2.c (do_test): Don't rely on signed wrap.
2264         * stdio-common/vfprintf.c (_itoa): Undef before redefining.
2266         * string/strerror_l.c: Include stdlib.h.
2268         * configure.in (libc_cv_gnu89_inline): Test for -fgnu89-inline.
2269         * config.make.in (gnu89-inline-CFLAGS): New variable.
2270         * Makeconfig (CFLAGS): Use $(gnu89-inline-CFLAGS) together with
2271         -std=gnu99.
2272         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline): Define.
2273         * argp/argp.h: Use it.
2274         * bits/mathinline.h: Likewise.
2275         * bits/sigset.h: Likewise.
2276         * bits/string.h: Likewise.
2277         * ctype/ctype.h: Likewise.
2278         * hurd/hurd.h: Likewise.
2279         * hurd/hurd/fd.h: Likewise.
2280         * hurd/hurd/port.h: Likewise.
2281         * hurd/hurd/signal.h: Likewise.
2282         * hurd/hurd/threadvar.h: Likewise.
2283         * hurd/hurd/userlink.h: Likewise.
2284         * io/sys/stat.h: Likewise.
2285         * libio/bits/stdio.h: Likewise.
2286         * libio/bits/stdio2.h: Likewise.
2287         * mach/lock-intern.h: Likewise.
2288         * mach/mach/mig_support.h: Likewise.
2289         * math/bits/cmathcalls.h: Likewise.
2290         * posix/bits/unistd.h: Likewise.
2291         * socket/bits/socket2.h: Likewise.
2292         * stdlib/bits/stdlib.h: Likewise.
2293         * stdlib/stdlib.h: Likewise.
2294         * string/argz.h: Likewise.
2295         * string/bits/string2.h: Likewise.
2296         * string/bits/string3.h: Likewise.
2297         * sysdeps/alpha/fpu/bits/mathinline.h: Likewise.
2298         * sysdeps/generic/inttypes.h: Likewise.
2299         * sysdeps/generic/machine-lock.h: Likewise.
2300         * sysdeps/generic/machine-sp.h: Likewise.
2301         * sysdeps/i386/fpu/bits/mathinline.h: Likewise.
2302         * sysdeps/i386/i486/bits/string.h: Likewise.
2303         * sysdeps/ia64/fpu/bits/mathinline.h: Likewise.
2304         * sysdeps/mach/alpha/machine-lock.h: Likewise.
2305         * sysdeps/mach/alpha/machine-sp.h: Likewise.
2306         * sysdeps/mach/i386/machine-lock.h: Likewise.
2307         * sysdeps/mach/powerpc/machine-lock.h: Likewise.
2308         * sysdeps/mach/powerpc/machine-sp.h: Likewise.
2309         * sysdeps/powerpc/fpu/bits/mathinline.h: Likewise.
2310         * sysdeps/s390/bits/string.h: Likewise.
2311         * sysdeps/s390/fpu/bits/mathinline.h: Likewise.
2312         * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
2313         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
2314         * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
2315         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
2316         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Likewise.
2317         * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
2318         * wcsmbs/bits/wchar2.h: Likewise.
2319         * wcsmbs/wchar.h: Likewise.
2320         * stdlib/gmp.h: Likewise.  Include <features.h> to get
2321         __extern_inline definition.
2323 2007-03-15  Jakub Jelinek  <jakub@redhat.com>
2325         * locale/programs/ld-ctype.c (find_translit): Return NULL if ctype is
2326         NULL.
2328         [BZ #3919]
2329         * math/libm-test.inc (log_test): Test -Inf and NaN.
2330         (log10_test, log1p_test, log2_test): Test -Inf.
2331         * sysdeps/i386/fpu/e_log.S (__ieee754_log): Don't raise
2332         FE_INVALID when argument is qNaN.
2333         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
2334         * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
2335         * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
2336         * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Replace
2337         andb $1, %ah with testb $1, %ah, don't test for parity, instead
2338         testb $4, %ah and jump if non-zero.
2339         * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Likewise.
2340         * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Likewise.
2342         [BZ #4101]
2343         * argp/argp-help.c (hol_cluster_cmp): Fix comparisons used to find
2344         ancestors with the same depths.
2345         Patch by Niels Moeller <nisse@lysator.liu.se>.
2346         (filter_doc): Don't crash if argp is NULL.
2347         * argp/Makefile (tests): Add tst-argp2.
2348         * argp/tst-argp2.c: New test.
2350         [BZ #4130]
2351         * login/utmp_file.c (setutent_file): Use O_LARGEFILE for
2352         open_not_cancel_2.
2353         (updwtmp_file): Likewise.
2355         [BZ #4181]
2356         * inet/inet6_opt.c (add_padding): Only insert padding if npad > 0.
2357         (inet6_opt_append): Don't check extlen is big enough if extbuf
2358         is NULL.
2359         (inet6_opt_finish): Likewise.
2360         * inet/Makefile (tests): Add test-inet6_opt.
2361         * inet/test-inet6_opt.c: New test.
2363         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Never
2364         reallocate the buffer, instead fail for MSG_TRUNC or for EBUSY
2365         NLMSG_ERR.  Instead use a page sized buffer.
2366         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use page sized
2367         buffer.
2369 2007-03-14  Richard Henderson  <rth@redhat.com>
2371         * sysdeps/alpha/fpu/s_llround.c: New file.
2372         * sysdeps/alpha/fpu/s_llroundf.c: New file.
2373         * sysdeps/alpha/fpu/s_lround.c: New file.
2374         * sysdeps/alpha/fpu/s_lroundf.c: New file.
2375         * sysdeps/alpha/fpu/s_round.c: New file.
2376         * sysdeps/alpha/fpu/s_roundf.c: New file.
2377         * sysdeps/alpha/fpu/s_trunc.c: New file.
2378         * sysdeps/alpha/fpu/s_truncf.c: New file.
2380         * sysdeps/alpha/fpu/s_ceil.c: Rewrite without branches.
2381         * sysdeps/alpha/fpu/s_ceilf.c: Likewise.
2382         * sysdeps/alpha/fpu/s_floor.c: Likewise.
2383         * sysdeps/alpha/fpu/s_floorf.c: Likewise.
2384         * sysdeps/alpha/fpu/s_rint.c: Likewise.
2385         * sysdeps/alpha/fpu/s_rintf.c: Likewise.
2387         * sysdeps/alpha/fpu/s_fmax.S: New file.
2388         * sysdeps/alpha/fpu/s_fmaxf.S: New file.
2389         * sysdeps/alpha/fpu/s_fmin.S: New file.
2390         * sysdeps/alpha/fpu/s_fminf.S: New file.
2391         * sysdeps/alpha/fpu/s_isnan.c: New file.
2392         * sysdeps/alpha/fpu/s_isnanf.c: New file.
2393         * sysdeps/alpha/fpu/s_llrint.c: New file.
2394         * sysdeps/alpha/fpu/s_llrintf.c: New file.
2395         * sysdeps/alpha/fpu/s_lrint.c: New file.
2396         * sysdeps/alpha/fpu/s_lrintf.c: New file.
2397         * sysdeps/alpha/fpu/s_nearbyint.c: New file.
2398         * sysdeps/alpha/fpu/s_nearbyintf.c: New file.
2400         * sysdeps/alpha/fpu/bits/mathinline.h (__floorf, __floor): Remove.
2401         (__fdimf, fdimf, __fdim, fdim): Remove.
2402         (__signbitf, __signbit, __signbitl): Use gcc builtin if available.
2403         (__isnanf, __isnan, __isnanl): New.
2405 2007-03-13  Richard Henderson  <rth@redhat.com>
2407         * sysdeps/ieee754/ldbl-128/Makefile: New file.
2409 2007-03-13  Richard Henderson  <rth@redhat.com>
2411         * sysdeps/alpha/Makefile (sysdep-CFLAGS): Force dynamic rounding.
2412         * sysdeps/alpha/fpu/bits/mathinline.h (__signbitl): New.
2413         * sysdeps/alpha/fpu/libm-test-ulps: Regenerate.
2414         * sysdeps/unix/sysv/linux/alpha/alphaev6/fpu/Implies: New file.
2415         * sysdeps/unix/sysv/linux/alpha/alphaev67/fpu/Implies: New file.
2416         * sysdeps/unix/sysv/linux/alpha/fpu/Implies: New file.
2418 2007-03-13  Richard Henderson  <rth@redhat.com>
2420         * elf/dl-support.c (_dl_aux_init): Honor DL_PLATFORM_AUXV.
2421         * sysdeps/unix/sysv/linux/alpha/dl-auxv.h: New file.
2422         * sysdeps/unix/sysv/linux/alpha/dl-support.c: New file.
2423         * sysdeps/unix/sysv/linux/alpha/dl-sysdep.c (__libc_alpha_cache_shape):
2424         Move to dl-auxv.h; initialize instead of extern weak.
2425         (DL_PLATFORM_AUXV): Move to dl-auxv.h; don't test for undef
2426         weak symbol.
2427         * sysdeps/unix/sysv/linux/alpha/sysconf.c (__libc_alpha_cache_shape):
2428         Extern instead of initialized.
2430 2007-03-13  Richard Henderson  <rth@redhat.com>
2432         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S: Add support for
2433         __sigsuspend_nocancel.
2435 2007-03-06  Ulrich Drepper  <drepper@redhat.com>
2437         * sysdeps/posix/getaddrinfo.c (get_scope): Correct test for
2438         172.16/12 address range.
2440 2007-03-02  Jakub Jelinek  <jakub@redhat.com>
2442         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Retry with
2443         a new netlink socket if NLMSG_ERR -EBUSY is seen after some MSG_TRUNC
2444         message.
2446 2007-03-01  Jakub Jelinek  <jakub@redhat.com>
2448         [BZ #4069]
2449         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Check for NaN
2450         earlier.
2451         * math/libm-test.inc (pow_test): Add more tests involving NaNs.
2453         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Avoid invalid exception
2454         for x qNaN and y either +-inf or non-integer value.
2455         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Likewise.
2456         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
2457         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
2459 2007-02-10  Mike Frysinger  <vapier@gentoo.org>
2461         * sysdeps/unix/sysv/linux/sh/Makefile: Remove sys/io.h
2462         from sysdep_headers.
2464 2007-02-28  Jakub Jelinek  <jakub@redhat.com>
2466         * time/tzfile.c (find_transition): Instead of a linear search try to
2467         guess the transition index, use a linear search if the result is at
2468         most 10 transitions away from the guess or binary search otherwise.
2470 2007-02-27  Jakub Jelinek  <jakub@redhat.com>
2472         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Fix
2473         memory reallocation.
2475 2007-02-21  Ulrich Drepper  <drepper@redhat.com>
2477         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Add branch predictions
2478         and fix some typos.
2479         Optimize use of TOLOWER.
2481         [BZ #3325]
2482         * sysdeps/i386/fpu/e_fmodf.S: Revert last changes, keep using fprem.
2483         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
2484         * sysdeps/i386/fpu/e_fmod.S: Likewise.
2486         [BZ #3458]
2487         * sysdeps/unix/sysv/linux/posix_madvise.c: New file.
2488         * sysdeps/unix/sysv/linux/syscalls.list: Remove posix_madvise entry.
2490         [BZ #4076]
2491         * io/ftw.c (ftw_startup): Handle special case of FTW_CHDIR in /.
2492         (open_dir_stream): Likewise.
2493         * io/Makefile (tests): Add bug-ftw5.
2494         * io/bug-ftw5.c: New file.
2496         * nscd/hstcache.c (cache_addhst): Remove unnecessary conditional.
2497         * nscd/servicescache.c (cache_addserv): Likewise.
2499         * nscd/grpcache.c (cache_addgr): In case a record changed on
2500         refresh, adjust key_copy.
2502         [BZ #4074]
2503         * nscd/pwdcache.c (cache_addpw): In case a record changed on
2504         refresh, adjust key_copy.
2506         [BZ #4070]
2507         * stdio-common/printf_fp.c (___printf_fp): Handle a few more
2508         special cases.
2509         * stdio-common/tfformat.c (sprint_doubles): Some more tests.
2511 2007-02-19  Ulrich Drepper  <drepper@redhat.com>
2513         * stdio-common/printf_fp.c (___printf_fp): Cleanups and minor
2514         optimization.
2516         * stdio-common/vfscanf.c: Small cleanups throughout.
2518 2007-02-18  Ulrich Drepper  <drepper@redhat.com>
2520         [BZ #3325]
2521         * sysdeps/i386/fpu/e_fmodf.S: Use fprem1 instead of fprem.
2522         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
2523         * sysdeps/i386/fpu/e_fmod.S: Likewise.
2524         Patch by Jared Casper <jaredcasper@gmail.com>.
2526         * sysdeps/unix/closedir.c: Outside libc don't use locking.
2527         * sysdeps/unix/opendir.c: Likewise.
2528         * sysdeps/unix/readdir.c: Likewise.
2530         [BZ #2211]
2531         * stdio-common/vfscanf.c: Handle localized digits etc for floating
2532         point numbers.
2533         Patch mostly by Hamed Malek <hamed@farsiweb.info>.
2535         * stdio-common/vfscanf.c: Fix problems in width accounting.
2536         * stdio-common/tst-sscanf.c (double_tests): New tests.
2537         (main): Hook them up.
2539         * stdio-common/vfscanf.c: Remove unused WIDTH handling.
2540         More simplifications of floating-point reader.
2542         * stdio-common/Makefile (tests): Add tst-swscanf.
2543         * stdio-common/tst-sscanf.c: Make tests usable for swscanf
2544         testing.
2545         * stdio-common/tst-swscanf.c: New file.
2547 2007-02-17  Ulrich Drepper  <drepper@redhat.com>
2549         [BZ #2633]
2550         * libio/stdio.h: Define struct _IO_FILE in global namespace.
2551         * setjmp/setjmp.h: Define __jmp_buf_tag in global namespace.
2552         Remove using for __jmp_buf_tag.
2553         * locale/locale.h (struct lconv): Also define in std namespace.
2554         * wcsmbs/wchar.h: Move using declaration for tm out of namespace.
2556         [BZ #3842]
2557         * sysdeps/posix/euidaccess.c [_LIBC] (euidaccess): Remove shortcut
2558         using __libc_enable_secure.
2560         [BZ #3818]
2561         * sysdeps/unix/sysv/linux/sys/acct.h (struct acct_v3): Define.
2563         [BZ #3745]
2564         * locale/programs/ld-collate.c (handle_ellipsis): Fix generation
2565         of names for ellipsises.
2567         [BZ #3348]
2568         * malloc/memusage.sh: Cleanups.
2569         * debug/xtrace.sh: Quoting and trap changes.
2571 2007-02-16  Ulrich Drepper  <drepper@redhat.com>
2573         * locale/iso-3166.def: Add Jersey, Guernsey, and Isle Of Man entries.
2575         * locale/iso-3166.def: Update entry for Serbia.
2576         * locale/iso-4217.def: Define RSD, remove CSD.
2578         * sysdeps/x86_64/bits/atomic.h: One more change, this time for 16-
2579         and 64-bit operations.
2581         [BZ #4040]
2582         * sysdeps/i386/i486/bits/atomic.h: One more change, this time for
2583         16-bit operations.
2585         * nscd/nscd.c (parse_opt): One more conversion to use send instead
2586         of writev.
2588 2007-02-15  Ulrich Drepper  <drepper@redhat.com>
2590         [BZ #3991]
2591         * assert/assert.h (assert): Simplify.
2592         (assert_perror): Likewise.
2593         Patch by Israel G. Lugo <ilugo@bridonsecurity.com>.
2595         * nscd/nscd_helper.c (open_socket): Don't send padding bytes from
2596         reqdata.
2598         * sysdeps/unix/sysv/linux/x86_64/send.c (__libc_send): Cosmetic
2599         change: don't pass NULL in place of an integer.
2601 2007-02-02  Bruno Haible  <bruno@clisp.org>
2603         [BZ #3954]
2604         * iconvdata/ksc5601.c (__ksc5601_sym_to_ucs, __ksc5601_sym_from_ucs):
2605         Add mapping for U+327E.
2606         * iconvdata/ksc5601.h (KSC5601_SYMBOL): Increment.
2607         * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
2608         mapping of 0xD9 0xE8.
2609         * iconvdata/uhc.c (BODY for FROM_LOOP, BODY for TO_LOOP): Disable
2610         mapping of U+327E.
2611         Reported by Jungshik Shin <jungshik@google.com>.
2613         [BZ #3955]
2614         * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
2615         mapping of 0xD9 0xE6 and of 0xD9 0xE7.
2616         Reported by Jungshik Shin <jungshik@google.com>.
2618 2007-02-14  Ulrich Drepper  <drepper@redhat.com>
2620         * sysdeps/x86_64/bits/atomic;h: Fix asm parameters for some
2621         byte variants.
2623         [BZ #4040]
2624         * sysdeps/i386/i486/bits/atomic.h: Fix asm parameters for some
2625         byte variants.  Patch mostly be tom@tommay.net.
2627 2007-02-14  Jakub Jelinek  <jakub@redhat.com>
2629         [BZ #3996]
2630         * posix/glob.c (attribute_hidden): Define if not defined.
2631         (glob): Unescape dirname, filename or username when needed and not
2632         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
2633         is NULL.  Handle unescaped [ in pattern without closing ].
2634         Don't pass GLOB_CHECK down to recursive glob for directories.
2635         (__glob_pattern_type): New function.
2636         (__glob_pattern_p): Implement using __glob_pattern_type.
2637         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
2638         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
2639         Remove unreachable code.
2640         * posix/globtest.sh: Add a couple of new tests.
2642 2007-02-13  Ulrich Drepper  <drepper@redhat.com>
2644         * po/ru.po: Update from translation team.
2646 2007-02-12  Jakub Jelinek  <jakub@redhat.com>
2648         * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __amdfam10__
2649         to the list of i486+ CPUs.
2650         * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
2652 2007-02-12  Ulrich Drepper  <drepper@redhat.com>
2654         * elf/rtld.c (RESOLVE_MAP): Always return bootstrap_map reference.
2655         * elf/Makefile ($(objpfx)ld.so): Check that ld.so has no undefined
2656         references.
2658 2007-02-09  Ulrich Drepper  <drepper@redhat.com>
2660         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Remove incorrect comment.
2662         * resolv/res_init.c (res_setoptions): Recognize edns0 option.
2663         * resolv/res_mkquery.c: Define __res_nopt.
2664         * resolv/res_query.c (__libc_res_nquery): If RES_USE_EDNS0 is set
2665         try adding EDNS0 record.
2666         * resolv/res_send.c (send_dg): If request failed with FORMERR and
2667         EDNS0 record was send make sure we don't try it again.
2668         * resolv/resolv.h: Define RES_F_EDNS0ERR and RES_USE_EDNS0.
2669         * include/resolv.h: Declare __res_nopt.
2671 2007-02-08  Jakub Jelinek  <jakub@redhat.com>
2673         [BZ #3944]
2674         * time/strptime_l.c (__strptime_internal): Set have_mon for
2675         %b/%B/%h.  Set have_mon and have_mday if tm_mon and tm_mday
2676         have been computed from tm_yday and tm_year.  Don't crash
2677         in day_of_the_week or day_of_the_year if not have_mon
2678         and tm_mon contains bogus value.
2679         * time/Makefile (tests): Add tst-strptime3.
2680         * time/tst-strptime3.c: New test.
2682 2007-02-05  Jakub Jelinek  <jakub@redhat.com>
2684         [BZ #3957]
2685         * posix/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
2686         bit for RE_HAT_LISTS_NOT_NEWLINE.
2687         (build_charclass_op): Remove bogus comment.
2688         * posix/Makefile (tests): Add bug-regex27 and bug-regex28.
2689         * posix/bug-regex27.c: New test.
2690         * posix/bug-regex28.c: New test.
2692 2007-02-03  Ulrich Drepper  <drepper@redhat.com>
2694         * po/sv.po: Update from translation team.
2696 2007-02-02  Ulrich Drepper  <drepper@redhat.com>
2698         * nscd/nscd_helper.c (open_socket): Minor size optimization.
2700 2007-02-02  Jakub Jelinek  <jakub@redhat.com>
2702         * include/locale.h (__uselocale): Add libc_hidden_proto.
2703         * locale/uselocale.c (__uselocale): Add libc_hidden_def.
2705         * nscd/nscd_helper.c (open_socket): Use __gettimeofday instead of
2706         gettimeofday.
2708 2007-02-01  Ulrich Drepper  <drepper@redhat.com>
2710         * sysdeps/unix/sysv/linux/i386/sysdep.h (PTR_MANGLE): Roll value before
2711         returning.
2712         (PTR_DEMANGLE): Real definition now that it's not the same as
2713         PRT_MANGLE anymore.
2714         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
2716         * string/strerror_l.c: New file.
2717         * string/Makefile (routines): Add strerror_l.
2718         * string/string.h: Declare strerror_l.
2719         * string/Versions: Export strerror_l for GLIBC_2.6.
2721 2007-01-31  Ulrich Drepper  <drepper@redhat.com>
2723         * nscd/nscd_helper.c (open_socket): Now takes request type and key
2724         as parameter.  Construct request record.  Try sending request
2725         before the first poll use, it usually succeeds.  Adjust all
2726         callers.
2727         * nscd/nscd-client.h: Define MAXKEYLEN.
2728         * nscd/connections.c (nscd_run): Don't define MAXKEYLEN here.
2730 2007-01-31  Jakub Jelinek  <jakub@redhat.com>
2732         * nscd/nscd-client.h (__nscd_cache_search): Remove const qualifier
2733         from return value.
2734         * nscd/nscd_helper.c: Include string.h.
2735         (__nscd_cache_search): Remove const qualifier from return value.
2736         On strict alignment architectures check hash entry and data head
2737         alignment.
2738         * nscd/nscd_getpw_r.c (nscd_getpw_r): Don't crash or fail because
2739         mmapped data during GC cycle contains garbage.  If
2740         __nscd_drop_map_ref fails, decrement mapped->counter when returning
2741         error or if retrying with NO_MAPPING, only __nscd_unmap if counter
2742         dropped to 0.
2743         * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
2744         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
2745         * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
2746         * nscd/nscd_getai.c (__nscd_getai): Likewise.
2747         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
2749 2007-01-30  Ulrich Drepper  <drepper@redhat.com>
2751         * misc/hsearch_r.c (hdestroy_r): Remove unnecessary test.
2753 2007-01-26  Ulrich Drepper  <drepper@redhat.com>
2755         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Use register
2756         names not numbers in cfi_*.
2758 2007-01-26  Andreas Jaeger  <aj@suse.de>
2760         * sysdeps/unix/sysv/linux/sys/personality.h (ADDR_NO_RANDOMIZE,
2761         ADDR_LIMIT_3GB, PER_LINUX_32BIT, PER_LINUX32_3GB): Add.
2762         Correct values of PER_HPUX and PER_OSF4.
2764 2007-01-24  Ulrich Drepper  <drepper@redhat.com>
2766         * elf/dl-minimal.c: Undefine _itoa first.
2767         * stdio-common/_itoa.h: Define _itoa and _fitoa for 64-bit platforms.
2768         * malloc/mtrace.c: Revert last change.
2769         * posix/wordexp.c: Likewise.
2771 2007-01-24  Jakub Jelinek  <jakub@redhat.com>
2773         * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __nocona__, __core2__
2774         and __geode__ to the list of i486+ CPUs.
2775         * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
2777 2007-01-23  Ulrich Drepper  <drepper@redhat.com>
2779         * stdio-common/_itoa.c: Include <limits.h>.
2780         * stdio-common/_itowa.c: Likewise.
2782 2007-01-22  Ulrich Drepper  <drepper@redhat.com>
2784         * stdio-common/_itowa.c: Don't compile _itowa for 64-bit
2785         platforms.
2786         * stdio-common/_itoa.c: Don't compile in _itoa and _fitoa for
2787         64-bit platforms.
2788         * malloc/mtrace.c (tr_where): Use _fitoa_word instead of _fitoa if
2789         possible.
2790         * posix/wordexp.c (parse_arith): Use _itoa_word instead of _itoa
2791         if possible.
2793         [BZ #3902]
2794         * stdio-common/_itoa.c (_itoa): Make sure at least a zero is emitted.
2795         * stdio-common/Makefile (tests): Add bug17.
2796         * stdio-common/bug17.c: New file.
2798 2007-01-19  Ulrich Drepper  <drepper@redhat.com>
2800         * iconvdata/brf.c: New file.
2801         * iconvdata/testdata/BRF: New file.
2802         * iconvdata/testdata/BRF..UTF8: New file.
2803         Contributed by Samuel Thibault <samuel.thibault@ens-lyon.org>.
2804         * iconvdata/Makefile: Add rules to build BRF.
2805         * iconvdata/TESTS: Add BRF entry.
2806         * iconvdata/gconv-modules: Likewise.
2807         * iconvdata/tst-tables.sh: Likewise.
2809 2007-01-18  Anton Nikishaev  <anton.nik@gmail.com>
2811         * wcsmbs/wchar.h (wcstoll): Fix comment, function returns value of
2812         type `long long int', not `long int'.
2813         (wcstoq): Likewise.
2815 2007-01-18  Ulrich Drepper  <drepper@redhat.com>
2817         * scripts/gen-as-const.awk: Add cast to long to avoid int promotion
2818         of values on 64-bit platforms which are too large.
2820 2007-01-12  Steven Munroe  <sjmunroe@us.ibm.com>
2821             Joe Kerian  <jkerian@us.us.ibm.com>
2823         [BZ #2749]
2824         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Include
2825         <math_ldbl_opt.h>.  Remove weak_alias.  Use long_double_symbol macro.
2826         (__copysignl): Use signbit() for comparison.
2827         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Correct parms for
2828         SET_LDOUBLE_WORDS64.
2830         [BZ #2423, #2749]
2831         * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Don't include <fenv_libc.h>.
2832         (__ceill): Remove calls to fegetround(), fesetround().
2833         * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
2834         * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
2835         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
2837 2007-01-17  Jakub Jelinek  <jakub@redhat.com>
2839         * nscd/nscd_getserv_r.c (nscd_getserv_r): Fix pastos.
2841         * sysdeps/unix/sysv/linux/getdents.c (offsetof): Remove.
2843 2007-01-17  Ulrich Drepper  <drepper@redhat.com>
2845         * sysdeps/unix/sysv/linux/fatal-prepare.h: Use PTHFCT_CALL to
2846         demangle pointer.
2847         * csu/libc-start.c: Likewise.
2849 2007-01-16  Ulrich Drepper  <drepper@redhat.com>
2851         * sysdeps/posix/system.c: Remove NO_WAITPID support, it cannot
2852         really work anyway.
2854 2007-01-15  Ulrich Drepper  <drepper@redhat.com>
2856         * nscd/connections.c (servinfo): Renamed to reqinfo.  Change all
2857         users.
2858         (handle_request): Remove unnecessary tests.
2860         * nscd/cache.c (cache_add): Record the failure to add to the cache.
2862 2007-01-15  Jakub Jelinek  <jakub@redhat.com>
2864         * soft-fp/op-common.h (FP_TRUNC): When truncating a NaN, clear
2865         workbits in semi-raw fraction.
2867         * math/test-misc.c: Add new tests.
2869 2007-01-14  Steven Munroe  <sjmunroe@us.ibm.com>
2871         * math/basic-test.c: Include test-skeleton.c.
2872         (TEST_TRUNC): Define.
2873         (truncdfsf_test, trunctfsf_test, trunctfdf_test): New.
2874         (main): Rename to ...
2875         (do_test): ...this.  Run new tests.
2876         (TEST_FUNCTION): Define.
2878 2006-10-05  Steven Munroe  <sjmunroe@us.ibm.com>
2879             Joe Kerian  <jkerian@us.us.ibm.com>
2881         [BZ #2749]
2882         * soft-fp/op-4.h (__FP_FRAC_SUB_3, __FP_FRAC_SUB_4): Correct borrow
2883         handling for high words.
2884         * soft-fp/op-common.h (_FP_OVERFLOW_SEMIRAW): Always set inexact
2885         and overflow for infinity.
2887 2007-01-15  Ulrich Drepper  <drepper@redhat.com>
2889         * nscd/connections.c (handle_request): Add a __builtin_expect.
2891         * nscd/connections.c (serv2db): Change type into structure which
2892         also says whether this is a request for data.  Renamed to
2893         servinfo.  All users changed.
2894         (handle_request): Much simpler test whether we should search the cache.
2896         * nscd/connections.c (handle_request): Fix thinko in selinux test
2897         invocation.
2899         * sysdeps/generic/ldsodefs.h: Define DL_LOOKUP_SCOPE_LOCK.
2900         * elf/dl-lookup.c (add_dependency): If scope map is locked, unlock
2901         it before getting dl_load_lock and then relock.
2902         (_dl_lookup_symbol_x): Pass flags to add_dependency.
2903         When rerunning _dl_lookup_symbol_x, compute symbol_scope again in
2904         case we unlocked the scope.
2905         * elf/dl-runtime.c (_dl_fixup): Pass DL_LOOKUP_SCOPE_LOCK to
2906         _dl_lookup_symbol_x in case we locked the scope.
2907         (_dl_profile_fixup): Likewise.
2908         * elf/dl-sym.c (do_sym): In flags passed to call_dl_lookup, also
2909         set DL_LOOKUP_SCOPE_LOCK.
2911 2007-01-13  Ulrich Drepper  <drepper@redhat.com>
2913         * inet/Makefile: Define CFLAGS-getsrvbynm_r.c and
2914         CFLAGS-getsrvbynpt_r.c.
2915         * nscd/getsrvbynm_r.c: New file.
2916         * nscd/getsrvbypt_r.c: New file.
2917         * nscd/nscd_getserv_r.c: New file.
2918         * nscd/servicescache.c: New file.
2919         * nscd/Makefile (routines): Add nscd_getserv_r.
2920         (nscd-modules): Add getsrvbynm_r, getsrvbypt_r, and servicescache.
2921         Define CFLAGS-servicescache.c, CFLAGS-getsrvbynm_r.c, and
2922         CFLAGS-getsrvbypt_r.c.
2923         * nscd/cache.c (prune_cache): Rewrite to get re-add function from
2924         table.  Add entries for services database.
2925         * nscd/connections.c (serv2str): Mark as const.  Add entries for
2926         services database.
2927         (dbs): Add .reset_res and servdb initialization.
2928         (serv2db): Add entries for services database.
2929         (verify_persistent_db): Accept dbnr == servdb.
2930         (invalidate_cache): Rewrite database name recognition to use a table.
2931         Call res_init() if .reset_res is set for database.
2932         (handle_request): Add code to handle services database.
2933         * nscd/gai.c: Don't define __getservbyname_r.
2934         * nscd/nscd-client.h (request_type): Remove LASTDBREQ, add
2935         GETSERVBYNAME, GETSERVBYPORT, GETFDSERV.
2936         (serv_response_header): Define.
2937         (struct datahead): Add serv_response_header member.
2938         * nscd/nscd.c (parse_opt): Rewrite parsing of -i parameter value
2939         using table.
2940         * nscd/nscd.conf: Add entries for services database.
2941         * nscd/nscd.h: Adjust declaration of dbnames and serv2str.
2942         Declare serv_iov_disabled.
2943         Declare addservbyname, readdservbyname, addservbyport, and
2944         readdservbyport.
2945         * nscd/nscd_conf.c (dbnames): Mark as const.  Add services entry.
2946         (find_db): Fix error message.
2947         * nscd/nscd_proto.h: Declare __nss_not_use_nscd_services,
2948         __nscd_getservbyname_r, and __nscd_getservbyport_r.
2949         * nscd/selinux.c (perms): Add entries for services database.
2950         * nss/Versions: Export __nss_services_lookup with GLIBC_PRIVATE.
2951         * nss/nsswitch.c (__nss_disable_nscd): Also disable services database.
2953         * nscd/grpcache.c: Remove obsolete code.  Cleanups.
2954         * nscd/hstcache.c: Likewise.
2955         * nscd/pwdcache.c: Likewise.
2957         * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r): Correct
2958         computation of keylen.
2960         * include/string.h: Only redefine strndupa if this is really for
2961         libc code.
2963 2007-01-12  Ulrich Drepper  <drepper@redhat.com>
2965         * nscd/nscd_gethst_r.c: Minor cleanups.
2967         * nscd/connections.c (handle_request): Check selinux permissions
2968         for all non-admin commands.
2970         * sysdeps/i386/i486/bits/atomic.h: Define
2971         atomic_compare_and_exchange_val_acq,
2972         atomic_compare_and_exchange_bool_acq, and atomic_exchange_and_add
2973         using __sync_* built-ins for gcc >= 4.1.
2974         * sysdeps/x86_64/bits/atomic.h: Likewise.
2976         [BZ #3840]
2977         * scripts/check-local-headers.sh: Restrict to testing .o.d, .os.d,
2978         and .oS.d files.
2980 2007-01-05  Steven Munroe  <sjmunroe@us.ibm.com>
2982         * stdlib/tst-makecontext.c: Include errno.h.  Change main()
2983         to do_test().  Define TEST_FUNCTION. Include test-skeleton.c.
2984         (do_test): Check errno and exit(0) if ENOSYS.
2986 2007-01-11  Jakub Jelinek  <jakub@redhat.com>
2988         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix handling of multi-byte
2989         thousands separators.
2990         * stdlib/Makefile: Add rules to build and run tst-strtod4.
2991         * stdlib/tst-strtod4.c: New test.
2993         [BZ #3855]
2994         * stdlib/strtod_l.c (____STRTOF_INTERNAL): 0x. not followed by
2995         hexadecimal digit should accept just the initial 0.
2996         * stdlib/tst-strtod2.c (tests): New variable.
2997         (do_test): Run several tests rather than just one.
2999 2007-01-11  Jakub Jelinek  <jakub@redhat.com>
3001         * sysdeps/i386/soft-fp/sfp-machine.h: Remove.
3002         * sysdeps/x86_64/soft-fp/sfp-machine.h: Likewise.
3004 2007-01-10  Ulrich Drepper  <drepper@redhat.com>
3006         * io/fts.c: Make sure fts_cur is always valid after return from
3007         fts_read.
3008         Patch by Miloslav Trmac <mitr@redhat.com>.
3010 2006-10-27  Richard Sandiford  <richard@codesourcery.com>
3012         * elf/elf.h (R_MIPS_GLOB_DAT): Define.
3013         (R_MIPS_NUM): Bump by 1.
3015 2007-01-03  Jakub Jelinek  <jakub@redhat.com>
3017         * posix/execvp.c: Include alloca.h.
3018         (allocate_scripts_argv): Renamed to...
3019         (scripts_argv): ... this.  Don't allocate buffer here nor count
3020         arguments.
3021         (execvp): Use alloca if possible.
3022         * posix/Makefile: Add rules to build and run tst-vfork3 test.
3023         * posix/tst-vfork3.c: New test.
3025 2007-01-03  Ulrich Drepper  <drepper@redhat.com>
3027         * string/Makefile (tst-strxfrm2-ENV): Define.
3028         * stdlib/Makefile (tst-strtod3-ENV): Define.
3030 2007-01-02  Ulrich Drepper  <drepper@redhat.com>
3032         * posix/getconf.c: Update copyright year.
3033         * nss/getent.c: Likewise.
3034         * iconv/iconvconfig.c: Likewise.
3035         * iconv/iconv_prog.c: Likewise.
3036         * elf/ldconfig.c: Likewise.
3037         * catgets/gencat.c: Likewise.
3038         * csu/version.c: Likewise.
3039         * elf/ldd.bash.in: Likewise.
3040         * elf/sprof.c (print_version): Likewise.
3041         * locale/programs/locale.c: Likewise.
3042         * locale/programs/localedef.c: Likewise.
3043         * nscd/nscd.c (print_version): Likewise.
3044         * debug/xtrace.sh: Likewise.
3045         * malloc/memusage.sh: Likewise.
3046         * malloc/mtrace.pl: Likewise.
3047         * debug/catchsegv.sh: Likewise.
3049 2006-12-24  Ulrich Drepper  <drepper@redhat.com>
3051         * malloc/malloc.c (sYSMALLOc): Remove some unnecessary alignment
3052         attempts.
3054 2006-12-23  Ulrich Drepper  <drepper@redhat.com>
3056         * posix/wordexp.c: Remove some unnecessary tests.
3058 2006-12-22  Gavin Romig-Koch  <gavin@redhat.com>
3060         * nis/nss_compat/compat-grp.c (internal_getgrgid_r): Don't
3061         blacklist the group till after we look it up.
3063 2006-12-21  Ulrich Drepper  <drepper@redhat.com>
3065         * include/atomic.h (atomic_forced_read): New macro.
3067 2006-12-20  SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
3069         * sysdeps/unix/sysv/linux/sh/bits/shm.h: New file.
3071 2006-12-19  Jakub Jelinek  <jakub@redhat.com>
3073         * nss/getXXbyYY_r.c: Include atomic.h.
3074         (INTERNAL (REENTRANT_NAME)): Write startp after start_fct,
3075         add atomic_write_barrier () in between.
3077         * stdlib/Makefile (tests): Add tst-makecontext.
3078         * stdlib/tst-makecontext.c: New test.
3080         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
3081         (__makecontext): Don't realign uc_mcontext.uc_regs.
3083 2006-11-28  Jakub Jelinek  <jakub@redhat.com>
3085         * elf/dl-support.c: Include dl-procinfo.h.
3086         * sysdeps/powerpc/dl-procinfo.h (PPC_PLATFORM_POWER4,
3087         PPC_PLATFORM_PPC970, PPC_PLATFORM_POWER5, PPC_PLATFORM_POWER5_PLUS,
3088         PPC_PLATFORM_POWER6, PPC_PLATFORM_CELL_BE, PPC_PLATFORM_POWER6X):
3089         Define.
3090         (_dl_string_platform): Use PPC_PLATFORM_* macros instead of
3091         hardcoded constants.
3092         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platform): Use
3093         PPC_PLATFORM_* macros for array designators.
3095 2006-11-11  Steven Munroe  <sjmunroe@us.ibm.com>
3097         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 3 new cap
3098         names to the beginning.
3099         (_dl_powerpc_platforms): Add "power6x".
3100         * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
3101         (HWCAP_IMPORTANT): Add PPC_FEATURE_HAS_DFP.
3102         (_DL_PLATFORMS_COUNT): Increase.
3103         (_dl_string_platform): Handle power6x case.
3104         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_PA6T, PPC_FEATURE_HAS_DFP,
3105         PPC_FEATURE_POWER6_EXT): Define.
3106         (PPC_FEATURE_POWER5, PPC_FEATURE_POWER5_PLUS): Correct Comment.
3108 2006-12-18  Jakub Jelinek  <jakub@redhat.com>
3110         [BZ #3747]
3111         * stdlib/jrand48_r.c (__jrand48_r): Make sure result is in the
3112         [-2^31 .. 2^31) range.
3113         * stdlib/tst-rand48.c (main): Fix expected values for 64-bit
3114         targets.
3115         * stdlib/tst-rand48-2.c: New test.
3116         * stdlib/Makefile (tests): Add tst-rand48-2.
3118 2006-12-14  Jakub Jelinek  <jakub@redhat.com>
3120         * misc/tst-pselect.c (do_test): Fix sigblock argument.
3122 2006-12-14  Ulrich Drepper  <drepper@redhat.com>
3124         * misc/tst-pselect.c (do_test): Make sure the helper process is
3125         terminating when the test is aborted.
3127 2006-12-13  Ulrich Drepper  <drepper@redhat.com>
3129         * sysdeps/unix/sysv/linux/bits/statvfs.h: Define ST_RELATIME.
3130         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
3131         Handle relatime mount option.
3133         [BZ #2337]
3134         * libio/Makefile (tests): Add tst-setvbuf1.
3135         * libio/tst-setvbuf1.c: New file.
3137 2006-12-08  Jakub Jelinek  <jakub@redhat.com>
3139         [BZ #2337]
3140         * libio/genops.c (__uflow): Fix a typo.
3141         * libio/wfiledoalloc.c (_IO_wfile_doallocate): Don't stat
3142         nor set _IO_LINE_BUF bit here.  Size the wide buffer based on
3143         the narrow buffer size.
3145 2006-11-24  Jakub Jelinek  <jakub@redhat.com>
3147         [BZ #2337]
3148         * libio/libio.h (_IO_FLAGS2_USER_WBUF): Define.
3149         * libio/wgenops.c (_IO_wsetb, _IO_wdefault_finish): Test and set
3150         _IO_FLAGS2_USER_WBUF bit in _flags2 instead of _IO_USER_BUF bit
3151         in _flags.
3152         * libio/wstrops.c (_IO_wstr_overflow, enlarge_userbuf,
3153         _IO_wstr_finish): Likewise.
3154         * libio/wmemstream.c (open_wmemstream): Likewise.
3155         * libio/fileops.c (_IO_new_file_close_it): Call _IO_set[bgp]
3156         even for wide streams.
3158 2006-12-13  Jakub Jelinek  <jakub@redhat.com>
3160         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Include
3161         kernel-features.h.
3163 2006-12-11  Ulrich Drepper  <drepper@redhat.com>
3165         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Parse thousand
3166         separators also if no non-zero digits found.
3167         * stdlib/Makefile (tests): Add tst-strtod3.
3169 2006-12-09  Ulrich Drepper  <drepper@redhat.com>
3171         [BZ #3632]
3172         * include/features.h: Fix comment about default value for
3173         _POSIX_C_SOURCE.
3175         [BZ #3664]
3176         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix test to recognize
3177         empty parsed strings.
3178         * stdlib/Makefile (tests): Add tst-strtod2.
3179         * stdlib/tst-strtod2.c: New file.
3181         [BZ #3673]
3182         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix exp_limit
3183         computation.
3184         * stdlib/Makefile (tests): Add tst-atof2.
3185         * stdlib/tst-atof2.c: New file.
3187         [BZ #3674]
3188         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Adjust exponent value
3189         correctly if removing trailing zero of hex-float.
3190         * stdlib/Makefile (tests): Add tst-atof1.
3191         * stdlib/tst-atof1.c: New file.
3193 2006-12-09  Jakub Jelinek  <jakub@redhat.com>
3195         * misc/mntent_r.c (__hasmntopt): Check p[optlen] even when p == rest.
3196         Start searching for next comma at p rather than rest.
3197         * misc/Makefile (tests): Add tst-mntent2.
3198         * misc/tst-mntent2.c: New test.
3200         * misc/getusershell.c (initshells): Check for integer overflows.
3201         Make strings buffer one bigger as fgets always succeeds when second
3202         argument is 1.  Don't use calloc for shells array.  Disallow
3203         / as shell.
3205 2006-12-08  Ulrich Drepper  <drepper@redhat.com>
3207         * malloc/memusage.c: Handle realloc with new size of zero and
3208         non-NULL pointer correctly.
3209         (me): Really write first record twice.
3210         (struct entry): Make format bi-arch safe.
3211         (dest): Write out more realloc statistics.
3212         * malloc/memusagestat.c (struct entry): Make format bi-arch safe.
3214 2006-12-05  Jakub Jelinek  <jakub@redhat.com>
3216         * nis/nis_subr.c (nis_getnames): Revert last change.
3218 2006-12-04  Jakub Jelinek  <jakub@redhat.com>
3220         * sysdeps/unix/sysv/linux/ttyname.c: Include termios.h.
3221         (ttyname): Use tcgetattr instead of isatty, don't set errno to ENOTTY.
3222         * sysdeps/unix/sysv/linux/ttyname_r.c: Include termios.h.
3223         (__ttyname_r): Use tcgetattr instead of isatty, don't set errno to
3224         ENOTTY.
3225         * io/Makefile: Add rules to build and run tst-ttyname_r test.
3226         * io/tst-ttyname_r.c: New test.
3228 2006-12-03  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
3230         * sysdeps/unix/sysv/linux/sh/sys/io.h: Removed.
3232 2006-11-30  H.J. Lu  <hongjiu.lu@intel.com>
3234         * sysdeps/i386/i686/memcmp.S: Use jump table as the base of
3235         jump table entries.
3237 2006-11-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
3239         * sysdeps/unix/sysv/linux/i386/clone.S: Provide CFI for the outermost
3240         `clone' function to ensure proper unwinding stop of gdb.
3241         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
3243 2006-12-01  Ulrich Drepper  <drepper@redhat.com>
3245         * nscd/nscd.init: Remove obsolete and commented-out -S option
3246         handling.
3248 2006-11-23  Jakub Jelinek  <jakub@redhat.com>
3250         [BZ #3514]
3251         * manual/string.texi (strncmp): Fix pastos from wcscmp description.
3253         [BZ #3515]
3254         * manual/string.texi (strtok): Remove duplicate paragraph.
3256 2006-12-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
3258         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Fix compatibility with
3259         libgcc not supporting `rflags' unwinding (register # >= 17).
3261 2006-11-30  Jakub Jelinek  <jakub@redhat.com>
3263         * sunrpc/svc_run.c (svc_run): Set my_pollfd to new_pollfd if realloc
3264         succeeded.
3266 2006-11-29  Daniel Jacobowitz  <dan@codesourcery.com>
3267             Jakub Jelinek  <jakub@redhat.com>
3268             Jan Kratochvil  <jan.kratochvil@redhat.com>
3270         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (restore_rt): Add correct
3271         unwind information.
3272         * sysdeps/unix/sysv/linux/x86_64/Makefile: Provide symbols for
3273         'restore_rt' even in the 'signal' directory.
3274         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.sym: Extend the regs list.
3276 2006-11-27  Jakub Jelinek  <jakub@redhat.com>
3278         [BZ #3559]
3279         * sunrpc/svc_run.c (svc_run): Fail instead of segfaulting if
3280         malloc crashed.  Don't allocate memory unnecessarily in each
3281         loop.
3283 2006-10-21  Jakub Jelinek  <jakub@redhat.com>
3285         * resolv/mapv4v6addr.h (map_v4v6_address): Fix last change.
3287 2006-11-20  Ulrich Drepper  <drepper@redhat.com>
3289         * resolv/mapv4v6addr.h (map_v4v6_address): Optimize a bit.
3291 2006-11-18  Bruno Haible  <bruno@clisp.org>
3293         * sysdeps/unix/sysv/linux/i386/getgroups.c (__getgroups): Invoke
3294         __sysconf only after having tried to call getgroups32.
3296 2006-11-19  Ulrich Drepper  <drepper@redhat.com>
3298         * nss/nss_files/files-hosts.c (LINE_PARSER): Support IPv6-style
3299         addresses for IPv4 queries if they can be mapped.
3301 2006-11-16  Jakub Jelinek  <jakub@redhat.com>
3303         * sysdeps/x86_64/fpu/s_copysignf.S (__copysignf): Switch to .text.
3304         * sysdeps/x86_64/fpu/s_copysign.S (__copysign): Likewise.
3305         (signmask): Add .size directive.
3306         (othermask): Add .type directive.
3308 2006-11-14  Ulrich Drepper  <drepper@redhat.com>
3310         * po/nl.po: Update from translation team.
3312         * timezone/zdump.c: Redo fix for BZ #3137.
3314 2006-11-14  Jakub Jelinek  <jakub@redhat.com>
3316         * nss/nss_files/files-alias.c (get_next_alias): Set line back
3317         to first_unused after parsing :include: file.
3319 2006-11-10  Ulrich Drepper  <drepper@redhat.com>
3321         * timezone/africa: Update from tzdata2006o.
3322         * timezone/antarctica: Likewise.
3323         * timezone/asia: Likewise.
3324         * timezone/australasia: Likewise.
3325         * timezone/backward: Likewise.
3326         * timezone/europe: Likewise.
3327         * timezone/iso3166.tab: Likewise.
3328         * timezone/northamerica: Likewise.
3329         * timezone/southamerica: Likewise.
3330         * timezone/zone.tab: Likewise.
3332         * time/tzfile.c (__tzfile_read): Extend to handle new file format
3333         on machines with 64-bit time_t.
3335         * timezone/checktab.awk: Update from tzcode2006o.
3336         * timezone/ialloc.c: Likewise.
3337         * timezone/private.h: Likewise.
3338         * timezone/scheck.c: Likewise.
3339         * timezone/tzfile.h: Likewise.
3340         * timezone/tzselect.ksh: Likewise.
3341         * timezone/zdump.c: Likewise.
3342         * timezone/zic.c: Likewise.
3344         [BZ #3483]
3345         * elf/ldconfig.c (main): Call setlocale and textdomain.
3346         Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
3348         [BZ #3480]
3349         * manual/argp.texi: Fix typos.
3350         * manual/charset.texi: Likewise.
3351         * manual/errno.texi: Likewise.
3352         * manual/filesys.texi: Likewise.
3353         * manual/lang.texi: Likewise.
3354         * manual/maint.texi: Likewise.
3355         * manual/memory.texi: Likewise.
3356         * manual/message.texi: Likewise.
3357         * manual/resource.texi: Likewise.
3358         * manual/search.texi: Likewise.
3359         * manual/signal.texi: Likewise.
3360         * manual/startup.texi: Likewise.
3361         * manual/stdio.texi: Likewise.
3362         * manual/sysinfo.texi: Likewise.
3363         * manual/syslog.texi: Likewise.
3364         * manual/time.texi: Likewise.
3365         Patch by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3367         [BZ #3465]
3368         * sunrpc/clnt_raw.c: Minimal message improvements.
3369         * sunrpc/pm_getmaps.c: Likewise.
3370         * nis/nss_nisplus/nisplus-publickey.c: Likewise.
3371         * nis/nis_print_group_entry.c: Likewise.
3372         * locale/programs/repertoire.c: Likewise.
3373         * locale/programs/charmap.c: Likewise.
3374         * malloc/memusage.sh: Likewise.
3375         * elf/dl-deps.c: Likewise.
3376         * locale/programs/ld-collate.c: Likewise.
3377         * libio/vswprintf.c: Likewise.
3378         * malloc/memusagestat.c: Likewise.
3379         * sunrpc/auth_unix.c: Likewise.
3380         * sunrpc/rpc_main.c: Likewise.
3381         * nscd/cache.c: Likewise.
3382         * locale/programs/repertoire.c: Unify output messages.
3383         * locale/programs/charmap.c: Likewise.
3384         * locale/programs/ld-ctype.c: Likewise.
3385         * locale/programs/ld-monetary.c: Likewise.
3386         * locale/programs/ld-numeric.c: Likewise.
3387         * locale/programs/ld-time.c: Likewise.
3388         * elf/ldconfig.c: Likewise.
3389         * nscd/selinux.c: Likewise.
3390         * elf/cache.c: Likewise.
3391         Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
3393         [BZ #3451]
3394         * sysdeps/i386/fpu/bits/mathinline.h (floor): Make rounding mode
3395         change atomic.
3396         (ceil): Likewise.
3398 2006-11-10  Jakub Jelinek  <jakub@redhat.com>
3400         * string/strxfrm_l.c (STRXFRM): Fix trailing \1 optimization
3401         if N is one bigger than return value.
3402         * string/tst-strxfrm2.c (do_test): Also test strxfrm with l1 + 1
3403         and l1 last arguments, if buf is defined, verify the return value
3404         equals to strlen (buf) and verify no byte beyond passed length
3405         is modified.
3407 2006-11-10  Ulrich Drepper  <drepper@redhat.com>
3409         * po/sv.po: Update from translation team.
3411 2006-11-09  Ulrich Drepper  <drepper@redhat.com>
3413         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word): Add
3414         noinline attribute.
3416 2006-11-10  Jakub Jelinek  <jakub@redhat.com>
3418         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Add
3419         noinline attribute.
3421         * sysdeps/gnu/siglist.c (__old_sys_siglist, __old_sys_sigabbrev):
3422         Use __new_sys_siglist instead of _sys_siglist_internal as
3423         second macro argument.
3424         (_old_sys_siglist): Use declare_symbol_alias macro instead of
3425         strong_alias.
3427 2006-11-09  Ulrich Drepper  <drepper@redhat.com>
3429         [BZ #3493]
3430         * posix/unistd.h (sysconf): Remove const attribute.
3432         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix test for
3433         temporary or deprecated addresses.
3434         Patch by Sridhar Samudrala <sri@us.ibm.com>.
3436         * string/Makefile (tests): Add tst-strxfrm2.
3437         * string/tst-strxfrm2.c: New file.
3439 2006-10-09  Jakub Jelinek  <jakub@redhat.com>
3441         * elf/dl-debug.c (_dl_debug_initialize): Check r->r_map for 0
3442         rather than r->r_brk.
3444 2006-11-08  Jakub Jelinek  <jakub@redhat.com>
3446         * string/strxfrm_l.c (STRXFRM): Do the trailing \1 removal
3447         optimization even if needed > n.
3449         * elf/dl-load.c (decompose_rpath): Return bool rather than void.
3450         If l->l_name is on inhibit_rpath list, set sps->dirs to -1 and
3451         return false, otherwise return true.
3452         (cache_rpath): Return decompose_rpath return value.
3454 2006-11-07  Jakub Jelinek  <jakub@redhat.com>
3456         * include/libc-symbols.h (declare_symbol): Rename to...
3457         (declare_symbol_alias): ... this.  Add ORIGINAL argument, imply
3458         strong_alias (ORIGINAL, SYMBOL) in asm to make sure it preceedes
3459         .size directive.
3460         * sysdeps/gnu/errlist-compat.awk: Adjust for declare_symbol_alias
3461         changes.
3462         * sysdeps/gnu/siglist.c: Likewise.
3464 2006-11-03  Steven Munroe  <sjmunroe@us.ibm.com>
3466         * sysdeps/powerpc/fpu/bits/mathinline.h
3467         [__LIBC_INTERNAL_MATH_INLINES]: Moved to ...
3468         * sysdeps/powerpc/fpu/math_private.h: ...here.  New file.
3470 2006-11-05  Ulrich Drepper  <drepper@redhat.com>
3472         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
3473         Update handling of cache descriptor 0x49 for new models.
3474         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word):
3475         Likewise.
3477 2006-11-02  Jakub Jelinek  <jakub@redhat.com>
3479         * malloc/memusage.c (dest): Reset not_me back to false after
3480         printing statistics.
3482 2006-11-02  Ulrich Drepper  <drepper@redhat.com>
3484         * configure.in: Work around ld --help change and avoid -z relro
3485         test completely if the architecture doesn't care about security.
3487 2006-11-01  Ulrich Drepper  <drepper@redhat.com>
3489         * po/sv.po: Update from translation team.
3491 2006-10-31  Ulrich Drepper  <drepper@redhat.com>
3493         * stdlib/atexit.c (atexit): Don't mark as hidden when used to
3494         generate compatibility version.
3496 2006-10-29  Ulrich Drepper  <drepper@redhat.com>
3498         * configure.in: Relax -z relro requirement a bit.
3500         * po/sv.po: Update from translation team.
3502 2006-10-29  Jakub Jelinek  <jakub@redhat.com>
3504         * elf/dl-sym.c (do_sym): Use RTLD_SINGLE_THREAD_P.
3505         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
3506         * elf/dl-close.c (_dl_close_worker): Likewise.
3507         * elf/dl-open.c (_dl_open_worker): Likewise.
3508         * sysdeps/generic/sysdep-cancel.h (RTLD_SINGLE_THREAD_P): Define.
3510 2006-10-27  Ulrich Drepper  <drepper@redhat.com>
3512         * configure.in: Require assembler support for visibility, compiler
3513         support for visibility and aliases, linker support for various -z
3514         options.
3515         * Makeconfig: Remove conditional code which now is unnecessary.
3516         * config.h.in: Likewise.
3517         * config.make.in: Likewise.
3518         * dlfcn/Makefile: Likewise.
3519         * elf/Makefile: Likewise.
3520         * elf/dl-load.c: Likewise.
3521         * elf/rtld.c: Likewise.
3522         * include/libc-symbols.h: Likewise.
3523         * include/stdio.h: Likewise.
3524         * io/Makefile: Likewise.
3525         * io/fstat.c: Likewise.
3526         * io/fstat64.c: Likewise.
3527         * io/fstatat.c: Likewise.
3528         * io/fstatat64.c: Likewise.
3529         * io/lstat.c: Likewise.
3530         * io/lstat64.c: Likewise.
3531         * io/mknod.c: Likewise.
3532         * io/mknodat.c: Likewise.
3533         * io/stat.c: Likewise.
3534         * io/stat64.c: Likewise.
3535         * libio/stdio.c: Likewise.
3536         * nscd/Makefile: Likewise.
3537         * stdlib/Makefile: Likewise.
3538         * stdlib/atexit.c: Likewise.
3539         * sysdeps/generic/ldsodefs.h: Likewise.
3540         * sysdeps/i386/dl-machine.h: Likewise.
3541         * sysdeps/i386/sysdep.h: Likewise.
3542         * sysdeps/i386/i686/memcmp.S: Likewise.
3543         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
3544         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
3545         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
3547         * Makerules: USE_TLS support is now default.
3548         * tls.make.c: Likewise.
3549         * csu/Versions: Likewise.
3550         * csu/libc-start.c: Likewise.
3551         * csu/libc-tls.c: Likewise.
3552         * csu/version.c: Likewise.
3553         * dlfcn/dlinfo.c: Likewise.
3554         * elf/dl-addr.c: Likewise.
3555         * elf/dl-cache.c: Likewise.
3556         * elf/dl-close.c: Likewise.
3557         * elf/dl-iteratephdr.c: Likewise.
3558         * elf/dl-load.c: Likewise.
3559         * elf/dl-lookup.c: Likewise.
3560         * elf/dl-object.c: Likewise.
3561         * elf/dl-open.c: Likewise.
3562         * elf/dl-reloc.c: Likewise.
3563         * elf/dl-support.c: Likewise.
3564         * elf/dl-sym.c: Likewise.
3565         * elf/dl-sysdep.c: Likewise.
3566         * elf/dl-tls.c: Likewise.
3567         * elf/ldconfig.c: Likewise.
3568         * elf/rtld.c: Likewise.
3569         * elf/tst-tls-dlinfo.c: Likewise.
3570         * elf/tst-tls1.c: Likewise.
3571         * elf/tst-tls10.h: Likewise.
3572         * elf/tst-tls14.c: Likewise.
3573         * elf/tst-tls2.c: Likewise.
3574         * elf/tst-tls3.c: Likewise.
3575         * elf/tst-tls4.c: Likewise.
3576         * elf/tst-tls5.c: Likewise.
3577         * elf/tst-tls6.c: Likewise.
3578         * elf/tst-tls7.c: Likewise.
3579         * elf/tst-tls8.c: Likewise.
3580         * elf/tst-tls9.c: Likewise.
3581         * elf/tst-tlsmod1.c: Likewise.
3582         * elf/tst-tlsmod13.c: Likewise.
3583         * elf/tst-tlsmod13a.c: Likewise.
3584         * elf/tst-tlsmod14a.c: Likewise.
3585         * elf/tst-tlsmod2.c: Likewise.
3586         * elf/tst-tlsmod3.c: Likewise.
3587         * elf/tst-tlsmod4.c: Likewise.
3588         * elf/tst-tlsmod5.c: Likewise.
3589         * elf/tst-tlsmod6.c: Likewise.
3590         * include/errno.h: Likewise.
3591         * include/link.h: Likewise.
3592         * include/tls.h: Likewise.
3593         * locale/global-locale.c: Likewise.
3594         * locale/localeinfo.h: Likewise.
3595         * malloc/arena.c: Likewise.
3596         * malloc/hooks.c: Likewise.
3597         * malloc/malloc.c: Likewise.
3598         * resolv/Versions: Likewise.
3599         * sysdeps/alpha/dl-machine.h: Likewise.
3600         * sysdeps/alpha/libc-tls.c: Likewise.
3601         * sysdeps/generic/ldsodefs.h: Likewise.
3602         * sysdeps/generic/tls.h: Likewise.
3603         * sysdeps/i386/dl-machine.h: Likewise.
3604         * sysdeps/ia64/dl-machine.h: Likewise.
3605         * sysdeps/ia64/libc-tls.c: Likewise.
3606         * sysdeps/mach/hurd/fork.c: Likewise.
3607         * sysdeps/mach/hurd/i386/tls.h: Likewise.
3608         * sysdeps/powerpc/powerpc32/dl-machine.c: Likwise.
3609         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
3610         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
3611         * sysdeps/s390/libc-tls.c: Likewise.
3612         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
3613         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
3614         * sysdeps/sh/dl-machine.h: Likewise.
3615         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
3616         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
3617         * sysdeps/x86_64/dl-machine.h: Likewise.
3619         * elf/dl-close.c (_dl_close_worker): Renamed from _dl_close and
3620         split out locking and parameter checking.
3621         (_dl_close): Call _dl_close_worker after locking and checking.
3622         * elf/dl-open.c (_dl_open): Call _dl_close_worker instead of
3623         _dl_close.
3624         * elf/Makefile: Add rules to build and run tst-thrlock.
3625         * elf/tst-thrlock.c:  New file.
3627         [BZ #3426]
3628         * stdlib/stdlib.h: Adjust comment for canonicalize_file_name to
3629         reality.
3631         [BZ #3429]
3632         * elf/dl-open.c (dl_open_worker): Keep holding dl_load_lock until
3633         we are sure we do not need it anymore for _dl_close.  Also move
3634         the asserts inside the lock region.
3635         Patch mostly by Suzuki <suzuki@in.ibm.com>.
3637 2006-10-27  Jakub Jelinek  <jakub@redhat.com>
3639         * elf/dl-lookup.c (_dl_debug_bindings): Remove unused symbol_scope
3640         argument.
3641         (_dl_lookup_symbol_x): Adjust caller.
3643         * sysdeps/generic/ldsodefs.h (struct link_namespaces): Remove
3644         _ns_global_scope.
3645         * elf/rtld.c (dl_main): Don't initialize _ns_global_scope.
3647         * elf/dl-libc.c: Revert l_scope name changes.
3648         * elf/dl-load.c: Likewise.
3649         * elf/dl-object.c: Likewise.
3650         * elf/rtld.c: Likewise.
3651         * elf/dl-close.c (_dl_close): Likewise.
3652         * elf/dl-open.c (dl_open_worker): Likewise.  If not SINGLE_THREAD_P,
3653         always use __rtld_mrlock_{change,done}.  Always free old scope list
3654         here if not l_scope_mem.
3655         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Revert l_scope name
3656         change.  Never free scope list here.  Just __rtld_mrlock_lock before
3657         the lookup and __rtld_mrlock_unlock it after the lookup.
3658         * elf/dl-sym.c: Likewise.
3659         * include/link.h (struct r_scoperec): Remove.
3660         (struct link_map): Replace l_scoperec with l_scope, l_scoperec_mem
3661         with l_scope_mem and l_scoperec_lock with l_scope_lock.
3663 2006-10-25  Ulrich Drepper  <drepper@redhat.com>
3665         * sysdeps/gnu/netinet/tcp.h: Define TCP_CONGESTION.
3667 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
3669         * configure.in: Disable building profile libraries by default.
3671 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
3673         * sunrpc/xdr_mem.c (xdrmem_setpos): Don't compare addresses
3674         as signed longs, check for x_base + pos overflow.
3675         * sunrpc/Makefile (tests): Add tst-xdrmem2.
3676         * sunrpc/tst-xdrmem2.c: New test.
3678 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
3680         * elf/dl-lookup.c (_dl_lookup_symbol_x): Add warning to
3681         _dl_lookup_symbol_x code.
3683 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
3685         * elf/dl-runtime.c: Include sysdep-cancel.h.
3686         (_dl_fixup, _dl_profile_fixup): Use __rtld_mrlock_* and
3687         scoperec->nusers only if !SINGLE_THREAD_P.  Use atomic_*
3688         instead of catomic_* macros.
3689         * elf/dl-sym.c: Include sysdep-cancel.h.
3690         (do_sym): Use __rtld_mrlock_* and scoperec->nusers only
3691         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
3692         * elf/dl-close.c: Include sysdep-cancel.h.
3693         (_dl_close): Use __rtld_mrlock_* and scoperec->nusers only
3694         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
3695         * elf/dl-open.c: Include sysdep-cancel.h.
3696         (dl_open_worker): Use __rtld_mrlock_* and scoperec->nusers only
3697         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
3699 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
3701         [BZ #3313]
3702         * malloc/malloc.c (malloc_consolidate): Set maxfb to address of last
3703         fastbin rather than end of fastbin array.
3705 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
3707         * sysdeps/i386/i486/bits/atomic.h (catomic_decrement): Use correct
3708         body macro.
3709         * sysdeps/x86_64/bits/atomic.h
3710         (__arch_c_compare_and_exchange_val_64_acq): Add missing casts.
3711         (catomic_decrement): Use correct body macro.
3713 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
3715         * include/atomic.h: Add a unique prefix to all local variables
3716         in macros.
3717         * csu/tst-atomic.c (do_test): Test also catomic_* macros.
3719 2006-10-16  Ulrich Drepper  <drepper@redhat.com>
3721         [BZ #3369]
3722         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Fix typos in rules 4
3723         and 7.
3725 2006-10-14  Ulrich Drepper  <drepper@redhat.com>
3727         * resolv/arpa/nameser.h: Document that ns_t_a6 is deprecated.
3729 2006-10-13  Ulrich Drepper  <drepper@redhat.com>
3731         [BZ #3313]
3732         * malloc/malloc.c (malloc_consolidate): Don't use get_fast_max to
3733         determine highest fast bin to consolidate, always look into all of
3734         them.
3735         (do_check_malloc_state): Only require for empty bins for large
3736         sizes in main arena.
3738         * libio/stdio.h: Add more __wur attributes.
3740         * elf/dl-minimal.c (realloc): Optimize last patch.
3742 2006-10-12  Richard Sandiford  <richard@codesourcery.com>
3744         [BZ #3352]
3745         * elf/dl-minimal.c (realloc): Let malloc() return a new pointer,
3746         and use memcpy() if it does.
3748 2006-11-12  Andreas Jaeger  <aj@suse.de>
3750         [BZ #2510]
3751         * manual/search.texi (Hash Search Function): Clarify.
3752         (Array Search Function): Clarify.
3754 2006-11-12  Joseph Myers  <joseph@codesourcery.com>
3756         [BZ #2830]
3757         * math/atest-exp.c (main): Cast hex value to mp_limb_t before
3758         shifting.
3759         * math/atest-exp2.c (read_mpn_hex): Likewise.
3760         * math/atest-sincos.c (main): Likewise.
3762 2006-10-11  Ulrich Drepper  <drepper@redhat.com>
3764         * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_pwait.
3765         * sysdeps/unix/sysv/linux/sys/epoll.h: Declare epoll_pwait.
3766         * sysdeps/unix/sysv/linux/Versions (libc): Add epoll_pwait for
3767         version GLIBC_2.6.
3768         * Versions.def: Add GLIBC_2.6 for libc.
3770         * sysdeps/unix/sysv/linux/i386/sysdep.h (DOARGS_6): Fix offset.
3772         * sysdeps/i386/i486/bits/atomic.h: Add catomic_* support.
3774 2006-10-11  Jakub Jelinek  <jakub@redhat.com>
3776         * malloc/malloc.c (_int_malloc): Remove unused any_larger variable.
3778         * nis/nis_defaults.c (__nis_default_access): Don't call getenv twice.
3780         * nis/nis_subr.c (nis_getnames): Use __secure_getenv instead of getenv.
3781         * sysdeps/generic/unsecvars.h: Add NIS_PATH.
3783 2006-10-11  Ulrich Drepper  <drepper@redhat.com>
3785         * include/atomic.c: Define catomic_* operations.
3786         * sysdeps/x86_64/bits/atomic.h: Likewise.  Fix a few minor problems.
3787         * stdlib/cxa_finalize.c: Use catomic_* operations instead of atomic_*.
3788         * malloc/memusage.c: Likewise.
3789         * gmon/mcount.c: Likewise.
3790         * elf/dl-close.c: Likewise.
3791         * elf/dl-open.c: Likewise.
3792         * elf/dl-profile.c: Likewise.
3793         * elf/dl-sym.c: Likewise.
3794         * elf/dl-runtime.c: Likewise.
3795         * elf/dl-fptr.c: Likewise.
3796         * resolv/res_libc.c: Likewise.
3798 2006-10-10  Ulrich Drepper  <drepper@redhat.com>
3800         * nis/nis_subr.c (nis_getnames): Add trailing dot to NIS_PATH
3801         components which lack them.
3803         * nis/nis_subr.c (nis_getnames): Make sure that we always return
3804         at least one entry consisting of the parameter concatenated with
3805         the domain.
3807 2006-10-10  Roland McGrath  <roland@frob.com>
3809         * sysdeps/mach/hurd/utimes.c: Use a union to avoid an improper cast.
3810         * sysdeps/mach/hurd/futimes.c: Likewise.
3811         * sysdeps/mach/hurd/lutimes.c: Likewise.
3813 2006-10-09  Ulrich Drepper  <drepper@redhat.com>
3814             Jakub Jelinek  <jakub@redhat.com>
3816         Implement reference counting of scope records.
3817         * elf/dl-close.c (_dl_close): Remove all scopes from removed objects
3818         from the list in objects which remain.  Always allocate new scope
3819         record.
3820         * elf/dl-open.c (dl_open_worker): When growing array for scopes,
3821         don't resize, allocate a new one.
3822         * elf/dl-runtime.c: Update reference counters before using a scope
3823         array.
3824         * elf/dl-sym.c: Likewise.
3825         * elf/dl-libc.c: Adjust for l_scope name change.
3826         * elf/dl-load.c: Likewise.
3827         * elf/dl-object.c: Likewise.
3828         * elf/rtld.c: Likewise.
3829         * include/link.h: Include <rtld-lowlevel.h>.  Define struct
3830         r_scoperec.  Replace r_scope with pointer to r_scoperec structure.
3831         Add l_scoperec_lock.
3832         * sysdeps/generic/ldsodefs.h: Include <rtld-lowlevel.h>.
3833         * sysdeps/generic/rtld-lowlevel.h: New file.
3835         * include/atomic.h: Rename atomic_and to atomic_and_val and
3836         atomic_or to atomic_or_val.  Define new macros atomic_and and
3837         atomic_or which do not return values.
3838         * sysdeps/x86_64/bits/atomic.h: Define atomic_and and atomic_or.
3839         Various cleanups.
3840         * sysdeps/i386/i486/bits/atomic.h: Likewise.
3842         * po/sv.po: Update from translation team.
3844 2006-10-07  Ulrich Drepper  <drepper@redhat.com>
3846         * Versions.def: Add GLIBC_2.6 to libpthread.
3848         * include/shlib-compat.h (SHLIB_COMPAT): Expand parameters before use.
3849         (versioned_symbol): Likewise.
3850         (compat_symbol): Likewise.
3852         * po/tr.po: Update from translation team.
3854 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
3856         * nis/Banner: Removed.  It's been integral part forever and the
3857         author info is incomplete anyway.
3858         * libio/Banner: Likewise.
3860         * nis/nis_table.c (nis_list): If __follow_path fails in the new
3861         code, make sure the nis_freeresult call doesn't crash and that the
3862         result is reported correctly.
3864 2006-09-27  Jakub Jelinek  <jakub@redhat.com>
3866         * nis/nis_table.c (nis_list): Handle FOLLOW_PATH | ALL_RESULTS
3867         when callback is NULL.
3869         * nis/Versions (libnss_nisplus): Add
3870         _nss_nisplus_initgroups_dyn@@GLIBC_PRIVATE.
3871         * nis/Makefile (libnss_nisplus-routines): Add nisplus-initgroups.
3872         * nis/nss_nisplus/nisplus-grp.c (tablename_val, tablename_len,
3873         _nss_create_tablename): Rename to...
3874         (grp_tablename_val, grp_tablename_len, _nss_grp_create_tablename):
3875         ... these.  No longer static.
3876         (internal_setgrent): Adjust users.
3877         (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
3878         Don't use locking around _nss_grp_create_tablename call.
3879         * nis/nss_nisplus/nisplus-initgroups.c: New file.
3881 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
3883         * version.h (VERSION): Bump to 2.5.90 for new development tree.
3885 2006-10-06  Andreas Jaeger  <aj@suse.de>
3887         * include/features.h (__GLIBC_MINOR__): It's glibc 2.5 now.
3889 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
3891         * po/pl.po: Update from translation team.
3893         * nscd/nscd.c (main): Fix typo in message.
3894         Patch by Jakub Bogsz <qboosh@pld-linux.org>.
3896 2006-10-02  Jakub Jelinek  <jakub@redhat.com>
3898         [BZ #3291]
3899         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Include
3900         errno.h, signal.h, unistd.h and sysdep-cancel.h.
3901         (__sigprocmask): Define.
3903 2006-10-02  Ulrich Drepper  <drepper@redhat.com>
3905         * elf/rtld.c (dl_main): Don't use prelinking if LD_DYNAMIC_WEAK is
3906         used.
3908 2006-10-02  Jakub Jelinek  <jakub@redhat.com>
3910         * nscd/mem.c (mempool_alloc): Round array size to 16 bytes
3911         in oldtotal and newtotal calculation.
3912         * nscd/nscd-client.h (struct mapped_database): Add datasize
3913         field.
3914         * nscd/nscd_helper.c (get_mapping): Initialize datasize field.
3915         (__nscd_get_map_ref): Get a new mapping even if mapping's data_size
3916         increased.
3917         (__nscd_cache_search): Add checks to make sure we never reference
3918         data beyond the current mapping.
3920 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
3922         * sysdeps/posix/getaddrinfo.c (match_prefix): Make mask and val
3923         variables const to avoid compiler warnings.
3925         * io/fts.c (fts_close): Remove redundant checks.
3926         (fts_build): Likewise.
3927         (fts_palloc): Likewise.
3929         * manual/message.texi (Advanced gettext functions,
3930         Using gettextized software): Fix typos.
3932 2006-09-30  Ulrich Drepper  <drepper@redhat.com>
3934         * posix/glob.c (glob_in_dir): Add some comments and asserts to
3935         explain why there are no leaks.
3937 2006-09-29  Ulrich Drepper  <drepper@redhat.com>
3939         * libio/wmemstream.c: Include <wchar.h>.
3940         * libio/bug-wmemstream1.c: Likewise.
3941         * libio/tst-wmemstream1.c: Likewise.
3942         * libio/tst-wmemstream2.c: Likewise.
3944         * version.h (RELEASE): Bump to 2.5.
3945         * README: Regenerated.
3947         * locale/iso-3166.def: Add Aaland Islands and Montenegro.
3949         [BZ #3273]
3950         * nscd/nscd_initgroups.c (__nscd_getgrouplist): It is OK to have
3951         found no group members.
3952         Patch by Petr Baudis.
3954 2006-09-29  Jakub Jelinek  <jakub@redhat.com>
3956         * elf/rtld.c (_dl_start_final): If not USE___THREAD, don't
3957         assert bootstrap_map.l_tls_modid is zero.
3958         (_dl_start): Initialize bootstrap_map.l_tls_modid to 0
3959         if USE___THREAD.
3961 2006-09-27  Ulrich Drepper  <drepper@redhat.com>
3963         * libio/stdio.h: Move open_wmemstream prototype to ...
3964         * wcsmbs/wchar.h: ... here.
3966 2006-09-25  Jakub Jelinek  <jakub@redhat.com>
3968         [BZ #3252]
3969         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Handle only
3970         fchownat syscall and __ASSUME_LCHOWN_SYSCALL case inline, call
3971         __{,l}chown to handle the rest.
3972         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Handle only
3973         fchownat syscall and __ASSUME_32BITUIDS case inline, call
3974         __{,l}chown to handle the rest.
3975         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Include
3976         i386/fchownat.c.
3977         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Likewise.
3978         * sysdeps/unix/sysv/linux/sh/fchownat.c: Likewise.
3980         [BZ #3253]
3981         * posix/glob.c (glob_in_dir): Don't alloca one struct globlink at a
3982         time, rather allocate increasingly bigger arrays of pointers, if
3983         possible with alloca, if too large with malloc.
3985 2006-09-24  Jakub Jelinek  <jakub@redhat.com>
3987         * sysdeps/powerpc/fpu/libm-test-ulps: Updated.
3989         * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Fix 2 typos.
3991 2006-09-24  Ulrich Drepper  <drepper@redhat.com>
3993         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Implement rule 4,
3994         home addresses.
3995         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Recognize
3996         IFA_F_HOMEADDRESS flag for interfaces.
3997         * include/ifaddrs.h (struct in6addrinfo): Define
3998         in6ai_homeaddress.
4000 2006-09-21  Jakub Jelinek  <jakub@redhat.com>
4002         [BZ #3225]
4003         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (PTR_MANGLE3,
4004         PTR_DEMANGLE3): Define.
4005         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h (PTR_MANGLE3,
4006         PTR_DEMANGLE3): Likewise.
4007         * sysdeps/powerpc/powerpc32/__longjmp-common.S (__longjmp): Use them.
4008         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
4009         Likewise.
4010         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
4012 2006-09-20  Jakub Jelinek  <jakub@redhat.com>
4014         * po/libc.pot: Regenerated.
4015         * po/be.po: Updated.
4016         * po/ca.po: Likewise.
4017         * po/cs.po: Likewise.
4018         * po/da.po: Likewise.
4019         * po/de.po: Likewise.
4020         * po/el.po: Likewise.
4021         * po/en_GB.po: Likewise.
4022         * po/es.po: Likewise.
4023         * po/fi.po: Likewise.
4024         * po/fr.po: Likewise.
4025         * po/gl.po: Likewise.
4026         * po/hr.po: Likewise.
4027         * po/hu.po: Likewise.
4028         * po/ja.po: Likewise.
4029         * po/ko.po: Likewise.
4030         * po/nb.po: Likewise.
4031         * po/nl.po: Likewise.
4032         * po/pl.po: Likewise.
4033         * po/pt_BR.po: Likewise.
4034         * po/ru.po: Likewise.
4035         * po/rw.po: Likewise.
4036         * po/sk.po: Likewise.
4037         * po/sv.po: Likewise.
4038         * po/tr.po: Likewise.
4039         * po/zh_CN.po: Likewise.
4040         * po/zh_TW.po: Likewise.
4042         [BZ #3137]
4043         * iconv/iconv_prog.c (main): Fix spelling in error message.
4044         * iconv/iconvconfig.c (main): Likewise.
4045         * locale/programs/ld-collate.c (handle_ellipsis): Likewise.
4046         * locale/programs/ld-ctype.c (charclass_symbolic_ellipsis): Likewise.
4047         * locale/programs/localedef.c (main): Likewise.
4048         * locale/programs/repertoire.c (repertoire_read): Likewise.
4049         * timezone/zdump.c (main): Likewise.
4050         * nscd/connections.c (handle_request): Fix spelling in log message.
4051         Patch by Malcolm Parsons <malcolm.parsons@gmail.com>.
4053 2006-09-20  Ulrich Drepper  <drepper@redhat.com>
4055         * inet/inet6_option.c: Also emit linker warnings for the RFC 2292
4056         interfaces.
4058 2006-09-20  Andreas Jaeger  <aj@suse.de>
4060         * math/libm-test.inc (lrint_test_upward): Fix typo.
4062 2006-06-17  Joseph S. Myers  <joseph@codesourcery.com>
4064         [BZ #2592]
4065         * math/libm-test.inc (lrint_test_tonearest): New function.
4066         (lrint_test_towardzero): New function.
4067         (lrint_test_downward): New function.
4068         (lrint_test_upward): New function.
4069         (main): Run these new tests.
4070         * sysdeps/ieee754/dbl-64/s_llrint.c (__llrint): Correct rounding
4071         of values near to 0.
4072         (two52): Use double not long double.
4073         * sysdeps/ieee754/dbl-64/s_lrint.c (__lrint): Likewise.
4074         * sysdeps/ieee754/flt-32/s_llrintf.c (__llrintf): Likewise.
4075         (two23): Use float not double.
4076         * sysdeps/ieee754/flt-32/s_lrintf.c (__lrintf): Likewise.
4077         (two23): Use float not double.
4078         * sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Likewise.
4079         * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Likewise.
4080         * sysdeps/ieee754/ldbl-96/s_llrintl.c (__llrintl): Likewise.
4081         * sysdeps/ieee754/ldbl-96/s_lrintl.c (__lrintl): Likewise.
4083 2006-09-20  Martin Schwidefsky  <schwidefsky@de.ibm.com>
4085         * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c (__makecontext):
4086         Cast sp to unsigned long to avoid compiler warning.
4087         Use __makecontext_ret function instead of a trampoline on the stack.
4088         (__makecontext_ret): New function.
4089         * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Likewise.
4091 2006-09-19  Jakub Jelinek  <jakub@redhat.com>
4093         * elf/dl-cache.c (HWCAP_CHECK): If _DL_PLATFORMS_COUNT, but
4094         platform == -1, reject any libs with non-zero _DL_HWCAP_PLATFORM
4095         bits.
4097 2006-09-19  Ulrich Drepper  <drepper@redhat.com>
4099         * elf/dl-close.c (_dl_close): If dependency is not unloaded make
4100         sure no reference to the unloaded map's search list remains in the
4101         dependency's scope.
4103 2006-09-16  Jakub Jelinek  <jakub@redhat.com>
4105         * elf/Makefile: Add rules to build and run unload7 test.
4106         * elf/unload7.c: New test.
4107         * elf/unload7mod1.c: New file.
4108         * elf/unload7mod2.c: New file.
4110 2006-09-18  Jakub Jelinek  <jakub@redhat.com>
4112         * sysdeps/unix/sysv/linux/sys/ptrace.h (PT_GETEVENTMSG): Fix pasto.
4113         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_SETOPTIONS,
4114         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
4115         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_SETOPTIONS,
4116         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
4117         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_SETOPTIONS,
4118         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
4119         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h (PTRACE_SETOPTIONS,
4120         PTRACE_GETEVENTMSG): Likewise.
4121         (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Change to the arch independent
4122         values.
4124 2006-09-17  Mike Frysinger  <vapier@gentoo.org>
4126         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_SETOPTIONS,
4127         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
4128         * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Check PTRACE_SETOPTIONS,
4129         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO and PTRACE_SETSIGINFO.
4131 2006-09-16  Jakub Jelinek  <jakub@redhat.com>
4133         * sysdeps/powerpc/powerpc32/register-dump.h (register_dump): Don't
4134         write '\0' to the fd.
4135         * sysdeps/mach/hurd/powerpc/register-dump.h (register_dump): Likewise.
4136         * sysdeps/powerpc/powerpc64/register-dump.h (register_dump): Likewise.
4137         Change regs to unsigned long pointer from unsigned int, fix fscr
4138         offset.
4140 2006-09-14  Jakub Jelinek  <jakub@redhat.com>
4142         * io/Makefile (CFLAGS-fstatat.c): Set.
4143         (CFLAGS-fstatat64.c): Likewise.
4144         (CFLAGS-mknodat.c): Likewise.
4146         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Comment fixes.
4147         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
4148         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Rewritten.
4149         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Rewritten.
4151 2006-09-14  Jakub Jelinek  <jakub@redhat.com>
4152             Steven Munroe  <sjmunroe@us.ibm.com>
4154         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 4 new cap
4155         names to the beginning.  Rename "cell" to "cellbe".
4156         (_dl_powerpc_platforms): New.
4157         * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
4158         (HWCAP_IMPORTANT): Remove power{4,5,5+} and cell.
4159         (_DL_PLATFORMS_COUNT, _DL_FIRST_PLATFORM): Define.
4160         (_DL_HWCAP_PLATFORM): Define to new mask.
4161         (_dl_platform_string, _dl_string_platform): New functions.
4162         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_BOOKE, PPC_FEATURE_SMT,
4163         PPC_FEATURE_ICACHE_SNOOP, PPC_FEATURE_ARCH_2_05): Define.
4165 2006-09-12  Jakub Jelinek  <jakub@redhat.com>
4167         [BZ #2526]
4168         * README.libm: Fix a thinko in sqrt algorithm description.
4170         [BZ #3143]
4171         * manual/string.texi (argz_delete): Fix prototype.
4172         Patch by <alpt@freaknet.org>.
4174 2006-08-26  Joseph Myers  <joseph@codesourcery.com>
4176         [BZ #3138]
4177         * io/test-lfs.c (do_prepare): Give name_len type size_t.
4178         * io/tst-fcntl.c (do_prepare): Likewise.
4179         * posix/tst-exec.c (do_prepare): Likewise.
4180         * posix/tst-preadwrite.c (do_prepare): Likewise.
4181         * posix/tst-spawn.c (do_prepare): Likewise.
4182         * posix/tst-truncate.c (do_prepare): Likewise.
4183         * rt/tst-aio.c (do_prepare): Likewise.
4184         * rt/tst-aio64.c (do_prepare): Likewise.
4185         * stdlib/test-canon2.c (do_prepare): Give test_dir_len type
4186         size_t.
4188 2006-09-09  Ulrich Drepper  <drepper@redhat.com>
4190         [BZ #2821]
4191         * time/mktime.c (guess_time_tm): Fix overflow detection.
4192         * time/Makefile (tests): Add bug-mktime1.
4193         * time/bug-mktime1.c: New file.
4195         [BZ #3189, #3188]
4196         * misc/sys/mman.h (remap_file_pages): Make available for _GNU_SOURCE.
4197         (mremap): Likewise.
4199 2006-09-07  Jakub Jelinek  <jakub@redhat.com>
4201         [BZ #1006]
4202         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
4203         Ensure relocation doesn't clobber any bits outside of the
4204         immediate field for R_SPARC_TLS_LE_HIX22, R_SPARC_WDISP30,
4205         R_SPARC_HI22 and R_SPARC_H44.
4207         [BZ #2775]
4208         * malloc/malloc.c (sYSMALLOc): Only call grow_heap if
4209         (long) (MINSIZE + nb - old_size) is positive.
4211         * malloc/arena.c (grow_heap): When growing bail even if new_size
4212         is negative.
4214         [BZ #3155]
4215         * sysdeps/powerpc/powerpc32/fpu/s_lrint.S (__lrint): Don't access
4216         stack below r1.
4218 2006-09-06  Jakub Jelinek  <jakub@redhat.com>
4220         * posix/regex_internal.c (re_string_reconstruct): Handle
4221         offset < pstr->valid_raw_len && pstr->offsets_needed case.
4222         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
4223         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
4224         re_string_context_at.
4225         * posix/Makefile: Add rules to build and run bug-regex26 test.
4226         * posix/bug-regex26.c: New test.
4228         * locale/programs/ld-collate.c (collate_read): Goto sym_equiv_free
4229         rather than col_sym_free.  Move seqp declaration earlier.
4231         * resolv/gai_suspend.c (gai_suspend): Make sure result is initialized.
4233 2006-09-05  Jakub Jelinek  <jakub@redhat.com>
4235         * nscd/initgrcache.c (addinitgroupsX): Move any_success
4236         decl before first goto out.
4238 2006-09-04  Jakub Jelinek  <jakub@redhat.com>
4240         * Makerules (shlib.lds): If have-hash-style, put .hash section
4241         at the end of the RO segment.
4243 2006-09-04  Ulrich Drepper  <drepper@redhat.com>
4245         * elf/do-lookup.h (do_lookup_x): Initialize symidx in case the new
4246         style hash table format is used.
4248 2006-09-04  Jakub Jelinek  <jakub@redhat.com>
4250         * resolv/res_mkquery.c (res_nmkquery): Set hp->id to statp->id after
4251         randomization rather than before.
4252         * resolv/res_init.c (res_randomid): Don't call gettimeofday here.
4254 2006-08-31  Jakub Jelinek  <jakub@redhat.com>
4256         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Add ld.so.
4258         * malloc/malloc.c (_int_malloc): Use full list insert and not
4259         shortcut which assumes the list is empty for large requests
4260         too.
4262         * elf/tst-addr1.c (do_test): Allow i.dli_sname "_IO_printf".
4264 2006-08-30  Jakub Jelinek  <jakub@redhat.com>
4266         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (splice): Add offin
4267         and offout arguments to the prototype.
4268         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (splice): Likewise.
4269         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (splice): Likewise.
4270         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (splice): Likewise.
4271         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (splice): Likewise.
4272         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (splice): Likewise.
4273         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (splice): Likewise.
4274         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (splice): Likewise.
4275         * sysdeps/unix/sysv/linux/syscalls.list (splice): Adjust args string.
4277 2006-08-28  Ulrich Drepper  <drepper@redhat.com>
4279         * elf/dl-load.c (_dl_init_paths): Expand DSTs.
4281         * elf/dl-open.c (dl_open_worker): Allow $LIB and $PLATFORM in
4282         dlopen parameters.
4284 2006-08-28  Jakub Jelinek  <jakub@redhat.com>
4286         * inet/getnameinfo.c (getnameinfo): For AF_INET, check errno
4287         only if herrno is NETDB_INTERNAL.  Handle errors other than
4288         ERANGE outside of the loops, handle TRY_AGAIN.
4290         * locale/programs/ld-ctype.c (translit_flatten): Issue error
4291         if other's ctype category was missing.
4292         * locale/programs/ld-collate.c (collate_read): Return if
4293         copy_locale's collate category is missing.
4295 2006-08-27  Ulrich Drepper  <drepper@redhat.com>
4297         [BZ #2684]
4298         * malloc/malloc.c (public_rEALLOc): Try harder by using other
4299         arenas if allocation failed.
4300         Patch mostly by Jan Edler <jan.edler@indexengines.com>.
4302 2006-08-26  Ulrich Drepper  <drepper@redhat.com>
4304         * malloc/malloc.c (bin_at): Rewrite to be more clear and to not
4305         waste bins[0..1].
4306         (malloc_state): Reduce bins size by 2.
4307         (_int_malloc): Fix test for large enough buffer for early termination.
4308         When no unsorted block matches perfectly and an exiting block has
4309         to be split, use full list insert and not shortcut which assumes
4310         the list is empty.
4312         * locale/programs/ld-ctype.c (ctype_read): Better patch for read
4313         failure.
4315 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
4317         * locale/programs/ld-ctype.c (ctype_read): If CTYPE is NULL, don't
4318         do anything.
4320         * sysdeps/generic/ldsodefs.h (DL_ADDR_SYM_MATCH): For undefined
4321         symbol require exact match (these are PLTs).
4322         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
4323         (_dl_ppc64_addr_sym_match): Likewise.
4325         [BZ #2683]
4326         * elf/dl-addr.c (_dl_addr): Don't ignore all undefined symbols.
4327         If symbol has a value use it.
4328         * elf/tst-dladdr1.c: New file.
4329         * elf/Makefile: Add rules to build and run tst-addr1.
4331 2006-08-24  Jakub Jelinek  <jakub@redhat.com>
4333         * malloc/malloc.c (sYSMALLOc): Avoid infinite loop if MMAP
4334         keeps failing and heap growth or new heap creation isn't
4335         successful either.
4336         * malloc/tst-malloc.c (main): Add new tests.
4338 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
4340         [BZ #2734]
4341         * sysdeps/i386/bits/byteswap.h (__bswap_32): Use same conditions
4342         as in the x86-64 code to use bswap.
4344 2006-05-21  Joseph S. Myers  <joseph@codesourcery.com>
4346         [BZ #2680]
4347         * posix/unistd.h (getlogin_r): Condition on __USE_POSIX199506, not
4348         __USE_UNIX98.
4349         * posix/bits/unistd.h: Likewise.
4351 2006-05-15  Mike Frysinger  <vapier@gentoo.org>
4353         [BZ #2751]
4354         * string/strchr.c: Add cast to avoid warning.
4356 2006-08-21  Ulrich Drepper  <drepper@redhat.com>
4358         * malloc/malloc.c (DEFAULT_MMAP_THRESHOLD_MAX): For 32-bit
4359         platforms define as 512K.  For 64-bit platforms as 32MB.  The lower
4360         limit is needed to avoid the exploding of the address space
4361         requirement for secondary heaps.
4362         * malloc/arena.c (HEAP_MAX_SIZE): Define using
4363         DEFAULT_MMAP_THRESHOLD_MAX if it is defined.
4365 2006-07-30  Joseph S. Myers  <joseph@codesourcery.com>
4367         [BZ #3018]
4368         * Makerules (depfiles): Handle extra-test-objs the same as
4369         extra-objs.
4370         (common-mostlyclean): Likewise.
4371         * dlfcn/Makefile (extra-objs): Add modules to extra-test-objs
4372         instead.
4373         * elf/Makefile (extra-objs): Likewise.
4374         * stdlib/Makefile (extra-objs): Likewise.
4376 2006-08-14  Eric Blake  <ebb9@byu.net>
4378         [BZ #3044]
4379         * misc/error.h: Assume C89 or better.
4380         * misc/error.c: Likewise.
4382 2006-08-21  Ulrich Drepper  <drepper@redhat.com>
4384         [BZ #3040]
4385         * sysdeps/unix/sysv/linux/openat.c: Fix compilation if
4386         __ASSUME_ATFCTS is defined.
4388 2006-08-19  Ulrich Drepper  <drepper@redhat.com>
4390         * malloc/malloc.c (_int_malloc): Limit number of unsorted blocks
4391         to sort in each call.
4393         * nis/nss_nis/nis-service.c (internal_nis_getservent_r): . If map
4394         is empty simply return and use next service.
4395         * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r): Likewise.
4397         * locale/programs/charmap.c (charmap_read): Add new parameter.  It
4398         tells us when not finding a charmap file is an error.
4399         * locale/programs/charmap.h: Adjust charmap_read prototype.
4400         * iconv/iconv_prog.c (main): Tell charmap_read it's no error if we
4401         cannot find a charmap.
4402         * locale/programs/localedef.c (main): Adjust charmap_read call.
4404 2006-08-15  Jakub Jelinek  <jakub@redhat.com>
4406         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Use
4407         sysdeps/posix/pause.c implementation instead.
4409 2006-08-09  Jakub Jelinek  <jakub@redhat.com>
4411         * sysdeps/unix/nice.c (nice): Transform EACCES errno from setpriority
4412         to EPERM.
4414 2006-08-13  Andreas Schwab  <schwab@suse.de>
4416         * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve):
4417         Don't clobber caller's LRSAVE.
4418         (_dl_prof_resolve): Likewise.
4420 2006-08-14  Ulrich Drepper  <drepper@redhat.com>
4422         [BZ #1996]
4423         * libio/memstream.c (open_memstream): Allocate initial buffer with
4424         calloc.
4425         * libio/wmemstream.c (open_wmemstream): Likewise.
4426         * libio/strops.c: Pretty printing.
4427         (_IO_str_overflow): Clear uninitialized part of the new buffer.
4428         (enlarge_userbuf): New function.
4429         (_IO_str_seekoff): Call it if seek position is larger than current
4430         buffer.
4431         * libio/wstrops.c: Likewise.
4432         * libio/vasprintf.c: Add comment as to why we do not have to use
4433         calloc instead of malloc to allocate initial buffer.
4434         * libio/Makefile (tests): Add bug-memstream1 and bug-wmemstream1.
4435         * libio/bug-memstream1.c: New file.
4436         * libio/bug-wmemstream1.c: New file.
4438 2006-08-13  Ulrich Drepper  <drepper@redhat.com>
4440         * libio/wstrops.c: Remove dead macro definitions and comments.
4441         * libio/strops.c: Likewise.
4443         [BZ #2764]
4444         * login/utmpname.c (__utmpname): Remove unnecessary test.
4446 2006-06-08  Joseph Myers  <jsm28@gcc.gnu.org>
4448         [BZ #2832]
4449         * math/gen-libm-test.pl (clean_up_number): Do not remove trailing
4450         0s from integers.
4452 2006-08-13  Ulrich Drepper  <drepper@redhat.com>
4454         [BZ #2987]
4455         * sysdeps/unix/sysv/linux/clock_settime.c: Add code to use syscall
4456         for CPU clocks.
4457         * sysdeps/unix/clock_settime.c: Add support for platform-specific
4458         setting of CPU clocks.
4460 2006-06-23  Paul Eggert  <eggert@cs.ucla.edu>
4462         [BZ #2841]
4463         * sysdeps/generic/stdint.h (UINT8_C, UINT16_C): Don't append 'U',
4464         since C99 requires the result to promote to 'int' when uint_least8_t
4465         and uint_least16_t promote to 'int'.
4467 2006-08-12  Ulrich Drepper  <drepper@redhat.com>
4469         [BZ #3013]
4470         * locale/programs/ld-ctype.c (ctype_output): Adjust alignments, fix
4471         lenght of one output field, correct bitmask creation.
4472         * locale/programs/ld-time.c: Add alignment.
4474         [BZ #2997]
4475         * misc/error.c: Add space between program name and message if file
4476         name is missing.
4478 2006-08-03  Eric Blake  <ebb9@byu.net>
4480         [BZ #2998]
4481         * misc/error.c (error_tail) [_LIBC]: Avoid invalid free.
4483 2006-08-09  Ulrich Drepper  <drepper@redhat.com>
4485         * malloc/memusagestat.c: Silence warnings.
4487         * malloc/malloc.c: Dynamically size mmap treshold if the program
4488         frees mmaped blocks.
4489         Patch by Valerie Henson and Arjan van de Ven.
4491 2006-08-08  Jakub Jelinek  <jakub@redhat.com>
4493         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (O_DIRECT): Protect with
4494         __USE_GNU.
4496         * stdlib/strtol_l.c (__strtol_ul_max_tab, __strtol_ul_rem_tab,
4497         __strtol_ull_max_tab, __strtol_ull_rem_tab): Declare.
4498         (DEF): Don't put the var into .gnu.linkonce.r.* section.
4499         Only provide var definitions in strtol_l (or for *ull*
4500         in strtoll_l).
4502         * stdio-common/bug16.c (tests): New array.
4503         (do_tests): Allow the first hexadecimal digit
4504         to be 1, 2, 4 or 8.  Do 3 additional tests.
4506         * sysdeps/s390/fpu/libm-test-ulps: Update.
4508         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c (fchownat): Use
4509         fchownat syscall if available.
4510         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
4511         * sysdeps/unix/sysv/linux/sh/fchownat.c (fchownat): Likewise.
4512         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
4514 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
4516         * nis/nis_xdr.c: Avoid some function calls.
4518 2006-08-07  Jakub Jelinek  <jakub@redhat.com>
4519             Ulrich Drepper  <drepper@redhat.com>
4521         * nis/nis_call.c (rec_dirsearch) [case LOWER_NAME]: Don't take
4522         short cut if only one name component is stripped away.
4524 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
4526         * nis/nis_call.c: Minor cleanups throughout.
4527         (rec_dirsearch) [case HIGHER_NAME]: Correctly size ndomain array.
4528         (first_shoot): Add search_parent_first parameter.  Only if it is set
4529         search parent server first.
4530         If directory for table found through cold start cache is not the same
4531         as referenced in the cache, don't use it.
4532         (__nisfind_server): Take additional parameter.  Pass it on to
4533         first_shoot.
4534         (__prepare_niscall): Adjust __nisfind_server call.
4535         * nis/rpcsvc/nislib.h: Adjust __nisfind_server prototype.
4536         * nis/nis_table.c: Adjust __nisfind_server call.
4537         * nis/nis_lookup.c: Likewise.
4538         (nis_lookup): Don't loop endlessly if name is reduced to ".".
4540 2006-08-03  Ulrich Drepper  <drepper@redhat.com>
4542         [BZ #2182]
4543         * math/s_cacosh.c: Return values from positive branch.
4544         * math/s_cacoshf.c: Likewise.
4545         * math/s_cacoshl.c: Likewise.
4547         [BZ #2883]
4548         * sysvipc/sys/msg.h: Change return value to ssize_t.
4549         * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
4550         * sysvipc/msgrcv.c: Likewise.
4551         * include/sys/msg.h: Likewise.
4553         * grp/initgroups.c (internal_getgrouplist): Remove unnecessary
4554         test introduced in patch for bz #661.
4555         (getgrouplist): Simplify code a bit.  Don't allocate one additional
4556         element for NEWGROUPS.
4558         [BZ #2908]
4559         * stdio-common/printf_fphex.c (__printf_fphex): When rounding up
4560         'f', use '1' as leading digit not '\1'.
4561         * stdio-common/Makefile (tests): Add bug16.
4562         * stdio-common/bug16.c: New file.
4564         [BZ #2914]
4565         * sysdeps/unix/sysv/linux/gethostid.c: Don't define OLD_HOSTIDFILE
4566         and don't try to open it.  The patch introducing the macro
4567         contained a bug and used the same file name as the new file
4568         instead of using /var/adm/hostid.  Nobody complaint so I'm taking
4569         this out completely.
4571         [BZ #2926]
4572         * assert/assert.h: Move cast to void inside ?: to quiet gcc.
4573         Patch by Jerry James <Jerry.James@usu.edu>.
4575         * rt/Makefile (tests): Add tst-clock2.
4576         * rt/tst-clock2.c: New file.
4578         [BZ #2978]
4579         * resolv/gai_notify.c (__gai_notify_only): Copy memory for thread
4580         function and its parameters and pass it to new thread.
4581         (__gai_notify): Add support for alternative waiting for completion.
4582         * resolv/gai_suspend.c (gai_suspend): Add support for alternative
4583         waiting for completion.
4584         * resolv/getaddrinfo_a.c: Likewise.
4585         * resolv/gai_misc.h (struct waitlist): Don't add cond if alternative
4586         waiting for completion is used.
4587         * resolv/gai_misc.c: Allow overwriting code to start helper thread.
4588         * resolv/gai_cancel.c: Include <gai_misc.h> not "gai_misc.h".
4589         * resolv/gai_error.c: Likewise.
4590         * resolv/gai_sigqueue.c: Likewise.
4592 2006-08-02  Thomas Schwinge  <tschwinge@gnu.org>
4594         * hurd/getdport.c (__getdport): Don't return EBADF; instead set
4595         errno to EBADF and return MACH_PORT_NULL.
4597 2006-06-23  Joseph Myers  <joseph@codesourcery.com>
4599         [BZ #2980]
4600         * posix/Makefile (CFLAGS-waitid.c): Add -fasynchronous-unwind-tables.
4602 2006-08-02  Ulrich Drepper  <drepper@redhat.com>
4604         * elf/dl-addr.c (_dl_addr): If GNU-style hash tables are present,
4605         walk them instead of the symbol table.
4607 2006-08-01  Ulrich Drepper  <drepper@redhat.com>
4609         [BZ #2098]
4610         * nscd/initgrcache.c (addinitgroupsX): Judge successful lookups by
4611         status of NSS calls, not the number of returned entries.
4613         * sysdeps/unix/sysv/linux/syscalls.list: Remove add_key,
4614         request_key, keyctl.
4616 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
4618         * sysdeps/unix/sysv/linux/dl-osinfo.h: Remove unnecessary include.
4620 2006-07-16  Jeff Bailey  <jbailey@ubuntu.com>
4622         * elf/tst-auditmod1.c: Fix typo in #error.
4624 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
4626         * elf/tst-auditmod1.c: Remove code for unsupported architectures.
4628         * iconvdata/run-iconv-test.sh: Run cmp in C locale.
4630 2006-07-20  Adam Nemet  <anemet@caviumnetworks.com>
4632         * stdlib/test-canon.c (do_test): Close fd before unlinking file so
4633         that the directory is empty even on non-POSIX filesystems.
4635 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
4637         * elf/dl-open.c (dl_open_worker): Add branch prediction.
4639         * nis/nss_compat/compat-grp.c: Avoid unnecessary setgrent calls into
4640         the backend NSS module.  If backend setgrent call failed, don't have
4641         internal_setgrent fail.  Just remember this until it is needed.
4642         * nis/nss_compat/compat-pwd.c: Likewise.
4643         * nis/nss_compat/compat-spwd.c: Likewise.
4645 2006-07-30  Roland McGrath  <roland@redhat.com>
4647         * sysdeps/unix/sysv/linux/ia64/sigsuspend.c: File removed.
4648         * sysdeps/unix/sysv/linux/x86_64/sigsuspend.c: File removed.
4649         * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c: File removed.
4650         * sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c: File removed.
4652         * sysdeps/unix/sysv/linux/not-cancel.h (pause_not_cancel): New macro.
4653         (nanosleep_not_cancel): New macro.
4654         (sigsuspend_not_cancel): new macro.
4655         * sysdeps/unix/sysv/linux/sigsuspend.c [__ASSUME_REALTIME_SIGNALS]
4656         (do_sigsuspend): Define as inline.
4657         (__sigsuspend): Always use do_sigsuspend.
4658         [! NO_CANCELLATION] (__sigsuspend_nocancel): New function.
4659         * include/signal.h: Declare __sigsuspend_nocancel.
4660         * sysdeps/posix/pause.c
4661         [! NO_CANCELLATION] (__pause_nocancel): New function.
4663         * include/unistd.h (__pause_nocancel): Add attribute_hidden.
4664         * include/time.h (__nanosleep_nocancel): Likewise.
4666 2006-07-30  Ulrich Drepper  <drepper@redhat.com>
4668         * locale/programs/localedef.c (add_to_readlist): Rename local
4669         variables to avoid confusion.
4671         * locale/programs/charmap.c (charmap_read): Emit error message if
4672         charmap couldn't be found or read.
4674 2006-07-28  Ulrich Drepper  <drepper@redhat.com>
4676         * sysdeps/unix/sysv/linux/kernel-features.h: Define
4677         __ASSUME_FUTEX_LOCK_PI.
4678         * include/time.h: Declare __nanosleep_nocancel.
4679         * include/unistd.h: Declare __pause_nocancel.
4681         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Use this instead of
4682         LDFLAGS.  Add -lgcc_eh and libc_nonshared (again) to make sure we
4683         get the __stack_chk_fail_local definition when it's needed.
4685 2006-07-26  Ulrich Drepper  <drepper@redhat.com>
4687         * dlfcn/Makefile: Add rules to build and run bug-atexit3.
4688         * dlfcn/bug-atexit3.c: New file.
4689         * dlfcn/bug-atexit3-lib.cc: New file.
4691         * dlfcn/dlmopen.c (dlmopen_doit): Don't allow RTLD_GLOBAL to be
4692         used when the namespace is not the base namespace.
4694 2006-07-26  Gavin Romig-Koch  <gavin@redhat.com>
4696         * stdlib/cxa_atexit.c (__new_exitfn_called): New variable.
4697         (__new_exitfn): Bump it in every successful call.
4698         * stdlib/cxa_finalize.c (__cxa_finalize): If destructor registered
4699         more exit handlers, call them right away.
4700         * stdlib/exit.h: Declare __new_exitfn_called.
4702 2006-07-25  Ulrich Drepper  <drepper@redhat.com>
4704         * stdlib/cxa_finalize.c (__cxa_finalize): Fix race condition when
4705         calling registered handler.
4707         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Fix comment.
4708         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
4709         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
4710         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
4711         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
4712         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
4713         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
4714         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
4716 2006-07-10  Ulrich Drepper  <drepper@redhat.com>
4718         * elf/dl-lookup.c (dl_new_hash): New functions.
4719         (_dl_lookup_symbol_x): Rename hash to old_hash and don't compute
4720         value here.  Compute new-style hash value.  Pass new hash value
4721         and reference to variable with the old value to do_lookup_x.
4722         (_dl_setup_hash): If DT_GNU_HASH is defined, use it and not
4723         old-style hash table.
4724         (_dl_debug_bindings): Pass new hash value and reference to variable
4725         with the old value to do_lookup_x.
4726         * elf/do-lookup.h (do_lookup_x): Accept additional parameter with
4727         new-style hash value and change old-style hash value parameter to
4728         be a reference.  Reoganize functions to determine whether
4729         new-style hash table is available.  Only fall back on old-style
4730         table.  If old-style hash value is needed, compute it here.
4731         * elf/dynamic-link.h (elf_get_dynamic_info): Relocate DT_GNU_HASH
4732         entry.
4733         * elf/elf.h: Define SHT_GNU_HASH, DT_GNU_HASH, DT_TLSDEC_PLT,
4734         DT_TLSDEC_GOT.  Adjust DT_ADDRNUM.
4735         * include/link.h (struct link_map): Add l_gnu_bitmask_idxbits,
4736         l_gnu_shift, l_gnu_bitmask, l_gnu_buckets and l_gnu_chain_zero.
4737         * Makeconfig: If linker supports --hash-style option add it to all
4738         linker command lines to build DSOs.
4739         * config.make.in: Define have-hash-style.
4740         * configure.in: Test whether linker supports --hash-style option.
4742         * elf/dl-misc.c (_dl_name_match_p): Make MAP parameter const.
4743         * sysdeps/generic/ldsodefs.h: Adjust prototype.
4745 2006-06-27  Ulrich Drepper  <drepper@redhat.com>
4747         * elf/dl-load.c (open_path): Fix test to determine whether DSO is
4748         auditing.
4750         * elf/dl-load.c (_dl_map_object): Try harder to avoid looking at
4751         RPATH of main map twice.
4753 2006-06-22  Ulrich Drepper  <drepper@redhat.com>
4755         * intl/dcigettext.c (DCIGETTEXT): If _nl_find_msg returns -1 don't
4756         look further, return original strings.
4757         (_nl_find_msg): Do not return found translation if the conversion
4758         failed.  Either signal the string is unusable or that something went
4759         wrong and the original should be used.
4761 2006-06-21  Ulrich Drepper  <drepper@redhat.com>
4763         * string/_strerror.c (__strerror_r): Add __builtin_expect.
4765 2006-06-14  Jakub Jelinek  <jakub@redhat.com>
4767         [BZ #2766]
4768         * misc/insremque.c (insque): Handle prev == NULL.
4769         * misc/Makefile (tests): Add tst-insremque.
4770         * misc/tst-insremque.c: New test.
4772 2006-06-17  Ulrich Drepper  <drepper@redhat.com>
4774         [BZ #2792]
4775         * elf/dl-deps.c (expand_dst): Rename __cnt variable to not
4776         conflict with DL_DST_REQUIRED.
4778 2006-06-16  Ulrich Drepper  <drepper@redhat.com>
4780         * nis/nis_subr.c (nis_getnames): Fix the implementation to better
4781         match what Solaris does.
4783 2006-06-04  Ulrich Drepper  <drepper@redhat.com>
4785         * sysdeps/posix/spawni.c (__spawni): Use local_seteuid and
4786         local_setegid instead of seteuid and setegid.
4787         * sysdeps/generic/local-setxid.h: New file.
4788         * sysdeps/unix/sysv/linux/local-setxid.h: New file.
4790         * sysdeps/posix/spawni.c (__spawni): Use non-cancelable interfaces.
4792         * string/Makefile (tests): Add bug-envz1.
4793         * string/bug-envz1.c: New file.
4795 2006-06-02  Jakub Jelinek  <jakub@redhat.com>
4797         * posix/regex_internal.c (re_string_skip_chars): If no character has
4798         been converted at all, set *last_wc to WEOF.  If mbrtowc failed, set wc
4799         to the byte which couldn't be converted.
4800         (re_string_reconstruct): Don't clear valid_raw_len before calling
4801         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
4802         tip_context using re_string_context_at.
4803         * posix/Makefile: Add rules to build and run bug-regex25 test.
4804         * posix/bug-regex25.c: New test.
4806 2006-06-02  Ryan S. Arnold  <rsa@us.ibm.com>
4808         [BZ #2703]
4809         * string/envz.c (envz_strip): Correct erroneously reversed src
4810         and dest parameters to memmove() invocation.
4812 2006-05-30  Jakub Jelinek  <jakub@redhat.com>
4814         * nscd/nscd.h (prune_cache): Add fd argument to prototype.
4815         * nscd/nscd.c (parse_opt): Read response from INVALIDATE request
4816         to make sure the database has been already invalidated.
4817         * nscd/cache.c (prune_cache): Add fd argument.  Write response to fd
4818         after the cache has been invalidated.  Use pthread_mutex_lock rather
4819         than pthread_mutex_trylock if fd != -1.
4820         * nscd/connections.c (invalidate_cache): Add fd argument, write
4821         response to fd if not calling prune_cache, pass fd to prune_cache.
4822         (handle_request): Adjust invalidate_cache caller.
4823         (nscd_run): Pass -1 as fd to prune_cache.
4825 2006-05-30  Ulrich Drepper  <drepper@redhat.com>
4827         * sysdeps/posix/getaddrinfo.c (gaiconf_init): Initialize bits in
4828         the correct place.
4830 2006-05-29  Ulrich Drepper  <drepper@redhat.com>
4832         * nscd/nscd.h (struct database_dyn): Add prunelock field.
4833         * nscd/cache.c (prune_cache): Take prunelock before starting the
4834         work.  Just return in case it is already taken.
4835         * nscd/connections.c (dbs): Initialize .prunelock.
4837 2006-05-25  Ulrich Drepper  <drepper@redhat.com>
4839         * nis/nis_removemember.c (nis_removemember): Avoid unnecessary
4840         copying.  No need to allocate new array for group members.  Just
4841         move the pointers and update the size.
4843         * nis/nis_addmember.c (nis_addmember): Avoid unnecessary copying.
4844         Avoid memory leak in case realloc fails.  Simplification for
4845         better code generation.
4847         Avoid deprecation warning because of libc_hidden_proto for
4848         inet6_option_alloc.
4849         * inet/inet6_option.c (option_alloc): Renamed from
4850         inet6_option_alloc.  Made static.
4851         (inet6_option_alloc): Now a simple wrapper around option_alloc.
4852         (inet6_option_append): Call option_alloc.
4853         * include/netinet/in.h: Remove libc_hidden_proto for
4854         inet6_option_alloc.
4856         * nis/nis_callback.c (__nis_create_callback): Always call xdr_free
4857         for cleanup when cb!=NULL [Coverity CID 233].
4859 2006-05-24  Ulrich Drepper  <drepper@redhat.com>
4861         [BZ #2693]
4862         * inet/Makefile (routines): Add inet6_opt and inet6_rth.
4863         * inet/Versions (libc, GLIBC_2.5): Add inet6_opt_init,
4864         inet6_opt_append, inet6_opt_finish, inet6_opt_set_val, inet6_opt_next,
4865         inet6_opt_find, inet6_opt_get_val, inet6_rth_space, inet6_rth_init,
4866         inet6_rth_add, inet6_rth_reverse, inet6_rth_segments,
4867         and inet6_rth_getaddr.
4868         * inet/netinet/ip6.h (struct ip6_rthdr0): Make ip6r0_addr a flexible
4869         array.
4870         * inet/netinet/in.h (struct ip6_mtuinfo): Define.
4871         Mark inet6_option_* interfaces as deprecated.
4872         Declare inet6_opt_init, inet6_opt_append, inet6_opt_finish,
4873         inet6_opt_set_val, inet6_opt_next, inet6_opt_find, inet6_opt_get_val,
4874         inet6_rth_space, inet6_rth_init, inet6_rth_add, inet6_rth_reverse,
4875         inet6_rth_segments, and inet6_rth_getaddr.
4876         * inet/inet6_opt.c: New file.
4877         * inet/inet6_rth.c: New file.
4879         * inet/netinet/icmp6.h: Pretty printing.
4881         [BZ #2683]
4882         * elf/dl-addr.c (_dl_addr): Don't match undefined references.
4884 2006-05-23  Ulrich Drepper  <drepper@redhat.com>
4886         * nis/nis_lookup.c (nis_lookup): Use __prepare_niscall instead of
4887         doing it all here.  When server does not know the answer do not
4888         fail immediate, try parent first.
4890         * nis/nis_domain_of_r.c (nis_domain_of_r): Add missing buffer
4891         overflow test.
4893 2006-05-20  Ulrich Drepper  <drepper@redhat.com>
4895         * nis/nis_call.c (__prepare_niscall): New function.  Split out
4896         from __do_niscall.
4897         * nis/nis_table.c (__create_ib_request): Renamed from create_ib_request
4898         and exported.
4899         (__follow_path): New function.  Split out from nis_list.
4900         * nis/nis_xdr.h: Add libnsl_hidden_proto for _xdr_ib_request and
4901         _xdr_nis_result.
4902         * nis/nis_xdr.c: Add libnsl_hidden_def for _xdr_ib_request and
4903         _xdr_nis_result.
4904         * nis/libnsl.h: Declare __prepare_niscall, __create_ib_request,
4905         and __follow_path.
4906         * nis/Versions: Export __prepare_niscall, __create_ib_request,
4907         __follow_path, __do_niscall3, _xdr_ib_request, and _xdr_nis_result
4908         from libnsl for version GLIBC_PRIVATE.
4909         * nis/nisplus-parser.h: Remove _nss_nisplus_parse_pwent_chk.
4910         Remove entry parameter from _nss_nisplus_parse_pwent and
4911         _nss_nisplus_parse_grent.
4912         * nis/nss_nisplus/nisplus-parser.c: Likewise.
4913         * nis/nss_nisplus/nisplus-pwd.c: Remove support for SETENT_BATCH_READ
4914         again.  Rewrite getpwent handling to not use nis_first_entry and
4915         nis_next_entry.  Roll out own niscall handling.
4916         * nis/nss_nisplus/nisplus-grp.c: Likewise.
4918         * sunrpc/xdr_rec.c: Fix typo in comment.
4920 2006-05-19  Ulrich Drepper  <drepper@redhat.com>
4922         * nis/nis_call.c (__do_niscall3): Avoid code duplication in error
4923         handling.
4925         * nis/nis_callback.c (internal_nis_do_callback): Don't use malloc
4926         to allocate memory for my_pollfd.  Better initialization of
4927         cb_is_running.  Use TEMP_FAILURE_RETRY.
4929         * malloc/memusage.sh (memusageso): Add quotes.
4930         (memusagestat): Likewise.
4931         * debug/xtrace.sh (pcprofileso): Likewise.
4932         (pcprofiledump): Likewise.
4933         * debug/Makefile ($(objpfx)xtrace): Use $LIB in SLIBDIR
4934         replacement.
4935         * malloc/Makefile ($(objpfx)memusage): Likewise.
4937         * nis/nis_callback.c (__nis_create_callback): Calls to
4938         svcudp_bufcreate and svctcp_create can fail.  Free ->xprt if
4939         asprintf call fails.
4941         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_sendreq): Make sure
4942         no uninitialized memory is passed to sendto.
4944 2006-05-18  Ulrich Drepper  <drepper@redhat.com>
4946         * nis/nis_callback.c (__nis_create_callback): Use asprinf instead
4947         of snprintf+strdup.  Handle OOM.
4948         * nis/nis_callback.c (__nis_create_callback): Allocate cb and
4949         cb->serv together.  Remove now obsolete free calls.
4950         (__nis_destroy_callback): Remove now obsolete free call.
4952 2006-05-18  David Woodhouse  <dwmw2@redhat.com>
4954         * sysdeps/posix/getaddrinfo.c: Add unique labels to the default
4955         RFC3484 precedence table for fec0::/10 and fc00::/7 (site-local
4956         and ULA respectively). Set precedence for IPv4 address to 10 as
4957         defined in RFC3484 for preferring IPv6.
4958         * posix/gai.conf: Update to match the new default tables.
4960 2006-05-18  Jakub Jelinek  <jakub@redhat.com>
4962         * nis/nss_compat/compat-pwd.c (internal_setpwent): If nss_set*ent
4963         returned NSS_STATUS_UNAVAIL, still return NSS_STATUS_SUCCESS.
4964         * nis/nss_compat/compat-spwd.c (internal_setspent): Likewise.
4965         * nis/nss_compat/compat-grp.c (internal_setgrent): Likewise.
4967         * nis/nss_compat/compat-initgroups.c (nss_setgrent, nss_endgrent):
4968         Removed.
4969         (init_nss_interface): Remove initialization of these variables.
4971 2006-05-18  Ulrich Drepper  <drepper@redhat.com>
4973         * nis/nis_call.c (rec_dirsearch): Little optimization: pull
4974         nis_free_directory forward to avoid duplication.
4976 2006-05-17  Ulrich Drepper  <drepper@redhat.com>
4978         * nis/nis_call.c (rec_dirsearch): Handle __nis_finddirectory and
4979         rec_dirsearch returning NULL.
4980         (first_shoot): Handle __nis_finddirectory returning NULL.
4981         (__nisfind_server): Fix leak when rec_dirsearch returns NULL.
4983         * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOSE, IN_MOVE,
4984         IN_ONLYDIR, IN_DONT_FOLLOW, and IN_MASK_ADD.
4986 2006-05-17  Jakub Jelinek  <jakub@redhat.com>
4988         * sunrpc/key_call.c (getkeyserv_handle): Call auth_destroy if
4989         pid changed.
4991 2006-05-15  Ulrich Drepper  <drepper@redhat.com>
4993         * include/rpc/pmap_prot.h: Mark all functions as hidden.
4995         * nscd/nscd_initgroups.c: Mark __gr_map_handle as hidden.
4996         * nscd/nscd_getgr_r.c: Likewise.
4998         * include/rpc/pmap_rmt.h: Mark all functions as hidden.
5000         * nscd/nscd_getai.c (__hst_map_handle): Mark as hidden.
5001         * nscd/nscd_gethst_r.c (__hst_map_handle): Likewise.
5003         * stdlib/longlong.h (__clz_tab): Mark as hidden.
5005         * iconv/gconv_int.h: Mark __gconv_lock as hidden.
5007         * include/rpc/key_prot.h: Mark all _internal functions as hidden.
5009         * include/rpc/auth.h: Mark xdr_des_block_internal and
5010         xdr_opaque_auth_internal as hidden.
5012         * sysdeps/unix/sysv/linux/getdents.c: Mark __have_no_getdents64 as
5013         hidden.
5015         * include/rpc/xdr.h: Mark all _internal functions as hidden.
5017         * misc/getusershell.c (okshells): Don't use static initializers,
5018         do it dynamically.
5020         * stdlib/fmtmsg.c (keywords): Change type of len element to
5021         uint32_t to not waste space on 64bit machines.
5023         * locale/setlocale.c: Change _nl_category_names into a string.
5024         Add new _nl_category_name_idxs.  Change all users.
5025         * locale/localeinfo.h: Adjust declaration of _nl_category_names.
5026         Declare _nl_category_name_idxs.
5027         * locale/findlocale.c: Adjust for _nl_category_names change.
5028         * locale/loadlocale.c: Likewise.
5029         * locale/newlocale.c: Likewise.
5030         * intl/dcigettext.c: Likewise.
5032         * iconv/gconv_conf.c (add_alias): Move actual alias handling to...
5033         (add_alias2): ...here.  New function.
5034         (__gconv_read_conf): Simplify builtin alias handling.
5035         (builtin_aliases): Convert to string to avoid relocations.
5036         * iconv/gconv_builtin.h: Add comment about correct formatting.
5038 2006-05-15  Jakub Jelinek  <jakub@redhat.com>
5040         * resolv/res_debug.c (loc_ntoa): Make error const.
5042 2006-05-14  Andreas Schwab  <schwab@suse.de>
5044         * math/complex.h [__LDBL_COMPAT]: Use __REDIRECT_NTH.
5046 2006-05-12  Jakub Jelinek  <jakub@redhat.com>
5048         * sysdeps/unix/sysv/linux/sched_getaffinity.c: Include sys/param.h.
5049         (__sched_getaffinity_new): Don't crash if cpusetsize is smaller than
5050         sizeof (cpu_set_t).
5052 2006-05-11  Ulrich Drepper  <drepper@redhat.com>
5054         * resolv/res_debug.c (loc_ntoa): Define error as array, not pointer.
5056         * include/arpa/nameser.h: Declare _ns_flagdata as hidden.
5058         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_master.
5059         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_master.
5061         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypbind_resp.
5062         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypbind_resp.
5064         * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_cback_data.
5065         * include/rpcsvc/nis_callback.h: Add libnsl_hidden_proto for
5066         xdr_cback_data.
5068         * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypupdate_args.
5069         * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
5070         xdr_ypupdate_args.
5072         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_order.
5073         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_order.
5075         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_maplist.
5076         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_maplist.
5078         * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_obj_p.
5079         * include/rpcsvc/nis_callback.h: New file.
5081         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_val.
5082         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_val.
5084         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
5085         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
5087         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypmaplist.
5088         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypmaplist.
5090         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
5091         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
5093         * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypdelete_args.
5094         * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
5095         xdr_ypdelete_args.
5097         * nis/nis_xdr.h: Mark all functions as hidden.  Remove
5098         __BEGIN_DECLS and __END_DECLS, the header is not installed.
5100         * nis/nis_error.c: Remove table of strings.  Use position
5101         independent mechanism.
5102         * nis/nis_error.h: New file.
5104 2006-05-11  Jakub Jelinek  <jakub@redhat.com>
5106         * locale/programs/ld-time.c (time_finish): If wide era name or
5107         format aren't provided, set both wname and wformat to L"".
5109 2006-05-10  Ulrich Drepper  <drepper@redhat.com>
5111         * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Only store
5112         results if the call was succesful.
5114         * nis/nss-nis.h: Mark __yperr2nss_tab and __yperr2nss_count as hidden.
5116         * nis/nss-nisplus.h: Mark __niserr2nss_tab and __niserr2nss_count
5117         as hidden.
5119 2006-05-10  Jakub Jelinek  <jakub@redhat.com>
5121         * misc/sys/queue.h: Remove uses of all QUEUEDEBUG_* macros.
5123 2006-05-10  Ulrich Drepper  <drepper@redhat.com>
5125         * posix/wordexp.c (parse_glob): No need to check ifs for NULL, the
5126         caller makes sure this is not the case.
5127         (wordexp): Simplify ifs_white creation.  [Coverity CID 231]
5129 2006-05-09  Ulrich Drepper  <drepper@redhat.com>
5131         * posix/wordexp.c: Remove numerous NULL pointer tests before FREE
5132         calls.
5134         * io/ftw.c (open_dir_stream): Return right away if REALLOC fails.
5135         [Coverity CID 229, 230]
5137         * argp/argp-help.c (hol_entry_help): Handle STATE==NULL in ARG and
5138         DGETTEXT calls.
5139         (hol_help): Likewise.  [Coverity CID 226, 227]
5141         * string/argz-replace.c (__argz_replace): Unconditionally call
5142         free on SRC.  [Coverity CID 225]
5144         * nis/nis_creategroup.c (nis_creategroup): No need to duplicate
5145         the return value of __nis_default_owner and __nis_default_group,
5146         it has been especially allocated.  [Coverity CID 224]
5148         * nis/nis_defaults.c (searchXYX): New functions.  Used by both
5149         searchgroup and searchowner.  Significantly simplified.
5150         (__nis_default_owner): Remove duplication.  Do not locally copy the
5151         string before duplicating it.
5152         (__nis_default_group): Likewise.
5154         * nis/nis_lookup.c (nis_lookup): After calling nis_free_directory,
5155         we must clear the variable before calling __nisfind_server.
5157         * nis/nis_lookup.c (nis_lookup): Always free memory allocated with
5158         nis_getnames.  [Coverity CID 223]
5160         * locale/programs/locfile.c (locfile_read): Use alloca instead of
5161         xmalloc to allocate local repertoire name.  [Coverity CID 222]
5163         * iconv/iconv_charmap.c (use_to_charmap): No need to dynamically
5164         allocate memory for the input to add_bytes.  [Coverity CID 221]
5166         * posix/wordexp.c (w_addword): Free word if realloc fails and it
5167         was allocated here.  [Coverity CID 219, 220]
5169         * posix/getconf.c (print_all): Free confstr data after printing.
5170         [Coverity CID 218]
5172         * sysdeps/posix/getaddrinfo.c (gaih_inet): Free canon string if
5173         list allocation fails.  [Coverity CID 215]
5175         * nss/nsswitch.c (__nss_configure_lookup): Fix loop end condition.
5176         [Coverity CID 213]
5178         * argp/argp-help.c (hol_entry_cmp): Don't call canon_doc_option if
5179         string is NULL.  [Coverity CID 212]
5180         * argp/Makefile: Add rules to build and run bug-argp1.
5181         * argp/bug-argp1.c: New file.
5183         * io/ftw.c (ftw_dir): Use __rawmemchr instead of strchr to find
5184         end of string.
5185         * stdlib/canonicalize.c (__realpath): Likewise.
5187         * locale/programs/ld-time.c (time_finish): Don't dereference NULL
5188         pointer.  [Coverity CID 206]
5190         * elf/dl-dst.h (DL_DST_REQUIRED): Be prepared for missing link map
5191         in statically linked code.
5192         * elf/dl-load.c (_dl_dst_substitute): When replacing ORIGIN in
5193         statically built code, be prepared to have no link map.
5194         [Coverity CID 205]
5196         * argp/argp-help.c (fill_in_uparams): Handle STATE==NULL in
5197         dgettext calls. [Coverity CID 204]
5199         * argp/argp-help.c (struct uparams): Remove valid member.  Change
5200         the one user.
5201         (uparam_names): Reduce size.  Avoid relative relocations.
5202         Moved to read-only segment.
5203         (fill_in_uparams): Update for new layout.
5205         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs): Parameter can be
5206         assumed to always be != NULL. [Coverity CID 202]
5208         * argp/argp-help.c (hol_entry_help): Remove some dead code
5209         [Coverity CID 200].
5211         * nis/nss_nis/nis-service.c (_nss_nis_getservbyport_r): Optimize
5212         away a few more unconditional yperr2nss calls.
5213         (_nss_nis_getservbyname_r): Likewise.
5215 2006-05-06  Ulrich Drepper  <drepper@redhat.com>
5217         * sysdeps/generic/ldsodefs.h: Remove support for non-core
5218         architectures.
5220         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Make sure
5221         that unused memory passed to sendto is nevertheless initialized.
5223         [BZ #2499]
5224         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Avoid
5225         possibly unaligned memory accesses.
5227         * include/arpa/nameser.h: Also optimize NS_PUT16 and NS_PUT32.
5228         * resolv/res_mkquery.c: Use NS_PUT16 and NS_PUT32 instead of __putshort
5229         and __putlong respectively.  Correct buffer overflow check for
5230         NS_NOTIFY_OP.
5232         * resolv/res_send.c (send_vc): Use ns_put16 instead of putshort.
5234         * resolv/res_send.c (res_queriesmatch): Fix typo in comment.
5235         (send_dg): Rewrite error handling to be more compact and avoid
5236         double recomputation of timeouts.  Pass MSG_NOSIGNAL to send.
5238         * include/arpa/nameser.h: Add optimizations for NS_GET16 and NS_GET32.
5240         * resolv/res_send.c (res_nameinquery): Use NS_GET16 directly
5241         instead of ns_get16.
5242         (res_queriesmatch): Likewise.  Minor optimization.
5244         [BZ #2499]
5245         * resolv/res_query.c (__libc_res_nquery): If answerp != NULL,
5246         __libc_res_nsend might reallocate the buffer for the answer.  In
5247         this case we have to reload the HP pointer.
5249 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
5251         * stdio-common/vfscanf.c (memory_error): Remove definition.  Add
5252         some branch prediction hints.
5254         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Define SPLICE_F_*.
5255         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
5256         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
5257         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
5258         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
5259         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
5260         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
5261         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
5263 2006-05-05  Martin Schwidefsky  <schwidefsky@de.ibm.com>
5265         * sysdeps/s390/s390-32/elf/start.S: Replace pc relative relocation
5266         by a GOT relocation to make Scrt1.o position independent.
5267         * sysdeps/s390/s390-64/elf/start.S: Likewise.
5269         * sysdeps/unix/sysv/linux/s390/s390-32/syscall.S: Add support for
5270         six system call parameters.
5271         * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
5273 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
5275         * sunrpc/svcauth_des.c (cache_init): Use calloc instead of
5276         malloc&bzero.
5278         * sunrpc/svc_udp.c (BZERO): Remove definition.
5279         (CALLOC): Define.
5280         (svc_enablecache): Use CALLOC instead of ALLOC&BZERO.
5282         * sunrpc/des_impl.c: Remove ALT_ECB support.  We never used it.
5283         (des_SPtrans): Use uint32_t type.
5284         (des_skb): Likewise.
5286         * sunrpc/xdr_ref.c (xdr_reference): Use calloc instead of malloc&bzero.
5288 2006-05-05  Jakub Jelinek  <jakub@redhat.com>
5290         [BZ #2509]
5291         * stdio-common/tst-printf.sh: Adjust for tst-printf.c change even
5292         on 32-bit arches.
5294 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
5296         * locale/programs/ld-address.c (address_finish): Fix one more
5297         place where the iso639 array might be accessed beyond the limits.
5299 2006-05-04  Ulrich Drepper  <drepper@redhat.com>
5301         * nis/nis_table.c (nis_list): Avoid clearing res twice before
5302         filling it for the first time.
5304         * nis/nis_table.c (get_tablepath): Renamed from __get_tablepath.
5305         Adjust all callers.
5306         Free res object content before returning.
5308         * sunrpc/xdr_array.c (xdr_array): Use calloc instead of malloc&bzero.
5310         * sunrpc/key_call.c (__rpc_thread_key_cleanup): Also free
5311         client->cl_auth.
5313         * sunrpc/rpc_thread.c (__rpc_thread_destroy): Don't skip entire
5314         cleanup for initial thread, just the free call on TVP.
5316         * nscd/gai.c (__getline): Define.
5319 See ChangeLog.16 for earlier changes.