* Makeconfig ($(common-objpfx)gnu/lib-names.stmp): Use LC_ALL=C when
[glibc.git] / ChangeLog
blob9e11c512016470e8e13b4a0c5cc321855ceb20a5
1 2007-07-05  Mike Frysinger  <vapier@gentoo.org>
3         * Makeconfig ($(common-objpfx)gnu/lib-names.stmp): Use LC_ALL=C when
4         running awk script.
6 2007-07-01  Jakub Jelinek  <jakub@redhat.com>
8         * elf/dl-sysdep.c (_dl_important_hwcaps): Add integer overflow check.
9         * elf/dl-minimal.c (__libc_memalign): Likewise.  Handle malloc (0).
10         Return NULL if mmap failed instead of asserting it does not.
11         (calloc): Check for integer overflow.
13         * elf/dl-minimal.c (__strtoul_internal): Fix parsing of numbers bigger
14         than LONG_MAX / 10.
16 2007-07-03  Jakub Jelinek  <jakub@redhat.com>
18         [BZ #4702]
19         * nis/nss-default.c: Include errno.h.
20         (init): Preserve errno.
22 2007-07-02  Ulrich Drepper  <drepper@redhat.com>
24         * sysdeps/unix/sysv/linux/bits/socket.h (PF_UNIX): Update comment.
26 2007-06-30  Ulrich Drepper  <drepper@redhat.com>
28         * sysdeps/unix/sysv/linux/bits/socket.h: Add PF_RXRPC and AF_RXRPC.
30 2007-06-29  Martin Schwidefsky  <schwidefsky@de.ibm.com>
32         * sysdeps/unix/sysv/linux/bits/socket.h: Add PF_IUCV and AF_IUCV.
34 2007-06-29  Martin Schwidefsky  <schwidefsky@de.ibm.com>
36         * sysdeps/s390/dl-procinfo.c: New file.
37         * sysdeps/s390/dl-procinfo.h: New file.
38         * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: New file.
40 2007-06-29  Jakub Jelinek  <jakub@redhat.com>
42         * elf/dl-load.c (open_verify): Find .note.ABI-tag notes even
43         in PT_NOTE segments with multiple notes.
44         * elf/readelflib.c (process_elf_file): Likewise.
46 2007-06-22  Ulrich Drepper  <drepper@redhat.com>
48         * nis/nis_domain_of.c (__nis_domain_of): Make the code a bit more
49         ISO C compliant.
51 2007-06-19  Ulrich Drepper  <drepper@redhat.com>
53         * elf/dl-close.c (free_mem): Free _dl_scope_free_list.
55 2007-06-13  Jakub Jelinek  <jakub@redhat.com>
57         * include/link.h: Don't include rtld-lowlevel.h.
58         (struct link_map): Remove l_scope_lock.
59         * sysdeps/generic/ldsodefs.h: Don't include rtld-lowlevel.h.
60         (_dl_scope_free_list): New field (variable) in _rtld_global.
61         (DL_LOOKUP_SCOPE_LOCK): Remove.
62         (_dl_scope_free): New prototype.
63         * elf/dl-runtime.c (_dl_fixup): Don't use __rtld_mrlock_*lock.
64         Don't pass DL_LOOKUP_SCOPE_LOCK to _dl_lookup_symbol_x.
65         (_dl_profile_fixup): Likewise.
66         * elf/dl-sym.c (do_sym): Likewise.  Use wrapped _dl_lookup_symbol_x
67         whenever !RTLD_SINGLE_THREAD_P, use THREAD_GSCOPE_SET_FLAG and
68         THREAD_GSCOPE_RESET_FLAG around it.
69         * elf/dl-close.c (_dl_close_worker): Don't use
70         __rtld_mrlock_{change,done}.  Call _dl_scope_free on the old
71         scope.  Make sure THREAD_GSCOPE_WAIT () happens if any old
72         scopes were queued or if l_scope_mem has been abandoned.
73         * elf/dl-open.c (_dl_scope_free): New function.
74         (dl_open_worker): Use it.  Don't use __rtld_mrlock_{change,done}.
75         * elf/dl-support.c (_dl_scope_free_list): New variable.
76         * elf/dl-lookup.c (add_dependency): Remove flags argument.
77         Remove DL_LOOKUP_SCOPE_LOCK handling.
78         (_dl_lookup_symbol_x): Adjust caller.  Remove DL_LOOKUP_SCOPE_LOCK
79         handling.
80         * elf/dl-object.c (_dl_new_object): Don't use
81         __rtld_mrlock_initialize.
83 2007-06-19  Ulrich Drepper  <drepper@redhat.com>
85         * sysdeps/generic/ldsodefs.h (rtld_global): Reorder some elements
86         to fill in holes
87         (rtld_global_ro): Likewise.
89 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
91         * elf/dl-addr.c (_dl_addr): Skip PT_LOAD checking if l_contiguous.
92         Move PT_LOAD checking to...
93         (_dl_addr_inside_object): ... here, new function.
94         * elf/dl-sym.c (do_sym): If not l_contiguous,
95         call _dl_addr_inside_object.
96         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Likewise.
97         * dlfcn/dlinfo.c (dlinfo_doit): Likewise.
98         * elf/dl-open.c (dl_open_worker): Likewise.
99         (_dl_addr_inside_object): New function if IS_IN_rtld.
100         * elf/dl-load.c (_dl_map_object_from_fd): Set l_contiguous if no
101         holes are present or are PROT_NONE protected.
102         * include/link.h (struct link_map): Add l_contiguous field.
103         * sysdeps/generic/ldsodefs.h (_dl_addr_inside_object): New prototype.
105 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
106             Tomas Janousek  <tjanouse@redhat.com>
107             Ulrich Drepper  <drepper@redhat.com>
109         [BZ #4647]
110         * resolv/res_send.c (send_dg): Remove socket_pf.  Use ipv6_unavail
111         member in __res_state, only convaddr4to6 if nssocks[ns] is a PF_INET6
112         socket.
113         * resolv/resolv.h (__res_state): Add ipv6_unavail member.  Make
114         unused member a bitmap.
115         * resolv/res_init.c (__res_vinit): Reset ipv6_unavail if IPv6
116         servers are configured.
118 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
120         * elf/rtld.c (dl_main): Don't call init_tls more than once.
122 2007-06-17  Andreas Schwab  <schwab@suse.de>
124         * sysdeps/generic/initfini.c: Tell gcc about the nonstandard sections.
126 2007-06-16  Andreas Jaeger  <aj@suse.de>
128         [BZ #4125]
129         * sysdeps/unix/sysv/linux/sys/ptrace.h
130         (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK,
131         PTRACE_O_TRACEVFORK, PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC,
132         PTRACE_O_TRACEVFORKDONE, PTRACE_O_TRACEEXIT, PTRACE_O_MASK,
133         PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK, PTRACE_EVENT_CLONE,
134         PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE, PTRACE_EVENT_EXIT):
135         Define.
136         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
137         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
138         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
139         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
141 2007-06-16  Ulrich Drepper  <drepper@redhat.com>
143         [BZ #4599]
144         * sysdeps/unix/sysv/linux/check_pf.c (make_request): When
145         determining whether there are IPv4/IPv6 addresses, ignore loopback
146         addresses.
148 2007-06-14 Uros Bizjak <ubizjak@gmail.com>
150         * soft-fp/soft-fp.h (CMPtype): Define to "int" if undefined.
151         * soft-fp/eqdf2.c (__eqdf2): Use CMPtype instead of int
152         as the return type.  Change type of "r" variable to CMPtype.
153         * soft-fp/eqsf2.c (__eqsf2): Likewise.
154         * soft-fp/eqtf2.c (__eqtf2): Likewise.
155         * soft-fp/gedf2.c (__gedf2): Likewise.
156         * soft-fp/gesf2.c (__gesf2): Likewise.
157         * soft-fp/getf2.c (__getf2): Likewise.
158         * soft-fp/ledf2.c (__ledf2): Likewise.
159         * soft-fp/lesf2.c (__lesf2): Likewise.
160         * soft-fp/letf2.c (__letf2): Likewise.
161         * soft-fp/unorddf2 (__unorddf2): Likewise.
162         * soft-fp/unordsf2 (__unordsf2): Likewise.
163         * soft-fp/unordtf2 (__unordtf2): Likewise.
165 2007-06-09  Ulrich Drepper  <drepper@redhat.com>
167         * elf/do-lookup.h (do_lookup_x): Read r_nlist before r_list and
168         make sure gcc doesn't mess around with this.
170 2007-06-08  Ulrich Drepper  <drepper@redhat.com>
172         * elf/dl-lookup.c (_dl_lookup_symbol_x): Remove use of r_nlist.
174 2007-06-08  Jakub Jelinek  <jakub@redhat.com>
176         * elf/dl-close.c (_dl_close_worker): Remove all to be removed
177         libraries from the global scope at once and call THREAD_GSCOPE_WAIT
178         at most once per _dl_close_worker.
180 2007-06-08  Ulrich Drepper  <drepper@redhat.com>
182         * sysdeps/unix/sysv/linux/bits/sched.h: Make second parameter of
183         __sched_cpucount as const.
184         * posix/sched_cpucount.c: Adjust.
186         * posix/sched_cpucount.c (__sched_cpucount): Allow using special
187         instruction for counting bits.
188         * sysdeps/x86_64/sched_cpucount.c: New file.
190 2007-06-07  Ulrich Drepper  <drepper@redhat.com>
192         * configure.in: Avoid variable named BASH.
193         * config.make.in: Likewise.
194         Patch in part by Mike Frysinger.
196 2007-06-06  Jakub Jelinek  <jakub@redhat.com>
198         [BZ #4586]
199         * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Treat
200         pseudo-zeros as zero.
201         * sysdeps/x86_64/ldbl2mpn.c: New file.
202         * sysdeps/ia64/ldbl2mpn.c: New file.
204 2007-06-04  Jakub Jelinek  <jakub@redhat.com>
206         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (nextafterl): Remove
207         unused ily variable.  Fix nextafterl on +-__LDBL_MAX__ and +-Inf.
208         Remove unreachable code at the end.
210 2007-06-01  Steven Munroe  <sjmunroe@us.ibm.com>
212         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Correct description of
213         ldbl-128ibm in comment.
214         (fpclassifyl): Correct classification of denormals.
215         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (nextafterl): Correct
216         return value for MIN denormal. Rewrite using long double math too
217         correctly handle denormals and canonicalize the results.
219 2007-06-05  Jakub Jelinek  <jakub@redhat.com>
221         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c
222         (__mpn_construct_long_double): Fix conversion where result ought
223         to be smaller than __LDBL_MIN__, or the low double should be
224         denormal.  Fix decision where to negate low double - honor round
225         to even rules.
226         * stdio-common/tst-sprintf2.c: Include string.h.
227         (COMPARE_LDBL): Define.
228         (TEST): Also test whether a string hexadecimal float representation
229         can be parsed back to the number.
230         (main): Add a couple of further tests.
232 2007-06-04  Jakub Jelinek  <jakub@redhat.com>
234         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c
235         (PRINT_FPHEX_LONG_DOUBLE): Fix printing numbers where lower double
236         is non-zero, but smaller than 2 * __DBL_MIN__.
237         * stdio-common/tst-sprintf2.c: New test.
238         * stdio-common/Makefile (tests): Add tst-sprintf2.
240         * math/test-misc.c (main): Don't run last batch of tests with
241         IBM long double format.
243 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
245         * sysdeps/powerpc/powerpc32/970/fpu/Implies: New file.
246         * sysdeps/powerpc/powerpc32/power5/fpu/Implies: New file.
247         * sysdeps/powerpc/powerpc32/power5+/fpu/Implies: New file.
248         * sysdeps/powerpc/powerpc32/power6/fpu/Implies: New file.
249         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
250         * sysdeps/powerpc/powerpc64/970/fpu/Implies: New file.
251         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: New file.
252         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: New file.
253         * sysdeps/powerpc/powerpc64/power6/fpu/Implies: New file.
254         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: New file.
255         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/fpu/Implies: New file.
256         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/fpu/Implies:
257         New file.
258         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/fpu/Implies:
259         New file.
260         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/fpu/Implies:
261         New file.
262         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/Implies:
263         New file.
264         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/fpu/Implies:
265         New file.
266         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/fpu/Implies: New file.
267         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/fpu/Implies:
268         New file.
269         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/fpu/Implies:
270         New file.
271         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/fpu/Implies:
272         New file.
273         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/Implies:
274         New file.
275         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/fpu/Implies:
276         New file.
278 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
280         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S: Move.
281         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: To here.
282         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrintf.S: Move.
283         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: To here.
284         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llround.S: Move.
285         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: To here.
286         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llroundf.S: Move.
287         * sysdeps/powerpc/powerpc32/power4/fpu/s_llroundf.S: To here.
289 2007-05-22  Steven Munroe  <sjmunroe@us.ibm.com>
291         * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S
292         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
293         * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S
294         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
295         * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S
296         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
297         * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S
298         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
300 2007-05-21  Steven Munroe  <sjmunroe@us.ibm.com>
302         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: New file.
303         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.c: New file.
304         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: New file.
305         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: New file.
307 2007-03-15  Steven Munroe  <sjmunroe@us.ibm.com>
309         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S
310         [LONG_DOUBLE_COMPAT]: Add compat_symbol for llrintl@@GLIBC_2_1.
312 2006-02-13  Steven Munroe  <sjmunroe@us.ibm.com>
314         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: New File
315         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: New File
316         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: New File
317         * sysdeps/powerpc/powerpc32/power6/fpu/s_llroundf.S: New File
319 2006-10-20  Steven Munroe  <sjmunroe@us.ibm.com>
321         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: New file.
322         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: New file.
324 2006-10-03  Steven Munroe  <sjmunroe@us.ibm.com>
326         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llround.S: New file.
327         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llroundf.S: New file.
329         * sysdeps/powerpc/powerpc32/powerpc64/fpu/Makefile: Moved.
330         * sysdeps/powerpc/powerpc32/powerpc64/fpu/mpa.c: Likewise.
331         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile: To here.
332         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
334 2006-09-29  Steven Munroe  <sjmunroe@us.ibm.com>
336         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S: New file.
337         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: New file.
338         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: New file.
339         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: New file.
341 2006-09-28  Steven Munroe  <sjmunroe@us.ibm.com>
343         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: New file.
344         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llroundf.S: New file.
345         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: New file.
346         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
347         * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: New file.
348         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: New file.
350 2006-08-31  Steven Munroe  <sjmunroe@us.ibm.com>
352         * sysdeps/powerpc/powerpc32/powerpc64/fpu/Makefile: New file.
353         * sysdeps/powerpc/powerpc32/powerpc64/fpu/mpa.c: New file.
354         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile: New file.
355         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: New file.
357 2006-06-15  Steven Munroe  <sjmunroe@us.ibm.com>
359         * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S: New file.
360         * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S: New file.
361         * sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S: New file.
362         * sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S: New file.
363         * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S: New file.
364         * sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S: New file.
365         * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S: New file.
366         * sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S: New file.
367         * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S: New file.
368         * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S: New file.
369         * sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S: New file.
370         * sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S: New file.
371         * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S: New file.
372         * sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S: New file.
373         * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S: New file.
374         * sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S: New file.
376 2006-03-20  Steven Munroe  <sjmunroe@us.ibm.com>
378         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S: New file.
379         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrintf.S: New file.
381 2007-06-01  Steven Munroe  <sjmunroe@us.ibm.com>
383         * sysdeps/powerpc/powerpc32/power6/memset.S: New file.
384         * sysdeps/powerpc/powerpc64/power6/memset.S: New file.
386 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
388         * sysdeps/powerpc/powerpc32/970/Implies: New file.
389         * sysdeps/powerpc/powerpc32/power5/Implies: New file.
390         * sysdeps/powerpc/powerpc32/power5+/Implies: New file.
391         * sysdeps/powerpc/powerpc32/power6/Implies: New file.
392         * sysdeps/powerpc/powerpc32/power6x/Implies: New file.
393         * sysdeps/powerpc/powerpc64/970/Implies: New file.
394         * sysdeps/powerpc/powerpc64/power5/Implies: New file.
395         * sysdeps/powerpc/powerpc64/power5+/Implies: New file.
396         * sysdeps/powerpc/powerpc64/power6/Implies: New file.
397         * sysdeps/powerpc/powerpc64/power6x/Implies: New file.
399 2007-05-21  Steven Munroe  <sjmunroe@us.ibm.com>
401         * sysdeps/powerpc/powerpc32/power4/memset.S: New file
403 2007-03-13  Steven Munroe  <sjmunroe@us.ibm.com>
405         * sysdeps/powerpc/powerpc64/memcpy.S: Improve aligned loop to minimize
406         branch miss-predicts. Ensure that cache line crossing does not impact
407         dispatch grouping.
409 2006-12-13  Steven Munroe  <sjmunroe@us.ibm.com>
411         * sysdeps/powerpc/powerpc64/power4/memcopy.h: Replace with include
412         "../../powerpc32/power4/memcopy.h".
413         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: Replace with include
414         "../../powerpc32/power4/wordcopy.c".
416 2006-10-03  Steven Munroe  <sjmunroe@us.ibm.com>
418         * sysdeps/powerpc/powerpc32/powerpc64/Makefile: Moved.
419         * sysdeps/powerpc/powerpc32/powerpc64/memcopy.h: Likewise.
420         * sysdeps/powerpc/powerpc32/powerpc64/wordcopy.c: Likewise.
421         * sysdeps/powerpc/powerpc32/power4/Makefile: To here.
422         * sysdeps/powerpc/powerpc32/power4/memcopy.h: Likewise.
423         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Likewise.
425 2006-09-10  Steven Munroe  <sjmunroe@us.ibm.com>
427         * sysdeps/powerpc/powerpc32/power6/memcpy.S: New file.
429 2006-08-31  Steven Munroe  <sjmunroe@us.ibm.com>
431         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: New file.
432         * sysdeps/powerpc/powerpc32/powerpc64/Makefile: New file.
433         * sysdeps/powerpc/powerpc32/powerpc64/memcopy.h: New file.
434         * sysdeps/powerpc/powerpc32/powerpc64/wordcopy.c: New file.
435         * sysdeps/powerpc/powerpc64/power4/Makefile: New file.
436         * sysdeps/powerpc/powerpc64/power4/memcopy.h: New file.
437         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: New file.
438         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: New file.
440 2006-07-06  Steven Munroe  <sjmunroe@us.ibm.com>
442         * sysdeps/powerpc/powerpc64/power6/memcpy.S: New file.
444 2006-03-20  Steven Munroe  <sjmunroe@us.ibm.com>
446         * sysdeps/powerpc/powerpc32/power4/memcmp.S: New file.
447         * sysdeps/powerpc/powerpc32/power4/memcpy.S: New file.
448         * sysdeps/powerpc/powerpc32/power4/memset.S: New file.
449         * sysdeps/powerpc/powerpc32/power4/strncmp.S: New file.
450         * sysdeps/powerpc/powerpc64/power4/memcmp.S: New file.
451         * sysdeps/powerpc/powerpc64/power4/memcpy.S: New file.
452         * sysdeps/powerpc/powerpc64/power4/strncmp.S: New file.
454 2007-05-29  Roland McGrath  <roland@redhat.com>
456         * po/Makefile (po-sed-cmd): New variable.
457         (libc.pot.files): Move sed command text in there, avoid \ inside ''.
459 2007-05-29  Ulrich Drepper  <drepper@redhat.com>
461         * crypt/md5-crypt.c: Fix comment.
463         * nscd/nscd_helper.c (get_mapping): Handle short replies instead
464         of crashing.  When this is the case or if the reply is malformed,
465         don't try to close the new file descriptor since it does not
466         exist.
467         Patch in part by Guillaume Chazarain <guichaz@yahoo.fr>.
469 2007-05-28  Jakub Jelinek  <jakub@redhat.com>
471         * sysdeps/unix/sysv/linux/futimes.c (miss_utimensat): Don't define
472         if __NR_utimensat is not defined.
474 2007-05-26  Ulrich Drepper  <drepper@redhat.com>
476         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Include <sysdep.h>.
478 2007-05-25  Jakub Jelinek  <jakub@redhat.com>
480         * io/bits/fcntl2.h (__open_2): Add nonnull attribute.
481         (open): Fix comment typos.  Don't call __open_2 if flags
482         is a compile time constant without O_CREAT.
483         (__open64_2): Add nonnull attribute.
484         (open64): Fix comment typos.  Don't call __open64_2 if flags
485         is a compile time constant without O_CREAT.
486         (__openat_2): Add nonnull attribute, fix nonnull attribute
487         on redirect.
488         (openat): Fix comment typos.  Don't call __openat_2 if flags
489         is a compile time constant without O_CREAT.
490         (__openat64_2): Add nonnull attribute, fix nonnull attribute
491         on redirect.
492         (openat64): Fix comment typos.  Don't call __openat64_2 if flags
493         is a compile time constant without O_CREAT.
495 2007-05-24  Ulrich Drepper  <drepper@redhat.com>
497         * Makerules (sysd-rules): Define PTW for ptw-* files.
498         * Versions: Define GLIBC_2.7 for libc.
499         * include/stdio.h: Declare __fortify_fail.
500         * debug/fortify_fail.c: New file.
501         * debug/Makefile (routines): Add fortify_fail.
502         * debug/chk_fail.c: Use __fortify_fail.
503         * debug/stack_chk_fail.c: Likewise.
504         * io/Versions: Export __open_2, __open64_2, __openat_2, and
505         __openat64_2 for GLIBC_2.7.
506         * io/fcntl.h: When compiling with fortification, include bits/fcntl2.h.
507         * io/open.c: Define *_2 variant of function which checks for O_CREAT
508         and fails if necessary.
509         * io/open64.c: Likewise.
510         * io/openat.c: Likewise.
511         * io/openat64.c: Likewise.
512         * sysdeps/unix/sysv/linux/open64.c: Likewise.
513         * sysdeps/unix/sysv/linux/openat.c: Likewise.
514         * sysdeps/unix/sysv/linux/openat64.c: Likewise.
515         * io/bits/fcntl2.h: New file.
516         * include/fcntl.h: Declare __open_2, __open64_2, __openat_2, and
517         __openat64_2.
518         * include/bits/fcntl2.h: New file.
519         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
520         Add open_2.
521         * sysdeps/unix/sysv/linux/open_2.c: New file.
523 2007-05-21  Ulrich Drepper  <drepper@redhat.com>
525         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Pass correct value
526         as second parameter to handle_intel.
528         * nscd/aicache.c (addhstaiX): If reported TTL is zero don't cache
529         the entry.
531         * sysdeps/unix/sysv/linux/x86_64/sysconf.c: Move cache information
532         handling to ...
533         * sysdeps/x86_64/cacheinfo.c: ... here.  New file.
534         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
535         cacheinfo.
536         * sysdeps/x86_64/memcpy.S: Complete rewrite.
537         * sysdeps/x86_64/mempcpy.S: Adjust appropriately.
538         Patch by Evandro Menezes <evandro.menezes@amd.com>.
540         * sysdeps/unix/sysv/linux/i386/epoll_pwait.S: New file.
542 2007-05-21  Jakub Jelinek  <jakub@redhat.com>
544         [BZ #4525]
545         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add epoll_pwait.
546         * sysdeps/unix/sysv/linux/epoll_pwait.c: New file.
547         * sysdeps/unix/sysv/linux/syscalls.list (epoll_pwait): Remove.
549         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h (epoll_pwait): Declare.
551         [BZ #4514]
552         * stdio-common/vfprintf.c (vfprintf): Don't shadow workstart variable,
553         reinitialize workend at the start of each do_positional format spec
554         loop, free workstart before do_positional loops.
555         (printf_unknown): Fix size of work_buffer.
556         * stdio-common/tst-sprintf.c (main): Add 3 new testcases.
558         * malloc/hooks.c (MALLOC_STATE_VERSION): Bump.
559         (public_sET_STATe): If ms->version < 3, put all chunks into
560         unsorted chunks and clear {fd,bk}_nextsize fields of largebin
561         chunks.
563         * malloc/malloc.c [MALLOC_DEBUG]: Revert 2007-05-13 changes.
564         * malloc/hooks.c: Likewise.
565         * malloc/arena.c: Likewise.
566         * malloc/malloc.c (do_check_malloc_state): Don't assert
567         n_mmaps is not greater than n_mmaps_max.  This removes the need
568         for the previous change.
570         * malloc/Makefile (CFLAGS-malloc.c): Revert accidental
571         2007-05-07 commit.
573 2007-05-19  Ulrich Drepper  <drepper@redhat.com>
575         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PRIVATE_FUTEX):
576         Define for kernel >= 2.6.22.
578 2007-05-18  Ulrich Drepper  <drepper@redhat.com>
580         * elf/dl-close.c (_dl_close_worker): When removing object from
581         global scope, wait for all lookups to finish afterwards.
582         * elf/dl-open.c (add_to_global): When global scope array must
583         grow, allocate a new one and free old array only after all
584         lookups finish.
585         * elf/dl-runtime.c (_dl_fixup): Protect using global scope.
586         (_dl_lookup_symbol_x): Likewise.
587         * elf/dl-support.c: Define _dl_wait_lookup_done.
588         * sysdeps/generic/ldsodefs.h (struct rtld_global): Add
589         _dl_wait_lookup_done.
591         * malloc/malloc.c (do_check_chunk): Correct check for mmaped block
592         not overlapping with arena.
594         * malloc/mcheck.c (reallochook): If size==0, free the block.
596         * rt/tst-shm.c: Use fstat64 instead of fstat.
598         * sysdeps/unix/sysv/linux/i386/sync_file_range.S: Fix case where
599         __NR_sync_file_range is not defined.
601 2007-05-17  Ulrich Drepper  <drepper@redhat.com>
603         Dummy files to prevent stub versions from being used.
604         * sysdeps/x86_64/fpu/k_cosl.c: New file.
605         * sysdeps/x86_64/fpu/k_rem_pio2l.c: New file.
606         * sysdeps/x86_64/fpu/k_sinl.c: New file.
607         * sysdeps/x86_64/fpu/k_tanl.c: New file.
609         * version.h (VERSION): Set to 2.6.90.
611 2007-05-14  Ulrich Drepper  <drepper@redhat.com>
613         * version.h (VERSION): Define to 2.6.
614         * include/features.h (__GLIBC_MINOR__): Define to 6.
616         * malloc/malloc.c: Use all small bin slots on 64-bit archs.
618         * malloc/malloc.c (largebin_index): Really have 32 buckets with 64
619         sizes.
621 2007-05-13  Ulrich Drepper  <drepper@redhat.com>
623         * malloc/malloc.c [MALLOC_DEBUG]: Keep track of current maximum
624         number of mmaps.  n_mmaps_max is the target.
625         * malloc/hooks.c: Likewise.
626         * malloc/arena.c: Likewise.
628 2007-05-12  Andreas Jaeger  <aj@suse.de>
630         * sysdeps/unix/sysv/linux/tst-getcpu.c: Include <unistd.h> for
631         getpid.
633 2007-05-11  Ulrich Drepper  <drepper@redhat.com>
635         * elf/dl-close.c (_dl_close_worker): Help gcc to optimize by
636         adding new variables.
638         * elf/dl-open.c (add_to_global): Introduce variable ns to help gcc
639         optimize.  Completely extend global scope array before making the
640         new entries visible.
642 2007-05-10  Ulrich Drepper  <drepper@redhat.com>
644         * sysdeps/unix/sysv/linux/tst-getcpu.c: New file.
645         * sysdeps/unix/sysv/linux/Makefile [subdir=posix] (tests): Add
646         tst-getcpu.
648         * include/link.h: Move l_version and l_nversion members around to
649         fill gaps.
651         * scripts/check-c++-types.sh: Don't use -fnu89-inline option.
653         * sysdeps/unix/sysv/linux/sched_setaffinity.c
654         (__sched_setaffinity_new): If syscall was successful and
655         RESET_VGETCPU_CACHE is defined, use it before returning.
656         * sysdeps/unix/sysv/linux/x86_64/sched_setaffinity.c: New file.
658         * io/sys/stat.h: Make sure struct timespec is defined for
659         __USE_ATFILE.
661         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Define UTIME_NOW and
662         UTIME_OMIT.
663         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
664         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
665         * sysdeps/unix/sysv/linux/alpha/bits/stat.h: Likewise.
666         * sysdeps/unix/sysv/linux/ia64/bits/stat.h: Likewise.
667         * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
668         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
669         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_UTIMENSAT.
670         * io/sys/stat.h: Declare utimensat, futimens.
671         * io/utimensat.c: New file.
672         * io/futimens.c: New file.
673         * sysdeps/unix/sysv/linux/utimensat.c: New file.
674         * sysdeps/unix/sysv/linux/futimens.c: New file.
675         * io/Makefile (routines): Add utimensat, futimens.
676         * io/Versions: Add utimensat, futimens to GLIBC_2.6.
677         * sysdeps/unix/sysv/linux/lutimes.c: New file.
678         * sysdeps/unix/sysv/linux/futimes.c: Use utimensat syscall if
679         available.
681         * include/sys/cdefs.h: Redefine __nonnull so that test for
682         incorrect parameters in the libc code itself are not omitted.
684 2007-05-09  Jakub Jelinek  <jakub@redhat.com>
686         * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow
687         exception in addition to inexact when asked to raise only FE_INEXACT.
689         [BZ #3427]
690         * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Don't clear exceptions
691         in *envp.
693 2007-05-07  Ulrich Drepper  <drepper@redhat.com>
695         [BZ #4403]
696         * string/strfry.c (strfry): Make result more random.
698 2007-05-07  Richard Henderson  <rth@redhat.com>
700         * sysdeps/alpha/fpu/bits/mathinline.h (__isnanl): Don't define
701         if __NO_LONG_DOUBLE_MATH.
702         * sysdeps/unix/sysv/linux/alpha/ioperm.c: If BWX insns not
703         available in the compiler, add .arch directive to the assembly.
705 2007-05-07  Jakub Jelinek  <jakub@redhat.com>
707         * sysdeps/alpha/fpu/s_nearbyint.c (nearbyintl): Fix version on
708         compat_symbol to GLIBC_2_1.
709         * sysdeps/alpha/fpu/s_fmin.S (fminl): Likewise.
710         * sysdeps/alpha/fpu/s_trunc.c (truncl): Likewise.
711         * sysdeps/alpha/fpu/s_fmax.S (fmaxl): Likewise.
712         * sysdeps/alpha/fpu/s_lrint.c (lrintl, llrintl): Likewise.
713         * sysdeps/alpha/fpu/s_lround.c (lroundl, llroundl): Likewise.
714         * sysdeps/alpha/fpu/s_round.c (roundl): Likewise.
715         * sysdeps/alpha/fpu/s_isnan.c (isnanl): Provide compat_symbol in
716         libc, not libm.
717         (__isnanl): New compat_symbol.
719 2007-05-07  Ulrich Drepper  <drepper@redhat.com>
720             Jakub Jelinek  <jakub@redhat.com>
722         * malloc/arena.c (heap_info): Add mprotect_size field, adjust pad.
723         (new_heap): Initialize mprotect_size.
724         (grow_heap): When growing, only mprotect from mprotect_size till
725         new_size if mprotect_size is smaller.  When shrinking, use PROT_NONE
726         MMAP for __libc_enable_secure only, otherwise use MADV_DONTNEED.
728 2007-04-30  Steven Munroe  <sjmunroe@us.ibm.com>
729             Peter Bergner  <bergner@us.ibm.com>
731         * sysdeps/powerpc/bits/fenv.h: Declare __fe_mask_env extern.
732         Define FE_NOMASK_ENV as FE_EANBLED_ENV.  Define FE_MASK_ENV.
733         * sysdeps/powerpc/fpu/Makefile: Add fe_mask to libm-support.
734         * sysdeps/powerpc/fpu/fe_mask.c: New file.
735         * sysdeps/powerpc/fpu/fe_nomask.c: Correct comment.
736         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept):
737         Call __fe_mask_env() if all FP exceptions disabled.
738         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Copy high 32-bits
739         from old FPSCR to new fenv to propagate DFP rounding modes.
740         Call __fe_mask_env() if FP exceptions previously enabled.
741         * sysdeps/powerpc/fpu/fesetenv.c (fesetenv): Change mask to merge
742         exceptions from env.  Use __fe_nomask_env() or __fe_mask_env() when
743         transitioning from all exceptions disabled to any exception enabled
744         or visa versa.
745         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Change mask to
746         merge exceptions from env.  Call __fe_nomask_env or __fe_mask_env
747         when transitioning from all exceptions disabled to any exception
748         enabled or visa versa.
749         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fe_nomask.c: Moved to...
750         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: ...here.
751         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c: Moved to...
752         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: ...here.
753         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c: New file.
754         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c: New file.
756 2007-05-06  Ulrich Drepper  <drepper@redhat.com>
758         [BZ #4465]
759         * posix/unistd.h: Remove __THROW from fdatasync.
761 2007-05-06  Mike Frysinger  <vapier@gentoo.org>
763         [BZ #4465]
764         * sysdeps/unix/sysv/linux/syscalls.list (fdatasync): Add "C" to args.
766 2007-05-06  Ulrich Drepper  <drepper@redhat.com>
768         * stdio-common/vfprintf.c (process_string_arg): Optimize
769         ridiculous precision in wide char code printing multi-byte string.
770         Reported by Jim Meyering <jim@meyering.net>.
772         [BZ #4131]
773         * elf/dl-addr.c (_dl_addr): Compare address with actual segment
774         boundaries to work around systems with overlapping binary loading.
775         Based on a patch by Suzuki <suzuki@in.ibm.com>.
777 2007-05-04  Ulrich Drepper  <drepper@redhat.com>
779         * stdio-common/vfprintf.c (process_string_arg): Adjust call to
780         __mbsnrtowcs after last change.
782         * locale/programs/linereader.c (get_symname): Fix adding final NUL.
783         (get_ident): Likewise.
785 2007-05-03  Jakub Jelinek  <jakub@redhat.com>
787         * soft-fp/op-common.h (FP_TRUNC): Replace raising of FP_EX_INEXACT
788         with setting the sticky bit.
789         * math/test-misc.c (main): Add more truncation tests.
791 2007-04-14  Uros Bizjak  <ubizjak@gmail.com>
793         * soft-fp/floatunsidf.c (__floatunsidf): Use DFtype instead of
794         double in the function declaration.
795         * soft-fp/floatundidf.c (__floatundidf): Use DFtype instead of
796         double in the function declaration.
797         * soft-fp/floatunsisf.c (__floatunsisf): Use SFtype instead of
798         float in the function declaration.
799         * soft-fp/floatunsisf.c (__floatunsisf): Use SFtype instead of
800         float in the function declaration.
802         * soft-fp/extended.h (FP_UNPACK_RAW_E): Do not increase X##_e for
803         denormal operands.  Do not generate FP_EX_DENORM exception.
804         (FP_UNPACK_RAW_EP): Ditto.
805         (FP_UNPACK_SEMIRAW_E): Use FP_UNPACK_RAW_E instead of
806         undefined _FP_UNPACK_RAW_E.
807         (FP_UNPACK_SEMIRAW_EP): Use FP_UNPACK_RAW_EP instead of
808         undefined _FP_UNPACK_RAW_EP.
809         (FP_PACK_SEMIRAW_E): Use FP_PACK_RAW_E instead of
810         undefined _FP_PACK_RAW_E.
811         (FP_PACK_SEMIRAW_EP): Use FP_PACK_RAW_EP instead of
812         undefined _FP_PACK_RAW_EP.
814         * soft-fp/op-2.h (_FP_FRAC_COPY_2_2): Define as alias to
815         _FP_FRAC_COPY_2.
816         * soft-fp/op-4.h (_FP_FRAC_COPY_2_2): Define as alias to
817         _FP_FRAC_COPY_4.
819 2007-04-16  Uros Bizjak  <ubizjak@gmail.com>
820             Jakub Jelinek  <jakub@redhat.com>
822         * soft-fp/op-common.h (FP_EXTEND): Do not abort when
823         _FP_EXPBIAS_##dfs == _FP_EXPBIAS_##sfs.  Handle denormals for
824         this case.
825         * soft-fp/op-common.h (FP_TRUNC): Ditto.
827 2007-05-03  Jakub Jelinek  <jakub@redhat.com>
829         * math/test-misc.c (main): Add tests for rounding long double
830         values close to smallest double denormalized value to double.
832 2007-04-30  Joseph Myers  <joseph@codesourcery.com>
834         * soft-fp/op-common.h (FP_TRUNC): Correct off-by-one error in
835         condition for truncating to 0.  Set sticky bit for such
836         truncation.
838 2007-05-02  Jakub Jelinek  <jakub@redhat.com>
840         * stdio-common/vfprintf.c (process_string_arg): Use a VLA rather than
841         fixed length array for ignore.
843 2007-04-30  Ulrich Drepper  <drepper@redhat.com>
845         [BZ #4438]
846         * stdio-common/vfprintf.c (process_string_arg): Don't overflow the
847         stack for large precisions.
848         * stdio-common/test-vfprintf.c (main): Add test for large
849         precision.
851 2007-04-30  Jakub Jelinek  <jakub@redhat.com>
853         * stdio-common/printf_fp.c (___printf_fp): Don't print negative sign
854         for exponent 0.
855         * stdio-common/tfformat.c (sprint_doubles): Add a new test.
857         [BZ #4439]
858         * resolv/inet_ntop.c (inet_ntop4): Take terminating '\0' into
859         account in the size check.
860         * resolv/tst-inet_ntop.c: New test.
861         * resolv/Makefile (tests): Add tst-inet_ntop.
863 2007-04-30  Ulrich Drepper  <drepper@redhat.com>
864             Jakub Jelinek  <jakub@redhat.com>
866         [BZ #4349]
867         * malloc/malloc.c: Keep separate list for first blocks on the bin
868         lists with a given size.  This helps skipping over list elements
869         we know won't fit in two places.
870         Inspired by a patch by Tomash Brechko <tomash.brechko@gmail.com>.
872 2007-04-28  Ulrich Drepper  <drepper@redhat.com>
874         [BZ #4102]
875         * sysdeps/posix/getaddrinfo.c (default_labels): Assign separate
876         label to Teredo tunnel addresses 2001://32.
878 2007-04-27  Ulrich Drepper  <drepper@redhat.com>
880         * locale/programs/ld-collate.c (collate_read): Allow order_start
881         after copy.
883         * locale/programs/ld-collate.c (collate_read): Fix printing of
884         error message.
886         [BZ #3213]
887         * locale/C-translit.h.in: Add entry for U2044.
889         [BZ #4342]
890         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Allow
891         hexa-decimal floats without exponent.
892         * stdio-common/tstscanf.c (main): Adjust Test 8 test for success.
894 2007-04-25  Ulrich Drepper  <drepper@redhat.com>
896         * sysdeps/unix/sysv/linux/bits/sched.h: Declare sched_getcpu.
897         * sysdeps/unix/sysv/linux/sched_getcpu.c: New file.
898         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: New file.
899         * sysdeps/unix/sysv/linux/Versions: Export sched_getcpu for
900         GLIBC_2.6.
901         * sysdeps/unix/sysv/linux/Makefile [subdir=posix] (sysdep_routines):
902         Add sched_getcpu.
904 2007-04-25  Jakub Jelinek  <jakub@redhat.com>
906         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Return -1 instead
907         of 0 after the out_fail label.
909 2007-04-25  Ulrich Drepper  <drepper@redhat.com>
911         [BZ #4406]
912         * iconv/gconv_charset.h (strip): Allow ':'.
913         * iconv/iconv_open.c (iconv_open): Adjust comment.
915 2007-04-25  Jakub Jelinek  <jakub@redhat.com>
917         * libio/bits/stdio.h (fgetc_unlocked): Add extern inline optimized
918         version.
920 2007-04-23  Jakub Jelinek  <jakub@redhat.com>
922         [BZ #4381]
923         * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Ensure sufficient
924         alignment of buffer and tmp_buffer.
925         * nis/nss_nis/nis-hosts.c (internal_nis_gethostent_r,
926         internal_gethostbyname2_r, _nss_nis_gethostbyaddr_r): Ensure sufficient
927         alignment of buffer.
928         * resolv/nss_dns/dns-hosts.c (getanswer_r): Likewise.  Handle buflen
929         bigger than INT_MAX.
930         * resolv/nss_dns/dns-network.c (getanswer_r): Likewise.  Add errnop and
931         h_errnop arguments.  Fail if buflen is too small.
932         (_nss_dns_getnetbyname_r, _nss_dns_getnetbyaddr_r): Adjust callers.
934 2007-04-23  Jakub Jelinek  <jakub@redhat.com>
936         [BZ #4405]
937         * iconvdata/gconv-modules (E13B): Add a missing slash to the alias
938         name.  Patch by Aurelien Jarno <aurelien@aurel32.net>.
940 2007-04-22  Roland McGrath  <roland@redhat.com>
942         * elf/elf.h (NT_PRXFPREG): New macro.
944 2007-04-19  Andreas Jaeger  <aj@suse.de>
946         [BZ #3905]
947         * bits/in.h (IPV6_ROUTER_ALERT, IPV6_MTU_DISCOVER, IPV6_MTU,
948         IPV6_RECVERR, IPV6_V6ONLY, IPV6_JOIN_ANYCAST, IPV6_LEAVE_ANYCAST):
949         Added.
951 2007-04-19  Ulrich Drepper  <drepper@redhat.com>
953         * include/sys/mman.h: Mark madvise hidden.
954         * misc/madvise.c: Add libc_hidden_def.
956 2007-04-06  Jakub Jelinek  <jakub@redhat.com>
958         * nis/nis_domain_of.c (__nis_domain_of): New function.
959         * include/rpcsvc/nislib.h (__nis_domain_of): New prototype.
960         * nis/nis_lookup.c (nis_lookup): Use __nis_domain_of.
961         * nis/nis_call.c (rec_dirsearch): Likewise.
962         (first_shoot): Likewise.  Remove search_parent_first argument.
963         (struct nis_server_cache): Rename search_parent_first field
964         to search_parent.
965         (nis_server_cache_search, nis_server_cache_add): Rename
966         search_parent_first argument to search_parent.
967         (__nisfind_server): Likewise.  If search_parent, call
968         __nis_domain_of.
970 2007-04-18  Ulrich Drepper  <drepper@redhat.com>
972         * sysdeps/posix/getaddrinfo.c: Remove commented-out code.
974 2007-04-17  Ulrich Drepper  <drepper@redhat.com>
976         [BZ #4368]
977         * stdlib/stdlib.h: Remove obsolete part of comment for realpath.
979 2007-04-16  Ulrich Drepper  <drepper@redhat.com>
981         [BZ #4364]
982         * posix/unistd.h (_XOPEN_VERSION): Define appropriately for SUSv3.
984 2007-04-15  Jakub Jelinek  <jakub@redhat.com>
986         * locale/programs/locarchive.c (INITIAL_NUM_NAMES,
987         INITIAL_SIZE_STRINGS, INITIAL_NUM_LOCREC): Update to accomodate
988         current number of locales in SUPPORTED.
989         (create_archive): Initialize serial.
990         (enlarge_archive): Preserve aliases rather than duplicating
991         their locrecs.
993 2007-04-13  Jakub Jelinek  <jakub@redhat.com>
995         * libio/genops.c (_IO_default_finish): Call _IO_lock_fini
996         after _IO_un_link, not before it.
998         * stdio-common/printf_fp.c (___printf_fp): Fix exponent -4
999         special case handling when wcp == wstartp + 1.  Fix a comment typo.
1000         * stdio-common/tfformat.c (sprint_doubles): Add a new testcase.
1002 2007-03-30  Jakub Jelinek  <jakub@redhat.com>
1004         * libio/libio.h (__underflow, __uflow, __overflow, __wunderflow,
1005         __wuflow, __woverflow, _IO_getc, _IO_putc, _IO_peekc_locked, _IO_padn,
1006         _IO_sgetn, _IO_seekoff, _IO_seekpos, _IO_getwc, _IO_putwc, _IO_wpadn):
1007         Remove __THROW.
1008         * libio/fileops.c (new_do_write, _IO_file_xsgetn_mmap,
1009         _IO_file_xsgetn_maybe_mmap): Likewise.
1010         * libio/oldfileops.c (old_do_write): Likewise.
1011         * libio/libioP.h (_IO_switch_to_get_mode, _IO_switch_to_wget_mode,
1012         _IO_init_marker, _IO_init_wmarker, _IO_default_uflow,
1013         _IO_wdefault_uflow, _IO_default_setbuf, _IO_default_seekpos,
1014         _IO_do_write, _IO_new_do_write, _IO_old_do_write, _IO_wdo_write,
1015         _IO_flush_all_lockp, _IO_flush_all, _IO_cleanup,
1016         _IO_flush_all_linebuffered, _IO_new_fgetpos, _IO_old_fgetpos,
1017         _IO_new_fsetpos, _IO_old_fsetpos, _IO_new_fgetpos64,
1018         _IO_old_fgetpos64, _IO_new_fsetpos64, _IO_old_fsetpos64,
1019         _IO_file_setbuf, _IO_file_seekoff, _IO_file_xsputn, _IO_file_xsgetn,
1020         _IO_file_underflow, _IO_file_underflow_mmap,
1021         _IO_file_underflow_maybe_mmap, _IO_file_overflow, _IO_file_attach,
1022         _IO_file_open, _IO_file_fopen, _IO_file_write, _IO_file_read,
1023         _IO_file_sync, _IO_file_close_it, _IO_file_finish,
1024         _IO_new_file_attach, _IO_new_file_close_it, _IO_new_file_finish,
1025         _IO_new_file_fopen, _IO_new_file_setbuf, _IO_file_setbuf_mmap,
1026         _IO_new_file_sync, _IO_new_file_underflow, _IO_new_file_overflow,
1027         _IO_new_file_seekoff, _IO_new_file_write, _IO_new_file_xsputn,
1028         _IO_old_file_setbuf, _IO_old_file_seekoff, _IO_old_file_xsputn,
1029         _IO_old_file_underflow, _IO_old_file_overflow, _IO_old_file_attach,
1030         _IO_old_file_fopen, _IO_old_file_write, _IO_old_file_sync,
1031         _IO_old_file_close_it, _IO_old_file_finish, _IO_wfile_xsputn,
1032         _IO_wfile_setbuf, _IO_wfile_sync, _IO_wfile_underflow,
1033         _IO_wfile_overflow, _IO_wfile_seekoff, _IO_old_proc_open,
1034         _IO_old_proc_close, _IO_getdelim, _IO_flush_all_internal,
1035         _IO_adjust_column_internal, _IO_default_uflow_internal,
1036         _IO_default_xsgetn_internal, _IO_wdefault_xsputn_internal,
1037         _IO_wdefault_xsgetn_internal, _IO_wdefault_uflow_internal,
1038         _IO_file_setbuf_internal, _IO_file_seekoff_internal,
1039         _IO_file_xsputn_internal, _IO_file_xsgetn_internal,
1040         _IO_file_close_it_internal, _IO_file_underflow_internal,
1041         _IO_file_overflow_internal, _IO_file_attach_internal,
1042         _IO_file_fopen_internal, _IO_file_sync_internal,
1043         _IO_file_finish_internal, _IO_wfile_xsputn_internal,
1044         _IO_wfile_seekoff_internal, _IO_wfile_sync_internal,
1045         _IO_switch_to_wget_mode_internal, _IO_padn_internal,
1046         _IO_switch_to_get_mode_internal, _IO_seekoff_unlocked,
1047         _IO_seekpos_unlocked): Likewise.
1048         (_IO_strtod, _IO_dtoa, _IO_outfloat, _IO_read, _IO_write,
1049         _IO_lseek, _IO_close, _IO_fstat): Remove unused prototypes.
1051 2007-04-16  Jakub Jelinek  <jakub@redhat.com>
1053         * locale/programs/locarchive.c (show_archive_content): Fix sizeof
1054         argument in xmalloc size computation.
1056 2007-04-01  Jakub Jelinek  <jakub@redhat.com>
1058         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Use
1059         math_opt_barrier and math_force_eval macros.
1061 2007-03-27  Jakub Jelinek  <jakub@redhat.com>
1063         [BZ #3306]
1064         * math/math_private.h (math_opt_barrier, math_force_eval): Define.
1065         * sysdeps/i386/fpu/math_private.h: New file.
1066         * sysdeps/x86_64/fpu/math_private.h: New file.
1067         * math/s_nexttowardf.c (__nexttowardf): Use math_opt_barrier and
1068         math_force_eval macros.  Use "+m" constraint on asm rather than
1069         "=m" and "m".
1070         * math/s_nextafter.c (__nextafter): Likewise.
1071         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward):
1072         Likewise.
1073         * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
1074         * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward): Likewise.
1075         * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
1076         * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Use
1077         math_opt_barrier and math_force_eval macros.
1078         * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl): Likewise.
1079         * sysdeps/ieee754/ldbl-96/s_nextafterl.c (__nextafterl): Likewise.
1080         * sysdeps/i386/fpu/s_nexttoward.c: Include float.h.
1081         (__nexttoward): Use math_opt_barrier and
1082         math_force_eval macros.  Use "+m" constraint on asm rather than
1083         "=m" and "m".  Only use asm to force double result if
1084         FLT_EVAL_METHOD is 2.
1085         * sysdeps/i386/fpu/s_nexttowardf.c: Include float.h.
1086         (__nexttowardf): Use math_opt_barrier and
1087         math_force_eval macros.  Use "+m" constraint on asm rather than
1088         "=m" and "m".  Only use asm to force double result if
1089         FLT_EVAL_METHOD is not 0.
1090         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Include float.h.
1091         (__nexttowardf): Use math_opt_barrier and
1092         math_force_eval macros.  If FLT_EVAL_METHOD is not 0, force
1093         x to float using asm.
1094         * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c: Include float.h.
1095         (__nldbl_nexttowardf): Use math_opt_barrier and
1096         math_force_eval macros.  If FLT_EVAL_METHOD is not 0, force
1097         x to float using asm.
1098         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Include float.h.
1099         (__nexttowardf): Use math_opt_barrier and math_force_eval
1100         macros.  If FLT_EVAL_METHOD is not 0, force x to float using asm.
1101         * math/bug-nextafter.c (zero, inf): New variables.
1102         (main): Add new tests.
1103         * math/bug-nexttoward.c (zero, inf): New variables.
1104         (main): Add new tests.
1106 2007-03-22  Jakub Jelinek  <jakub@redhat.com>
1108         [BZ #3427]
1109         * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Clear all
1110         exceptions both in SW and MXCSR.
1111         * sysdeps/x86_64/fpu/feupdateenv.c: New file.
1112         * sysdeps/x86_64/fpu/feenablxcpt.c (feenableexcept): Remove dead code.
1113         * sysdeps/x86_64/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
1114         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
1115         in MXCSR if SSE is available.
1116         * sysdeps/i386/fpu/feupdateenv.c: Include unistd.h, dl-procinfo.h
1117         and ldsodefs.h.
1118         (__feupdateenv): Query exceptions also from MXCSR if SSE is available.
1119         Fix comment typo.
1120         * sysdeps/ia64/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions.
1121         Return 0 rather than 1.
1122         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Fix comment typo.
1123         Remove incorrect part of a comment.  Fix argument to feraiseexcept.
1124         * math/test-fenv.c (feholdexcept_tests): New function.
1125         (main): Call it.
1127 2007-01-05  Richard B. Kreckel  <kreckel@ginac.de>
1129         [BZ #3427]
1130         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
1131         in SW.
1133 2007-04-13  Jakub Jelinek  <jakub@redhat.com>
1135         [BZ #4344]
1136         * elf/ldconfig.c (search_dir): Fix 2 off-by-2 errors.
1137         Reported by David Anderson <davea42@earthlink.net>.
1139 2007-04-07  Ulrich Drepper  <drepper@redhat.com>
1141         * posix/sys/wait.h: Remove unnecessary forward declaration.
1143 2007-04-05  Jakub Jelinek  <jakub@redhat.com>
1145         * nis/nis_call.c (__nisfind_server): Replace (*dir)->do_servers
1146         with obj->do_servers after first_shoot.
1148 2007-04-03  Ulrich Drepper  <drepper@redhat.com>
1150         * posix/Makefile (routines): Add sched_cpucount.
1151         (tests): Add tst-cpucount.
1152         * posix/sched_cpucount.c: New file.
1153         * posix/tst-cpucount.c: New file.
1154         * posix/Versions: Export __sched_cpucount with version GLIBC_2.6.
1155         * bits/sched.h: Define __CPU_COUNT.  Declare __sched_cpucount.
1156         * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
1157         * posix/sched.h: Define CPU_COUNT.
1159 2007-03-27  Jakub Jelinek  <jakub@redhat.com>
1161         * posix/fnmatch.c (STRUCT): Define.
1162         (fnmatch): Pass NULL as last argument to internal_fn{,w}match.
1163         * posix/fnmatch_loop.c (struct STRUCT): New type.
1164         (FCT): Add ends argument.  If ends != NULL and normal * is
1165         seen in the pattern, store current pattern and string pointers
1166         and return.  Adjust recursive calls.
1167         (EXT): Adjust FCT callers.
1168         (STRUCT): Undef at the end of the file.
1169         * posix/Makefile (tests): Add tst-fnmatch2.
1170         * posix/tst-fnmatch2.c: New test.
1172 2007-04-01  Jakub Jelinek  <jakub@redhat.com>
1174         * sysdeps/ia64/fpu/fesetround.c (fesetround): Return 0 on success
1175         and 1 on failure.
1177         * sysdeps/unix/sysv/linux/sync_file_range.c (sync_file_range):
1178         Change last argument to unsigned int.
1180 2007-03-23  Jakub Jelinek  <jakub@redhat.com>
1182         * scripts/check-local-headers.sh: Filter out sys/capability.h.
1184 2007-03-22  Jakub Jelinek  <jakub@redhat.com>
1186         * config.h.in (HAVE_LIBCAP): Add.
1187         * nscd/selinux.h: Include sys/capability.h rather than non-existent
1188         sys/capabilities.h.
1189         * nscd/selinux.c (preserve_capabilities): Use cap_free instead of
1190         free_caps.  Cast away const from 4th cap_set_flag argument.
1192 2007-03-26  Ulrich Drepper  <drepper@redhat.com>
1194         * sysdeps/unix/sysv/linux/Versions: Move sync_file_range to
1195         GLIBC_2.6.
1196         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
1197         Add sync_file_range.
1198         Reported by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
1200 2007-03-19  Steven Munroe  <sjmunroe@us.ibm.com>
1202         * sysdeps/powerpc/bits/atomic.h
1203         [!MUTEX_HINT_ACQ]: Define MUTEX_HINT_ACQ.
1204         [!MUTEX_HINT_REL]: Define MUTEX_HINT_REL.
1205         (__arch_compare_and_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
1206         (__arch_compare_and_exchange_val_32_rel): Add MUTEX_HINT_REL to lwarx.
1207         (__arch_atomic_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
1208         (__arch_atomic_exchange_rel_32_rel): Add MUTEX_HINT_REL to lwarx.
1209         * sysdeps/powerpc/powerpc32/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6X]:
1210         Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
1211         (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
1212         (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
1213         * sysdeps/powerpc/powerpc64/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6D]:
1214         Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
1215         (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
1216         (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
1217         (__arch_compare_and_exchange_bool_64_acq): Add MUTEX_HINT_ACQ to lwarx.
1218         (__arch_compare_and_exchange_bool_64_rel): Add MUTEX_HINT_REL to lwarx.
1219         (__arch_compare_and_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
1220         (__arch_compare_and_exchange_val_64_rel): Add MUTEX_HINT_REL to lwarx.
1221         (__arch_atomic_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
1222         (__arch_atomic_exchange_rel_64_rel): Add MUTEX_HINT_REL to lwarx.
1224 2007-03-20  Jakub Jelinek  <jakub@redhat.com>
1226         * sysdeps/unix/sysv/linux/powerpc/libc-start.c
1227         (__cache_line_size): Define the variable here.  Add
1228         attribute_hidden, remove weak_extern.
1229         (__libc_start_main): Set __cache_line_size
1230         unconditionally.
1231         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
1232         (__cache_line_size): Define the variable here.  Add
1233         attribute_hidden, remove weak_extern.
1234         (DL_PLATFORM_AUXV): Set __cache_line_size
1235         unconditionally.
1236         * sysdeps/powerpc/powerpc32/dl-machine.c (__cache_line_size): Remove
1237         weak_extern, add attribute_hidden.
1238         (__elf_machine_runtime_setup): Assume __cache_line_size is always
1239         defined in ld.so.
1240         * sysdeps/powerpc/powerpc32/memset.S (__cache_line_size): Remove
1241         definition.
1242         * sysdeps/powerpc/powerpc64/memset.S (__cache_line_size): Likewise.
1244 2007-03-26  Jakub Jelinek  <jakub@redhat.com>
1246         [BZ #4276]
1247         * timezone/africa: Update from tzdata2007d.
1248         * timezone/asia: Likewise.
1249         * timezone/australasia: Likewise.
1250         * timezone/backward: Likewise.
1251         * timezone/europe: Likewise.
1252         * timezone/iso3166.tab: Likewise.
1253         * timezone/leapseconds: Likewise.
1254         * timezone/northamerica: Likewise.
1255         * timezone/southamerica: Likewise.
1256         * timezone/zone.tab: Likewise.
1258         * timezone/private.h: Update from tzcode2007d.
1259         * timezone/zdump.c: Likewise.
1260         * timezone/zic.c: Likewise.
1262 2007-03-21  Jakub Jelinek  <jakub@redhat.com>
1264         * nis/nis_call.c: Include bits/libc-lock.h, sys/stat.h, unistd.h.
1265         (nis_server_cache, nis_server_cache_lock, nis_cold_start_mtime): New
1266         variables.
1267         (nis_server_cache_search, nis_server_cache_add): New functions.
1268         (__nisfind_server): Use them.  Add dbp and flags argument, if
1269         call __nisbind_create.
1270         (__nisbind_create): Add server_used and current_ep arguments,
1271         only call __nis_findfastest if server_used is ~0.
1272         (__do_niscall2, __prepare_niscall): Adjust callers.
1273         (ckey_cache, ckey_cache_size, ckey_cache_allocated, ckey_cache_pid,
1274         ckey_cache_euid, ckey_cache_lock): New variables.
1275         (get_ckey): New function.
1276         (__nisbind_connect): If not dbp->use_udp, pass IPPROTO_TCP to
1277         __pmap_getnisport.  Save __pmap_getnisport result in
1278         dbp->addr.sin_port if non-zero.  Use get_ckey to create conversation
1279         key.
1280         * nis/nis_lookup.c (nis_lookup): Likewise.
1281         * nis/nis_table.c (nis_list): Likewise.
1282         * nis/rpcsvc/nislib.h (__nisbind_create, __nisfind_server): Adjust
1283         prototypes.
1285         * nis/nss_nisplus/nisplus-pwd.c (_nss_nisplus_getpwnam_r,
1286         _nss_nisplus_getpwuid_r): Pass USE_DGRAM flag to nis_list.
1287         * nis/nss_nisplus/nisplus-service.c (_nss_nisplus_getservbyname_r,
1288         _nss_nisplus_getservbyport_r): Likewise.
1289         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r,
1290         _nss_nisplus_getnetbyaddr_r): Likewise.
1291         * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_getspnam_r): Likewise.
1292         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r,
1293         _nss_nisplus_getntohost_r): Likewise.
1294         * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r,
1295         _nss_nisplus_getrpcbynumber_r): Likewise.
1297 2007-03-20  Jakub Jelinek  <jakub@redhat.com>
1299         * configure.in (libc_cv_gnu89_inline): Only do compile test.
1300         * configure: Rebuilt.
1302         * soft-fp/double.h (_FP_UNION_D): Use _FP_W_TYPE for frac
1303         bit-fields.
1304         * soft-fp/extended.h (_FP_UNION_E): Likewise.
1306 2006-06-07  Joseph Myers  <joseph@codesourcery.com>
1308         [BZ #2831]
1309         * soft-fp/quad.h (_FP_UNION_Q): Use _FP_W_TYPE for frac
1310         bit-fields.
1312 2007-03-18  Jakub Jelinek  <jakub@redhat.com>
1314         * nscd/gai.c: Include alloca.h.
1315         (__libc_use_alloca): Define.
1317 2007-03-16  Jakub Jelinek  <jakub@redhat.com>
1319         * elf/dl-open.c (dl_open_worker): Declare l in 2 different
1320         smaller scopes.
1321         * elf/dl-dst.h (DL_DST_REQ_STATIC): Add l as macro argument.
1322         (DL_DST_REQUIRED): Adjust user.
1324         * include/dlfcn.h (struct link_map): New forward decl.
1326         * inet/getnameinfo.c: Include stddef.h.
1327         (getnameinfo): Use offsetof.
1329         * time/tst-mktime2.c (do_test): Don't rely on signed wrap.
1331         * stdio-common/vfprintf.c (_itoa): Undef before redefining.
1333         * string/strerror_l.c: Include stdlib.h.
1335         * configure.in (libc_cv_gnu89_inline): Test for -fgnu89-inline.
1336         * config.make.in (gnu89-inline-CFLAGS): New variable.
1337         * Makeconfig (CFLAGS): Use $(gnu89-inline-CFLAGS) together with
1338         -std=gnu99.
1339         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline): Define.
1340         * argp/argp.h: Use it.
1341         * bits/mathinline.h: Likewise.
1342         * bits/sigset.h: Likewise.
1343         * bits/string.h: Likewise.
1344         * ctype/ctype.h: Likewise.
1345         * hurd/hurd.h: Likewise.
1346         * hurd/hurd/fd.h: Likewise.
1347         * hurd/hurd/port.h: Likewise.
1348         * hurd/hurd/signal.h: Likewise.
1349         * hurd/hurd/threadvar.h: Likewise.
1350         * hurd/hurd/userlink.h: Likewise.
1351         * io/sys/stat.h: Likewise.
1352         * libio/bits/stdio.h: Likewise.
1353         * libio/bits/stdio2.h: Likewise.
1354         * mach/lock-intern.h: Likewise.
1355         * mach/mach/mig_support.h: Likewise.
1356         * math/bits/cmathcalls.h: Likewise.
1357         * posix/bits/unistd.h: Likewise.
1358         * socket/bits/socket2.h: Likewise.
1359         * stdlib/bits/stdlib.h: Likewise.
1360         * stdlib/stdlib.h: Likewise.
1361         * string/argz.h: Likewise.
1362         * string/bits/string2.h: Likewise.
1363         * string/bits/string3.h: Likewise.
1364         * sysdeps/alpha/fpu/bits/mathinline.h: Likewise.
1365         * sysdeps/generic/inttypes.h: Likewise.
1366         * sysdeps/generic/machine-lock.h: Likewise.
1367         * sysdeps/generic/machine-sp.h: Likewise.
1368         * sysdeps/i386/fpu/bits/mathinline.h: Likewise.
1369         * sysdeps/i386/i486/bits/string.h: Likewise.
1370         * sysdeps/ia64/fpu/bits/mathinline.h: Likewise.
1371         * sysdeps/mach/alpha/machine-lock.h: Likewise.
1372         * sysdeps/mach/alpha/machine-sp.h: Likewise.
1373         * sysdeps/mach/i386/machine-lock.h: Likewise.
1374         * sysdeps/mach/powerpc/machine-lock.h: Likewise.
1375         * sysdeps/mach/powerpc/machine-sp.h: Likewise.
1376         * sysdeps/powerpc/fpu/bits/mathinline.h: Likewise.
1377         * sysdeps/s390/bits/string.h: Likewise.
1378         * sysdeps/s390/fpu/bits/mathinline.h: Likewise.
1379         * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
1380         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
1381         * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
1382         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
1383         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Likewise.
1384         * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
1385         * wcsmbs/bits/wchar2.h: Likewise.
1386         * wcsmbs/wchar.h: Likewise.
1387         * stdlib/gmp.h: Likewise.  Include <features.h> to get
1388         __extern_inline definition.
1390 2007-03-15  Jakub Jelinek  <jakub@redhat.com>
1392         * locale/programs/ld-ctype.c (find_translit): Return NULL if ctype is
1393         NULL.
1395         [BZ #3919]
1396         * math/libm-test.inc (log_test): Test -Inf and NaN.
1397         (log10_test, log1p_test, log2_test): Test -Inf.
1398         * sysdeps/i386/fpu/e_log.S (__ieee754_log): Don't raise
1399         FE_INVALID when argument is qNaN.
1400         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
1401         * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
1402         * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
1403         * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Replace
1404         andb $1, %ah with testb $1, %ah, don't test for parity, instead
1405         testb $4, %ah and jump if non-zero.
1406         * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Likewise.
1407         * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Likewise.
1409         [BZ #4101]
1410         * argp/argp-help.c (hol_cluster_cmp): Fix comparisons used to find
1411         ancestors with the same depths.
1412         Patch by Niels Moeller <nisse@lysator.liu.se>.
1413         (filter_doc): Don't crash if argp is NULL.
1414         * argp/Makefile (tests): Add tst-argp2.
1415         * argp/tst-argp2.c: New test.
1417         [BZ #4130]
1418         * login/utmp_file.c (setutent_file): Use O_LARGEFILE for
1419         open_not_cancel_2.
1420         (updwtmp_file): Likewise.
1422         [BZ #4181]
1423         * inet/inet6_opt.c (add_padding): Only insert padding if npad > 0.
1424         (inet6_opt_append): Don't check extlen is big enough if extbuf
1425         is NULL.
1426         (inet6_opt_finish): Likewise.
1427         * inet/Makefile (tests): Add test-inet6_opt.
1428         * inet/test-inet6_opt.c: New test.
1430         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Never
1431         reallocate the buffer, instead fail for MSG_TRUNC or for EBUSY
1432         NLMSG_ERR.  Instead use a page sized buffer.
1433         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use page sized
1434         buffer.
1436 2007-03-14  Richard Henderson  <rth@redhat.com>
1438         * sysdeps/alpha/fpu/s_llround.c: New file.
1439         * sysdeps/alpha/fpu/s_llroundf.c: New file.
1440         * sysdeps/alpha/fpu/s_lround.c: New file.
1441         * sysdeps/alpha/fpu/s_lroundf.c: New file.
1442         * sysdeps/alpha/fpu/s_round.c: New file.
1443         * sysdeps/alpha/fpu/s_roundf.c: New file.
1444         * sysdeps/alpha/fpu/s_trunc.c: New file.
1445         * sysdeps/alpha/fpu/s_truncf.c: New file.
1447         * sysdeps/alpha/fpu/s_ceil.c: Rewrite without branches.
1448         * sysdeps/alpha/fpu/s_ceilf.c: Likewise.
1449         * sysdeps/alpha/fpu/s_floor.c: Likewise.
1450         * sysdeps/alpha/fpu/s_floorf.c: Likewise.
1451         * sysdeps/alpha/fpu/s_rint.c: Likewise.
1452         * sysdeps/alpha/fpu/s_rintf.c: Likewise.
1454         * sysdeps/alpha/fpu/s_fmax.S: New file.
1455         * sysdeps/alpha/fpu/s_fmaxf.S: New file.
1456         * sysdeps/alpha/fpu/s_fmin.S: New file.
1457         * sysdeps/alpha/fpu/s_fminf.S: New file.
1458         * sysdeps/alpha/fpu/s_isnan.c: New file.
1459         * sysdeps/alpha/fpu/s_isnanf.c: New file.
1460         * sysdeps/alpha/fpu/s_llrint.c: New file.
1461         * sysdeps/alpha/fpu/s_llrintf.c: New file.
1462         * sysdeps/alpha/fpu/s_lrint.c: New file.
1463         * sysdeps/alpha/fpu/s_lrintf.c: New file.
1464         * sysdeps/alpha/fpu/s_nearbyint.c: New file.
1465         * sysdeps/alpha/fpu/s_nearbyintf.c: New file.
1467         * sysdeps/alpha/fpu/bits/mathinline.h (__floorf, __floor): Remove.
1468         (__fdimf, fdimf, __fdim, fdim): Remove.
1469         (__signbitf, __signbit, __signbitl): Use gcc builtin if available.
1470         (__isnanf, __isnan, __isnanl): New.
1472 2007-03-13  Richard Henderson  <rth@redhat.com>
1474         * sysdeps/ieee754/ldbl-128/Makefile: New file.
1476 2007-03-13  Richard Henderson  <rth@redhat.com>
1478         * sysdeps/alpha/Makefile (sysdep-CFLAGS): Force dynamic rounding.
1479         * sysdeps/alpha/fpu/bits/mathinline.h (__signbitl): New.
1480         * sysdeps/alpha/fpu/libm-test-ulps: Regenerate.
1481         * sysdeps/unix/sysv/linux/alpha/alphaev6/fpu/Implies: New file.
1482         * sysdeps/unix/sysv/linux/alpha/alphaev67/fpu/Implies: New file.
1483         * sysdeps/unix/sysv/linux/alpha/fpu/Implies: New file.
1485 2007-03-13  Richard Henderson  <rth@redhat.com>
1487         * elf/dl-support.c (_dl_aux_init): Honor DL_PLATFORM_AUXV.
1488         * sysdeps/unix/sysv/linux/alpha/dl-auxv.h: New file.
1489         * sysdeps/unix/sysv/linux/alpha/dl-support.c: New file.
1490         * sysdeps/unix/sysv/linux/alpha/dl-sysdep.c (__libc_alpha_cache_shape):
1491         Move to dl-auxv.h; initialize instead of extern weak.
1492         (DL_PLATFORM_AUXV): Move to dl-auxv.h; don't test for undef
1493         weak symbol.
1494         * sysdeps/unix/sysv/linux/alpha/sysconf.c (__libc_alpha_cache_shape):
1495         Extern instead of initialized.
1497 2007-03-13  Richard Henderson  <rth@redhat.com>
1499         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S: Add support for
1500         __sigsuspend_nocancel.
1502 2007-03-06  Ulrich Drepper  <drepper@redhat.com>
1504         * sysdeps/posix/getaddrinfo.c (get_scope): Correct test for
1505         172.16/12 address range.
1507 2007-03-02  Jakub Jelinek  <jakub@redhat.com>
1509         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Retry with
1510         a new netlink socket if NLMSG_ERR -EBUSY is seen after some MSG_TRUNC
1511         message.
1513 2007-03-01  Jakub Jelinek  <jakub@redhat.com>
1515         [BZ #4069]
1516         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Check for NaN
1517         earlier.
1518         * math/libm-test.inc (pow_test): Add more tests involving NaNs.
1520         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Avoid invalid exception
1521         for x qNaN and y either +-inf or non-integer value.
1522         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Likewise.
1523         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
1524         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
1526 2007-02-10  Mike Frysinger  <vapier@gentoo.org>
1528         * sysdeps/unix/sysv/linux/sh/Makefile: Remove sys/io.h
1529         from sysdep_headers.
1531 2007-02-28  Jakub Jelinek  <jakub@redhat.com>
1533         * time/tzfile.c (find_transition): Instead of a linear search try to
1534         guess the transition index, use a linear search if the result is at
1535         most 10 transitions away from the guess or binary search otherwise.
1537 2007-02-27  Jakub Jelinek  <jakub@redhat.com>
1539         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Fix
1540         memory reallocation.
1542 2007-02-21  Ulrich Drepper  <drepper@redhat.com>
1544         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Add branch predictions
1545         and fix some typos.
1546         Optimize use of TOLOWER.
1548         [BZ #3325]
1549         * sysdeps/i386/fpu/e_fmodf.S: Revert last changes, keep using fprem.
1550         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
1551         * sysdeps/i386/fpu/e_fmod.S: Likewise.
1553         [BZ #3458]
1554         * sysdeps/unix/sysv/linux/posix_madvise.c: New file.
1555         * sysdeps/unix/sysv/linux/syscalls.list: Remove posix_madvise entry.
1557         [BZ #4076]
1558         * io/ftw.c (ftw_startup): Handle special case of FTW_CHDIR in /.
1559         (open_dir_stream): Likewise.
1560         * io/Makefile (tests): Add bug-ftw5.
1561         * io/bug-ftw5.c: New file.
1563         * nscd/hstcache.c (cache_addhst): Remove unnecessary conditional.
1564         * nscd/servicescache.c (cache_addserv): Likewise.
1566         * nscd/grpcache.c (cache_addgr): In case a record changed on
1567         refresh, adjust key_copy.
1569         [BZ #4074]
1570         * nscd/pwdcache.c (cache_addpw): In case a record changed on
1571         refresh, adjust key_copy.
1573         [BZ #4070]
1574         * stdio-common/printf_fp.c (___printf_fp): Handle a few more
1575         special cases.
1576         * stdio-common/tfformat.c (sprint_doubles): Some more tests.
1578 2007-02-19  Ulrich Drepper  <drepper@redhat.com>
1580         * stdio-common/printf_fp.c (___printf_fp): Cleanups and minor
1581         optimization.
1583         * stdio-common/vfscanf.c: Small cleanups throughout.
1585 2007-02-18  Ulrich Drepper  <drepper@redhat.com>
1587         [BZ #3325]
1588         * sysdeps/i386/fpu/e_fmodf.S: Use fprem1 instead of fprem.
1589         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
1590         * sysdeps/i386/fpu/e_fmod.S: Likewise.
1591         Patch by Jared Casper <jaredcasper@gmail.com>.
1593         * sysdeps/unix/closedir.c: Outside libc don't use locking.
1594         * sysdeps/unix/opendir.c: Likewise.
1595         * sysdeps/unix/readdir.c: Likewise.
1597         [BZ #2211]
1598         * stdio-common/vfscanf.c: Handle localized digits etc for floating
1599         point numbers.
1600         Patch mostly by Hamed Malek <hamed@farsiweb.info>.
1602         * stdio-common/vfscanf.c: Fix problems in width accounting.
1603         * stdio-common/tst-sscanf.c (double_tests): New tests.
1604         (main): Hook them up.
1606         * stdio-common/vfscanf.c: Remove unused WIDTH handling.
1607         More simplifications of floating-point reader.
1609         * stdio-common/Makefile (tests): Add tst-swscanf.
1610         * stdio-common/tst-sscanf.c: Make tests usable for swscanf
1611         testing.
1612         * stdio-common/tst-swscanf.c: New file.
1614 2007-02-17  Ulrich Drepper  <drepper@redhat.com>
1616         [BZ #2633]
1617         * libio/stdio.h: Define struct _IO_FILE in global namespace.
1618         * setjmp/setjmp.h: Define __jmp_buf_tag in global namespace.
1619         Remove using for __jmp_buf_tag.
1620         * locale/locale.h (struct lconv): Also define in std namespace.
1621         * wcsmbs/wchar.h: Move using declaration for tm out of namespace.
1623         [BZ #3842]
1624         * sysdeps/posix/euidaccess.c [_LIBC] (euidaccess): Remove shortcut
1625         using __libc_enable_secure.
1627         [BZ #3818]
1628         * sysdeps/unix/sysv/linux/sys/acct.h (struct acct_v3): Define.
1630         [BZ #3745]
1631         * locale/programs/ld-collate.c (handle_ellipsis): Fix generation
1632         of names for ellipsises.
1634         [BZ #3348]
1635         * malloc/memusage.sh: Cleanups.
1636         * debug/xtrace.sh: Quoting and trap changes.
1638 2007-02-16  Ulrich Drepper  <drepper@redhat.com>
1640         * locale/iso-3166.def: Add Jersey, Guernsey, and Isle Of Man entries.
1642         * locale/iso-3166.def: Update entry for Serbia.
1643         * locale/iso-4217.def: Define RSD, remove CSD.
1645         * sysdeps/x86_64/bits/atomic.h: One more change, this time for 16-
1646         and 64-bit operations.
1648         [BZ #4040]
1649         * sysdeps/i386/i486/bits/atomic.h: One more change, this time for
1650         16-bit operations.
1652         * nscd/nscd.c (parse_opt): One more conversion to use send instead
1653         of writev.
1655 2007-02-15  Ulrich Drepper  <drepper@redhat.com>
1657         [BZ #3991]
1658         * assert/assert.h (assert): Simplify.
1659         (assert_perror): Likewise.
1660         Patch by Israel G. Lugo <ilugo@bridonsecurity.com>.
1662         * nscd/nscd_helper.c (open_socket): Don't send padding bytes from
1663         reqdata.
1665         * sysdeps/unix/sysv/linux/x86_64/send.c (__libc_send): Cosmetic
1666         change: don't pass NULL in place of an integer.
1668 2007-02-02  Bruno Haible  <bruno@clisp.org>
1670         [BZ #3954]
1671         * iconvdata/ksc5601.c (__ksc5601_sym_to_ucs, __ksc5601_sym_from_ucs):
1672         Add mapping for U+327E.
1673         * iconvdata/ksc5601.h (KSC5601_SYMBOL): Increment.
1674         * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
1675         mapping of 0xD9 0xE8.
1676         * iconvdata/uhc.c (BODY for FROM_LOOP, BODY for TO_LOOP): Disable
1677         mapping of U+327E.
1678         Reported by Jungshik Shin <jungshik@google.com>.
1680         [BZ #3955]
1681         * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
1682         mapping of 0xD9 0xE6 and of 0xD9 0xE7.
1683         Reported by Jungshik Shin <jungshik@google.com>.
1685 2007-02-14  Ulrich Drepper  <drepper@redhat.com>
1687         * sysdeps/x86_64/bits/atomic;h: Fix asm parameters for some
1688         byte variants.
1690         [BZ #4040]
1691         * sysdeps/i386/i486/bits/atomic.h: Fix asm parameters for some
1692         byte variants.  Patch mostly be tom@tommay.net.
1694 2007-02-14  Jakub Jelinek  <jakub@redhat.com>
1696         [BZ #3996]
1697         * posix/glob.c (attribute_hidden): Define if not defined.
1698         (glob): Unescape dirname, filename or username when needed and not
1699         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
1700         is NULL.  Handle unescaped [ in pattern without closing ].
1701         Don't pass GLOB_CHECK down to recursive glob for directories.
1702         (__glob_pattern_type): New function.
1703         (__glob_pattern_p): Implement using __glob_pattern_type.
1704         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
1705         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
1706         Remove unreachable code.
1707         * posix/globtest.sh: Add a couple of new tests.
1709 2007-02-13  Ulrich Drepper  <drepper@redhat.com>
1711         * po/ru.po: Update from translation team.
1713 2007-02-12  Jakub Jelinek  <jakub@redhat.com>
1715         * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __amdfam10__
1716         to the list of i486+ CPUs.
1717         * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
1719 2007-02-12  Ulrich Drepper  <drepper@redhat.com>
1721         * elf/rtld.c (RESOLVE_MAP): Always return bootstrap_map reference.
1722         * elf/Makefile ($(objpfx)ld.so): Check that ld.so has no undefined
1723         references.
1725 2007-02-09  Ulrich Drepper  <drepper@redhat.com>
1727         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Remove incorrect comment.
1729         * resolv/res_init.c (res_setoptions): Recognize edns0 option.
1730         * resolv/res_mkquery.c: Define __res_nopt.
1731         * resolv/res_query.c (__libc_res_nquery): If RES_USE_EDNS0 is set
1732         try adding EDNS0 record.
1733         * resolv/res_send.c (send_dg): If request failed with FORMERR and
1734         EDNS0 record was send make sure we don't try it again.
1735         * resolv/resolv.h: Define RES_F_EDNS0ERR and RES_USE_EDNS0.
1736         * include/resolv.h: Declare __res_nopt.
1738 2007-02-08  Jakub Jelinek  <jakub@redhat.com>
1740         [BZ #3944]
1741         * time/strptime_l.c (__strptime_internal): Set have_mon for
1742         %b/%B/%h.  Set have_mon and have_mday if tm_mon and tm_mday
1743         have been computed from tm_yday and tm_year.  Don't crash
1744         in day_of_the_week or day_of_the_year if not have_mon
1745         and tm_mon contains bogus value.
1746         * time/Makefile (tests): Add tst-strptime3.
1747         * time/tst-strptime3.c: New test.
1749 2007-02-05  Jakub Jelinek  <jakub@redhat.com>
1751         [BZ #3957]
1752         * posix/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
1753         bit for RE_HAT_LISTS_NOT_NEWLINE.
1754         (build_charclass_op): Remove bogus comment.
1755         * posix/Makefile (tests): Add bug-regex27 and bug-regex28.
1756         * posix/bug-regex27.c: New test.
1757         * posix/bug-regex28.c: New test.
1759 2007-02-03  Ulrich Drepper  <drepper@redhat.com>
1761         * po/sv.po: Update from translation team.
1763 2007-02-02  Ulrich Drepper  <drepper@redhat.com>
1765         * nscd/nscd_helper.c (open_socket): Minor size optimization.
1767 2007-02-02  Jakub Jelinek  <jakub@redhat.com>
1769         * include/locale.h (__uselocale): Add libc_hidden_proto.
1770         * locale/uselocale.c (__uselocale): Add libc_hidden_def.
1772         * nscd/nscd_helper.c (open_socket): Use __gettimeofday instead of
1773         gettimeofday.
1775 2007-02-01  Ulrich Drepper  <drepper@redhat.com>
1777         * sysdeps/unix/sysv/linux/i386/sysdep.h (PTR_MANGLE): Roll value before
1778         returning.
1779         (PTR_DEMANGLE): Real definition now that it's not the same as
1780         PRT_MANGLE anymore.
1781         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
1783         * string/strerror_l.c: New file.
1784         * string/Makefile (routines): Add strerror_l.
1785         * string/string.h: Declare strerror_l.
1786         * string/Versions: Export strerror_l for GLIBC_2.6.
1788 2007-01-31  Ulrich Drepper  <drepper@redhat.com>
1790         * nscd/nscd_helper.c (open_socket): Now takes request type and key
1791         as parameter.  Construct request record.  Try sending request
1792         before the first poll use, it usually succeeds.  Adjust all
1793         callers.
1794         * nscd/nscd-client.h: Define MAXKEYLEN.
1795         * nscd/connections.c (nscd_run): Don't define MAXKEYLEN here.
1797 2007-01-31  Jakub Jelinek  <jakub@redhat.com>
1799         * nscd/nscd-client.h (__nscd_cache_search): Remove const qualifier
1800         from return value.
1801         * nscd/nscd_helper.c: Include string.h.
1802         (__nscd_cache_search): Remove const qualifier from return value.
1803         On strict alignment architectures check hash entry and data head
1804         alignment.
1805         * nscd/nscd_getpw_r.c (nscd_getpw_r): Don't crash or fail because
1806         mmapped data during GC cycle contains garbage.  If
1807         __nscd_drop_map_ref fails, decrement mapped->counter when returning
1808         error or if retrying with NO_MAPPING, only __nscd_unmap if counter
1809         dropped to 0.
1810         * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
1811         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
1812         * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
1813         * nscd/nscd_getai.c (__nscd_getai): Likewise.
1814         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
1816 2007-01-30  Ulrich Drepper  <drepper@redhat.com>
1818         * misc/hsearch_r.c (hdestroy_r): Remove unnecessary test.
1820 2007-01-26  Ulrich Drepper  <drepper@redhat.com>
1822         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Use register
1823         names not numbers in cfi_*.
1825 2007-01-26  Andreas Jaeger  <aj@suse.de>
1827         * sysdeps/unix/sysv/linux/sys/personality.h (ADDR_NO_RANDOMIZE,
1828         ADDR_LIMIT_3GB, PER_LINUX_32BIT, PER_LINUX32_3GB): Add.
1829         Correct values of PER_HPUX and PER_OSF4.
1831 2007-01-24  Ulrich Drepper  <drepper@redhat.com>
1833         * elf/dl-minimal.c: Undefine _itoa first.
1834         * stdio-common/_itoa.h: Define _itoa and _fitoa for 64-bit platforms.
1835         * malloc/mtrace.c: Revert last change.
1836         * posix/wordexp.c: Likewise.
1838 2007-01-24  Jakub Jelinek  <jakub@redhat.com>
1840         * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __nocona__, __core2__
1841         and __geode__ to the list of i486+ CPUs.
1842         * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
1844 2007-01-23  Ulrich Drepper  <drepper@redhat.com>
1846         * stdio-common/_itoa.c: Include <limits.h>.
1847         * stdio-common/_itowa.c: Likewise.
1849 2007-01-22  Ulrich Drepper  <drepper@redhat.com>
1851         * stdio-common/_itowa.c: Don't compile _itowa for 64-bit
1852         platforms.
1853         * stdio-common/_itoa.c: Don't compile in _itoa and _fitoa for
1854         64-bit platforms.
1855         * malloc/mtrace.c (tr_where): Use _fitoa_word instead of _fitoa if
1856         possible.
1857         * posix/wordexp.c (parse_arith): Use _itoa_word instead of _itoa
1858         if possible.
1860         [BZ #3902]
1861         * stdio-common/_itoa.c (_itoa): Make sure at least a zero is emitted.
1862         * stdio-common/Makefile (tests): Add bug17.
1863         * stdio-common/bug17.c: New file.
1865 2007-01-19  Ulrich Drepper  <drepper@redhat.com>
1867         * iconvdata/brf.c: New file.
1868         * iconvdata/testdata/BRF: New file.
1869         * iconvdata/testdata/BRF..UTF8: New file.
1870         Contributed by Samuel Thibault <samuel.thibault@ens-lyon.org>.
1871         * iconvdata/Makefile: Add rules to build BRF.
1872         * iconvdata/TESTS: Add BRF entry.
1873         * iconvdata/gconv-modules: Likewise.
1874         * iconvdata/tst-tables.sh: Likewise.
1876 2007-01-18  Anton Nikishaev  <anton.nik@gmail.com>
1878         * wcsmbs/wchar.h (wcstoll): Fix comment, function returns value of
1879         type `long long int', not `long int'.
1880         (wcstoq): Likewise.
1882 2007-01-18  Ulrich Drepper  <drepper@redhat.com>
1884         * scripts/gen-as-const.awk: Add cast to long to avoid int promotion
1885         of values on 64-bit platforms which are too large.
1887 2007-01-12  Steven Munroe  <sjmunroe@us.ibm.com>
1888             Joe Kerian  <jkerian@us.us.ibm.com>
1890         [BZ #2749]
1891         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Include
1892         <math_ldbl_opt.h>.  Remove weak_alias.  Use long_double_symbol macro.
1893         (__copysignl): Use signbit() for comparison.
1894         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Correct parms for
1895         SET_LDOUBLE_WORDS64.
1897         [BZ #2423, #2749]
1898         * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Don't include <fenv_libc.h>.
1899         (__ceill): Remove calls to fegetround(), fesetround().
1900         * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
1901         * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
1902         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
1904 2007-01-17  Jakub Jelinek  <jakub@redhat.com>
1906         * nscd/nscd_getserv_r.c (nscd_getserv_r): Fix pastos.
1908         * sysdeps/unix/sysv/linux/getdents.c (offsetof): Remove.
1910 2007-01-17  Ulrich Drepper  <drepper@redhat.com>
1912         * sysdeps/unix/sysv/linux/fatal-prepare.h: Use PTHFCT_CALL to
1913         demangle pointer.
1914         * csu/libc-start.c: Likewise.
1916 2007-01-16  Ulrich Drepper  <drepper@redhat.com>
1918         * sysdeps/posix/system.c: Remove NO_WAITPID support, it cannot
1919         really work anyway.
1921 2007-01-15  Ulrich Drepper  <drepper@redhat.com>
1923         * nscd/connections.c (servinfo): Renamed to reqinfo.  Change all
1924         users.
1925         (handle_request): Remove unnecessary tests.
1927         * nscd/cache.c (cache_add): Record the failure to add to the cache.
1929 2007-01-15  Jakub Jelinek  <jakub@redhat.com>
1931         * soft-fp/op-common.h (FP_TRUNC): When truncating a NaN, clear
1932         workbits in semi-raw fraction.
1934         * math/test-misc.c: Add new tests.
1936 2007-01-14  Steven Munroe  <sjmunroe@us.ibm.com>
1938         * math/basic-test.c: Include test-skeleton.c.
1939         (TEST_TRUNC): Define.
1940         (truncdfsf_test, trunctfsf_test, trunctfdf_test): New.
1941         (main): Rename to ...
1942         (do_test): ...this.  Run new tests.
1943         (TEST_FUNCTION): Define.
1945 2006-10-05  Steven Munroe  <sjmunroe@us.ibm.com>
1946             Joe Kerian  <jkerian@us.us.ibm.com>
1948         [BZ #2749]
1949         * soft-fp/op-4.h (__FP_FRAC_SUB_3, __FP_FRAC_SUB_4): Correct borrow
1950         handling for high words.
1951         * soft-fp/op-common.h (_FP_OVERFLOW_SEMIRAW): Always set inexact
1952         and overflow for infinity.
1954 2007-01-15  Ulrich Drepper  <drepper@redhat.com>
1956         * nscd/connections.c (handle_request): Add a __builtin_expect.
1958         * nscd/connections.c (serv2db): Change type into structure which
1959         also says whether this is a request for data.  Renamed to
1960         servinfo.  All users changed.
1961         (handle_request): Much simpler test whether we should search the cache.
1963         * nscd/connections.c (handle_request): Fix thinko in selinux test
1964         invocation.
1966         * sysdeps/generic/ldsodefs.h: Define DL_LOOKUP_SCOPE_LOCK.
1967         * elf/dl-lookup.c (add_dependency): If scope map is locked, unlock
1968         it before getting dl_load_lock and then relock.
1969         (_dl_lookup_symbol_x): Pass flags to add_dependency.
1970         When rerunning _dl_lookup_symbol_x, compute symbol_scope again in
1971         case we unlocked the scope.
1972         * elf/dl-runtime.c (_dl_fixup): Pass DL_LOOKUP_SCOPE_LOCK to
1973         _dl_lookup_symbol_x in case we locked the scope.
1974         (_dl_profile_fixup): Likewise.
1975         * elf/dl-sym.c (do_sym): In flags passed to call_dl_lookup, also
1976         set DL_LOOKUP_SCOPE_LOCK.
1978 2007-01-13  Ulrich Drepper  <drepper@redhat.com>
1980         * inet/Makefile: Define CFLAGS-getsrvbynm_r.c and
1981         CFLAGS-getsrvbynpt_r.c.
1982         * nscd/getsrvbynm_r.c: New file.
1983         * nscd/getsrvbypt_r.c: New file.
1984         * nscd/nscd_getserv_r.c: New file.
1985         * nscd/servicescache.c: New file.
1986         * nscd/Makefile (routines): Add nscd_getserv_r.
1987         (nscd-modules): Add getsrvbynm_r, getsrvbypt_r, and servicescache.
1988         Define CFLAGS-servicescache.c, CFLAGS-getsrvbynm_r.c, and
1989         CFLAGS-getsrvbypt_r.c.
1990         * nscd/cache.c (prune_cache): Rewrite to get re-add function from
1991         table.  Add entries for services database.
1992         * nscd/connections.c (serv2str): Mark as const.  Add entries for
1993         services database.
1994         (dbs): Add .reset_res and servdb initialization.
1995         (serv2db): Add entries for services database.
1996         (verify_persistent_db): Accept dbnr == servdb.
1997         (invalidate_cache): Rewrite database name recognition to use a table.
1998         Call res_init() if .reset_res is set for database.
1999         (handle_request): Add code to handle services database.
2000         * nscd/gai.c: Don't define __getservbyname_r.
2001         * nscd/nscd-client.h (request_type): Remove LASTDBREQ, add
2002         GETSERVBYNAME, GETSERVBYPORT, GETFDSERV.
2003         (serv_response_header): Define.
2004         (struct datahead): Add serv_response_header member.
2005         * nscd/nscd.c (parse_opt): Rewrite parsing of -i parameter value
2006         using table.
2007         * nscd/nscd.conf: Add entries for services database.
2008         * nscd/nscd.h: Adjust declaration of dbnames and serv2str.
2009         Declare serv_iov_disabled.
2010         Declare addservbyname, readdservbyname, addservbyport, and
2011         readdservbyport.
2012         * nscd/nscd_conf.c (dbnames): Mark as const.  Add services entry.
2013         (find_db): Fix error message.
2014         * nscd/nscd_proto.h: Declare __nss_not_use_nscd_services,
2015         __nscd_getservbyname_r, and __nscd_getservbyport_r.
2016         * nscd/selinux.c (perms): Add entries for services database.
2017         * nss/Versions: Export __nss_services_lookup with GLIBC_PRIVATE.
2018         * nss/nsswitch.c (__nss_disable_nscd): Also disable services database.
2020         * nscd/grpcache.c: Remove obsolete code.  Cleanups.
2021         * nscd/hstcache.c: Likewise.
2022         * nscd/pwdcache.c: Likewise.
2024         * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r): Correct
2025         computation of keylen.
2027         * include/string.h: Only redefine strndupa if this is really for
2028         libc code.
2030 2007-01-12  Ulrich Drepper  <drepper@redhat.com>
2032         * nscd/nscd_gethst_r.c: Minor cleanups.
2034         * nscd/connections.c (handle_request): Check selinux permissions
2035         for all non-admin commands.
2037         * sysdeps/i386/i486/bits/atomic.h: Define
2038         atomic_compare_and_exchange_val_acq,
2039         atomic_compare_and_exchange_bool_acq, and atomic_exchange_and_add
2040         using __sync_* built-ins for gcc >= 4.1.
2041         * sysdeps/x86_64/bits/atomic.h: Likewise.
2043         [BZ #3840]
2044         * scripts/check-local-headers.sh: Restrict to testing .o.d, .os.d,
2045         and .oS.d files.
2047 2007-01-05  Steven Munroe  <sjmunroe@us.ibm.com>
2049         * stdlib/tst-makecontext.c: Include errno.h.  Change main()
2050         to do_test().  Define TEST_FUNCTION. Include test-skeleton.c.
2051         (do_test): Check errno and exit(0) if ENOSYS.
2053 2007-01-11  Jakub Jelinek  <jakub@redhat.com>
2055         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix handling of multi-byte
2056         thousands separators.
2057         * stdlib/Makefile: Add rules to build and run tst-strtod4.
2058         * stdlib/tst-strtod4.c: New test.
2060         [BZ #3855]
2061         * stdlib/strtod_l.c (____STRTOF_INTERNAL): 0x. not followed by
2062         hexadecimal digit should accept just the initial 0.
2063         * stdlib/tst-strtod2.c (tests): New variable.
2064         (do_test): Run several tests rather than just one.
2066 2007-01-11  Jakub Jelinek  <jakub@redhat.com>
2068         * sysdeps/i386/soft-fp/sfp-machine.h: Remove.
2069         * sysdeps/x86_64/soft-fp/sfp-machine.h: Likewise.
2071 2007-01-10  Ulrich Drepper  <drepper@redhat.com>
2073         * io/fts.c: Make sure fts_cur is always valid after return from
2074         fts_read.
2075         Patch by Miloslav Trmac <mitr@redhat.com>.
2077 2006-10-27  Richard Sandiford  <richard@codesourcery.com>
2079         * elf/elf.h (R_MIPS_GLOB_DAT): Define.
2080         (R_MIPS_NUM): Bump by 1.
2082 2007-01-03  Jakub Jelinek  <jakub@redhat.com>
2084         * posix/execvp.c: Include alloca.h.
2085         (allocate_scripts_argv): Renamed to...
2086         (scripts_argv): ... this.  Don't allocate buffer here nor count
2087         arguments.
2088         (execvp): Use alloca if possible.
2089         * posix/Makefile: Add rules to build and run tst-vfork3 test.
2090         * posix/tst-vfork3.c: New test.
2092 2007-01-03  Ulrich Drepper  <drepper@redhat.com>
2094         * string/Makefile (tst-strxfrm2-ENV): Define.
2095         * stdlib/Makefile (tst-strtod3-ENV): Define.
2097 2007-01-02  Ulrich Drepper  <drepper@redhat.com>
2099         * posix/getconf.c: Update copyright year.
2100         * nss/getent.c: Likewise.
2101         * iconv/iconvconfig.c: Likewise.
2102         * iconv/iconv_prog.c: Likewise.
2103         * elf/ldconfig.c: Likewise.
2104         * catgets/gencat.c: Likewise.
2105         * csu/version.c: Likewise.
2106         * elf/ldd.bash.in: Likewise.
2107         * elf/sprof.c (print_version): Likewise.
2108         * locale/programs/locale.c: Likewise.
2109         * locale/programs/localedef.c: Likewise.
2110         * nscd/nscd.c (print_version): Likewise.
2111         * debug/xtrace.sh: Likewise.
2112         * malloc/memusage.sh: Likewise.
2113         * malloc/mtrace.pl: Likewise.
2114         * debug/catchsegv.sh: Likewise.
2116 2006-12-24  Ulrich Drepper  <drepper@redhat.com>
2118         * malloc/malloc.c (sYSMALLOc): Remove some unnecessary alignment
2119         attempts.
2121 2006-12-23  Ulrich Drepper  <drepper@redhat.com>
2123         * posix/wordexp.c: Remove some unnecessary tests.
2125 2006-12-22  Gavin Romig-Koch  <gavin@redhat.com>
2127         * nis/nss_compat/compat-grp.c (internal_getgrgid_r): Don't
2128         blacklist the group till after we look it up.
2130 2006-12-21  Ulrich Drepper  <drepper@redhat.com>
2132         * include/atomic.h (atomic_forced_read): New macro.
2134 2006-12-20  SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
2136         * sysdeps/unix/sysv/linux/sh/bits/shm.h: New file.
2138 2006-12-19  Jakub Jelinek  <jakub@redhat.com>
2140         * nss/getXXbyYY_r.c: Include atomic.h.
2141         (INTERNAL (REENTRANT_NAME)): Write startp after start_fct,
2142         add atomic_write_barrier () in between.
2144         * stdlib/Makefile (tests): Add tst-makecontext.
2145         * stdlib/tst-makecontext.c: New test.
2147         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
2148         (__makecontext): Don't realign uc_mcontext.uc_regs.
2150 2006-11-28  Jakub Jelinek  <jakub@redhat.com>
2152         * elf/dl-support.c: Include dl-procinfo.h.
2153         * sysdeps/powerpc/dl-procinfo.h (PPC_PLATFORM_POWER4,
2154         PPC_PLATFORM_PPC970, PPC_PLATFORM_POWER5, PPC_PLATFORM_POWER5_PLUS,
2155         PPC_PLATFORM_POWER6, PPC_PLATFORM_CELL_BE, PPC_PLATFORM_POWER6X):
2156         Define.
2157         (_dl_string_platform): Use PPC_PLATFORM_* macros instead of
2158         hardcoded constants.
2159         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platform): Use
2160         PPC_PLATFORM_* macros for array designators.
2162 2006-11-11  Steven Munroe  <sjmunroe@us.ibm.com>
2164         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 3 new cap
2165         names to the beginning.
2166         (_dl_powerpc_platforms): Add "power6x".
2167         * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
2168         (HWCAP_IMPORTANT): Add PPC_FEATURE_HAS_DFP.
2169         (_DL_PLATFORMS_COUNT): Increase.
2170         (_dl_string_platform): Handle power6x case.
2171         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_PA6T, PPC_FEATURE_HAS_DFP,
2172         PPC_FEATURE_POWER6_EXT): Define.
2173         (PPC_FEATURE_POWER5, PPC_FEATURE_POWER5_PLUS): Correct Comment.
2175 2006-12-18  Jakub Jelinek  <jakub@redhat.com>
2177         [BZ #3747]
2178         * stdlib/jrand48_r.c (__jrand48_r): Make sure result is in the
2179         [-2^31 .. 2^31) range.
2180         * stdlib/tst-rand48.c (main): Fix expected values for 64-bit
2181         targets.
2182         * stdlib/tst-rand48-2.c: New test.
2183         * stdlib/Makefile (tests): Add tst-rand48-2.
2185 2006-12-14  Jakub Jelinek  <jakub@redhat.com>
2187         * misc/tst-pselect.c (do_test): Fix sigblock argument.
2189 2006-12-14  Ulrich Drepper  <drepper@redhat.com>
2191         * misc/tst-pselect.c (do_test): Make sure the helper process is
2192         terminating when the test is aborted.
2194 2006-12-13  Ulrich Drepper  <drepper@redhat.com>
2196         * sysdeps/unix/sysv/linux/bits/statvfs.h: Define ST_RELATIME.
2197         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
2198         Handle relatime mount option.
2200         [BZ #2337]
2201         * libio/Makefile (tests): Add tst-setvbuf1.
2202         * libio/tst-setvbuf1.c: New file.
2204 2006-12-08  Jakub Jelinek  <jakub@redhat.com>
2206         [BZ #2337]
2207         * libio/genops.c (__uflow): Fix a typo.
2208         * libio/wfiledoalloc.c (_IO_wfile_doallocate): Don't stat
2209         nor set _IO_LINE_BUF bit here.  Size the wide buffer based on
2210         the narrow buffer size.
2212 2006-11-24  Jakub Jelinek  <jakub@redhat.com>
2214         [BZ #2337]
2215         * libio/libio.h (_IO_FLAGS2_USER_WBUF): Define.
2216         * libio/wgenops.c (_IO_wsetb, _IO_wdefault_finish): Test and set
2217         _IO_FLAGS2_USER_WBUF bit in _flags2 instead of _IO_USER_BUF bit
2218         in _flags.
2219         * libio/wstrops.c (_IO_wstr_overflow, enlarge_userbuf,
2220         _IO_wstr_finish): Likewise.
2221         * libio/wmemstream.c (open_wmemstream): Likewise.
2222         * libio/fileops.c (_IO_new_file_close_it): Call _IO_set[bgp]
2223         even for wide streams.
2225 2006-12-13  Jakub Jelinek  <jakub@redhat.com>
2227         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Include
2228         kernel-features.h.
2230 2006-12-11  Ulrich Drepper  <drepper@redhat.com>
2232         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Parse thousand
2233         separators also if no non-zero digits found.
2234         * stdlib/Makefile (tests): Add tst-strtod3.
2236 2006-12-09  Ulrich Drepper  <drepper@redhat.com>
2238         [BZ #3632]
2239         * include/features.h: Fix comment about default value for
2240         _POSIX_C_SOURCE.
2242         [BZ #3664]
2243         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix test to recognize
2244         empty parsed strings.
2245         * stdlib/Makefile (tests): Add tst-strtod2.
2246         * stdlib/tst-strtod2.c: New file.
2248         [BZ #3673]
2249         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix exp_limit
2250         computation.
2251         * stdlib/Makefile (tests): Add tst-atof2.
2252         * stdlib/tst-atof2.c: New file.
2254         [BZ #3674]
2255         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Adjust exponent value
2256         correctly if removing trailing zero of hex-float.
2257         * stdlib/Makefile (tests): Add tst-atof1.
2258         * stdlib/tst-atof1.c: New file.
2260 2006-12-09  Jakub Jelinek  <jakub@redhat.com>
2262         * misc/mntent_r.c (__hasmntopt): Check p[optlen] even when p == rest.
2263         Start searching for next comma at p rather than rest.
2264         * misc/Makefile (tests): Add tst-mntent2.
2265         * misc/tst-mntent2.c: New test.
2267         * misc/getusershell.c (initshells): Check for integer overflows.
2268         Make strings buffer one bigger as fgets always succeeds when second
2269         argument is 1.  Don't use calloc for shells array.  Disallow
2270         / as shell.
2272 2006-12-08  Ulrich Drepper  <drepper@redhat.com>
2274         * malloc/memusage.c: Handle realloc with new size of zero and
2275         non-NULL pointer correctly.
2276         (me): Really write first record twice.
2277         (struct entry): Make format bi-arch safe.
2278         (dest): Write out more realloc statistics.
2279         * malloc/memusagestat.c (struct entry): Make format bi-arch safe.
2281 2006-12-05  Jakub Jelinek  <jakub@redhat.com>
2283         * nis/nis_subr.c (nis_getnames): Revert last change.
2285 2006-12-04  Jakub Jelinek  <jakub@redhat.com>
2287         * sysdeps/unix/sysv/linux/ttyname.c: Include termios.h.
2288         (ttyname): Use tcgetattr instead of isatty, don't set errno to ENOTTY.
2289         * sysdeps/unix/sysv/linux/ttyname_r.c: Include termios.h.
2290         (__ttyname_r): Use tcgetattr instead of isatty, don't set errno to
2291         ENOTTY.
2292         * io/Makefile: Add rules to build and run tst-ttyname_r test.
2293         * io/tst-ttyname_r.c: New test.
2295 2006-12-03  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
2297         * sysdeps/unix/sysv/linux/sh/sys/io.h: Removed.
2299 2006-11-30  H.J. Lu  <hongjiu.lu@intel.com>
2301         * sysdeps/i386/i686/memcmp.S: Use jump table as the base of
2302         jump table entries.
2304 2006-11-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
2306         * sysdeps/unix/sysv/linux/i386/clone.S: Provide CFI for the outermost
2307         `clone' function to ensure proper unwinding stop of gdb.
2308         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
2310 2006-12-01  Ulrich Drepper  <drepper@redhat.com>
2312         * nscd/nscd.init: Remove obsolete and commented-out -S option
2313         handling.
2315 2006-11-23  Jakub Jelinek  <jakub@redhat.com>
2317         [BZ #3514]
2318         * manual/string.texi (strncmp): Fix pastos from wcscmp description.
2320         [BZ #3515]
2321         * manual/string.texi (strtok): Remove duplicate paragraph.
2323 2006-12-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
2325         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Fix compatibility with
2326         libgcc not supporting `rflags' unwinding (register # >= 17).
2328 2006-11-30  Jakub Jelinek  <jakub@redhat.com>
2330         * sunrpc/svc_run.c (svc_run): Set my_pollfd to new_pollfd if realloc
2331         succeeded.
2333 2006-11-29  Daniel Jacobowitz  <dan@codesourcery.com>
2334             Jakub Jelinek  <jakub@redhat.com>
2335             Jan Kratochvil  <jan.kratochvil@redhat.com>
2337         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (restore_rt): Add correct
2338         unwind information.
2339         * sysdeps/unix/sysv/linux/x86_64/Makefile: Provide symbols for
2340         'restore_rt' even in the 'signal' directory.
2341         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.sym: Extend the regs list.
2343 2006-11-27  Jakub Jelinek  <jakub@redhat.com>
2345         [BZ #3559]
2346         * sunrpc/svc_run.c (svc_run): Fail instead of segfaulting if
2347         malloc crashed.  Don't allocate memory unnecessarily in each
2348         loop.
2350 2006-10-21  Jakub Jelinek  <jakub@redhat.com>
2352         * resolv/mapv4v6addr.h (map_v4v6_address): Fix last change.
2354 2006-11-20  Ulrich Drepper  <drepper@redhat.com>
2356         * resolv/mapv4v6addr.h (map_v4v6_address): Optimize a bit.
2358 2006-11-18  Bruno Haible  <bruno@clisp.org>
2360         * sysdeps/unix/sysv/linux/i386/getgroups.c (__getgroups): Invoke
2361         __sysconf only after having tried to call getgroups32.
2363 2006-11-19  Ulrich Drepper  <drepper@redhat.com>
2365         * nss/nss_files/files-hosts.c (LINE_PARSER): Support IPv6-style
2366         addresses for IPv4 queries if they can be mapped.
2368 2006-11-16  Jakub Jelinek  <jakub@redhat.com>
2370         * sysdeps/x86_64/fpu/s_copysignf.S (__copysignf): Switch to .text.
2371         * sysdeps/x86_64/fpu/s_copysign.S (__copysign): Likewise.
2372         (signmask): Add .size directive.
2373         (othermask): Add .type directive.
2375 2006-11-14  Ulrich Drepper  <drepper@redhat.com>
2377         * po/nl.po: Update from translation team.
2379         * timezone/zdump.c: Redo fix for BZ #3137.
2381 2006-11-14  Jakub Jelinek  <jakub@redhat.com>
2383         * nss/nss_files/files-alias.c (get_next_alias): Set line back
2384         to first_unused after parsing :include: file.
2386 2006-11-10  Ulrich Drepper  <drepper@redhat.com>
2388         * timezone/africa: Update from tzdata2006o.
2389         * timezone/antarctica: Likewise.
2390         * timezone/asia: Likewise.
2391         * timezone/australasia: Likewise.
2392         * timezone/backward: Likewise.
2393         * timezone/europe: Likewise.
2394         * timezone/iso3166.tab: Likewise.
2395         * timezone/northamerica: Likewise.
2396         * timezone/southamerica: Likewise.
2397         * timezone/zone.tab: Likewise.
2399         * time/tzfile.c (__tzfile_read): Extend to handle new file format
2400         on machines with 64-bit time_t.
2402         * timezone/checktab.awk: Update from tzcode2006o.
2403         * timezone/ialloc.c: Likewise.
2404         * timezone/private.h: Likewise.
2405         * timezone/scheck.c: Likewise.
2406         * timezone/tzfile.h: Likewise.
2407         * timezone/tzselect.ksh: Likewise.
2408         * timezone/zdump.c: Likewise.
2409         * timezone/zic.c: Likewise.
2411         [BZ #3483]
2412         * elf/ldconfig.c (main): Call setlocale and textdomain.
2413         Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
2415         [BZ #3480]
2416         * manual/argp.texi: Fix typos.
2417         * manual/charset.texi: Likewise.
2418         * manual/errno.texi: Likewise.
2419         * manual/filesys.texi: Likewise.
2420         * manual/lang.texi: Likewise.
2421         * manual/maint.texi: Likewise.
2422         * manual/memory.texi: Likewise.
2423         * manual/message.texi: Likewise.
2424         * manual/resource.texi: Likewise.
2425         * manual/search.texi: Likewise.
2426         * manual/signal.texi: Likewise.
2427         * manual/startup.texi: Likewise.
2428         * manual/stdio.texi: Likewise.
2429         * manual/sysinfo.texi: Likewise.
2430         * manual/syslog.texi: Likewise.
2431         * manual/time.texi: Likewise.
2432         Patch by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2434         [BZ #3465]
2435         * sunrpc/clnt_raw.c: Minimal message improvements.
2436         * sunrpc/pm_getmaps.c: Likewise.
2437         * nis/nss_nisplus/nisplus-publickey.c: Likewise.
2438         * nis/nis_print_group_entry.c: Likewise.
2439         * locale/programs/repertoire.c: Likewise.
2440         * locale/programs/charmap.c: Likewise.
2441         * malloc/memusage.sh: Likewise.
2442         * elf/dl-deps.c: Likewise.
2443         * locale/programs/ld-collate.c: Likewise.
2444         * libio/vswprintf.c: Likewise.
2445         * malloc/memusagestat.c: Likewise.
2446         * sunrpc/auth_unix.c: Likewise.
2447         * sunrpc/rpc_main.c: Likewise.
2448         * nscd/cache.c: Likewise.
2449         * locale/programs/repertoire.c: Unify output messages.
2450         * locale/programs/charmap.c: Likewise.
2451         * locale/programs/ld-ctype.c: Likewise.
2452         * locale/programs/ld-monetary.c: Likewise.
2453         * locale/programs/ld-numeric.c: Likewise.
2454         * locale/programs/ld-time.c: Likewise.
2455         * elf/ldconfig.c: Likewise.
2456         * nscd/selinux.c: Likewise.
2457         * elf/cache.c: Likewise.
2458         Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
2460         [BZ #3451]
2461         * sysdeps/i386/fpu/bits/mathinline.h (floor): Make rounding mode
2462         change atomic.
2463         (ceil): Likewise.
2465 2006-11-10  Jakub Jelinek  <jakub@redhat.com>
2467         * string/strxfrm_l.c (STRXFRM): Fix trailing \1 optimization
2468         if N is one bigger than return value.
2469         * string/tst-strxfrm2.c (do_test): Also test strxfrm with l1 + 1
2470         and l1 last arguments, if buf is defined, verify the return value
2471         equals to strlen (buf) and verify no byte beyond passed length
2472         is modified.
2474 2006-11-10  Ulrich Drepper  <drepper@redhat.com>
2476         * po/sv.po: Update from translation team.
2478 2006-11-09  Ulrich Drepper  <drepper@redhat.com>
2480         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word): Add
2481         noinline attribute.
2483 2006-11-10  Jakub Jelinek  <jakub@redhat.com>
2485         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Add
2486         noinline attribute.
2488         * sysdeps/gnu/siglist.c (__old_sys_siglist, __old_sys_sigabbrev):
2489         Use __new_sys_siglist instead of _sys_siglist_internal as
2490         second macro argument.
2491         (_old_sys_siglist): Use declare_symbol_alias macro instead of
2492         strong_alias.
2494 2006-11-09  Ulrich Drepper  <drepper@redhat.com>
2496         [BZ #3493]
2497         * posix/unistd.h (sysconf): Remove const attribute.
2499         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix test for
2500         temporary or deprecated addresses.
2501         Patch by Sridhar Samudrala <sri@us.ibm.com>.
2503         * string/Makefile (tests): Add tst-strxfrm2.
2504         * string/tst-strxfrm2.c: New file.
2506 2006-10-09  Jakub Jelinek  <jakub@redhat.com>
2508         * elf/dl-debug.c (_dl_debug_initialize): Check r->r_map for 0
2509         rather than r->r_brk.
2511 2006-11-08  Jakub Jelinek  <jakub@redhat.com>
2513         * string/strxfrm_l.c (STRXFRM): Do the trailing \1 removal
2514         optimization even if needed > n.
2516         * elf/dl-load.c (decompose_rpath): Return bool rather than void.
2517         If l->l_name is on inhibit_rpath list, set sps->dirs to -1 and
2518         return false, otherwise return true.
2519         (cache_rpath): Return decompose_rpath return value.
2521 2006-11-07  Jakub Jelinek  <jakub@redhat.com>
2523         * include/libc-symbols.h (declare_symbol): Rename to...
2524         (declare_symbol_alias): ... this.  Add ORIGINAL argument, imply
2525         strong_alias (ORIGINAL, SYMBOL) in asm to make sure it preceedes
2526         .size directive.
2527         * sysdeps/gnu/errlist-compat.awk: Adjust for declare_symbol_alias
2528         changes.
2529         * sysdeps/gnu/siglist.c: Likewise.
2531 2006-11-03  Steven Munroe  <sjmunroe@us.ibm.com>
2533         * sysdeps/powerpc/fpu/bits/mathinline.h
2534         [__LIBC_INTERNAL_MATH_INLINES]: Moved to ...
2535         * sysdeps/powerpc/fpu/math_private.h: ...here.  New file.
2537 2006-11-05  Ulrich Drepper  <drepper@redhat.com>
2539         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
2540         Update handling of cache descriptor 0x49 for new models.
2541         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word):
2542         Likewise.
2544 2006-11-02  Jakub Jelinek  <jakub@redhat.com>
2546         * malloc/memusage.c (dest): Reset not_me back to false after
2547         printing statistics.
2549 2006-11-02  Ulrich Drepper  <drepper@redhat.com>
2551         * configure.in: Work around ld --help change and avoid -z relro
2552         test completely if the architecture doesn't care about security.
2554 2006-11-01  Ulrich Drepper  <drepper@redhat.com>
2556         * po/sv.po: Update from translation team.
2558 2006-10-31  Ulrich Drepper  <drepper@redhat.com>
2560         * stdlib/atexit.c (atexit): Don't mark as hidden when used to
2561         generate compatibility version.
2563 2006-10-29  Ulrich Drepper  <drepper@redhat.com>
2565         * configure.in: Relax -z relro requirement a bit.
2567         * po/sv.po: Update from translation team.
2569 2006-10-29  Jakub Jelinek  <jakub@redhat.com>
2571         * elf/dl-sym.c (do_sym): Use RTLD_SINGLE_THREAD_P.
2572         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
2573         * elf/dl-close.c (_dl_close_worker): Likewise.
2574         * elf/dl-open.c (_dl_open_worker): Likewise.
2575         * sysdeps/generic/sysdep-cancel.h (RTLD_SINGLE_THREAD_P): Define.
2577 2006-10-27  Ulrich Drepper  <drepper@redhat.com>
2579         * configure.in: Require assembler support for visibility, compiler
2580         support for visibility and aliases, linker support for various -z
2581         options.
2582         * Makeconfig: Remove conditional code which now is unnecessary.
2583         * config.h.in: Likewise.
2584         * config.make.in: Likewise.
2585         * dlfcn/Makefile: Likewise.
2586         * elf/Makefile: Likewise.
2587         * elf/dl-load.c: Likewise.
2588         * elf/rtld.c: Likewise.
2589         * include/libc-symbols.h: Likewise.
2590         * include/stdio.h: Likewise.
2591         * io/Makefile: Likewise.
2592         * io/fstat.c: Likewise.
2593         * io/fstat64.c: Likewise.
2594         * io/fstatat.c: Likewise.
2595         * io/fstatat64.c: Likewise.
2596         * io/lstat.c: Likewise.
2597         * io/lstat64.c: Likewise.
2598         * io/mknod.c: Likewise.
2599         * io/mknodat.c: Likewise.
2600         * io/stat.c: Likewise.
2601         * io/stat64.c: Likewise.
2602         * libio/stdio.c: Likewise.
2603         * nscd/Makefile: Likewise.
2604         * stdlib/Makefile: Likewise.
2605         * stdlib/atexit.c: Likewise.
2606         * sysdeps/generic/ldsodefs.h: Likewise.
2607         * sysdeps/i386/dl-machine.h: Likewise.
2608         * sysdeps/i386/sysdep.h: Likewise.
2609         * sysdeps/i386/i686/memcmp.S: Likewise.
2610         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
2611         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
2612         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
2614         * Makerules: USE_TLS support is now default.
2615         * tls.make.c: Likewise.
2616         * csu/Versions: Likewise.
2617         * csu/libc-start.c: Likewise.
2618         * csu/libc-tls.c: Likewise.
2619         * csu/version.c: Likewise.
2620         * dlfcn/dlinfo.c: Likewise.
2621         * elf/dl-addr.c: Likewise.
2622         * elf/dl-cache.c: Likewise.
2623         * elf/dl-close.c: Likewise.
2624         * elf/dl-iteratephdr.c: Likewise.
2625         * elf/dl-load.c: Likewise.
2626         * elf/dl-lookup.c: Likewise.
2627         * elf/dl-object.c: Likewise.
2628         * elf/dl-open.c: Likewise.
2629         * elf/dl-reloc.c: Likewise.
2630         * elf/dl-support.c: Likewise.
2631         * elf/dl-sym.c: Likewise.
2632         * elf/dl-sysdep.c: Likewise.
2633         * elf/dl-tls.c: Likewise.
2634         * elf/ldconfig.c: Likewise.
2635         * elf/rtld.c: Likewise.
2636         * elf/tst-tls-dlinfo.c: Likewise.
2637         * elf/tst-tls1.c: Likewise.
2638         * elf/tst-tls10.h: Likewise.
2639         * elf/tst-tls14.c: Likewise.
2640         * elf/tst-tls2.c: Likewise.
2641         * elf/tst-tls3.c: Likewise.
2642         * elf/tst-tls4.c: Likewise.
2643         * elf/tst-tls5.c: Likewise.
2644         * elf/tst-tls6.c: Likewise.
2645         * elf/tst-tls7.c: Likewise.
2646         * elf/tst-tls8.c: Likewise.
2647         * elf/tst-tls9.c: Likewise.
2648         * elf/tst-tlsmod1.c: Likewise.
2649         * elf/tst-tlsmod13.c: Likewise.
2650         * elf/tst-tlsmod13a.c: Likewise.
2651         * elf/tst-tlsmod14a.c: Likewise.
2652         * elf/tst-tlsmod2.c: Likewise.
2653         * elf/tst-tlsmod3.c: Likewise.
2654         * elf/tst-tlsmod4.c: Likewise.
2655         * elf/tst-tlsmod5.c: Likewise.
2656         * elf/tst-tlsmod6.c: Likewise.
2657         * include/errno.h: Likewise.
2658         * include/link.h: Likewise.
2659         * include/tls.h: Likewise.
2660         * locale/global-locale.c: Likewise.
2661         * locale/localeinfo.h: Likewise.
2662         * malloc/arena.c: Likewise.
2663         * malloc/hooks.c: Likewise.
2664         * malloc/malloc.c: Likewise.
2665         * resolv/Versions: Likewise.
2666         * sysdeps/alpha/dl-machine.h: Likewise.
2667         * sysdeps/alpha/libc-tls.c: Likewise.
2668         * sysdeps/generic/ldsodefs.h: Likewise.
2669         * sysdeps/generic/tls.h: Likewise.
2670         * sysdeps/i386/dl-machine.h: Likewise.
2671         * sysdeps/ia64/dl-machine.h: Likewise.
2672         * sysdeps/ia64/libc-tls.c: Likewise.
2673         * sysdeps/mach/hurd/fork.c: Likewise.
2674         * sysdeps/mach/hurd/i386/tls.h: Likewise.
2675         * sysdeps/powerpc/powerpc32/dl-machine.c: Likwise.
2676         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
2677         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
2678         * sysdeps/s390/libc-tls.c: Likewise.
2679         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
2680         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
2681         * sysdeps/sh/dl-machine.h: Likewise.
2682         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
2683         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
2684         * sysdeps/x86_64/dl-machine.h: Likewise.
2686         * elf/dl-close.c (_dl_close_worker): Renamed from _dl_close and
2687         split out locking and parameter checking.
2688         (_dl_close): Call _dl_close_worker after locking and checking.
2689         * elf/dl-open.c (_dl_open): Call _dl_close_worker instead of
2690         _dl_close.
2691         * elf/Makefile: Add rules to build and run tst-thrlock.
2692         * elf/tst-thrlock.c:  New file.
2694         [BZ #3426]
2695         * stdlib/stdlib.h: Adjust comment for canonicalize_file_name to
2696         reality.
2698         [BZ #3429]
2699         * elf/dl-open.c (dl_open_worker): Keep holding dl_load_lock until
2700         we are sure we do not need it anymore for _dl_close.  Also move
2701         the asserts inside the lock region.
2702         Patch mostly by Suzuki <suzuki@in.ibm.com>.
2704 2006-10-27  Jakub Jelinek  <jakub@redhat.com>
2706         * elf/dl-lookup.c (_dl_debug_bindings): Remove unused symbol_scope
2707         argument.
2708         (_dl_lookup_symbol_x): Adjust caller.
2710         * sysdeps/generic/ldsodefs.h (struct link_namespaces): Remove
2711         _ns_global_scope.
2712         * elf/rtld.c (dl_main): Don't initialize _ns_global_scope.
2714         * elf/dl-libc.c: Revert l_scope name changes.
2715         * elf/dl-load.c: Likewise.
2716         * elf/dl-object.c: Likewise.
2717         * elf/rtld.c: Likewise.
2718         * elf/dl-close.c (_dl_close): Likewise.
2719         * elf/dl-open.c (dl_open_worker): Likewise.  If not SINGLE_THREAD_P,
2720         always use __rtld_mrlock_{change,done}.  Always free old scope list
2721         here if not l_scope_mem.
2722         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Revert l_scope name
2723         change.  Never free scope list here.  Just __rtld_mrlock_lock before
2724         the lookup and __rtld_mrlock_unlock it after the lookup.
2725         * elf/dl-sym.c: Likewise.
2726         * include/link.h (struct r_scoperec): Remove.
2727         (struct link_map): Replace l_scoperec with l_scope, l_scoperec_mem
2728         with l_scope_mem and l_scoperec_lock with l_scope_lock.
2730 2006-10-25  Ulrich Drepper  <drepper@redhat.com>
2732         * sysdeps/gnu/netinet/tcp.h: Define TCP_CONGESTION.
2734 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
2736         * configure.in: Disable building profile libraries by default.
2738 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
2740         * sunrpc/xdr_mem.c (xdrmem_setpos): Don't compare addresses
2741         as signed longs, check for x_base + pos overflow.
2742         * sunrpc/Makefile (tests): Add tst-xdrmem2.
2743         * sunrpc/tst-xdrmem2.c: New test.
2745 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
2747         * elf/dl-lookup.c (_dl_lookup_symbol_x): Add warning to
2748         _dl_lookup_symbol_x code.
2750 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
2752         * elf/dl-runtime.c: Include sysdep-cancel.h.
2753         (_dl_fixup, _dl_profile_fixup): Use __rtld_mrlock_* and
2754         scoperec->nusers only if !SINGLE_THREAD_P.  Use atomic_*
2755         instead of catomic_* macros.
2756         * elf/dl-sym.c: Include sysdep-cancel.h.
2757         (do_sym): Use __rtld_mrlock_* and scoperec->nusers only
2758         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
2759         * elf/dl-close.c: Include sysdep-cancel.h.
2760         (_dl_close): Use __rtld_mrlock_* and scoperec->nusers only
2761         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
2762         * elf/dl-open.c: Include sysdep-cancel.h.
2763         (dl_open_worker): Use __rtld_mrlock_* and scoperec->nusers only
2764         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
2766 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
2768         [BZ #3313]
2769         * malloc/malloc.c (malloc_consolidate): Set maxfb to address of last
2770         fastbin rather than end of fastbin array.
2772 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
2774         * sysdeps/i386/i486/bits/atomic.h (catomic_decrement): Use correct
2775         body macro.
2776         * sysdeps/x86_64/bits/atomic.h
2777         (__arch_c_compare_and_exchange_val_64_acq): Add missing casts.
2778         (catomic_decrement): Use correct body macro.
2780 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
2782         * include/atomic.h: Add a unique prefix to all local variables
2783         in macros.
2784         * csu/tst-atomic.c (do_test): Test also catomic_* macros.
2786 2006-10-16  Ulrich Drepper  <drepper@redhat.com>
2788         [BZ #3369]
2789         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Fix typos in rules 4
2790         and 7.
2792 2006-10-14  Ulrich Drepper  <drepper@redhat.com>
2794         * resolv/arpa/nameser.h: Document that ns_t_a6 is deprecated.
2796 2006-10-13  Ulrich Drepper  <drepper@redhat.com>
2798         [BZ #3313]
2799         * malloc/malloc.c (malloc_consolidate): Don't use get_fast_max to
2800         determine highest fast bin to consolidate, always look into all of
2801         them.
2802         (do_check_malloc_state): Only require for empty bins for large
2803         sizes in main arena.
2805         * libio/stdio.h: Add more __wur attributes.
2807         * elf/dl-minimal.c (realloc): Optimize last patch.
2809 2006-10-12  Richard Sandiford  <richard@codesourcery.com>
2811         [BZ #3352]
2812         * elf/dl-minimal.c (realloc): Let malloc() return a new pointer,
2813         and use memcpy() if it does.
2815 2006-11-12  Andreas Jaeger  <aj@suse.de>
2817         [BZ #2510]
2818         * manual/search.texi (Hash Search Function): Clarify.
2819         (Array Search Function): Clarify.
2821 2006-11-12  Joseph Myers  <joseph@codesourcery.com>
2823         [BZ #2830]
2824         * math/atest-exp.c (main): Cast hex value to mp_limb_t before
2825         shifting.
2826         * math/atest-exp2.c (read_mpn_hex): Likewise.
2827         * math/atest-sincos.c (main): Likewise.
2829 2006-10-11  Ulrich Drepper  <drepper@redhat.com>
2831         * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_pwait.
2832         * sysdeps/unix/sysv/linux/sys/epoll.h: Declare epoll_pwait.
2833         * sysdeps/unix/sysv/linux/Versions (libc): Add epoll_pwait for
2834         version GLIBC_2.6.
2835         * Versions.def: Add GLIBC_2.6 for libc.
2837         * sysdeps/unix/sysv/linux/i386/sysdep.h (DOARGS_6): Fix offset.
2839         * sysdeps/i386/i486/bits/atomic.h: Add catomic_* support.
2841 2006-10-11  Jakub Jelinek  <jakub@redhat.com>
2843         * malloc/malloc.c (_int_malloc): Remove unused any_larger variable.
2845         * nis/nis_defaults.c (__nis_default_access): Don't call getenv twice.
2847         * nis/nis_subr.c (nis_getnames): Use __secure_getenv instead of getenv.
2848         * sysdeps/generic/unsecvars.h: Add NIS_PATH.
2850 2006-10-11  Ulrich Drepper  <drepper@redhat.com>
2852         * include/atomic.c: Define catomic_* operations.
2853         * sysdeps/x86_64/bits/atomic.h: Likewise.  Fix a few minor problems.
2854         * stdlib/cxa_finalize.c: Use catomic_* operations instead of atomic_*.
2855         * malloc/memusage.c: Likewise.
2856         * gmon/mcount.c: Likewise.
2857         * elf/dl-close.c: Likewise.
2858         * elf/dl-open.c: Likewise.
2859         * elf/dl-profile.c: Likewise.
2860         * elf/dl-sym.c: Likewise.
2861         * elf/dl-runtime.c: Likewise.
2862         * elf/dl-fptr.c: Likewise.
2863         * resolv/res_libc.c: Likewise.
2865 2006-10-10  Ulrich Drepper  <drepper@redhat.com>
2867         * nis/nis_subr.c (nis_getnames): Add trailing dot to NIS_PATH
2868         components which lack them.
2870         * nis/nis_subr.c (nis_getnames): Make sure that we always return
2871         at least one entry consisting of the parameter concatenated with
2872         the domain.
2874 2006-10-10  Roland McGrath  <roland@frob.com>
2876         * sysdeps/mach/hurd/utimes.c: Use a union to avoid an improper cast.
2877         * sysdeps/mach/hurd/futimes.c: Likewise.
2878         * sysdeps/mach/hurd/lutimes.c: Likewise.
2880 2006-10-09  Ulrich Drepper  <drepper@redhat.com>
2881             Jakub Jelinek  <jakub@redhat.com>
2883         Implement reference counting of scope records.
2884         * elf/dl-close.c (_dl_close): Remove all scopes from removed objects
2885         from the list in objects which remain.  Always allocate new scope
2886         record.
2887         * elf/dl-open.c (dl_open_worker): When growing array for scopes,
2888         don't resize, allocate a new one.
2889         * elf/dl-runtime.c: Update reference counters before using a scope
2890         array.
2891         * elf/dl-sym.c: Likewise.
2892         * elf/dl-libc.c: Adjust for l_scope name change.
2893         * elf/dl-load.c: Likewise.
2894         * elf/dl-object.c: Likewise.
2895         * elf/rtld.c: Likewise.
2896         * include/link.h: Include <rtld-lowlevel.h>.  Define struct
2897         r_scoperec.  Replace r_scope with pointer to r_scoperec structure.
2898         Add l_scoperec_lock.
2899         * sysdeps/generic/ldsodefs.h: Include <rtld-lowlevel.h>.
2900         * sysdeps/generic/rtld-lowlevel.h: New file.
2902         * include/atomic.h: Rename atomic_and to atomic_and_val and
2903         atomic_or to atomic_or_val.  Define new macros atomic_and and
2904         atomic_or which do not return values.
2905         * sysdeps/x86_64/bits/atomic.h: Define atomic_and and atomic_or.
2906         Various cleanups.
2907         * sysdeps/i386/i486/bits/atomic.h: Likewise.
2909         * po/sv.po: Update from translation team.
2911 2006-10-07  Ulrich Drepper  <drepper@redhat.com>
2913         * Versions.def: Add GLIBC_2.6 to libpthread.
2915         * include/shlib-compat.h (SHLIB_COMPAT): Expand parameters before use.
2916         (versioned_symbol): Likewise.
2917         (compat_symbol): Likewise.
2919         * po/tr.po: Update from translation team.
2921 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
2923         * nis/Banner: Removed.  It's been integral part forever and the
2924         author info is incomplete anyway.
2925         * libio/Banner: Likewise.
2927         * nis/nis_table.c (nis_list): If __follow_path fails in the new
2928         code, make sure the nis_freeresult call doesn't crash and that the
2929         result is reported correctly.
2931 2006-09-27  Jakub Jelinek  <jakub@redhat.com>
2933         * nis/nis_table.c (nis_list): Handle FOLLOW_PATH | ALL_RESULTS
2934         when callback is NULL.
2936         * nis/Versions (libnss_nisplus): Add
2937         _nss_nisplus_initgroups_dyn@@GLIBC_PRIVATE.
2938         * nis/Makefile (libnss_nisplus-routines): Add nisplus-initgroups.
2939         * nis/nss_nisplus/nisplus-grp.c (tablename_val, tablename_len,
2940         _nss_create_tablename): Rename to...
2941         (grp_tablename_val, grp_tablename_len, _nss_grp_create_tablename):
2942         ... these.  No longer static.
2943         (internal_setgrent): Adjust users.
2944         (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
2945         Don't use locking around _nss_grp_create_tablename call.
2946         * nis/nss_nisplus/nisplus-initgroups.c: New file.
2948 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
2950         * version.h (VERSION): Bump to 2.5.90 for new development tree.
2952 2006-10-06  Andreas Jaeger  <aj@suse.de>
2954         * include/features.h (__GLIBC_MINOR__): It's glibc 2.5 now.
2956 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
2958         * po/pl.po: Update from translation team.
2960         * nscd/nscd.c (main): Fix typo in message.
2961         Patch by Jakub Bogsz <qboosh@pld-linux.org>.
2963 2006-10-02  Jakub Jelinek  <jakub@redhat.com>
2965         [BZ #3291]
2966         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Include
2967         errno.h, signal.h, unistd.h and sysdep-cancel.h.
2968         (__sigprocmask): Define.
2970 2006-10-02  Ulrich Drepper  <drepper@redhat.com>
2972         * elf/rtld.c (dl_main): Don't use prelinking if LD_DYNAMIC_WEAK is
2973         used.
2975 2006-10-02  Jakub Jelinek  <jakub@redhat.com>
2977         * nscd/mem.c (mempool_alloc): Round array size to 16 bytes
2978         in oldtotal and newtotal calculation.
2979         * nscd/nscd-client.h (struct mapped_database): Add datasize
2980         field.
2981         * nscd/nscd_helper.c (get_mapping): Initialize datasize field.
2982         (__nscd_get_map_ref): Get a new mapping even if mapping's data_size
2983         increased.
2984         (__nscd_cache_search): Add checks to make sure we never reference
2985         data beyond the current mapping.
2987 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
2989         * sysdeps/posix/getaddrinfo.c (match_prefix): Make mask and val
2990         variables const to avoid compiler warnings.
2992         * io/fts.c (fts_close): Remove redundant checks.
2993         (fts_build): Likewise.
2994         (fts_palloc): Likewise.
2996         * manual/message.texi (Advanced gettext functions,
2997         Using gettextized software): Fix typos.
2999 2006-09-30  Ulrich Drepper  <drepper@redhat.com>
3001         * posix/glob.c (glob_in_dir): Add some comments and asserts to
3002         explain why there are no leaks.
3004 2006-09-29  Ulrich Drepper  <drepper@redhat.com>
3006         * libio/wmemstream.c: Include <wchar.h>.
3007         * libio/bug-wmemstream1.c: Likewise.
3008         * libio/tst-wmemstream1.c: Likewise.
3009         * libio/tst-wmemstream2.c: Likewise.
3011         * version.h (RELEASE): Bump to 2.5.
3012         * README: Regenerated.
3014         * locale/iso-3166.def: Add Aaland Islands and Montenegro.
3016         [BZ #3273]
3017         * nscd/nscd_initgroups.c (__nscd_getgrouplist): It is OK to have
3018         found no group members.
3019         Patch by Petr Baudis.
3021 2006-09-29  Jakub Jelinek  <jakub@redhat.com>
3023         * elf/rtld.c (_dl_start_final): If not USE___THREAD, don't
3024         assert bootstrap_map.l_tls_modid is zero.
3025         (_dl_start): Initialize bootstrap_map.l_tls_modid to 0
3026         if USE___THREAD.
3028 2006-09-27  Ulrich Drepper  <drepper@redhat.com>
3030         * libio/stdio.h: Move open_wmemstream prototype to ...
3031         * wcsmbs/wchar.h: ... here.
3033 2006-09-25  Jakub Jelinek  <jakub@redhat.com>
3035         [BZ #3252]
3036         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Handle only
3037         fchownat syscall and __ASSUME_LCHOWN_SYSCALL case inline, call
3038         __{,l}chown to handle the rest.
3039         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Handle only
3040         fchownat syscall and __ASSUME_32BITUIDS case inline, call
3041         __{,l}chown to handle the rest.
3042         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Include
3043         i386/fchownat.c.
3044         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Likewise.
3045         * sysdeps/unix/sysv/linux/sh/fchownat.c: Likewise.
3047         [BZ #3253]
3048         * posix/glob.c (glob_in_dir): Don't alloca one struct globlink at a
3049         time, rather allocate increasingly bigger arrays of pointers, if
3050         possible with alloca, if too large with malloc.
3052 2006-09-24  Jakub Jelinek  <jakub@redhat.com>
3054         * sysdeps/powerpc/fpu/libm-test-ulps: Updated.
3056         * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Fix 2 typos.
3058 2006-09-24  Ulrich Drepper  <drepper@redhat.com>
3060         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Implement rule 4,
3061         home addresses.
3062         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Recognize
3063         IFA_F_HOMEADDRESS flag for interfaces.
3064         * include/ifaddrs.h (struct in6addrinfo): Define
3065         in6ai_homeaddress.
3067 2006-09-21  Jakub Jelinek  <jakub@redhat.com>
3069         [BZ #3225]
3070         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (PTR_MANGLE3,
3071         PTR_DEMANGLE3): Define.
3072         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h (PTR_MANGLE3,
3073         PTR_DEMANGLE3): Likewise.
3074         * sysdeps/powerpc/powerpc32/__longjmp-common.S (__longjmp): Use them.
3075         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
3076         Likewise.
3077         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
3079 2006-09-20  Jakub Jelinek  <jakub@redhat.com>
3081         * po/libc.pot: Regenerated.
3082         * po/be.po: Updated.
3083         * po/ca.po: Likewise.
3084         * po/cs.po: Likewise.
3085         * po/da.po: Likewise.
3086         * po/de.po: Likewise.
3087         * po/el.po: Likewise.
3088         * po/en_GB.po: Likewise.
3089         * po/es.po: Likewise.
3090         * po/fi.po: Likewise.
3091         * po/fr.po: Likewise.
3092         * po/gl.po: Likewise.
3093         * po/hr.po: Likewise.
3094         * po/hu.po: Likewise.
3095         * po/ja.po: Likewise.
3096         * po/ko.po: Likewise.
3097         * po/nb.po: Likewise.
3098         * po/nl.po: Likewise.
3099         * po/pl.po: Likewise.
3100         * po/pt_BR.po: Likewise.
3101         * po/ru.po: Likewise.
3102         * po/rw.po: Likewise.
3103         * po/sk.po: Likewise.
3104         * po/sv.po: Likewise.
3105         * po/tr.po: Likewise.
3106         * po/zh_CN.po: Likewise.
3107         * po/zh_TW.po: Likewise.
3109         [BZ #3137]
3110         * iconv/iconv_prog.c (main): Fix spelling in error message.
3111         * iconv/iconvconfig.c (main): Likewise.
3112         * locale/programs/ld-collate.c (handle_ellipsis): Likewise.
3113         * locale/programs/ld-ctype.c (charclass_symbolic_ellipsis): Likewise.
3114         * locale/programs/localedef.c (main): Likewise.
3115         * locale/programs/repertoire.c (repertoire_read): Likewise.
3116         * timezone/zdump.c (main): Likewise.
3117         * nscd/connections.c (handle_request): Fix spelling in log message.
3118         Patch by Malcolm Parsons <malcolm.parsons@gmail.com>.
3120 2006-09-20  Ulrich Drepper  <drepper@redhat.com>
3122         * inet/inet6_option.c: Also emit linker warnings for the RFC 2292
3123         interfaces.
3125 2006-09-20  Andreas Jaeger  <aj@suse.de>
3127         * math/libm-test.inc (lrint_test_upward): Fix typo.
3129 2006-06-17  Joseph S. Myers  <joseph@codesourcery.com>
3131         [BZ #2592]
3132         * math/libm-test.inc (lrint_test_tonearest): New function.
3133         (lrint_test_towardzero): New function.
3134         (lrint_test_downward): New function.
3135         (lrint_test_upward): New function.
3136         (main): Run these new tests.
3137         * sysdeps/ieee754/dbl-64/s_llrint.c (__llrint): Correct rounding
3138         of values near to 0.
3139         (two52): Use double not long double.
3140         * sysdeps/ieee754/dbl-64/s_lrint.c (__lrint): Likewise.
3141         * sysdeps/ieee754/flt-32/s_llrintf.c (__llrintf): Likewise.
3142         (two23): Use float not double.
3143         * sysdeps/ieee754/flt-32/s_lrintf.c (__lrintf): Likewise.
3144         (two23): Use float not double.
3145         * sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Likewise.
3146         * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Likewise.
3147         * sysdeps/ieee754/ldbl-96/s_llrintl.c (__llrintl): Likewise.
3148         * sysdeps/ieee754/ldbl-96/s_lrintl.c (__lrintl): Likewise.
3150 2006-09-20  Martin Schwidefsky  <schwidefsky@de.ibm.com>
3152         * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c (__makecontext):
3153         Cast sp to unsigned long to avoid compiler warning.
3154         Use __makecontext_ret function instead of a trampoline on the stack.
3155         (__makecontext_ret): New function.
3156         * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Likewise.
3158 2006-09-19  Jakub Jelinek  <jakub@redhat.com>
3160         * elf/dl-cache.c (HWCAP_CHECK): If _DL_PLATFORMS_COUNT, but
3161         platform == -1, reject any libs with non-zero _DL_HWCAP_PLATFORM
3162         bits.
3164 2006-09-19  Ulrich Drepper  <drepper@redhat.com>
3166         * elf/dl-close.c (_dl_close): If dependency is not unloaded make
3167         sure no reference to the unloaded map's search list remains in the
3168         dependency's scope.
3170 2006-09-16  Jakub Jelinek  <jakub@redhat.com>
3172         * elf/Makefile: Add rules to build and run unload7 test.
3173         * elf/unload7.c: New test.
3174         * elf/unload7mod1.c: New file.
3175         * elf/unload7mod2.c: New file.
3177 2006-09-18  Jakub Jelinek  <jakub@redhat.com>
3179         * sysdeps/unix/sysv/linux/sys/ptrace.h (PT_GETEVENTMSG): Fix pasto.
3180         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_SETOPTIONS,
3181         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
3182         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_SETOPTIONS,
3183         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
3184         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_SETOPTIONS,
3185         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
3186         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h (PTRACE_SETOPTIONS,
3187         PTRACE_GETEVENTMSG): Likewise.
3188         (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Change to the arch independent
3189         values.
3191 2006-09-17  Mike Frysinger  <vapier@gentoo.org>
3193         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_SETOPTIONS,
3194         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
3195         * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Check PTRACE_SETOPTIONS,
3196         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO and PTRACE_SETSIGINFO.
3198 2006-09-16  Jakub Jelinek  <jakub@redhat.com>
3200         * sysdeps/powerpc/powerpc32/register-dump.h (register_dump): Don't
3201         write '\0' to the fd.
3202         * sysdeps/mach/hurd/powerpc/register-dump.h (register_dump): Likewise.
3203         * sysdeps/powerpc/powerpc64/register-dump.h (register_dump): Likewise.
3204         Change regs to unsigned long pointer from unsigned int, fix fscr
3205         offset.
3207 2006-09-14  Jakub Jelinek  <jakub@redhat.com>
3209         * io/Makefile (CFLAGS-fstatat.c): Set.
3210         (CFLAGS-fstatat64.c): Likewise.
3211         (CFLAGS-mknodat.c): Likewise.
3213         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Comment fixes.
3214         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
3215         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Rewritten.
3216         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Rewritten.
3218 2006-09-14  Jakub Jelinek  <jakub@redhat.com>
3219             Steven Munroe  <sjmunroe@us.ibm.com>
3221         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 4 new cap
3222         names to the beginning.  Rename "cell" to "cellbe".
3223         (_dl_powerpc_platforms): New.
3224         * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
3225         (HWCAP_IMPORTANT): Remove power{4,5,5+} and cell.
3226         (_DL_PLATFORMS_COUNT, _DL_FIRST_PLATFORM): Define.
3227         (_DL_HWCAP_PLATFORM): Define to new mask.
3228         (_dl_platform_string, _dl_string_platform): New functions.
3229         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_BOOKE, PPC_FEATURE_SMT,
3230         PPC_FEATURE_ICACHE_SNOOP, PPC_FEATURE_ARCH_2_05): Define.
3232 2006-09-12  Jakub Jelinek  <jakub@redhat.com>
3234         [BZ #2526]
3235         * README.libm: Fix a thinko in sqrt algorithm description.
3237         [BZ #3143]
3238         * manual/string.texi (argz_delete): Fix prototype.
3239         Patch by <alpt@freaknet.org>.
3241 2006-08-26  Joseph Myers  <joseph@codesourcery.com>
3243         [BZ #3138]
3244         * io/test-lfs.c (do_prepare): Give name_len type size_t.
3245         * io/tst-fcntl.c (do_prepare): Likewise.
3246         * posix/tst-exec.c (do_prepare): Likewise.
3247         * posix/tst-preadwrite.c (do_prepare): Likewise.
3248         * posix/tst-spawn.c (do_prepare): Likewise.
3249         * posix/tst-truncate.c (do_prepare): Likewise.
3250         * rt/tst-aio.c (do_prepare): Likewise.
3251         * rt/tst-aio64.c (do_prepare): Likewise.
3252         * stdlib/test-canon2.c (do_prepare): Give test_dir_len type
3253         size_t.
3255 2006-09-09  Ulrich Drepper  <drepper@redhat.com>
3257         [BZ #2821]
3258         * time/mktime.c (guess_time_tm): Fix overflow detection.
3259         * time/Makefile (tests): Add bug-mktime1.
3260         * time/bug-mktime1.c: New file.
3262         [BZ #3189, #3188]
3263         * misc/sys/mman.h (remap_file_pages): Make available for _GNU_SOURCE.
3264         (mremap): Likewise.
3266 2006-09-07  Jakub Jelinek  <jakub@redhat.com>
3268         [BZ #1006]
3269         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
3270         Ensure relocation doesn't clobber any bits outside of the
3271         immediate field for R_SPARC_TLS_LE_HIX22, R_SPARC_WDISP30,
3272         R_SPARC_HI22 and R_SPARC_H44.
3274         [BZ #2775]
3275         * malloc/malloc.c (sYSMALLOc): Only call grow_heap if
3276         (long) (MINSIZE + nb - old_size) is positive.
3278         * malloc/arena.c (grow_heap): When growing bail even if new_size
3279         is negative.
3281         [BZ #3155]
3282         * sysdeps/powerpc/powerpc32/fpu/s_lrint.S (__lrint): Don't access
3283         stack below r1.
3285 2006-09-06  Jakub Jelinek  <jakub@redhat.com>
3287         * posix/regex_internal.c (re_string_reconstruct): Handle
3288         offset < pstr->valid_raw_len && pstr->offsets_needed case.
3289         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
3290         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
3291         re_string_context_at.
3292         * posix/Makefile: Add rules to build and run bug-regex26 test.
3293         * posix/bug-regex26.c: New test.
3295         * locale/programs/ld-collate.c (collate_read): Goto sym_equiv_free
3296         rather than col_sym_free.  Move seqp declaration earlier.
3298         * resolv/gai_suspend.c (gai_suspend): Make sure result is initialized.
3300 2006-09-05  Jakub Jelinek  <jakub@redhat.com>
3302         * nscd/initgrcache.c (addinitgroupsX): Move any_success
3303         decl before first goto out.
3305 2006-09-04  Jakub Jelinek  <jakub@redhat.com>
3307         * Makerules (shlib.lds): If have-hash-style, put .hash section
3308         at the end of the RO segment.
3310 2006-09-04  Ulrich Drepper  <drepper@redhat.com>
3312         * elf/do-lookup.h (do_lookup_x): Initialize symidx in case the new
3313         style hash table format is used.
3315 2006-09-04  Jakub Jelinek  <jakub@redhat.com>
3317         * resolv/res_mkquery.c (res_nmkquery): Set hp->id to statp->id after
3318         randomization rather than before.
3319         * resolv/res_init.c (res_randomid): Don't call gettimeofday here.
3321 2006-08-31  Jakub Jelinek  <jakub@redhat.com>
3323         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Add ld.so.
3325         * malloc/malloc.c (_int_malloc): Use full list insert and not
3326         shortcut which assumes the list is empty for large requests
3327         too.
3329         * elf/tst-addr1.c (do_test): Allow i.dli_sname "_IO_printf".
3331 2006-08-30  Jakub Jelinek  <jakub@redhat.com>
3333         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (splice): Add offin
3334         and offout arguments to the prototype.
3335         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (splice): Likewise.
3336         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (splice): Likewise.
3337         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (splice): Likewise.
3338         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (splice): Likewise.
3339         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (splice): Likewise.
3340         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (splice): Likewise.
3341         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (splice): Likewise.
3342         * sysdeps/unix/sysv/linux/syscalls.list (splice): Adjust args string.
3344 2006-08-28  Ulrich Drepper  <drepper@redhat.com>
3346         * elf/dl-load.c (_dl_init_paths): Expand DSTs.
3348         * elf/dl-open.c (dl_open_worker): Allow $LIB and $PLATFORM in
3349         dlopen parameters.
3351 2006-08-28  Jakub Jelinek  <jakub@redhat.com>
3353         * inet/getnameinfo.c (getnameinfo): For AF_INET, check errno
3354         only if herrno is NETDB_INTERNAL.  Handle errors other than
3355         ERANGE outside of the loops, handle TRY_AGAIN.
3357         * locale/programs/ld-ctype.c (translit_flatten): Issue error
3358         if other's ctype category was missing.
3359         * locale/programs/ld-collate.c (collate_read): Return if
3360         copy_locale's collate category is missing.
3362 2006-08-27  Ulrich Drepper  <drepper@redhat.com>
3364         [BZ #2684]
3365         * malloc/malloc.c (public_rEALLOc): Try harder by using other
3366         arenas if allocation failed.
3367         Patch mostly by Jan Edler <jan.edler@indexengines.com>.
3369 2006-08-26  Ulrich Drepper  <drepper@redhat.com>
3371         * malloc/malloc.c (bin_at): Rewrite to be more clear and to not
3372         waste bins[0..1].
3373         (malloc_state): Reduce bins size by 2.
3374         (_int_malloc): Fix test for large enough buffer for early termination.
3375         When no unsorted block matches perfectly and an exiting block has
3376         to be split, use full list insert and not shortcut which assumes
3377         the list is empty.
3379         * locale/programs/ld-ctype.c (ctype_read): Better patch for read
3380         failure.
3382 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
3384         * locale/programs/ld-ctype.c (ctype_read): If CTYPE is NULL, don't
3385         do anything.
3387         * sysdeps/generic/ldsodefs.h (DL_ADDR_SYM_MATCH): For undefined
3388         symbol require exact match (these are PLTs).
3389         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
3390         (_dl_ppc64_addr_sym_match): Likewise.
3392         [BZ #2683]
3393         * elf/dl-addr.c (_dl_addr): Don't ignore all undefined symbols.
3394         If symbol has a value use it.
3395         * elf/tst-dladdr1.c: New file.
3396         * elf/Makefile: Add rules to build and run tst-addr1.
3398 2006-08-24  Jakub Jelinek  <jakub@redhat.com>
3400         * malloc/malloc.c (sYSMALLOc): Avoid infinite loop if MMAP
3401         keeps failing and heap growth or new heap creation isn't
3402         successful either.
3403         * malloc/tst-malloc.c (main): Add new tests.
3405 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
3407         [BZ #2734]
3408         * sysdeps/i386/bits/byteswap.h (__bswap_32): Use same conditions
3409         as in the x86-64 code to use bswap.
3411 2006-05-21  Joseph S. Myers  <joseph@codesourcery.com>
3413         [BZ #2680]
3414         * posix/unistd.h (getlogin_r): Condition on __USE_POSIX199506, not
3415         __USE_UNIX98.
3416         * posix/bits/unistd.h: Likewise.
3418 2006-05-15  Mike Frysinger  <vapier@gentoo.org>
3420         [BZ #2751]
3421         * string/strchr.c: Add cast to avoid warning.
3423 2006-08-21  Ulrich Drepper  <drepper@redhat.com>
3425         * malloc/malloc.c (DEFAULT_MMAP_THRESHOLD_MAX): For 32-bit
3426         platforms define as 512K.  For 64-bit platforms as 32MB.  The lower
3427         limit is needed to avoid the exploding of the address space
3428         requirement for secondary heaps.
3429         * malloc/arena.c (HEAP_MAX_SIZE): Define using
3430         DEFAULT_MMAP_THRESHOLD_MAX if it is defined.
3432 2006-07-30  Joseph S. Myers  <joseph@codesourcery.com>
3434         [BZ #3018]
3435         * Makerules (depfiles): Handle extra-test-objs the same as
3436         extra-objs.
3437         (common-mostlyclean): Likewise.
3438         * dlfcn/Makefile (extra-objs): Add modules to extra-test-objs
3439         instead.
3440         * elf/Makefile (extra-objs): Likewise.
3441         * stdlib/Makefile (extra-objs): Likewise.
3443 2006-08-14  Eric Blake  <ebb9@byu.net>
3445         [BZ #3044]
3446         * misc/error.h: Assume C89 or better.
3447         * misc/error.c: Likewise.
3449 2006-08-21  Ulrich Drepper  <drepper@redhat.com>
3451         [BZ #3040]
3452         * sysdeps/unix/sysv/linux/openat.c: Fix compilation if
3453         __ASSUME_ATFCTS is defined.
3455 2006-08-19  Ulrich Drepper  <drepper@redhat.com>
3457         * malloc/malloc.c (_int_malloc): Limit number of unsorted blocks
3458         to sort in each call.
3460         * nis/nss_nis/nis-service.c (internal_nis_getservent_r): . If map
3461         is empty simply return and use next service.
3462         * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r): Likewise.
3464         * locale/programs/charmap.c (charmap_read): Add new parameter.  It
3465         tells us when not finding a charmap file is an error.
3466         * locale/programs/charmap.h: Adjust charmap_read prototype.
3467         * iconv/iconv_prog.c (main): Tell charmap_read it's no error if we
3468         cannot find a charmap.
3469         * locale/programs/localedef.c (main): Adjust charmap_read call.
3471 2006-08-15  Jakub Jelinek  <jakub@redhat.com>
3473         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Use
3474         sysdeps/posix/pause.c implementation instead.
3476 2006-08-09  Jakub Jelinek  <jakub@redhat.com>
3478         * sysdeps/unix/nice.c (nice): Transform EACCES errno from setpriority
3479         to EPERM.
3481 2006-08-13  Andreas Schwab  <schwab@suse.de>
3483         * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve):
3484         Don't clobber caller's LRSAVE.
3485         (_dl_prof_resolve): Likewise.
3487 2006-08-14  Ulrich Drepper  <drepper@redhat.com>
3489         [BZ #1996]
3490         * libio/memstream.c (open_memstream): Allocate initial buffer with
3491         calloc.
3492         * libio/wmemstream.c (open_wmemstream): Likewise.
3493         * libio/strops.c: Pretty printing.
3494         (_IO_str_overflow): Clear uninitialized part of the new buffer.
3495         (enlarge_userbuf): New function.
3496         (_IO_str_seekoff): Call it if seek position is larger than current
3497         buffer.
3498         * libio/wstrops.c: Likewise.
3499         * libio/vasprintf.c: Add comment as to why we do not have to use
3500         calloc instead of malloc to allocate initial buffer.
3501         * libio/Makefile (tests): Add bug-memstream1 and bug-wmemstream1.
3502         * libio/bug-memstream1.c: New file.
3503         * libio/bug-wmemstream1.c: New file.
3505 2006-08-13  Ulrich Drepper  <drepper@redhat.com>
3507         * libio/wstrops.c: Remove dead macro definitions and comments.
3508         * libio/strops.c: Likewise.
3510         [BZ #2764]
3511         * login/utmpname.c (__utmpname): Remove unnecessary test.
3513 2006-06-08  Joseph Myers  <jsm28@gcc.gnu.org>
3515         [BZ #2832]
3516         * math/gen-libm-test.pl (clean_up_number): Do not remove trailing
3517         0s from integers.
3519 2006-08-13  Ulrich Drepper  <drepper@redhat.com>
3521         [BZ #2987]
3522         * sysdeps/unix/sysv/linux/clock_settime.c: Add code to use syscall
3523         for CPU clocks.
3524         * sysdeps/unix/clock_settime.c: Add support for platform-specific
3525         setting of CPU clocks.
3527 2006-06-23  Paul Eggert  <eggert@cs.ucla.edu>
3529         [BZ #2841]
3530         * sysdeps/generic/stdint.h (UINT8_C, UINT16_C): Don't append 'U',
3531         since C99 requires the result to promote to 'int' when uint_least8_t
3532         and uint_least16_t promote to 'int'.
3534 2006-08-12  Ulrich Drepper  <drepper@redhat.com>
3536         [BZ #3013]
3537         * locale/programs/ld-ctype.c (ctype_output): Adjust alignments, fix
3538         lenght of one output field, correct bitmask creation.
3539         * locale/programs/ld-time.c: Add alignment.
3541         [BZ #2997]
3542         * misc/error.c: Add space between program name and message if file
3543         name is missing.
3545 2006-08-03  Eric Blake  <ebb9@byu.net>
3547         [BZ #2998]
3548         * misc/error.c (error_tail) [_LIBC]: Avoid invalid free.
3550 2006-08-09  Ulrich Drepper  <drepper@redhat.com>
3552         * malloc/memusagestat.c: Silence warnings.
3554         * malloc/malloc.c: Dynamically size mmap treshold if the program
3555         frees mmaped blocks.
3556         Patch by Valerie Henson and Arjan van de Ven.
3558 2006-08-08  Jakub Jelinek  <jakub@redhat.com>
3560         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (O_DIRECT): Protect with
3561         __USE_GNU.
3563         * stdlib/strtol_l.c (__strtol_ul_max_tab, __strtol_ul_rem_tab,
3564         __strtol_ull_max_tab, __strtol_ull_rem_tab): Declare.
3565         (DEF): Don't put the var into .gnu.linkonce.r.* section.
3566         Only provide var definitions in strtol_l (or for *ull*
3567         in strtoll_l).
3569         * stdio-common/bug16.c (tests): New array.
3570         (do_tests): Allow the first hexadecimal digit
3571         to be 1, 2, 4 or 8.  Do 3 additional tests.
3573         * sysdeps/s390/fpu/libm-test-ulps: Update.
3575         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c (fchownat): Use
3576         fchownat syscall if available.
3577         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
3578         * sysdeps/unix/sysv/linux/sh/fchownat.c (fchownat): Likewise.
3579         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
3581 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
3583         * nis/nis_xdr.c: Avoid some function calls.
3585 2006-08-07  Jakub Jelinek  <jakub@redhat.com>
3586             Ulrich Drepper  <drepper@redhat.com>
3588         * nis/nis_call.c (rec_dirsearch) [case LOWER_NAME]: Don't take
3589         short cut if only one name component is stripped away.
3591 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
3593         * nis/nis_call.c: Minor cleanups throughout.
3594         (rec_dirsearch) [case HIGHER_NAME]: Correctly size ndomain array.
3595         (first_shoot): Add search_parent_first parameter.  Only if it is set
3596         search parent server first.
3597         If directory for table found through cold start cache is not the same
3598         as referenced in the cache, don't use it.
3599         (__nisfind_server): Take additional parameter.  Pass it on to
3600         first_shoot.
3601         (__prepare_niscall): Adjust __nisfind_server call.
3602         * nis/rpcsvc/nislib.h: Adjust __nisfind_server prototype.
3603         * nis/nis_table.c: Adjust __nisfind_server call.
3604         * nis/nis_lookup.c: Likewise.
3605         (nis_lookup): Don't loop endlessly if name is reduced to ".".
3607 2006-08-03  Ulrich Drepper  <drepper@redhat.com>
3609         [BZ #2182]
3610         * math/s_cacosh.c: Return values from positive branch.
3611         * math/s_cacoshf.c: Likewise.
3612         * math/s_cacoshl.c: Likewise.
3614         [BZ #2883]
3615         * sysvipc/sys/msg.h: Change return value to ssize_t.
3616         * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
3617         * sysvipc/msgrcv.c: Likewise.
3618         * include/sys/msg.h: Likewise.
3620         * grp/initgroups.c (internal_getgrouplist): Remove unnecessary
3621         test introduced in patch for bz #661.
3622         (getgrouplist): Simplify code a bit.  Don't allocate one additional
3623         element for NEWGROUPS.
3625         [BZ #2908]
3626         * stdio-common/printf_fphex.c (__printf_fphex): When rounding up
3627         'f', use '1' as leading digit not '\1'.
3628         * stdio-common/Makefile (tests): Add bug16.
3629         * stdio-common/bug16.c: New file.
3631         [BZ #2914]
3632         * sysdeps/unix/sysv/linux/gethostid.c: Don't define OLD_HOSTIDFILE
3633         and don't try to open it.  The patch introducing the macro
3634         contained a bug and used the same file name as the new file
3635         instead of using /var/adm/hostid.  Nobody complaint so I'm taking
3636         this out completely.
3638         [BZ #2926]
3639         * assert/assert.h: Move cast to void inside ?: to quiet gcc.
3640         Patch by Jerry James <Jerry.James@usu.edu>.
3642         * rt/Makefile (tests): Add tst-clock2.
3643         * rt/tst-clock2.c: New file.
3645         [BZ #2978]
3646         * resolv/gai_notify.c (__gai_notify_only): Copy memory for thread
3647         function and its parameters and pass it to new thread.
3648         (__gai_notify): Add support for alternative waiting for completion.
3649         * resolv/gai_suspend.c (gai_suspend): Add support for alternative
3650         waiting for completion.
3651         * resolv/getaddrinfo_a.c: Likewise.
3652         * resolv/gai_misc.h (struct waitlist): Don't add cond if alternative
3653         waiting for completion is used.
3654         * resolv/gai_misc.c: Allow overwriting code to start helper thread.
3655         * resolv/gai_cancel.c: Include <gai_misc.h> not "gai_misc.h".
3656         * resolv/gai_error.c: Likewise.
3657         * resolv/gai_sigqueue.c: Likewise.
3659 2006-08-02  Thomas Schwinge  <tschwinge@gnu.org>
3661         * hurd/getdport.c (__getdport): Don't return EBADF; instead set
3662         errno to EBADF and return MACH_PORT_NULL.
3664 2006-06-23  Joseph Myers  <joseph@codesourcery.com>
3666         [BZ #2980]
3667         * posix/Makefile (CFLAGS-waitid.c): Add -fasynchronous-unwind-tables.
3669 2006-08-02  Ulrich Drepper  <drepper@redhat.com>
3671         * elf/dl-addr.c (_dl_addr): If GNU-style hash tables are present,
3672         walk them instead of the symbol table.
3674 2006-08-01  Ulrich Drepper  <drepper@redhat.com>
3676         [BZ #2098]
3677         * nscd/initgrcache.c (addinitgroupsX): Judge successful lookups by
3678         status of NSS calls, not the number of returned entries.
3680         * sysdeps/unix/sysv/linux/syscalls.list: Remove add_key,
3681         request_key, keyctl.
3683 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
3685         * sysdeps/unix/sysv/linux/dl-osinfo.h: Remove unnecessary include.
3687 2006-07-16  Jeff Bailey  <jbailey@ubuntu.com>
3689         * elf/tst-auditmod1.c: Fix typo in #error.
3691 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
3693         * elf/tst-auditmod1.c: Remove code for unsupported architectures.
3695         * iconvdata/run-iconv-test.sh: Run cmp in C locale.
3697 2006-07-20  Adam Nemet  <anemet@caviumnetworks.com>
3699         * stdlib/test-canon.c (do_test): Close fd before unlinking file so
3700         that the directory is empty even on non-POSIX filesystems.
3702 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
3704         * elf/dl-open.c (dl_open_worker): Add branch prediction.
3706         * nis/nss_compat/compat-grp.c: Avoid unnecessary setgrent calls into
3707         the backend NSS module.  If backend setgrent call failed, don't have
3708         internal_setgrent fail.  Just remember this until it is needed.
3709         * nis/nss_compat/compat-pwd.c: Likewise.
3710         * nis/nss_compat/compat-spwd.c: Likewise.
3712 2006-07-30  Roland McGrath  <roland@redhat.com>
3714         * sysdeps/unix/sysv/linux/ia64/sigsuspend.c: File removed.
3715         * sysdeps/unix/sysv/linux/x86_64/sigsuspend.c: File removed.
3716         * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c: File removed.
3717         * sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c: File removed.
3719         * sysdeps/unix/sysv/linux/not-cancel.h (pause_not_cancel): New macro.
3720         (nanosleep_not_cancel): New macro.
3721         (sigsuspend_not_cancel): new macro.
3722         * sysdeps/unix/sysv/linux/sigsuspend.c [__ASSUME_REALTIME_SIGNALS]
3723         (do_sigsuspend): Define as inline.
3724         (__sigsuspend): Always use do_sigsuspend.
3725         [! NO_CANCELLATION] (__sigsuspend_nocancel): New function.
3726         * include/signal.h: Declare __sigsuspend_nocancel.
3727         * sysdeps/posix/pause.c
3728         [! NO_CANCELLATION] (__pause_nocancel): New function.
3730         * include/unistd.h (__pause_nocancel): Add attribute_hidden.
3731         * include/time.h (__nanosleep_nocancel): Likewise.
3733 2006-07-30  Ulrich Drepper  <drepper@redhat.com>
3735         * locale/programs/localedef.c (add_to_readlist): Rename local
3736         variables to avoid confusion.
3738         * locale/programs/charmap.c (charmap_read): Emit error message if
3739         charmap couldn't be found or read.
3741 2006-07-28  Ulrich Drepper  <drepper@redhat.com>
3743         * sysdeps/unix/sysv/linux/kernel-features.h: Define
3744         __ASSUME_FUTEX_LOCK_PI.
3745         * include/time.h: Declare __nanosleep_nocancel.
3746         * include/unistd.h: Declare __pause_nocancel.
3748         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Use this instead of
3749         LDFLAGS.  Add -lgcc_eh and libc_nonshared (again) to make sure we
3750         get the __stack_chk_fail_local definition when it's needed.
3752 2006-07-26  Ulrich Drepper  <drepper@redhat.com>
3754         * dlfcn/Makefile: Add rules to build and run bug-atexit3.
3755         * dlfcn/bug-atexit3.c: New file.
3756         * dlfcn/bug-atexit3-lib.cc: New file.
3758         * dlfcn/dlmopen.c (dlmopen_doit): Don't allow RTLD_GLOBAL to be
3759         used when the namespace is not the base namespace.
3761 2006-07-26  Gavin Romig-Koch  <gavin@redhat.com>
3763         * stdlib/cxa_atexit.c (__new_exitfn_called): New variable.
3764         (__new_exitfn): Bump it in every successful call.
3765         * stdlib/cxa_finalize.c (__cxa_finalize): If destructor registered
3766         more exit handlers, call them right away.
3767         * stdlib/exit.h: Declare __new_exitfn_called.
3769 2006-07-25  Ulrich Drepper  <drepper@redhat.com>
3771         * stdlib/cxa_finalize.c (__cxa_finalize): Fix race condition when
3772         calling registered handler.
3774         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Fix comment.
3775         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
3776         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
3777         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
3778         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
3779         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
3780         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
3781         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
3783 2006-07-10  Ulrich Drepper  <drepper@redhat.com>
3785         * elf/dl-lookup.c (dl_new_hash): New functions.
3786         (_dl_lookup_symbol_x): Rename hash to old_hash and don't compute
3787         value here.  Compute new-style hash value.  Pass new hash value
3788         and reference to variable with the old value to do_lookup_x.
3789         (_dl_setup_hash): If DT_GNU_HASH is defined, use it and not
3790         old-style hash table.
3791         (_dl_debug_bindings): Pass new hash value and reference to variable
3792         with the old value to do_lookup_x.
3793         * elf/do-lookup.h (do_lookup_x): Accept additional parameter with
3794         new-style hash value and change old-style hash value parameter to
3795         be a reference.  Reoganize functions to determine whether
3796         new-style hash table is available.  Only fall back on old-style
3797         table.  If old-style hash value is needed, compute it here.
3798         * elf/dynamic-link.h (elf_get_dynamic_info): Relocate DT_GNU_HASH
3799         entry.
3800         * elf/elf.h: Define SHT_GNU_HASH, DT_GNU_HASH, DT_TLSDEC_PLT,
3801         DT_TLSDEC_GOT.  Adjust DT_ADDRNUM.
3802         * include/link.h (struct link_map): Add l_gnu_bitmask_idxbits,
3803         l_gnu_shift, l_gnu_bitmask, l_gnu_buckets and l_gnu_chain_zero.
3804         * Makeconfig: If linker supports --hash-style option add it to all
3805         linker command lines to build DSOs.
3806         * config.make.in: Define have-hash-style.
3807         * configure.in: Test whether linker supports --hash-style option.
3809         * elf/dl-misc.c (_dl_name_match_p): Make MAP parameter const.
3810         * sysdeps/generic/ldsodefs.h: Adjust prototype.
3812 2006-06-27  Ulrich Drepper  <drepper@redhat.com>
3814         * elf/dl-load.c (open_path): Fix test to determine whether DSO is
3815         auditing.
3817         * elf/dl-load.c (_dl_map_object): Try harder to avoid looking at
3818         RPATH of main map twice.
3820 2006-06-22  Ulrich Drepper  <drepper@redhat.com>
3822         * intl/dcigettext.c (DCIGETTEXT): If _nl_find_msg returns -1 don't
3823         look further, return original strings.
3824         (_nl_find_msg): Do not return found translation if the conversion
3825         failed.  Either signal the string is unusable or that something went
3826         wrong and the original should be used.
3828 2006-06-21  Ulrich Drepper  <drepper@redhat.com>
3830         * string/_strerror.c (__strerror_r): Add __builtin_expect.
3832 2006-06-14  Jakub Jelinek  <jakub@redhat.com>
3834         [BZ #2766]
3835         * misc/insremque.c (insque): Handle prev == NULL.
3836         * misc/Makefile (tests): Add tst-insremque.
3837         * misc/tst-insremque.c: New test.
3839 2006-06-17  Ulrich Drepper  <drepper@redhat.com>
3841         [BZ #2792]
3842         * elf/dl-deps.c (expand_dst): Rename __cnt variable to not
3843         conflict with DL_DST_REQUIRED.
3845 2006-06-16  Ulrich Drepper  <drepper@redhat.com>
3847         * nis/nis_subr.c (nis_getnames): Fix the implementation to better
3848         match what Solaris does.
3850 2006-06-04  Ulrich Drepper  <drepper@redhat.com>
3852         * sysdeps/posix/spawni.c (__spawni): Use local_seteuid and
3853         local_setegid instead of seteuid and setegid.
3854         * sysdeps/generic/local-setxid.h: New file.
3855         * sysdeps/unix/sysv/linux/local-setxid.h: New file.
3857         * sysdeps/posix/spawni.c (__spawni): Use non-cancelable interfaces.
3859         * string/Makefile (tests): Add bug-envz1.
3860         * string/bug-envz1.c: New file.
3862 2006-06-02  Jakub Jelinek  <jakub@redhat.com>
3864         * posix/regex_internal.c (re_string_skip_chars): If no character has
3865         been converted at all, set *last_wc to WEOF.  If mbrtowc failed, set wc
3866         to the byte which couldn't be converted.
3867         (re_string_reconstruct): Don't clear valid_raw_len before calling
3868         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
3869         tip_context using re_string_context_at.
3870         * posix/Makefile: Add rules to build and run bug-regex25 test.
3871         * posix/bug-regex25.c: New test.
3873 2006-06-02  Ryan S. Arnold  <rsa@us.ibm.com>
3875         [BZ #2703]
3876         * string/envz.c (envz_strip): Correct erroneously reversed src
3877         and dest parameters to memmove() invocation.
3879 2006-05-30  Jakub Jelinek  <jakub@redhat.com>
3881         * nscd/nscd.h (prune_cache): Add fd argument to prototype.
3882         * nscd/nscd.c (parse_opt): Read response from INVALIDATE request
3883         to make sure the database has been already invalidated.
3884         * nscd/cache.c (prune_cache): Add fd argument.  Write response to fd
3885         after the cache has been invalidated.  Use pthread_mutex_lock rather
3886         than pthread_mutex_trylock if fd != -1.
3887         * nscd/connections.c (invalidate_cache): Add fd argument, write
3888         response to fd if not calling prune_cache, pass fd to prune_cache.
3889         (handle_request): Adjust invalidate_cache caller.
3890         (nscd_run): Pass -1 as fd to prune_cache.
3892 2006-05-30  Ulrich Drepper  <drepper@redhat.com>
3894         * sysdeps/posix/getaddrinfo.c (gaiconf_init): Initialize bits in
3895         the correct place.
3897 2006-05-29  Ulrich Drepper  <drepper@redhat.com>
3899         * nscd/nscd.h (struct database_dyn): Add prunelock field.
3900         * nscd/cache.c (prune_cache): Take prunelock before starting the
3901         work.  Just return in case it is already taken.
3902         * nscd/connections.c (dbs): Initialize .prunelock.
3904 2006-05-25  Ulrich Drepper  <drepper@redhat.com>
3906         * nis/nis_removemember.c (nis_removemember): Avoid unnecessary
3907         copying.  No need to allocate new array for group members.  Just
3908         move the pointers and update the size.
3910         * nis/nis_addmember.c (nis_addmember): Avoid unnecessary copying.
3911         Avoid memory leak in case realloc fails.  Simplification for
3912         better code generation.
3914         Avoid deprecation warning because of libc_hidden_proto for
3915         inet6_option_alloc.
3916         * inet/inet6_option.c (option_alloc): Renamed from
3917         inet6_option_alloc.  Made static.
3918         (inet6_option_alloc): Now a simple wrapper around option_alloc.
3919         (inet6_option_append): Call option_alloc.
3920         * include/netinet/in.h: Remove libc_hidden_proto for
3921         inet6_option_alloc.
3923         * nis/nis_callback.c (__nis_create_callback): Always call xdr_free
3924         for cleanup when cb!=NULL [Coverity CID 233].
3926 2006-05-24  Ulrich Drepper  <drepper@redhat.com>
3928         [BZ #2693]
3929         * inet/Makefile (routines): Add inet6_opt and inet6_rth.
3930         * inet/Versions (libc, GLIBC_2.5): Add inet6_opt_init,
3931         inet6_opt_append, inet6_opt_finish, inet6_opt_set_val, inet6_opt_next,
3932         inet6_opt_find, inet6_opt_get_val, inet6_rth_space, inet6_rth_init,
3933         inet6_rth_add, inet6_rth_reverse, inet6_rth_segments,
3934         and inet6_rth_getaddr.
3935         * inet/netinet/ip6.h (struct ip6_rthdr0): Make ip6r0_addr a flexible
3936         array.
3937         * inet/netinet/in.h (struct ip6_mtuinfo): Define.
3938         Mark inet6_option_* interfaces as deprecated.
3939         Declare inet6_opt_init, inet6_opt_append, inet6_opt_finish,
3940         inet6_opt_set_val, inet6_opt_next, inet6_opt_find, inet6_opt_get_val,
3941         inet6_rth_space, inet6_rth_init, inet6_rth_add, inet6_rth_reverse,
3942         inet6_rth_segments, and inet6_rth_getaddr.
3943         * inet/inet6_opt.c: New file.
3944         * inet/inet6_rth.c: New file.
3946         * inet/netinet/icmp6.h: Pretty printing.
3948         [BZ #2683]
3949         * elf/dl-addr.c (_dl_addr): Don't match undefined references.
3951 2006-05-23  Ulrich Drepper  <drepper@redhat.com>
3953         * nis/nis_lookup.c (nis_lookup): Use __prepare_niscall instead of
3954         doing it all here.  When server does not know the answer do not
3955         fail immediate, try parent first.
3957         * nis/nis_domain_of_r.c (nis_domain_of_r): Add missing buffer
3958         overflow test.
3960 2006-05-20  Ulrich Drepper  <drepper@redhat.com>
3962         * nis/nis_call.c (__prepare_niscall): New function.  Split out
3963         from __do_niscall.
3964         * nis/nis_table.c (__create_ib_request): Renamed from create_ib_request
3965         and exported.
3966         (__follow_path): New function.  Split out from nis_list.
3967         * nis/nis_xdr.h: Add libnsl_hidden_proto for _xdr_ib_request and
3968         _xdr_nis_result.
3969         * nis/nis_xdr.c: Add libnsl_hidden_def for _xdr_ib_request and
3970         _xdr_nis_result.
3971         * nis/libnsl.h: Declare __prepare_niscall, __create_ib_request,
3972         and __follow_path.
3973         * nis/Versions: Export __prepare_niscall, __create_ib_request,
3974         __follow_path, __do_niscall3, _xdr_ib_request, and _xdr_nis_result
3975         from libnsl for version GLIBC_PRIVATE.
3976         * nis/nisplus-parser.h: Remove _nss_nisplus_parse_pwent_chk.
3977         Remove entry parameter from _nss_nisplus_parse_pwent and
3978         _nss_nisplus_parse_grent.
3979         * nis/nss_nisplus/nisplus-parser.c: Likewise.
3980         * nis/nss_nisplus/nisplus-pwd.c: Remove support for SETENT_BATCH_READ
3981         again.  Rewrite getpwent handling to not use nis_first_entry and
3982         nis_next_entry.  Roll out own niscall handling.
3983         * nis/nss_nisplus/nisplus-grp.c: Likewise.
3985         * sunrpc/xdr_rec.c: Fix typo in comment.
3987 2006-05-19  Ulrich Drepper  <drepper@redhat.com>
3989         * nis/nis_call.c (__do_niscall3): Avoid code duplication in error
3990         handling.
3992         * nis/nis_callback.c (internal_nis_do_callback): Don't use malloc
3993         to allocate memory for my_pollfd.  Better initialization of
3994         cb_is_running.  Use TEMP_FAILURE_RETRY.
3996         * malloc/memusage.sh (memusageso): Add quotes.
3997         (memusagestat): Likewise.
3998         * debug/xtrace.sh (pcprofileso): Likewise.
3999         (pcprofiledump): Likewise.
4000         * debug/Makefile ($(objpfx)xtrace): Use $LIB in SLIBDIR
4001         replacement.
4002         * malloc/Makefile ($(objpfx)memusage): Likewise.
4004         * nis/nis_callback.c (__nis_create_callback): Calls to
4005         svcudp_bufcreate and svctcp_create can fail.  Free ->xprt if
4006         asprintf call fails.
4008         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_sendreq): Make sure
4009         no uninitialized memory is passed to sendto.
4011 2006-05-18  Ulrich Drepper  <drepper@redhat.com>
4013         * nis/nis_callback.c (__nis_create_callback): Use asprinf instead
4014         of snprintf+strdup.  Handle OOM.
4015         * nis/nis_callback.c (__nis_create_callback): Allocate cb and
4016         cb->serv together.  Remove now obsolete free calls.
4017         (__nis_destroy_callback): Remove now obsolete free call.
4019 2006-05-18  David Woodhouse  <dwmw2@redhat.com>
4021         * sysdeps/posix/getaddrinfo.c: Add unique labels to the default
4022         RFC3484 precedence table for fec0::/10 and fc00::/7 (site-local
4023         and ULA respectively). Set precedence for IPv4 address to 10 as
4024         defined in RFC3484 for preferring IPv6.
4025         * posix/gai.conf: Update to match the new default tables.
4027 2006-05-18  Jakub Jelinek  <jakub@redhat.com>
4029         * nis/nss_compat/compat-pwd.c (internal_setpwent): If nss_set*ent
4030         returned NSS_STATUS_UNAVAIL, still return NSS_STATUS_SUCCESS.
4031         * nis/nss_compat/compat-spwd.c (internal_setspent): Likewise.
4032         * nis/nss_compat/compat-grp.c (internal_setgrent): Likewise.
4034         * nis/nss_compat/compat-initgroups.c (nss_setgrent, nss_endgrent):
4035         Removed.
4036         (init_nss_interface): Remove initialization of these variables.
4038 2006-05-18  Ulrich Drepper  <drepper@redhat.com>
4040         * nis/nis_call.c (rec_dirsearch): Little optimization: pull
4041         nis_free_directory forward to avoid duplication.
4043 2006-05-17  Ulrich Drepper  <drepper@redhat.com>
4045         * nis/nis_call.c (rec_dirsearch): Handle __nis_finddirectory and
4046         rec_dirsearch returning NULL.
4047         (first_shoot): Handle __nis_finddirectory returning NULL.
4048         (__nisfind_server): Fix leak when rec_dirsearch returns NULL.
4050         * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOSE, IN_MOVE,
4051         IN_ONLYDIR, IN_DONT_FOLLOW, and IN_MASK_ADD.
4053 2006-05-17  Jakub Jelinek  <jakub@redhat.com>
4055         * sunrpc/key_call.c (getkeyserv_handle): Call auth_destroy if
4056         pid changed.
4058 2006-05-15  Ulrich Drepper  <drepper@redhat.com>
4060         * include/rpc/pmap_prot.h: Mark all functions as hidden.
4062         * nscd/nscd_initgroups.c: Mark __gr_map_handle as hidden.
4063         * nscd/nscd_getgr_r.c: Likewise.
4065         * include/rpc/pmap_rmt.h: Mark all functions as hidden.
4067         * nscd/nscd_getai.c (__hst_map_handle): Mark as hidden.
4068         * nscd/nscd_gethst_r.c (__hst_map_handle): Likewise.
4070         * stdlib/longlong.h (__clz_tab): Mark as hidden.
4072         * iconv/gconv_int.h: Mark __gconv_lock as hidden.
4074         * include/rpc/key_prot.h: Mark all _internal functions as hidden.
4076         * include/rpc/auth.h: Mark xdr_des_block_internal and
4077         xdr_opaque_auth_internal as hidden.
4079         * sysdeps/unix/sysv/linux/getdents.c: Mark __have_no_getdents64 as
4080         hidden.
4082         * include/rpc/xdr.h: Mark all _internal functions as hidden.
4084         * misc/getusershell.c (okshells): Don't use static initializers,
4085         do it dynamically.
4087         * stdlib/fmtmsg.c (keywords): Change type of len element to
4088         uint32_t to not waste space on 64bit machines.
4090         * locale/setlocale.c: Change _nl_category_names into a string.
4091         Add new _nl_category_name_idxs.  Change all users.
4092         * locale/localeinfo.h: Adjust declaration of _nl_category_names.
4093         Declare _nl_category_name_idxs.
4094         * locale/findlocale.c: Adjust for _nl_category_names change.
4095         * locale/loadlocale.c: Likewise.
4096         * locale/newlocale.c: Likewise.
4097         * intl/dcigettext.c: Likewise.
4099         * iconv/gconv_conf.c (add_alias): Move actual alias handling to...
4100         (add_alias2): ...here.  New function.
4101         (__gconv_read_conf): Simplify builtin alias handling.
4102         (builtin_aliases): Convert to string to avoid relocations.
4103         * iconv/gconv_builtin.h: Add comment about correct formatting.
4105 2006-05-15  Jakub Jelinek  <jakub@redhat.com>
4107         * resolv/res_debug.c (loc_ntoa): Make error const.
4109 2006-05-14  Andreas Schwab  <schwab@suse.de>
4111         * math/complex.h [__LDBL_COMPAT]: Use __REDIRECT_NTH.
4113 2006-05-12  Jakub Jelinek  <jakub@redhat.com>
4115         * sysdeps/unix/sysv/linux/sched_getaffinity.c: Include sys/param.h.
4116         (__sched_getaffinity_new): Don't crash if cpusetsize is smaller than
4117         sizeof (cpu_set_t).
4119 2006-05-11  Ulrich Drepper  <drepper@redhat.com>
4121         * resolv/res_debug.c (loc_ntoa): Define error as array, not pointer.
4123         * include/arpa/nameser.h: Declare _ns_flagdata as hidden.
4125         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_master.
4126         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_master.
4128         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypbind_resp.
4129         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypbind_resp.
4131         * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_cback_data.
4132         * include/rpcsvc/nis_callback.h: Add libnsl_hidden_proto for
4133         xdr_cback_data.
4135         * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypupdate_args.
4136         * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
4137         xdr_ypupdate_args.
4139         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_order.
4140         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_order.
4142         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_maplist.
4143         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_maplist.
4145         * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_obj_p.
4146         * include/rpcsvc/nis_callback.h: New file.
4148         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_val.
4149         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_val.
4151         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
4152         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
4154         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypmaplist.
4155         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypmaplist.
4157         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
4158         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
4160         * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypdelete_args.
4161         * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
4162         xdr_ypdelete_args.
4164         * nis/nis_xdr.h: Mark all functions as hidden.  Remove
4165         __BEGIN_DECLS and __END_DECLS, the header is not installed.
4167         * nis/nis_error.c: Remove table of strings.  Use position
4168         independent mechanism.
4169         * nis/nis_error.h: New file.
4171 2006-05-11  Jakub Jelinek  <jakub@redhat.com>
4173         * locale/programs/ld-time.c (time_finish): If wide era name or
4174         format aren't provided, set both wname and wformat to L"".
4176 2006-05-10  Ulrich Drepper  <drepper@redhat.com>
4178         * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Only store
4179         results if the call was succesful.
4181         * nis/nss-nis.h: Mark __yperr2nss_tab and __yperr2nss_count as hidden.
4183         * nis/nss-nisplus.h: Mark __niserr2nss_tab and __niserr2nss_count
4184         as hidden.
4186 2006-05-10  Jakub Jelinek  <jakub@redhat.com>
4188         * misc/sys/queue.h: Remove uses of all QUEUEDEBUG_* macros.
4190 2006-05-10  Ulrich Drepper  <drepper@redhat.com>
4192         * posix/wordexp.c (parse_glob): No need to check ifs for NULL, the
4193         caller makes sure this is not the case.
4194         (wordexp): Simplify ifs_white creation.  [Coverity CID 231]
4196 2006-05-09  Ulrich Drepper  <drepper@redhat.com>
4198         * posix/wordexp.c: Remove numerous NULL pointer tests before FREE
4199         calls.
4201         * io/ftw.c (open_dir_stream): Return right away if REALLOC fails.
4202         [Coverity CID 229, 230]
4204         * argp/argp-help.c (hol_entry_help): Handle STATE==NULL in ARG and
4205         DGETTEXT calls.
4206         (hol_help): Likewise.  [Coverity CID 226, 227]
4208         * string/argz-replace.c (__argz_replace): Unconditionally call
4209         free on SRC.  [Coverity CID 225]
4211         * nis/nis_creategroup.c (nis_creategroup): No need to duplicate
4212         the return value of __nis_default_owner and __nis_default_group,
4213         it has been especially allocated.  [Coverity CID 224]
4215         * nis/nis_defaults.c (searchXYX): New functions.  Used by both
4216         searchgroup and searchowner.  Significantly simplified.
4217         (__nis_default_owner): Remove duplication.  Do not locally copy the
4218         string before duplicating it.
4219         (__nis_default_group): Likewise.
4221         * nis/nis_lookup.c (nis_lookup): After calling nis_free_directory,
4222         we must clear the variable before calling __nisfind_server.
4224         * nis/nis_lookup.c (nis_lookup): Always free memory allocated with
4225         nis_getnames.  [Coverity CID 223]
4227         * locale/programs/locfile.c (locfile_read): Use alloca instead of
4228         xmalloc to allocate local repertoire name.  [Coverity CID 222]
4230         * iconv/iconv_charmap.c (use_to_charmap): No need to dynamically
4231         allocate memory for the input to add_bytes.  [Coverity CID 221]
4233         * posix/wordexp.c (w_addword): Free word if realloc fails and it
4234         was allocated here.  [Coverity CID 219, 220]
4236         * posix/getconf.c (print_all): Free confstr data after printing.
4237         [Coverity CID 218]
4239         * sysdeps/posix/getaddrinfo.c (gaih_inet): Free canon string if
4240         list allocation fails.  [Coverity CID 215]
4242         * nss/nsswitch.c (__nss_configure_lookup): Fix loop end condition.
4243         [Coverity CID 213]
4245         * argp/argp-help.c (hol_entry_cmp): Don't call canon_doc_option if
4246         string is NULL.  [Coverity CID 212]
4247         * argp/Makefile: Add rules to build and run bug-argp1.
4248         * argp/bug-argp1.c: New file.
4250         * io/ftw.c (ftw_dir): Use __rawmemchr instead of strchr to find
4251         end of string.
4252         * stdlib/canonicalize.c (__realpath): Likewise.
4254         * locale/programs/ld-time.c (time_finish): Don't dereference NULL
4255         pointer.  [Coverity CID 206]
4257         * elf/dl-dst.h (DL_DST_REQUIRED): Be prepared for missing link map
4258         in statically linked code.
4259         * elf/dl-load.c (_dl_dst_substitute): When replacing ORIGIN in
4260         statically built code, be prepared to have no link map.
4261         [Coverity CID 205]
4263         * argp/argp-help.c (fill_in_uparams): Handle STATE==NULL in
4264         dgettext calls. [Coverity CID 204]
4266         * argp/argp-help.c (struct uparams): Remove valid member.  Change
4267         the one user.
4268         (uparam_names): Reduce size.  Avoid relative relocations.
4269         Moved to read-only segment.
4270         (fill_in_uparams): Update for new layout.
4272         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs): Parameter can be
4273         assumed to always be != NULL. [Coverity CID 202]
4275         * argp/argp-help.c (hol_entry_help): Remove some dead code
4276         [Coverity CID 200].
4278         * nis/nss_nis/nis-service.c (_nss_nis_getservbyport_r): Optimize
4279         away a few more unconditional yperr2nss calls.
4280         (_nss_nis_getservbyname_r): Likewise.
4282 2006-05-06  Ulrich Drepper  <drepper@redhat.com>
4284         * sysdeps/generic/ldsodefs.h: Remove support for non-core
4285         architectures.
4287         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Make sure
4288         that unused memory passed to sendto is nevertheless initialized.
4290         [BZ #2499]
4291         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Avoid
4292         possibly unaligned memory accesses.
4294         * include/arpa/nameser.h: Also optimize NS_PUT16 and NS_PUT32.
4295         * resolv/res_mkquery.c: Use NS_PUT16 and NS_PUT32 instead of __putshort
4296         and __putlong respectively.  Correct buffer overflow check for
4297         NS_NOTIFY_OP.
4299         * resolv/res_send.c (send_vc): Use ns_put16 instead of putshort.
4301         * resolv/res_send.c (res_queriesmatch): Fix typo in comment.
4302         (send_dg): Rewrite error handling to be more compact and avoid
4303         double recomputation of timeouts.  Pass MSG_NOSIGNAL to send.
4305         * include/arpa/nameser.h: Add optimizations for NS_GET16 and NS_GET32.
4307         * resolv/res_send.c (res_nameinquery): Use NS_GET16 directly
4308         instead of ns_get16.
4309         (res_queriesmatch): Likewise.  Minor optimization.
4311         [BZ #2499]
4312         * resolv/res_query.c (__libc_res_nquery): If answerp != NULL,
4313         __libc_res_nsend might reallocate the buffer for the answer.  In
4314         this case we have to reload the HP pointer.
4316 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
4318         * stdio-common/vfscanf.c (memory_error): Remove definition.  Add
4319         some branch prediction hints.
4321         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Define SPLICE_F_*.
4322         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
4323         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
4324         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
4325         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
4326         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
4327         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
4328         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
4330 2006-05-05  Martin Schwidefsky  <schwidefsky@de.ibm.com>
4332         * sysdeps/s390/s390-32/elf/start.S: Replace pc relative relocation
4333         by a GOT relocation to make Scrt1.o position independent.
4334         * sysdeps/s390/s390-64/elf/start.S: Likewise.
4336         * sysdeps/unix/sysv/linux/s390/s390-32/syscall.S: Add support for
4337         six system call parameters.
4338         * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
4340 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
4342         * sunrpc/svcauth_des.c (cache_init): Use calloc instead of
4343         malloc&bzero.
4345         * sunrpc/svc_udp.c (BZERO): Remove definition.
4346         (CALLOC): Define.
4347         (svc_enablecache): Use CALLOC instead of ALLOC&BZERO.
4349         * sunrpc/des_impl.c: Remove ALT_ECB support.  We never used it.
4350         (des_SPtrans): Use uint32_t type.
4351         (des_skb): Likewise.
4353         * sunrpc/xdr_ref.c (xdr_reference): Use calloc instead of malloc&bzero.
4355 2006-05-05  Jakub Jelinek  <jakub@redhat.com>
4357         [BZ #2509]
4358         * stdio-common/tst-printf.sh: Adjust for tst-printf.c change even
4359         on 32-bit arches.
4361 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
4363         * locale/programs/ld-address.c (address_finish): Fix one more
4364         place where the iso639 array might be accessed beyond the limits.
4366 2006-05-04  Ulrich Drepper  <drepper@redhat.com>
4368         * nis/nis_table.c (nis_list): Avoid clearing res twice before
4369         filling it for the first time.
4371         * nis/nis_table.c (get_tablepath): Renamed from __get_tablepath.
4372         Adjust all callers.
4373         Free res object content before returning.
4375         * sunrpc/xdr_array.c (xdr_array): Use calloc instead of malloc&bzero.
4377         * sunrpc/key_call.c (__rpc_thread_key_cleanup): Also free
4378         client->cl_auth.
4380         * sunrpc/rpc_thread.c (__rpc_thread_destroy): Don't skip entire
4381         cleanup for initial thread, just the free call on TVP.
4383         * nscd/gai.c (__getline): Define.
4386 See ChangeLog.16 for earlier changes.