Use struct timespec for timestamps in struct stat also if __USE_XOPEN2K8.
[glibc.git] / ChangeLog
blob3d22169a7c2cec563e207bc9ed9f3a62ff30aacc
1 2009-11-23  Andreas Schwab  <schwab@redhat.com>
3         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Use struct timespec
4         for timestamps also if __USE_XOPEN2K8.
5         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
6         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
7         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
8         * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
10 2009-11-22  Ulrich Drepper  <drepper@redhat.com>
12         * nscd/connections.c (restart): Try harder to re-exec.
14         * sunrpc/create_xid.c (_create_xid): Reinitialize state after fork.
16         * sysdeps/unix/sysv/linux/ntp_gettimex.c:  New file.
17         * sysdeps/unix/sysv/linux/Makefile: Add rules to build ntp_gettimex.
18         * sysdeps/unix/sysv/linux/Versions: Export ntp_gettimex for GLIBC_2.12.
19         * sysdeps/unix/sysv/linux/sys/timex.h (ntptimeval): Add tai member and
20         some placeholders.  Redirect ntp_gettime to ntp_gettimex.
21         * sysdeps/unix/sysv/linux/ntp_gettime.c: Adjust for header change.
23         * sysdeps/unix/sysv/linux/sys/timex.h (MOD_TAI, MOD_MICRO, MOD_NANO):
24         Define.
25         (STA_RONLY): Add STA_NANO, STA_MODE, and STA_CLK.
27 2009-11-18  H.J. Lu  <hongjiu.lu@intel.com>
29         [BZ #10162]
30         * sysdeps/ia64/memchr.S: Don't use a simple loop on data shorter
31         than software pipeline.  Properly recover from shorter read.
33 2009-11-19  Ulrich Drepper  <drepper@redhat.com>
35         [BZ #10958]
36         * libio/libio.h (_IO_getwc_unlocked): Check for _wide_data being
37         initialized before using it.
38         (_IO_putwc_unlocked): Likewise.
40         [BZ #10918]
41         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_ISSET_S): Use __const
42         in cast to not throw away const-ness of parameters.
43         (__CPU_EQUAL_S): Likewise.
44         (__CPU_OP_S): Likewise.
46         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Introduce new symbol
47         F_OWNER_PGRP and mark F_OWNER_GID obsolete.  The kernel people made
48         this gratuitous change and we have to keep compatibility.
49         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
50         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
51         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
52         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
53         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
54         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
56 2009-11-17  Ulrich Drepper  <drepper@redhat.com>
58         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Change misleading names
59         of parameters of sync_file_range.
60         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
61         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
62         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
63         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
64         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
65         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
67 2009-11-16  Jakub Jelinek  <jakub@redhat.com>
69         * sysdeps/unix/sysv/linux/sync_file_range.c (sync_file_range):
70         Implement using sync_file_range2 syscall if __NR_sync_file_range2
71         is defined.
72         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c: New
73         file.
75 2009-11-17  Paolo Bonzini  <bonzini@gnu.org>
77         * posix/bug-regex30.c: New file.
78         * posix/Makefile: Add rules to build and run bug-regex30.
79         * posix/regcomp.c (re_compile_fastmap_iter): Add all multibyte
80         character lead bytes when there is a range in a COMPLEX_BRACKET.
81         Reported by Oleg Bylatov.
83 2009-11-17  Ulrich Drepper  <drepper@redhat.com>
85         [BZ #10969]
86         * locale/duplocale.c (__duplocale): Handle LC_GLOBAL_LOCALE special.
87         * locale/tst-duplocale.c: New file.
88         * locale/Makefile (tests): Add tst-duplocale.
90         [BZ #10968]
91         * locale/langinfo.h (_NL_LOCALE_NAME): Correct definition.
92         Patch by Bruno Haible <bruno@clisp.org>.
93         * locale/tst-locname.c: New file.
94         * locale/Makefile (tests): Add tst-locname.
96         [BZ #10972]
97         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Add new MADV_*
98         constants from recent kernels.
99         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Likewise.
100         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
101         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
102         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
103         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
104         * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Likewise.
106 2009-11-09  H.J. Lu  <hongjiu.lu@intel.com>
108         [BZ #10162]
109         * sysdeps/ia64/memchr.S: Use a simple loop on data shorter than
110         software pipeline.
112 2009-11-09  Mike Frysinger  <vapier@gentoo.org>
114         * sysdeps/unix/sysv/linux/i386/fallocate.c: Include errno.h.
115         (fallocate): Return ENOSYS if __NR_fallocate is not defined.
116         * sysdeps/unix/sysv/linux/i386/fallocate64.c: Likewise.
118 2009-11-06  Mike Frysinger  <vapier@gentoo.org>
120         * posix/bug-regex29.c: Include stdio.h.
122 2009-11-14  Ulrich Drepper  <drepper@redhat.com>
124         [BZ #10939]
125         * Versions.def: Define GLIBC_2.12 for libc.
126         * manual/errno.texi: Add ERFKILL entry.
127         * sysdeps/unix/sysv/linux/Versions: Add new errlist compat entries
128         for 2.12.
129         * sysdeps/unix/sysv/linux/bits/errno.h: Define ERFKILL is not done.
130         * sysdeps/unix/sysv/linux/sparc/bits/errno.h: Likewise.
132         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Update F_SETOWN_EX and
133         F_GETOWN_EX definitions according to corrected kernel definitions.
134         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
135         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
136         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
137         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
138         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
139         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
141 2009-11-12  Ulrich Drepper  <drepper@redhat.com>
143         * version.h: Bump for 2.12 development.
145 2009-11-10  Andreas Schwab  <schwab@redhat.com>
147         * resolv/mapv4v6hostent.h (map_v4v6_hostent): Return non-zero if
148         out of buffer space.
149         * resolv/nss_dns/dns-host.c (getanswer_r): Check for
150         map_v4v6_hostent running out of space.
152 2009-11-10  Ulrich Drepper  <drepper@redhat.com>
154         * string/bits/string3.h (memset): If the second parameter is constant
155         and zero there is likely no transposition.
156         Patch by Caolan McNamara <caolanm@redhat.com.
158 2009-11-04  Philippe De Muyter  <phdm@macqel.be>
160         * sysdeps/powerpc/fpu/e_sqrt.c: Fix spelling of (Newton-)Raphson.
161         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
163 2009-10-30  Holger Hans Peter Freyther  <zecke@selfish.org>
165         * malloc/memusagestat.c (main): Fix spelling in an error message.
167 2009-11-01  H.J. Lu  <hongjiu.lu@intel.com>
169         * elf/dl-sym.c (do_sym): Properly handle STT_GNU_IFUNC symbols.
170         * elf/ifuncmain3.c (main): Test dlopen STT_GNU_IFUNC symbol.
172 2009-11-03  Andreas Schwab  <schwab@redhat.com>
174         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Add
175         readahead.
177 2009-11-03  Jakub Jelinek  <jakub@redhat.com>
179         * sysdeps/powerpc/powerpc64/dl-machine.h (resolve_ifunc): Don't
180         relocate opd entry when resolving prelink conflicts.
182 2009-11-04  Jakub Jelinek  <jakub@redhat.com>
184         * misc/sys/uio.h (preadv, pwritev): Fix type of last argument
185         when -D_FILE_OFFSET_BITS=64.
187         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (fallocate): Fix types
188         of last two arguments when -D_FILE_OFFSET_BITS=64.
189         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (fallocate): Likewise.
190         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (fallocate): Likewise.
191         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (fallocate): Likewise.
192         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (fallocate): Likewise.
193         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (fallocate): Likewise.
194         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (fallocate): Likewise.
196 2009-11-03  Andreas Schwab  <schwab@linux-m68k.org>
198         [BZ #4457]
199         * sysdeps/generic/libgcc_s.h: New file.
200         * sysdeps/generic/framestate.c: Include it and use LIBGCC_S_SO.
202 2009-11-01  Ulrich Drepper  <drepper@redhat.com>
204         * malloc/hooks.c (free_check): Restore locking and call _int_free
205         appropriately.
207 2009-10-30  Ulrich Drepper  <drepper@redhat.com>
209         * version.h (VERSION): Bump for 2.11 release.
210         * include/features.h (__GLIBC_MINOR__): Bump to 11.
212         * elf/tst-execstack.c (do_test): Add cast to avoid warning.
214         * stdio-common/scanf13.c (main): Remove unused variable wbuf.
216         * stdlib/tst-strtol.c (tests): Mark one more constant as unsigned
217         to avoid warning.
218         * stdlib/tst-strtoll.c (tests): Likewise.
220         [BZ #9986]
221         * time/strftime_l.c (__strftime_internal): Allow %OC.
223         * misc/mkostemps.c: New file.
224         * misc/mkostemps64.c: New file.
226 2009-10-30  Andreas Schwab  <schwab@redhat.com>
228         * locale/programs/locale-spec.c: Include <error.h> and
229         <libintl.h>.
231         * sysdeps/unix/sysv/linux/readlinkat.c: Fix last change.
233 2009-10-28  Roland McGrath  <roland@redhat.com>
235         * Makefile (dist-prepare): New target.
236         (tag-for-dist): Target removed.
237         (glibc-%.tar): Pattern rule removed.
238         (%.tar): New pattern rule, does simple use of git archive.
239         (dist-version): Remove variable definition.
240         (dist): Just depend on that.  Add .tar.xz dependency.
241         If dist-version variable not set on command line, depend on
242         dist-prepare, re-invoke with dist-version set via git describe.
244         * Makerules (%.xz): New pattern rule.
246 2009-10-28  Alan Modra  <amodra@bigpond.net.au>
248         * elf/ifuncdep2.c: Include ifunc-sel.h.
249         (global): Delete.
250         (foo1_ifunc, foo2_ifunc, foo3_ifunc): Use ifunc_sel.
251         * elf/ifuncmain1.c (global): Delete.
252         * elf/ifuncmain1vis.c: Likewise.
253         * elf/ifuncmain2.c: Likewise.
254         * elf/ifuncmain5.c: Likewise.
255         * elf/ifuncmod3.c: Likewise.
256         * elf/ifuncmain6pie.c: Include ifunc-sel.h.
257         (foo_ifunc): Use ifunc_one.
258         * elf/ifuncmain7.c: Likewise.
259         * elf/ifuncmod1.c: Include ifunc-sel.h.
260         (global): Define protected var.
261         (foo_ifunc, foo_hidden_ifunc, foo_protected_ifunc): Use ifunc_sel.
262         * elf/ifuncmod5.c: Likewise.
263         * sysdeps/generic/elf/ifunc-sel.h: New file.
264         * sysdeps/powerpc/elf/ifunc-sel.h: New file.
266 2009-07-30  Alan Modra  <amodra@bigpond.net.au>
268         * elf/elf.h (R_PPC_NUM, R_PPC64_NUM): Delete unused and incorrect.
269         (R_PPC_REL16*): Correct comments.
270         (R_PPC_IRELATIVE, R_PPC64_IRELATIVE, R_PPC64_JMP_IREL): Define.
271         (R_PPC64_REL16, R_PPC64_REL16_LO, R_PPC64_REL16_HI,
272          R_PPC64_REL16_HA): Define.
273         * sysdeps/powerpc/powerpc32/dl-irel.h: New file.
274         * sysdeps/powerpc/powerpc64/dl-irel.h: New file.
275         * sysdeps/powerpc/powerpc32/dl-machine.c (__elf_machine_fixup_plt):
276         Delete unused "reloc" param.
277         (__process_machine_rela): Handle R_PPC_IRELATIVE.
278         * sysdeps/powerpc/powerpc32/dl-machine.h (__elf_machine_fixup_plt):
279         Delete "reloc" param.
280         (elf_machine_rela): Handle STT_GNU_IFUNC functions and
281         R_PPC_IRELATIVE.
282         * sysdeps/powerpc/powerpc64/dl-machine.h (resolve_ifunc): New function.
283         (elf_machine_rela): Handle STT_GNU_IFUNC functions and new ifunc
284         relocations.
286 d2009-10-30  Ulrich Drepper  <drepper@redhat.com>
288         [BZ #10315]
289         * sysdeps/gnu/netinet/udp.h: Define UDP_CORK, UDP_ENCAP,
290         UDP_ENCAP_ESPINUDP_NON_IKE, UDP_ENCAP_ESPINUDP, and
291         UDP_ENCAP_L2TPINUDP.
293         [BZ #10349]
294         * sysdeps/posix/tempname.c (__gen_tempname): Take new second
295         parameter, specifying length of prefix.
296         * stdio-common/tempname.c: Likewise.
297         * include/stdio.h: Adjust prototypes.
298         * libio/oldtmpfile.c: Adjust caller.
299         * misc/mkdtemp.c: Likewise.
300         * misc/mkostemp.c: Likewise.
301         * misc/mkostemp64.c: Likewise.
302         * misc/mkstemp.c:  Likewise.
303         * misc/mkstemp64.c: Likewise.
304         * misc/mktemp.c: Likewise.
305         * stdio-common/tempnam.c: Likewise.
306         * stdio-common/tmpfile.c: Likewise.
307         * stdio-common/tmpnam.c: Likewise.
308         * stdio-common/tmpnam_r.c: Likewise.
309         * misc/mkstemps.c: New file.
310         * misc/mkstemps64.c: New file.
311         * stdlib/stdlib.h: Add prototypes.
312         * misc/Makefile (routines): Add mkstemps and mkstemps64.
313         * misc/Versions: Export mkstemps and mkstemps64 for GLIBC_2.11.
315 2009-10-29  Ulrich Drepper  <drepper@redhat.com>
317         * locale/iso-639.def: Add sml entry.
319         [BZ #10391]
320         * resolv/res_send.c (send_dg): Initialize resplen.
322         [BZ #10446]
323         * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Match sigevent
324         definition to the kernel's.
325         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
327 2009-08-18  Anders Johansson  <ajohansson@novell.com>
329         * nscd/aicache.c: Fix mixing up dataset and dataset->resp
330         offsets and record sizes in assert()s and response sending.
331         * nscd/grpcache.c: Likewise.
332         * nscd/hstcache.c: Likewise.
333         * nscd/initgrcache.c: Likewise.
334         * nscd/pwdcache.c: Likewise.
336 2009-10-29  Ulrich Drepper  <drepper@redhat.com>
338         [BZ #10540]
339         * nss/nss_files/files-hosts.c (_nss_files_gethostbyname4_r): If
340         /etc/hosts does not exist set errnop and herrnop appropriately.
341         Patch by Steve Langasek <vorlon@debian.org>.
343         [BZ #10553]
344         * malloc/malloc.c (malloc_info): Fix typos in format strings.
345         Patch by John Sullivan <jsrhbz@kanargh.force9.co.uk>.
347         [BZ #10564]
348         * login/utmp_file.c (TIMEOUT): Increase to 10.
350         [BZ #10609]
351         * sysdeps/unix/sysv/linux/faccessat.c: Fix handling of empty parameters
352         for file names in case the syscall is not available.
353         * sysdeps/unix/sysv/linux/fchmodat.c: Likewise.
354         * sysdeps/unix/sysv/linux/fchownat.c: Likewise.
355         * sysdeps/unix/sysv/linux/futimesat.c: Likewise.
356         * sysdeps/unix/sysv/linux/fxstatat.c: Likewise.
357         * sysdeps/unix/sysv/linux/fxstatat64.c: Likewise.
358         * sysdeps/unix/sysv/linux/i386/fchownat.c: Likewise.
359         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Likewise.
360         * sysdeps/unix/sysv/linux/linkat.c: Likewise.
361         * sysdeps/unix/sysv/linux/mkdirat.c: Likewise.
362         * sysdeps/unix/sysv/linux/openat.c: Likewise.
363         * sysdeps/unix/sysv/linux/powerpc/fchownat.c: Likewise.
364         * sysdeps/unix/sysv/linux/readlinkat.c: Likewise.
365         * sysdeps/unix/sysv/linux/renameat.c: Likewise.
366         * sysdeps/unix/sysv/linux/symlinkat.c: Likewise.
367         * sysdeps/unix/sysv/linux/unlinkat.c: Likewise.
368         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Likewise.
369         * sysdeps/unix/sysv/linux/xmknodat.c: Likewise.
371         [BZ #10643]
372         * sysdeps/pthread/aio_misc.c (__aio_enqueue_request): If thread
373         creation filed, remove the request from the 'requests' list and signal
374         the caller that the request is finished.
376         [BZ #10692]
377         * nis/nss_nis/nis-grp.c (internal_nis_getgrent_r): Don't free buffer
378         in error if batch_read.  Patch by Joe Landers <jlanders@vmware.com>.
380         [BZ #10713]
381         * nis/nss_nis/nis-grp.c (internal_nis_endgrent): Start freeing blocks
382         from intern.start.  Patch by Joe Landers <jlanders@vmware.com>.
384         [BZ #10780]
385         * libio/ioputs.c (_IO_puts): Make sure to not return a number which
386         overflows the int return type.
388         [BZ #10717]
389         * malloc/memusagestat.c (main): Fix repairing of trace files.  We also
390         have to compute maxsize_total, we have to update the variables, and
391         the also_total handling must happen after the repair.
393         [BZ #10742]
394         * nscd/dbg_log.c (dbg_log): Print timestamp before the message text.
395         Based on patch by Jeffrey Bastian <jbastian@redhat.com>.
397 2009-10-27  Andreas Schwab  <schwab@redhat.com>
399         * sysdeps/unix/sysv/linux/getpt.c (__posix_openpt): Make sure
400         errno is always set when returning unsuccessfully.
402 2009-10-29  Andreas Schwab  <schwab@redhat.com>
404         * malloc/memusage.c (update_data): Fix index wraparound handling
405         so that buffer_cnt is actually reset.
407 2009-10-29  Ulrich Drepper  <drepper@redhat.com>
409         [BZ #10784]
410         * sysdeps/unix/sysv/linux/ttyname.c (getttyname): Always copy name
411         of the directory we look at into the static buffer if there is one
412         at the start of the loop.
414         [BZ #10789]
415         * sysdeps/generic/netinet/ip.h: Define IPTOS_ENC* and IPTOS_DSCP*
416         macros.  Patch by Philip Prindeville <philipp@redfish-solutions.com>.
418         [BZ #10840]
419         * sysdeps/unix/sysv/linux/kernel-features.h: Define
420         __ASSUME_F_GETOWN_EX.
421         * sysdeps/unix/sysv/linux/fcntl.c: Implement F_GETOWN using F_GETOWN_EX
422         if possible.
423         * sysdeps/unix/sysv/linux/i386/fcntl.c: Likewise.
425         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Define F_OWNER_*
426         and f_owner_ex.
427         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
428         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
429         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
430         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
431         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
432         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
434         [BZ #10847]
435         * sysdeps/gnu/getutmp.c: Allow compatibility code to play around with
436         getutmpx symbol.
438         [BZ #10823]
439         * resolv/res_send.c (__libc_res_nsend): Fix copying of IPv4 server
440         addresses.  Patch by Petar Bogdanovic <petar@smokva.net>.
442 2009-10-24  Joseph Myers  <joseph@codesourcery.com>
444         * sysdeps/ieee754/ldbl-128/w_expl.c: Add hidden_def (__expl).
446 2009-10-27  Jakub Jelinek  <jakub@redhat.com>
448         [BZ #10817]
449         * math/w_coshl.c (__coshl): Use __finitel instead of __finite.
450         Reported by Ray Chason.
452 2009-10-21  H.J. Lu  <hongjiu.lu@intel.com>
454         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
455         strend-sse4.
456         * sysdeps/x86_64/multiarch/strchr.S: New file.
457         * sysdeps/x86_64/multiarch/strend-sse4.S: New file.
458         * sysdeps/x86_64/multiarch/strrchr.S: New file.
460 2009-10-21  Andreas Schwab  <schwab@redhat.com>
462         * elf/dl-sym.c (do_sym): Resolve STT_GNU_IFUNC symbols.
464 2009-10-19  Andreas Schwab  <schwab@redhat.com>
466         * include/math.h: Add hidden protos for __exp/__expf/__expl.
467         * sysdeps/ieee754/dbl-64/w_exp.c: Add hidden alias.
468         * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
469         * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
470         * sysdeps/i386/fpu/s_expm1.S: Call __exp to handle overflow.
471         * sysdeps/i386/fpu/s_expm1f.S: Call __expf to handle overflow.
472         * sysdeps/i386/fpu/s_expm1l.S: Call __expl instead of
473         __ieee751_expl to handle overflow.
475 2009-10-14  David S. Miller  <davem@davemloft.net>
477         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: New file.
478         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: New file.
480 2009-10-13  Andreas Schwab  <schwab@redhat.com>
482         * csu/elf-init.c (__libc_csu_init): Run preinit array even if
483         !USE_MULTIARCH.
485 2009-10-08  Ulrich Drepper  <drepper@redhat.com>
487         [BZ #10730]
488         * stdlib/random_r.c (__initstate_r): Remove duplicate __set-errno.
489         Patch in part by Steve Ward <planet36@gmail.com>.
491         [BZ #10731]
492         * stdlib/rand_r.c: Fix typo.
494         * po/cs.po: Update from translation team.
496 2009-10-06  Andreas Schwab  <schwab@redhat.com>
498         * elf/dl-load.c (_dl_map_object_from_fd): Close fd before
499         returning if RTLD_NOLOAD.
501 2009-10-06  Roland McGrath  <roland@redhat.com>
503         * sysdeps/x86_64/multiarch/strstr-c.c
504         [! SHARED]: Omit libc_hidden_builtin_def fiddling.
506         * sysdeps/x86_64/multiarch/strcasestr-c.c: Remove
507         libc_hidden_builtin_def fiddling, does not apply to strcasestr at all.
509         * sysdeps/x86_64/multiarch/init-arch.h
510         [NOT_IN_libc] (__get_cpu_features): Define it as a macro.
511         (HAS_CPU_FEATURE): New macro.
512         (HAS_SSE2, HAS_POPCOUNT, HAS_SSE4_2, HAS_FMA): Use it.
513         * sysdeps/x86_64/multiarch/init-arch.c
514         (__get_cpu_features): #undef it before definition.
516 2009-10-05  Andreas Schwab  <schwab@redhat.com>
518         * locale/C-time.c: Revert week-1stday back to 19971130 and set
519         first_weekday to 1 and first_workday to 2.
521 2009-10-01  Ulrich Drepper  <drepper@redhat.com>
523         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Define F_SETOWN_EX and
524         F_GETOWN_EX.
525         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
526         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
527         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
528         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
529         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
530         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
532 2009-09-28  Andreas Schwab  <schwab@redhat.com>
534         * stdio-common/printf_fp.c: Check for and avoid integer overflows.
535         * stdio-common/vfprintf.c: Likewise.
537 2009-09-27  Samuel Thibault  <samuel.thibault@ens-lyon.org>
539         * sysdeps/mach/hurd/mkdirat.c: Include <hurd/fd.h>.
540         (mkdirat): Call __directory_name_split_at instead of
541         __directory_name_split.
543 2009-09-28  Ulrich Drepper  <drepper@redhat.com>
545         * locale/programs/locale-spec.c (locale_special): If nothing matches
546         fail with an appropriate message.
548 2009-09-10  H.J. Lu  <hongjiu.lu@intel.com>
550         * configure.in: Exclude binutils 2.X.  Support binutils 2.100
551         and XX.
553 2009-09-25  Andreas Schwab  <schwab@redhat.com>
555         * elf/dl-reloc.c (RESOLVE_MAP): Always pass
556         DL_LOOKUP_ADD_DEPENDENCY to _dl_lookup_symbol_x.
558 2009-09-28  Samuel Thibault  <samuel.thibault@ens-lyon.org>
560         * bits/termios.h [__USE_UNIX98] (IXANY): Define macro.
562 2009-09-20  Andreas Schwab  <schwab@linux-m68k.org>
564         * iconvdata/iso646.c (gconv_init): Correctly initialize the
565         character size elements in step data.
567 2009-09-20  Ulrich Drepper  <drepper@redhat.com>
569         * po/hu.po: Update from translation team.
570         * po/vi.po: Likewise.
572 2009-09-19  Roland McGrath  <roland@redhat.com>
574         * libio/wfileops.c (_IO_wfile_seekoff): Remove unused variables.
576 2009-09-15  Roland McGrath  <roland@redhat.com>
578         * aclocal.m4 (GLIBC_PROVIDES): Add _AS_ECHO_PREPARE.
579         * nptl/sysdeps/pthread/configure: Regenerated.
580         * nptl/sysdeps/x86_64/configure: Regenerated.
581         * sysdeps/unix/sysv/linux/configure: Regenerated.
582         * sysdeps/x86_64/elf/configure: Regenerated.
584         * Makefile (autoconf-it): Set execute bit only on top-level configure.
586         * configure.in: Let add-ons set $libc_add_on_config_subdirs to have
587         the effect of AC_CONFIG_SUBDIRS relative to the add-on directory.
588         * aclocal.m4 (GLIBC_PROVIDES): Add AC_CONFIG_SUBDIRS.
589         * configure: Regenerated.
591 2009-09-09  Ulrich Drepper  <drepper@redhat.com>
593         * posix/getconf.c (main): Handle -- on command line.
595 2009-09-05  H.J. Lu  <hongjiu.lu@intel.com>
597         * configure.in: Support binutils 2.100 and 3.0.
599 2009-09-08  Jakub Jelinek  <jakub@redhat.com>
601         * sysdeps/s390/s390-32/____longjmp_chk.c: Removed.
602         * sysdeps/s390/s390-64/____longjmp_chk.c: Removed.
603         * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c: New file.
604         * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c: New file.
606 2009-09-07  Ulrich Drepper  <drepper@redhat.com>
608         * locale/programs/ld-collate.c (struct locale_collate_t): Add
609         unnamed_section_defined field.
610         (collate_read): Test and set unnamed_section_defined.
612         * posix/getconf.c (vars): Handle POSIX2_LINE_MAX in addition to
613         _POSIX2_LINE_MAX.
615 2009-09-04  H.J. Lu  <hongjiu.lu@intel.com>
617         * configure.in: Support binutils 2.20.
619 2009-09-03  Ulrich Drepper  <drepper@redhat.com>
621         * sysdeps/i386/i686/multiarch/strstr-c.c (__strstr_sse42,
622         __strstr_ia32): Add attribute_hidden.
624 2009-09-01  Andreas Schwab  <schwab@redhat.com>
626         * hesiod/nss_hesiod/hesiod-grp.c (internal_gid_from_group): Fix
627         parsing of group entry.
629 2009-09-02  Andreas Schwab  <schwab@redhat.com>
631         * libio/wfileops.c (_IO_wfile_seekoff): Account for readahead in
632         external buffer.  Always discard readahead in internal buffer.
633         * libio/Makefile (tests): Add bug-wsetpos.
634         * libio/bug-wsetpos.c: New file.
636 2009-09-02  Jakub Jelinek  <jakub@redhat.com>
638         * sysdeps/x86_64/multiarch/strstr-c.c (__strstr_sse42, __strstr_sse2):
639         Add attribute_hidden.
640         * sysdeps/x86_64/multiarch/strcasestr-c.c (__strcasestr_sse42,
641         __strcasestr_sse2): Likewise.
642         * sysdeps/x86_64/multiarch/s_fma.c (__fma_sse2): Add attribute_hidden.
643         (__fma_fma): Make static.
644         * sysdeps/x86_64/multiarch/s_fmaf.c (__fmaf_sse2): Add attribute_hidden.
645         (__fmaf_fma): Make static.
647 2009-08-31  Andreas Schwab  <schwab@redhat.com>
649         * libio/wfileops.c (_IO_wfile_seekoff): Remove dead code and
650         reformulate in-buffer optimisation check to match code in
651         _IO_new_file_seekoff.
653 2009-08-31  Joshua W. Boyer  <jwboyer@linux.vnet.ibm.com>
655         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Change srdi instruction
656         to srwi in 32-bit memcpy for power6.
658 2009-09-01  Andreas Schwab  <schwab@redhat.com>
660         * include/stdio.h: Declare hidden proto for fflush.
661         * libio/iofflush.c: Add hidden weak alias for fflush.
663 2009-09-01  Jakub Jelinek  <jakub@redhat.com>
665         * sysdeps/x86_64/fpu/bits/mathinline.h: Include bits/wordsize.h.
666         (__signbitf, __signbit): Only use SSE inline asm for 64-bit.
668 2009-08-31  Andreas Schwab  <schwab@redhat.com>
670         * sysdeps/x86_64/fpu/bits/mathinline.h: Use __asm instead of asm.
672 2009-08-31  Ulrich Drepper  <drepper@redhat.com>
674         [BZ #10560]
675         * malloc/malloc.c: Add local assert definition to avoid problems with
676         memory allocation in the real one.
678 2009-08-27  H.J. Lu  <hongjiu.lu@intel.com>
680         * sysdeps/i386/i686/multiarch/init-arch.c (ENABLE_SSSE3_ON_ATOM):
681         Removed.
682         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Don't
683         turn off SSSE3 on Atom.
685 2009-08-28  Ulrich Drepper  <drepper@redhat.com>
687         * stdlib/tst-strtol.c (tests): More tests.
688         * stdlib/tst-strtoll.c (tests): Likewise.
690 2009-08-26  Ulrich Drepper  <drepper@redhat.com>
692         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf.c: New file.
694         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: New file.
696 2009-08-25  Ulrich Drepper  <drepper@redhat.com>
698         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Add llround aliases.
699         * sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c: New file.
701         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: New file
703         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: New file.
705         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: New file.
707 2009-08-25  Joseph Myers  <joseph@codesourcery.com>
709         * math/s_fdiml.c (__fdiml): Use fpclassify instead of fpclassifyl.
711 2009-08-25  Ulrich Drepper  <drepper@redhat.com>
713         * sysdeps/x86_64/fpu/s_scalbln.c: New file.
714         * sysdeps/x86_64/fpu/s_scalbn.c: New file.
716         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: New file.
718         * sysdeps/x86_64/fpu/s_signbit.S: New file.
719         * sysdeps/x86_64/fpu/s_signbitf.S: New file.
721         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: New file.
722         * sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c: New file.
724         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Remove
725         leftover YMM_SIZE definition.
727 2009-08-24  Ulrich Drepper  <drepper@redhat.com>
729         * math/math_private.h (ieee_double_shape_type): Add uint64_t word to
730         union.
731         (EXTRACT_WORDS64, INSERT_WORDS64): Define.
732         * sysdeps/x86_64/fpu/math_private.h (EXTRACT_WORDS64, INSERT_WORDS64):
733         Redefine.
734         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: New file.
736         * sysdeps/x86_64/fpu/math_private.h: Add specialized GET_FLOAT_WORD
737         and SET_FLOAT_WORD definitions.
739 2009-08-24  Roland McGrath  <roland@redhat.com>
741         * sysdeps/unix/syscall-template.S: New file.
742         * sysdeps/unix/make-syscalls.sh: Generate rules to use it.
743         * sysdeps/unix/Makefile (omit-deps): Do not omit syscall stubs' deps.
744         (compile-syscall): Pass mkdep and -g options as normal.
745         (s-proto.d, s-proto-cancel.d): Don't "-include" these.
746         (common-generated): Don't add them here.
748 2009-08-24  Ulrich Drepper  <drepper@redhat.com>
750         * math/s_fdim.c: In case of overflows set errno.
751         * math/s_fdimf.c: Likewise.
752         * math/s_fdiml.c: Likewise.
754         * math/math.h: Define math_errhandling of __FAST_MATH__ is not defined.
755         * sysdeps/i386/fpu/bits/mathinline.h: Undefine math_errhandling if we
756         are using the inline optimizations.
758         * sysdeps/x86_64/fpu/bits/mathinline.h (__signbit): Optimize.
759         (__signbitf): Likewise.
761 2009-08-23  Ulrich Drepper  <drepper@redhat.com>
763         * posix/regcomp.c (parse_dup_op): Verify the expression is correctly
764         terminated.
765         * posix/Makefile (tests): Add bug-regex29.
766         * posix/bug-regex29.c: New file.
768         * posix/unistd.h: Define _POSIX_VERSION and _POSIX2_* correctly if
769         older POSIX versions are selected.
771         * stdio-common/printf_fp.c: ISO C expects to print the sign of NaN
772         as well.
773         * stdio-common/printf_fphex.c: Likewise.
774         * stdio-common/tstdiomisc.c: Add more tests.
776         * locale/locale.h: Include xlocale.h and the thread-local locale
777         declarations for XPG7, not XPG6.
779 2009-08-21  Andreas Schwab  <schwab@redhat.com>
781         * sysdeps/powerpc/powerpc32/____longjmp_chk.S: Removed.
782         * sysdeps/powerpc/powerpc64/____longjmp_chk.S: Removed.
783         * sysdeps/unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: New file.
784         * sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S: New file.
785         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Move CHECK_SP earlier.
786         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
788 2009-08-20  Roland McGrath  <roland@redhat.com>
790         * sysdeps/generic/elf/backtracesyms.c (__backtrace_symbols):
791         Use l_addr instead of l_map_start (dli_fbase).
792         Print "FILE([+-]OFFSET) [ADDRESS]" with the file-relative
793         address when there is no proximate symbol.
794         * sysdeps/generic/elf/backtracesymsfd.c (__backtrace_symbols_fd):
795         Likewise.
797 2009-08-16  Ulrich Drepper  <drepper@redhat.com>
799         * scripts/gen-as-const.awk: Fix test for 64-bit platform.
801 2009-08-14  Ulrich Drepper  <drepper@redhat.com>
803         * test-skeleton.c (signal_handler): Renamed from timeout_handler.
804         Also handle SIGINT.  In that case only do the cleanup and then
805         re-raise the signal.
806         (main): Install handler for SIGINT.
808 2009-08-10  SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
810         * stdlib/longlong.h [__sh__] (udiv_qrnnd, sub_ddmmss): Add "t" to
811         clobber list.
813 2009-08-01  H.J. Lu  <hongjiu.lu@intel.com>
815         * elf/Makefile (distribute): Add tst-audit6.c tst-auditmod6a.c
816         tst-auditmod6b.c tst-auditmod6c.c tst-audit7.c tst-auditmod7a.c
817         tst-auditmod7b.c.
818         (tests): Add tst-audit6 tst-audit7.
819         (modules-names): Add st-auditmod6a tst-auditmod6b tst-auditmod6c
820         tst-auditmod7a tst-auditmod7b.
821         ($(objpfx)tst-audit6): New.
822         ($(objpfx)tst-audit6.out): Likewise.
823         ($(objpfx)tst-audit7): Likewise.
824         ($(objpfx)tst-audit7.out): Likewise.
825         (tst-audit6-ENV): Likewise.
826         (tst-audit7-ENV): Likewise.
827         (CFLAGS-tst-auditmod6b.c): Likewise.
828         (CFLAGS-tst-auditmod6c.c): Likewise.
829         (CFLAGS-tst-auditmod7b.c): Likewise.
830         * elf/tst-audit6.c: New file.
831         * elf/tst-audit7.c: New file.
832         * elf/tst-auditmod6a.c: New file.
833         * elf/tst-auditmod6b.c: New file.
834         * elf/tst-auditmod6c.c: New file.
835         * elf/tst-auditmod7a.c: New file.
836         * elf/tst-auditmod7b.c: New file.
837         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Move
838         saving and restoring SSE/AVX registers to ...
839         * sysdeps/x86_64/dl-trampoline.h: This.  New file.
841 2009-08-07  H.J. Lu  <hongjiu.lu@intel.com>
843         * sysdeps/i386/i686/multiarch/strcspn.S (STRCSPN): Use PIC
844         only if SHARED is defined.
845         * sysdeps/i386/i686/multiarch/strspn.S (strspn): Likewise.
847 2009-08-03  Jim Meyering  <meyering@redhat.com>
849         * sysdeps/i386/configure.in: Use AC_HEADER_CHECK.
851 2009-08-08  Ulrich Drepper  <drepper@redhat.com>
853         * sysdeps/x86_64/multiarch/strlen.S: Move SSE4.2 version into the same
854         section as the other functions for this architecture.
855         * sysdeps/x86_64/multiarch/rawmemchr.S: Likewise.
857 2009-08-07  Ulrich Drepper  <drepper@redhat.com>
859         * sysdeps/x86_64/strcmp.S: Add support to compile with
860         USE_SSSE3.  In this case palignr is used.
861         * sysdeps/x86_64/multiarch/strcmp.S (strcmp): If SSE4.2 is not
862         available but SSSE3 is, pick __str{,n}cmp_ssse3.
863         * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
864         Add strcmp-ssse3 and strncmp-ssse3.
865         * sysdeps/x86_64/multiarch/strcmp-ssse3.S: New file.
866         * sysdeps/x86_64/multiarch/strncmp-ssse3.S: New file.
868         * sysdeps/x86_64/multiarch/strcspn-c.c (STRCSPN_SSE42): Avoid
869         warning through fake initialization.
871 2009-08-07  H.J. Lu  <hongjiu.lu@intel.com>
873         * sysdeps/i386/i686/multiarch/strlen.S (ENTRY): Add the missing "; \".
875 2009-08-07  Andreas Schwab  <schwab@redhat.com>
877         * elf/dl-lookup.c (do_lookup_x): Enter correct name into table of
878         unique symbols.
880 2009-08-05  H.J. Lu  <hongjiu.lu@intel.com>
882         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Properly use
883         EBX from EAX = 1.  Handle EAX = 11.
885 2009-08-07  Andreas Schwab  <schwab@redhat.com>
887         * Makefile (TAGS): Use separate sed -e expressions to avoid \
888         inside ''.
890 2009-08-03  H.J. Lu  <hongjiu.lu@intel.com>
892         * sysdeps/i386/i686/multiarch/strcspn.S: Add comments for no
893         hidden IFUNC functions.
894         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
896         * sysdeps/i386/i686/multiarch/strlen.S: New file.
898         * sysdeps/i386/i686/multiarch/Makefile [subdir=string]
899         (sysdep_routines): Add strcspn-c, strpbrk-c, strspn-c, strstr-c, and
900         strcasestr-c.
901         (CFLAGS-strcspn-c.c): Define.
902         (CFLAGS-strpbrk-c.c): Define.
903         (CFLAGS-strspn-c.c): Define.
904         (CFLAGS-strstr.c): Define.
905         (CFLAGS-strcasestr.c): Define.
906         * sysdeps/i386/i686/multiarch/strcspn-c.c: New file.
907         * sysdeps/i386/i686/multiarch/strcspn.S: New file.
908         * sysdeps/i386/i686/multiarch/strpbrk-c.c: New file.
909         * sysdeps/i386/i686/multiarch/strpbrk.S: New file.
910         * sysdeps/i386/i686/multiarch/strspn-c.c: New file.
911         * sysdeps/i386/i686/multiarch/strspn.S: New file.
912         * sysdeps/i386/i686/multiarch/strstr-c.c: New file.
913         * sysdeps/i386/i686/multiarch/strstr.c: New file.
914         * sysdeps/i386/i686/multiarch/strcasestr-c.c: New file.
915         * sysdeps/i386/i686/multiarch/strcasestr.c: New file.
916         * sysdeps/x86_64/multiarch/strcspn-c.c (STRCSPN_SSE42): Use
917         -16L instead of 0xfffffffffffffff0L.
918         * sysdeps/x86_64/multiarch/strspn-c.c (__strspn_sse42): Likewise.
920 2009-08-02  Ulrich Drepper  <drepper@redhat.com>
922         * sysdeps/i386/configure.in: Add test for <cpuid.h>.
924 2009-07-31  Ulrich Drepper  <drepper@redhat.com>
926         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S (longjmp_msg): Yet
927         another rewrite.  Much smaller and faster.
928         * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S: Likewise.
930         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S (longjmp_msg): Get
931         ss_flags from the correct location.
933 2009-07-31  H.J. Lu  <hongjiu.lu@intel.com>
935         * sysdeps/i386/i686/Makefile (sysdep_routines): Add cacheinfo.
936         * sysdeps/i386/i686/cacheinfo.c: New file.
937         * sysdeps/i386/i686/multiarch/Makefile: New file.
938         * sysdeps/i386/i686/multiarch/ifunc-defines.sym: New file.
939         * sysdeps/i386/i686/multiarch/init-arch.c: New file.
940         * sysdeps/i386/i686/multiarch/init-arch.h: New file.
941         * sysdeps/i386/i686/multiarch/sched_cpucount.c: New file.
942         * sysdeps/unix/sysv/linux/i386/i686/sysconf.c: New file.
943         * sysdeps/x86_64/cacheinfo.c: Include <cpuid.h>.
944         (__cpuid_count): New. Provide the default.
945         (__x86_64_prefetchw): Define only if DISABLE_PREFETCHW is not defined.
946         (__x86_64_preferred_memory_instruction): Define only if
947         DISABLE_PREFERRED_MEMORY_INSTRUCTION is not defined.
948         (intel_check_word): Use __cpuid.
949         (handle_intel): Likewise.
950         (handle_amd): Likewise.
951         (__cache_sysconf): Likewise.
952         (init_cacheinfo): Updated.  Use __cpuid and __cpuid_count.
953         (__cache_sysconf): Likewise.
954         (init_cacheinfo): Updated.  Use __cpuid and __cpuid_count.
955         * sysdeps/x86_64/multiarch/init-arch.c: Include <cpuid.h>.
956         (get_common_indeces): Use __cpuid.
957         (__init_cpu_features): Likewise.  Disable SSSE3 on Atom only
958         if ENABLE_SSSE3_ON_ATOM is not defined.
959         * sysdeps/x86_64/multiarch/init-arch.h (HAS_SSE2): Define.
960         * sysdeps/x86_64/multiarch/sched_cpucount.c (POPCNT): Use
961         popcnt instead of popcntq.
963 2009-07-31  Jakub Jelinek  <jakub@redhat.com>
965         * malloc/Makefile (CFLAGS-obstack.c): Add $(uses-callbacks).
967 2009-07-30  Ulrich Drepper  <drepper@redhat.com>
969         * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S: New file.
970         * sysdeps/i386/____longjmp_chk.S: Remove all code.  This is now a file
971         which always causes a compile error.
973         * sysdeps/i386/__longjmp.S: Remove bound-checking pointer support.
975         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: New file.  Content
976         comes from...
977         * sysdeps/x86_64/____longjmp_chk.S: ...here.  This is now a file
978         which always causes a compile error.
980         * debug/Makefile (tests): Add tst-longjmp_chk2.
981         * debug/tst-longjmp_chk2.c: New file.
983         * sysdeps/x86_64/__longjmp.S: Remove CHECK_RSP handling.  Fix CFI.
984         Remove incorrect use of BP_SYM.
985         * sysdeps/x86_64/____longjmp_chk.S: Rewrite.  Complete implementation
986         here now since it is more complex than just a simple check.
988         * sysdeps/ia64/backtrace.c (backtrace_helper): Stop backtrace when
989         we make no more progress.
991 2009-07-29  Ulrich Drepper  <drepper@redhat.com>
993         * math/s_fma.c: Don't define alias if __fma is a macro.
994         * math/s_fmaf.c: Likewise.
995         * sysdeps/x86_64/multiarch/s_fma.c: New file.
996         * sysdeps/x86_64/multiarch/s_fmaf.c: New file.
997         Partially based on a patch by H.J. Lu <hongjiu.lu@intel.com>.
999         * sysdeps/x86_64/multiarch/init-arch.h (__get_cpu_features): Declare.
1000         (HAS_POPCOUNT, HAS_SSE4_2): Add variants which work outside libc.
1001         New macro HAS_FMA.
1002         * sysdeps/x86_64/multiarch/init-arch.c (__get_cpu_features): New
1003         function.
1004         * include/libc-symbols.h (libm_ifunc): Define.
1005         * sysdeps/x86_64/multiarch/Versions: New file.
1007         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Improve CFI.
1009 2009-07-28  H.J. Lu  <hongjiu.lu@intel.com>
1011         * sysdeps/x86_64/dl-trampoline.S: Properly restore AVX registers.
1013 2009-07-29  Ulrich Drepper  <drepper@redhat.com>
1015         * elf/dl-runtime.c (_dl_fixup): Indicate before _dl_lookup_symbol_x
1016         call that registers used in calling conventions need to be preserved.
1017         * elf/dl-lookup.c (do_lookup_x): Use RTLD_*_FOREIGN_CALL macros
1018         to preserve register content if necessary.
1019         * sysdeps/x86_64/dl-trampoline.S (_dl_x86_64_save_sse): New function.
1020         (_dl_x86_64_restore_sse): New function.
1021         * sysdeps/x86_64/tst-xmmymm.sh: There is now one more function that
1022         is allowed to modify xmm/ymm registers.
1024         * stdio-common/scanf15.c: Undefine _LIBC.  We want to test from an
1025         application's perspective.
1026         * stdio-common/scanf17.c: Likewise.
1028 2009-07-28  Ulrich Drepper  <drepper@redhat.com>
1030         * csu/libc-tls.c (__libc_setup_tls) [TLS_TCB_AT_TP]: Don't add TCB
1031         size to memsz.
1032         (init_static_tls) [TLS_TCB_AT_TP]: Add it to GL(dl_tls_static_size)
1033         here.
1034         * elf/dl-reloc.c (_dl_try_allocate_static_tls): Compute freebytes in
1035         two steps to catch bugs.
1037 2009-07-27  Ulrich Drepper  <drepper@redhat.com>
1039         * sysdeps/x86_64/tst-xmmymm.sh: Refine testing.  The script now
1040         determines which files are used in runtime lookups and only checks
1041         those for SSE use.
1042         * sysdeps/x86_64/rtld-memchr.c: Removed.  Not needed with refined
1043         testing.
1044         * sysdeps/x86_64/rtld-rawmemchr.c: Removed.
1045         * sysdeps/x86_64/multiarch/rtld-rawmemchr.c: Removed
1046         * sysdeps/x86_64/Makefile: Emit warning that tst-xmmymm.sh might
1047         take a while.
1049         * elf/dl-open.c: Move _dl_scope_free to...
1050         * elf/dl-scope.c: ...here.  New file.
1051         * elf/Makefile (dl-routines): Add scope.
1053         * resolv/resolv.h (RES_USE_DNSSEC): Define.
1054         * resolv/res_debug.c (p_option): Handle RES_USE_EDNS0 and
1055         RES_USE_DNSSEC.
1056         * resolv/res_mkquery.c (__res_nopt): Set flags for RES_USE_DNSSEC.
1057         * resolv/res_query.c (__libc_res_nquery): Handle RES_USE_DNSSEC in
1058         all the places we handled RES_USE_EDNS0 only before.
1059         Patch by Adam Tkac <atkac@redhat.com>.
1061 2009-07-27  Jakub Jelinek  <jakub@redhat.com>
1063         * elf/dl-lookup.c (do_lookup_x): Fix check for table more than
1064         3/4 full.  Pass size + 1 rather than size to _dl_higher_prime_number.
1065         Update size when reallocating.
1067 2009-07-26  Ulrich Drepper  <drepper@redhat.com>
1069         * sysdeps/x86_64/tst-xmmymm.sh: New file.  Check whether any of the
1070         functions used in ld.so modify xmm/ymm registers.
1071         * sysdeps/x86_64/Makefile:  Hook new test up.
1072         * sysdeps/x86_64/rtld-memchr.c: New file.
1073         * sysdeps/x86_64/rtld-memcmp.c: New file.
1074         * sysdeps/x86_64/rtld-rawmemchr.c: New file.
1075         * sysdeps/x86_64/rtld-strchr.S: New file.
1076         * sysdeps/x86_64/rtld-strlen.S: New file.
1077         * sysdeps/x86_64/multiarch/rtld-rawmemchr.c: New file.
1078         * sysdeps/x86_64/multiarch/rtld-strlen.S: New file.
1080 2009-07-26  H.J. Lu  <hongjiu.lu@intel.com>
1082         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Remove
1083         strncmp-c.
1084         * sysdeps/x86_64/multiarch/strcmp.S (aftertail): Removed.
1085         (exit): Likewise.
1086         (Byte1): Likewise.
1087         (Byte2): Likewise.
1088         (Byte3): Likewise.
1089         (Byte4): Likewise.
1090         (Byte5): Likewise.
1091         (Byte6): Likewise.
1092         (next_8_bytes): Likewise.
1093         (Byte0): Remove commented out codes.
1094         (unaligned_table): Align jump table at 8 bytes.
1095         Add _sse4_2 to all labels.  Always include "../strcmp.S".
1096         * sysdeps/x86_64/multiarch/strncmp-c.c: Removed.
1097         * sysdeps/x86_64/strcmp.S: Add SSE2 support.
1098         * sysdeps/x86_64/strncmp.S: New file.
1100 2009-07-26  Ulrich Drepper  <drepper@redhat.com>
1102         [BZ #10422]
1103         * sysdeps/unix/sysv/linux/eventfd.c: Add compatibility for old
1104         kernels, dropped when eventfd2 support was added.
1105         * sysdeps/unix/sysv/linux/signalfd.c: Add compatibility for old
1106         kernels, dropped when signalfd4 support was added.
1107         * sysdeps/unix/sysv/linux/kernel-features.h: More CLOEXEC syscalls
1108         added, name them.
1110         [BZ #10452]
1111         * resolv/res_send.c (send_dg): Pass full SERVFAIL, NOTIMP, REFUSED
1112         replies up.
1114         * elf/elf.h: Define NT_GNU_GOLD_VERSION.
1116 2009-07-25  Ulrich Drepper  <drepper@redhat.com>
1118         * sysdeps/x86_64/multiarch/strcmp.S: Some more optimizations for
1119         modern processor versions.  Patch by H.J. Lu <hongjiu.lu@intel.com>.
1121         [BZ #10448]
1122         * sysdeps/posix/getaddrinfo.c (gaih_inet): If NSS module contains no
1123         callback we must touch the status to avoid using stale value.
1125         * sysdeps/x86_64/multiarch/strcmp.S: Exclude unused code from being
1126         compiled in.
1128 2009-07-24  Ulrich Drepper  <drepper@redhat.com>
1130         * sysdeps/unix/sysv/linux/configure.in: Don't automatically include
1131         /lib/modules/* headers anymore.  We have sane headers in the standard
1132         place now.
1134 2009-06-16  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
1136         * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): "hpage",
1137         "etf3enh" and "highgprs" added.
1138         (_dl_s390_platforms): "z10" added.
1139         * sysdeps/s390/dl-procinfo.h (_DL_HWCAP_COUNT, _DL_PLATFORMS_COUNT):
1140         Increased for the new entries.
1141         (HWCAP enum): HWCAP_S390_HPAGE, HWCAP_S390_ETF3EH and
1142         HWCAP_S390_HIGH_GPRS added.
1144         * sysdeps/s390/s390-64/Makefile: Adjusted to build the new modules.
1145         * sysdeps/s390/s390-64/iso-8859-1_cp037_z900.c: New file.
1146         * sysdeps/s390/s390-64/utf16-utf32-z9.c: New file.
1147         * sysdeps/s390/s390-64/utf8-utf16-z9.c: New file.
1148         * sysdeps/s390/s390-64/utf8-utf32-z9.c: New file.
1150 2009-07-23  Ulrich Drepper  <drepper@redhat.com>
1152         * sysdeps/x86_64/cacheinfo.c [USE_MULTIARCH]: Rearrange code to
1153         avoid additional cpuid instructions.  Most of the information is
1154         stored somewhere.
1156         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Add more
1157         cache descriptors.
1158         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Likewise.
1160         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Reset
1161         SSSE3 bit for Atoms.
1162         * sysdeps/x86_64/multiarch/strcpy.S: New need to perform Atom test
1163         here anymore.
1165         * posix/tst-rfc3484.c (do_test): Initialize entire sockaddr_in
1166         structure before copying it to avoid warning.
1167         * posix/tst-rfc3484-2.c (do_test): Likewise.
1168         * posix/tst-rfc3484-3.c (do_test): Likewise.
1170         [BZ #10416]
1171         * include/unistd.h: Make header file suitable for C++ test cases.
1172         Patch by Duncan Simpson <dps@simpson.demon.co.uk>.
1174         * sysdeps/unix/sysv/linux/i386/makecontext.S: Ensure we preserve the
1175         stack alignment in the exit code.
1177         * elf/dl-lookup.c (dl_lookup_x): The hashval for unique symbol can
1178         potentially be zero.
1180         * elf/tst-unique1.c: Extend test to check for unloading DSO with
1181         unique symbol definition.
1182         Patch by Jakub Jelinek.
1183         * elf/dl-lookup.c (do_lookup_x): When entering a new unique symbol,
1184         make sure the object with the definition cannot be unloaded.  Adjust
1185         a few types.
1186         * sysdeps/generic/ldsodefs.h (struct rtld_global): The map element in
1187         the unique symbol hash table should not be const.
1189 2009-07-21  Ulrich Drepper  <drepper@redhat.com>
1191         * sysdeps/x86_64/multiarch/strstr.c: Minor cleanups.  Remove
1192         unnecesary variables.  Comment fixes.
1194 2009-07-20  Ulrich Drepper  <drepper@redhat.com>
1196         * sysdeps/x86_64/multiarch/strstr.c [USE_AS_STRCASESTR] (STRSTR_SSE42):
1197         Use NONASCII_CASE information provided by the locale to determine
1198         whether optimized string load function can be used.  Minor cleanups.
1200 2009-07-20  H.J. Lu  <hongjiu.lu@intel.com>
1202         * string/strcasestr.c (STRCASESTR): New macro.
1203         (__strcasestr): Renamed to ..
1204         (STRCASESTR): ...this.
1205         * string/strstr.c (STRSTR): New macro.
1206         (strstr): Renamed to ..
1207         (STRSTR): ...this.
1208         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
1209         strstr-c strcasestr-c
1210         (CFLAGS-strstr.c): New.
1211         (CFLAGS-strcasestr.c): Likewise.
1212         * sysdeps/x86_64/multiarch/strcasestr-c.c: New file.
1213         * sysdeps/x86_64/multiarch/strcasestr.c: New file.
1214         * sysdeps/x86_64/multiarch/strstr-c.c: New file.
1215         * sysdeps/x86_64/multiarch/strstr.c: New file.
1217 2009-07-20  Ulrich Drepper  <drepper@redhat.com>
1219         * locale/localeinfo.h (LIMAGIC): Update value for LC_CTYPE.
1220         * locale/langinfo.h: Define _NL_CTYPE_NONASCII_CASE.
1221         * locale/C-ctype.c (_nl_C_LC_CTYPE): Add initializer for
1222         _NL_CTYPE_NONASCII_CASE.
1223         * locale/programs/ld-ctype.c (locale_ctype_t): Add nonascii_case
1224         field.
1225         (ctype_finish): Check whether there are any 8-bit characters outside
1226         the range ASCII has or whether the mapping isn't the same as for
1227         ASCII (±0x20).  Set nonascii_case appropriately.
1228         (ctype_output): Add output handler for nonascii_case.
1230 2009-07-17  Ulrich Drepper  <drepper@redhat.com>
1232         * sysdeps/generic/sysdep.h: Define cfi_personality, cfi_lsda,
1233         CFI_PERSONALITY, CFI_LSDA, and DW_EH_PE_* constants.
1235 2009-07-16  Ulrich Drepper  <drepper@redhat.com>
1237         [BZ #10360]
1238         * resolv/res-mkquery.c (__res_nopt): If anslen is > 0xffff store
1239         0xffff in the EDNS0 record.
1241 2009-07-16  Ulrich Drepper  <drepper@redhat.com>
1243         * nscd/cache.c (cache_add): Use atomic_compare_and_exchange_bool_rel
1244         instead of atomic_compare_and_exchange_bool_acq to ensure pointer
1245         is written before the list head update.
1246         Patch by Andreas Schwab <aschwab@redhat.com>.
1248 2009-07-16  Ulrich Drepper  <drepper@redhat.com>
1249             Jakub Jelinek  <jakub@redhat.com>
1251         * malloc/malloc.c [ATOMIC_FASTBINS] (_int_free): Make check for
1252         corruption thread-safe.
1254 2009-07-13  Jakub Jelinek  <jakub@redhat.com>
1256         * include/atomic.h (catomic_compare_and_exchange_val_rel): If arch
1257         overrides atomic_compare_and_exchange_val_rel, define to
1258         atomic_compare_and_exchange_val_rel by default, otherwise default
1259         to catomic_compare_and_exchange_val_acq.
1260         (catomic_compare_and_exchange_bool_rel): If arch overrides
1261         atomic_compare_and_exchange_bool_rel, define to
1262         atomic_compare_and_exchange_bool_rel by default.
1263         * malloc/malloc.c (_int_free): Revert 2009-07-02 change.
1264         Use catomic_compare_and_exchange_val_rel instead of
1265         catomic_compare_and_exchange_val_acq.
1267 2009-07-16  Ulrich Drepper  <drepper@redhat.com>
1269         * sysdeps/generic/ldsodefs.h: Add prototype for
1270         _dl_higher_prime_number.
1271         * elf/dl-misc.c (_dl_higher_prime_number): Mark with internal_function.
1273         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Optimize
1274         restoring of ymm registers a bit.
1276 2009-07-15  H.J. Lu  <hongjiu.lu@intel.com>
1278         * sysdeps/x86_64/memcmp.S: New file.
1280 2009-07-15  Ulrich Drepper  <drepper@redhat.com>
1282         * sysdeps/x86-64/dl-trampoline.h: Remove after integrating code into...
1283         * sysdeps/x86-64/dl-trampoline.S: ...here.  Rewrite to avoid function
1284         pointers in writable memory.
1286 2009-07-07  H.J. Lu  <hongjiu.lu@intel.com>
1288         * config.h.in: Add HAVE_AVX_SUPPORT entry.
1289         * config.make.in: Add config-cflags-avx entry.
1290         * configure.in: Substitute libc_cv_cc_avx.
1291         * elf/Makefile: Add rules to build and run tst-audit4 and tst-audit5.
1292         * elf/tst-audit4.c: New file.
1293         * elf/tst-audit5.c: New file.
1294         * elf/tst-auditmod4a.c: New file.
1295         * elf/tst-auditmod4b.c: New file.
1296         * elf/tst-auditmod5a.c: New file.
1297         * elf/tst-auditmod5b.c: New file.
1298         * sysdeps/x86_64/Makefile (gen-as-const-headers): Add
1299         link-defines.sym.
1300         * sysdeps/x86_64/bits/link.h (La_x86_64_ymm): New.
1301         (La_x86_64_vector): Likewise.
1302         (La_x86_64_regs): Append lr_vector.
1303         (La_x86_64_retval): Append lr_vector0/lrv_vector1.
1304         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Move
1305         saving and restoring SSE registers to ...
1306         * sysdeps/x86_64/dl-trampoline.h: This.  New file.
1307         * sysdeps/x86_64/dl-trampoline.S: Include <config.h> and
1308         <link-defines.h>.
1309         (_dl_runtime_profile): Use LR_SIZE to allocate space for
1310         La_x86_64_regs.  Allocate extra space and jump to memory at
1311         save_and_restore_vector if HAVE_AVX_SUPPORT is defined.
1312         (save_and_restore_vector_sse): New.
1313         (save_and_restore_vector_avx): Likewise.
1314         (check_avx): Likewise.
1315         (save_and_restore_vector): Likewise.
1316         * sysdeps/x86_64/elf/configure.in: Set libc_cv_cc_avx and
1317         HAVE_AVX_SUPPORT.
1318         * sysdeps/x86_64/link-defines.sym: New file.
1320 2009-07-10  Ulrich Drepper  <drepper@redhat.com>
1322         * elf/do-lookup.h: Removed after folding content into...
1323         * elf/dl-lookup.c: ...here.
1325         * sysdeps/unix/sysv/linux/sys/epoll.h: Fix comment.
1327 2009-07-09  Ulrich Drepper  <drepper@redhat.com>
1329         * configure.in: Check for gnu_unique_symbol symbol type.
1330         * config.h.in: Add HAVE_ASM_UNIQUE_OBJECT entry.
1331         * elf/do-lookup.h (do_lookup_x): Take new parameter with link map of
1332         the undefined symbol.  Handle STB_GNU_UNIQUE binding of found symbol.
1333         * elf/dl-lookup.c (_dl_lookup_symbol_x): Adjust callers for do_lookup_x
1334         change.
1335         * sysdeps/generic/ldsodefs.h (struct rtld_global): Add definitions for
1336         unique symbol table.
1337         * elf/rtld.c (rtld_global): Initialize lock of unique symbol hash table
1338         for first namespace.
1339         * elf/dl-open.c (_dl_open): For new namespace, initialize lock for
1340         unique symbol hash table.
1341         * elf/Makefile: Add rules to build and run tst-unique1 and tst-unique2.
1342         * elf/tst-unique1.c: New file.
1343         * elf/tst-unique1mod1.c: New file.
1344         * elf/tst-unique1mod2.c: New file.
1345         * elf/tst-unique2.c: New file.
1346         * elf/tst-unique2mod1.c: New file.
1347         * elf/tst-unique2mod2.c: New file.
1349 2009-07-07  Ulrich Drepper  <drepper@redhat.com>
1351         * elf/elf.h (STB_GNU_UNIQUE): Define.
1353         * elf/dl-misc.c (_dl_higher_prime_number): New function.  Moved here
1354         from...
1355         * include/inline-hashtab.h: ...here.
1356         (htab_expand): Adjust for renamed function.  Correct memory handling.
1358 2009-07-06  Ulrich Drepper  <drepper@redhat.com>
1360         * elf/do-lookup.h (do_lookup_x): Optimize test for valid symbol types.
1362 2009-07-03  Andreas Schwab  <aschwab@redhat.com>
1364         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_ARCH_2_06): Fix value.
1365         (PPC_FEATURE_HAS_VSX): Likewise.
1367 2009-07-03  Ulrich Drepper  <drepper@redhat.com>
1369         * sysdeps/x86_64/multiarch/strcspn-c.c: Minor cleanups.
1370         * sysdeps/x86_64/multiarch/strspn-c.c: Likewise.
1372         * sysdeps/x86_64/multiarch/strcmp.S: Make sure functions are all
1373         aligned to 16 byte boundaries.
1374         * sysdeps/x86_64/multiarch/strcpy.S: Likewise.
1375         * sysdeps/x86_64/multiarch/strlen.S: Likewise.
1376         * sysdeps/x86_64/multiarch/rawmemchr.S: Likewise.
1378 2009-07-02  H.J. Lu  <hongjiu.lu@intel.com>
1380         * config.h.in (HAVE_SSE4_SUPPORT): New macro.
1381         * config.make.in (config-cflags-sse4): New variable.
1382         * configure.in: Substitute libc_cv_cc_sse4.
1383         * sysdeps/i386/configure.in: Set libc_cv_cc_sse4 and
1384         HAVE_SSE4_SUPPORT.
1385         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
1386         strcspn-c, strpbrk-c, strspn-c for string if gcc supports SSE4.
1387         * sysdeps/x86_64/multiarch/strcspn-c.c: New file.
1388         * sysdeps/x86_64/multiarch/strcspn.S: New file.
1389         * sysdeps/x86_64/multiarch/strpbrk-c.c: New file.
1390         * sysdeps/x86_64/multiarch/strpbrk.S: New file.
1391         * sysdeps/x86_64/multiarch/strspn-c.c: New file.
1392         * sysdeps/x86_64/multiarch/strspn.S: New file.
1394 2009-06-30  H.J. Lu  <hongjiu.lu@intel.com>
1396         * elf/Makefile (distribute): Remove tst-audit.sh.  Add
1397         tst-audit2.c, tst-audit3.c, tst-auditmod3a.c, tst-auditmod3b.c.
1398         (tests): Add tst-audit3 for x86_64.
1399         (modules-names): Add tst-auditmod3a, tst-auditmod3b.
1400         ($(objpfx)tst-audit3): Define.
1401         ($(objpfx)tst-audit3.out): Define.
1402         (tst-audit3-ENV): Define.
1403         * elf/tst-audit3.c: New file.
1404         * elf/tst-auditmod3a.c: New file.
1405         * elf/tst-auditmod3b.c: New file.
1406         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Save
1407         and restore xmm6.
1409         * string/stpncpy.c (STPNCPY): New.  Defined if not defined.
1410         (__stpncpy): Renamed to ...
1411         (STPNCPY): This.
1412         (stpncpy): Create alias only if STPNCPY is not defined.
1413         * string/strncpy.c (STRNCPY): New.  Defined to strncpy if not
1414         defined.
1415         (strncpy): Renamed to ...
1416         (STRNCPY): This.
1417         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
1418          stpncpy-c strncpy-c for string.
1419         * sysdeps/x86_64/multiarch/stpcpy.S: New file.
1420         * sysdeps/x86_64/multiarch/stpncpy-c.c: New file.
1421         * sysdeps/x86_64/multiarch/stpncpy.S: New file.
1422         * sysdeps/x86_64/multiarch/strcpy.S: New file.
1423         * sysdeps/x86_64/multiarch/strncpy-c.c: New file.
1424         * sysdeps/x86_64/multiarch/strncpy.S: New file.
1426 2009-07-02  Ulrich Drepper  <drepper@redhat.com>
1428         * malloc/malloc.c [ATOMIC_FASTBINS] (_int_free): Add full barrier when
1429         adding to fast bin list.
1431 2009-07-01  Ulrich Drepper  <drepper@redhat.com>
1433         * nis/nss_nis/nis-network.c (_nss_nis_getnetbyaddr_r): Don't use
1434         inet_makeaddr.  This worked only with class-based networks.
1435         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyaddr_r):
1436         Likewise.
1438         * nss/nss_files/files-network.c (netbyaddr): If type is AF_UNSPEC,
1439         recognize all types.
1440         * nss/getent.c (networks_keys): Pass AF_UNSPEC instead of AF_UNIX
1441         to getnetbyaddr.  Fix network parameter to getnetbyaddr.  It must
1442         be in host byte order.
1444 2009-06-26  H.J. Lu  <hongjiu.lu@intel.com>
1446         * sysdeps/x86_64/multiarch/ifunc-defines.sym (FAMILIY_OFFSET): Define.
1447         (MODEL_OFFSET): Define.
1448         * sysdeps/x86_64/multiarch/init-arch.h (cpu_features): Add
1449         family and model.
1450         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Break
1451         out common code into new function get_common_indeces. Determine
1452         extended family and model for Intel processors.
1454 2009-06-26  Ulrich Drepper  <drepper@redhat.com>
1456         * resolv/resolv.h: Define RES_SNGLKUPREOP.
1457         * resolv/res_init.c (res_setoptions): Recognize single-request-reopen
1458         option.
1459         * resolv/res_send.c (reopen): New function.  Broken out of...
1460         (send_dg): ... here.  Recognize RES_SNGLKUPREOP.  Implement second
1461         fallback mechanism.  If single-request fails switch to
1462         single-request-reopen mode which opens a new socket for the second
1463         request.
1465 2009-06-25  Andreas Schwab  <aschwab@redhat.com>
1467         * sysdeps/powerpc/powerpc32/____longjmp_chk.S (LOAD_ARG): Define.
1468         (CHECK_SP): Use it.
1470 2009-06-24  Andreas Schwab  <aschwab@redhat.com>
1472         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Fix cfa offset
1473         for saved registers.
1474         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
1475         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
1476         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
1478 2009-06-23  Andreas Schwab  <aschwab@redhat.com>
1480         * time/tzfile.c (__tzfile_read): Don't use an empty TZ string.
1482 2009-06-22  Ulrich Drepper  <drepper@redhat.com>
1484         * po/id.po: Update from translation team.
1486         * po/bg.po: Update from translation team.
1488 2009-06-22  H.J. Lu  <hongjiu.lu@intel.com>
1490         * string/strncmp.c (STRNCMP): New.  Defined to strncmp if not
1491         defined.
1492         (strncmp): Renamed to STRNCMP.
1493         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
1494         strncmp-c for string.
1495         * sysdeps/x86_64/multiarch/init-arch.h (HAS_SSE4_2): Define.
1496         * sysdeps/x86_64/multiarch/strcmp.S: New file.
1497         * sysdeps/x86_64/multiarch/strncmp.S: New file.
1498         * sysdeps/x86_64/multiarch/strncmp-c.c: New file.
1500 2009-06-19  H.J. Lu  <hongjiu.lu@intel.com>
1502         * elf/Makefile (distribute): Add ifuncmain1staticpie.c,
1503         ifuncmain5.c, ifuncmain5pic.c, ifuncmain5picstatic.c,
1504         ifuncmain5pie.c, ifuncmain5static.c, ifuncmain5staticpic.c,
1505         ifuncdep5.c, ifuncdep5pic.c, ifuncmod5.c, ifuncmain7.c,
1506         ifuncmain7pic.c, ifuncmain7picstatic.c, ifuncmain7pie.c, and
1507         ifuncmain7static.c.
1508         (tests-static): Add ifuncmain5static, ifuncmain5picstatic,
1509         ifuncmain7static, and ifuncmain7picstatic.
1510         (tests): Also depend on $(objpfx)ifuncmain1staticpie.out,
1511         $(objpfx)ifuncmain5pie.out, $(objpfx)ifuncmain6pie.out, and
1512         $(objpfx)ifuncmain7pie.out.
1513         (modules-names): Add ifuncmod5 ifuncmod6
1514         (ifuncmod5.so-no-z-defs): Define.
1515         (ifuncmod6.so-no-z-defs): Define.
1516         (CFLAGS-ifuncmain5pic.c): Define.
1517         (CFLAGS-ifuncmain5picstatic.c): Define.
1518         (CFLAGS-ifuncmain5staticpic.c): Define.
1519         (CFLAGS-ifuncdep5pic.c): Define.
1520         (CFLAGS-ifuncmain7pic.c): Define.
1521         (CFLAGS-ifuncmain7picstatic.c): Define.
1522         (CFLAGS-ifuncmain1staticpie.c): Define.
1523         (CFLAGS-ifuncmain5pie.c): Define.
1524         (CFLAGS-ifuncmain6pie.c): Define.
1525         (CFLAGS-ifuncmain7pie.c): Define.
1526         ($(objpfx)ifuncmain1staticpie.out): Define.
1527         ($(objpfx)ifuncmain1staticpie): Define.
1528         ($(objpfx)ifuncmain5pie.out): Define.
1529         ($(objpfx)ifuncmain5pie): Define.
1530         ($(objpfx)ifuncmain6pie.out): Define.
1531         ($(objpfx)ifuncmain6pie): Define.
1532         ($(objpfx)ifuncmain5): Define.
1533         ($(objpfx)ifuncmain5pic): Define.
1534         ($(objpfx)ifuncmain5static): Define.
1535         ($(objpfx)ifuncmain5staticpic): Define.
1536         ($(objpfx)ifuncmain5picstatic): Define.
1537         (generated): Add ifuncmain1staticpie, ifuncmain1staticpie.out,
1538         ifuncmain5pie, ifuncmain5pie.out, ifuncmain6pie, and
1539         ifuncmain6pie.out.
1540         * elf/b/elf/ifuncmain1staticpie.c: New file.
1541         * elf/ifuncdep5.c: New file.
1542         * elf/ifuncdep5pic.c: New file.
1543         * elf/ifuncmain5.c: New file.
1544         * elf/ifuncmain5pic.c: New file.
1545         * elf/ifuncmain5picstatic.c: New file.
1546         * elf/ifuncmain5pie.c: New file.
1547         * elf/ifuncmain5static.c: New file.
1548         * elf/ifuncmain5staticpic.c: New file.
1549         * elf/ifuncmain6pie.c: New file.
1550         * elf/ifuncmain7.c: New file.
1551         * elf/ifuncmain7pic.c: New file.
1552         * elf/ifuncmain7picstatic.c: New file.
1553         * elf/ifuncmain7pie.c: New file.
1554         * elf/ifuncmain7static.c: New file.
1555         * elf/ifuncmod5.c: New file.
1556         * elf/ifuncmod6.c: New file.
1558 2009-06-20  Ulrich Drepper  <drepper@redhat.com>
1560         [BZ #10085]
1561         * nis/nss_compat/compat-initgroups.c (nss_setgrent): New variable.
1562         (nss_endgrent): New variable.
1563         (struct ent_t): Add need_endgrent and skip_initgroups_dyn
1564         fields. Change type of files to bool and adjust all users.
1565         (init_nss_interface): Initialize nss_setgrent and nss_endgrent.
1566         (internal_endgrent): Call nss_endgrent if necessary.
1567         (add_group): New function.  Broken out of...
1568         (check_and_add_group): ...here.
1569         (getgrent_next_nss): Remove test that any callback is available.
1570         Use skip_initgroups_dyn to determine whether to use initgroups_dyn
1571         callback.  If there is no blacklist we can trust the results returned
1572         by the initgroups_dyn callback.  In case there is a callback and we
1573         find a group entry for the group ID but it doesn't contain the
1574         correct member, switch to the slow mode and use getgrent_r.
1575         (internal_getgrent_r): When we see a +: entry, determine whether
1576         there is any callback and which we can use the initgroups_dyn
1577         callback.
1579 2009-06-18  Ulrich Drepper  <drepper@redhat.com>
1581         * malloc/malloc.c (_int_malloc): Add some consistency checks.
1582         (_int_free): Likewise.
1584         * sysdeps/unix/sysv/linux/bits/socket.h: Define PF_IEEE802154 and
1585         AF_IEEE802154.
1586         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
1587         * sysdeps/unix/sysv/linux/net/if_arp.h: Define ARPHRD_IEEE802154
1588         and ARPHRD_IEEE802154_PHY.
1590         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Add missing definitions
1591         relative to generic Linux version.
1593 2009-06-17  H.J. Lu  <hongjiu.lu@intel.com>
1595         * elf/Makefile ($(objpfx)ifuncmain1pie): Use $(+link-pie).
1596         ($(objpfx)ifuncmain1vispie): Likewise.
1598 2009-06-16  Ulrich Drepper  <drepper@redhat.com>
1600         * login/Makefile: Build pt_chown as PIE.
1602 2009-06-15  Andreas Schwab  <aschwab@redhat.com>
1604         * debug/xtrace.sh (do_help): Don't treat bug reporting message as
1605         a format string.
1606         * elf/sln.c (usage): Likewise.
1607         * malloc/memusage.sh (do_help): Likewise.
1608         * nss/getent.c (more_help): Likewise.
1609         * posix/getconf.c (main): Likewise.
1610         * sunrpc/rpcinfo.c (usage): Likewise.
1611         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Likewise.
1613 2009-06-16  Ulrich Drepper  <drepper@redhat.com>
1615         * login/programs/pt_chown.c: Use libcap to drop privileges other than
1616         those needed.
1617         * login/Makefile: If necessary link pt_chown with -lcap.
1618         * sysdeps/generic/pty-private.h: Define FAIL_ENOMEM.
1619         * sysdeps/unix/grantpt.c: Handle FAIL_ENOMEM.
1621 2009-06-16  Jakub Jelinek  <jakub@redhat.com>
1623         * sysdeps/x86_64/memchr.S (memchr): Use unsigned instead of signed
1624         comparisons.
1625         * string/test-memchr.c (do_random_tests): Test very large lengths
1626         as well.
1628 2009-06-02  H.J. Lu  <hongjiu.lu@intel.com>
1630         * Makeconfig (+link-pie): Define.
1631         (+prectorS): Define.
1632         (+postctorS): Define.
1633         * elf/Makefile ($(objpfx)tst-pie1): Use $(+link-pie).
1634         * nscd/Makefile ($(objpfx)nscd): Likewise.
1636 2009-04-22  Ryan S. Arnold  <rsa@us.ibm.com>
1638         [BZ #10107]
1639         * sysdeps/powerpc/powerpc32/power6/memcpy.S (memcpy): Replace cmpldi
1640         with cmplwi.
1641         * sysdeps/powerpc/powerpc32/power6/memset.S (memset): Likewise.
1643 2009-06-16  Ulrich Drepper  <drepper@redhat.com>
1645         * sysdeps/unix/sysv/linux/grantpt.c: Remove file after folding changes
1646         into ...
1647         * sysdeps/unix/grantpt.c: ...here.
1649 2009-06-15  Ulrich Drepper  <drepper@redhat.com>
1651         * sysdeps/unix/sysv/linux/grantpt.c (grantpt): Only call chown and
1652         chmod if it is necessary.
1654         [BZ #10166]
1655         * sysdeps/unix/sysv/linux/grantpt.c: Remove shortcut which was used
1656         when the slave device is in devpts or devfs.
1658         [BZ #10183]
1659         * posix/tst-cpucount.c: Don't try more than CPU_SETSIZE bits.
1661         [BZ #10195]
1662         * inet/netinet/icmp6.h (struct nd_opt_home_agent_info): Change type
1663         of nd_opt_home_agent_info_preference to uint16_t.
1664         Patch by Arnaud Ebalard <arno@natisbad.org>.
1666         [BZ #10207]
1667         * nss/getent.c: Add support for printing gshadow data.
1669         [BZ #10203]
1670         * nis/nss_nis/nis-pwd.c (internal_nis_endpwent): Free all buffers,
1671         not just the currently used one and those which follow.
1672         Patch by Joe Landers <jlanders@vmware.com>.
1674         [BZ #10196]
1675         * libio/tst-fgetwc.c (do_test): Use de_DE.UTF-8 as locale name.
1676         * libio/Makefile: Run tst-fgetwc with necessary envvar.
1677         Patch by Bruce Dubbs <bdubbs@linuxfromscratch.org>.
1679         [BZ #10217]
1680         * stdlib/abort.c: Define variable __abort_msg.
1681         * stdlib/Versions: Export __abort_msg with GLIBC_PRIVATE version.
1682         * include/stdlib.h: Declare __abort_msg.
1683         * assert/assert-perr.c: Don't free buffer for message immediately.
1684         Store atomically in __abort_msg and free old buffer if necessary.
1685         * assert/assert.c: Likewise.
1686         * sysdeps/posix/libc_fatal.c: Allocate buffer for message, copy it,
1687         store pointer in __abort_msg, and possibly free old string.
1688         * sysdeps/unix/sysv/linux/libc_fatal.c: Likewise.
1690         * time/tzfile.c (__tzfile_read): Correct computation of tzspec_len.
1692         [BZ #10211]
1693         * time/tzfile.c (__tzfile_compute): If we use the envvar format still
1694         handle leap seconds if they are available.
1695         Patch by Akinori Hattori <hattya@gentoo.org>.
1697         * timezone/tzselect.ksh: Update from tzcode2009i.
1698         * timezone/zdump.c: Likewise.
1699         * timezone/zic.c: Likewise.
1701         * timezone/africa: Update from tzdata2009i.
1702         * timezone/antarctica: Likewise.
1703         * timezone/asia: Likewise.
1704         * timezone/australasia: Likewise.
1705         * timezone/backward: Likewise.
1706         * timezone/etcetera: Likewise.
1707         * timezone/europe: Likewise.
1708         * timezone/factory: Likewise.
1709         * timezone/iso3166.tab: Likewise.
1710         * timezone/leapseconds: Likewise.
1711         * timezone/northamerica: Likewise.
1712         * timezone/pacificnew: Likewise.
1713         * timezone/solar87: Likewise.
1714         * timezone/solar88: Likewise.
1715         * timezone/solar89: Likewise.
1716         * timezone/southamerica: Likewise.
1717         * timezone/systemv: Likewise.
1718         * timezone/yearistype: Likewise.
1719         * timezone/zone.tab: Likewise.
1721 2009-06-15  Jakub Jelinek  <jakub@redhat.com>
1723         * elf/dl-lookup.c (_dl_debug_bindings): When resolving to
1724         STT_GNU_IFUNC symbol or in 8 into type_class.
1726         * sysdeps/i386/dl-irel.h (elf_irel): Use Elf32_Addr type
1727         instead of Elf64_Addr.
1729 2009-06-14  Ulrich Drepper  <drepper@redhat.com>
1731         * po/sv.po: Update from translation team.
1733         [BZ #10229]
1734         * misc/sys/select.h (__NFDBITS): Expression should have type int.
1735         * sysdeps/x86_64/bits/select.h: Remove asm versions for __FD_SET,
1736         __FD_CLR, and __FD_ISSET.  gcc nowadays generates better code from
1737         the C version.
1739 2009-06-12  Ulrich Drepper  <drepper@redhat.com>
1741         * Versions.def: Add GLIBC_2.11 for libpthread.
1743 2009-06-11  Ulrich Drepper  <drepper@redhat.com>
1745         * resolv/res_send.c (send_dg): Remember we switched to
1746         single-request mode.
1748 2009-06-09  Ulrich Drepper  <drepper@redhat.com>
1750         * dlfcn/dlfcn.h: Remove comma at end of enum.
1751         Patch by J.H.M. Dassen <rdassen@redhat.com>.
1753         * libio/fileops.c (_IO_new_file_fopen): Don't prematurely stop
1754         parsing mode string.
1756 2009-06-05  Ulrich Drepper  <drepper@redhat.com>
1758         * sysdeps/x86_64/rawmemchr.S: Minor optimization.
1760         * sysdeps/x86_64/multiarch/rawmemchr.S: New file.
1762         * sysdeps/x86_64/multiarch/strlen.S: New file.
1763         * sysdeps/x86_64/multiarch/ifunc-defines.sym: New file.
1764         * sysdeps/x86_64/multiarch/Makefile: Add rule to build ifunc-defines.h.
1765         * sysdeps/x86_64/multiarch/init-arch.h: Name structure with register
1766         content.
1768         * csu/elf-init.c: Only compile in IFUNC functionality if USE_MULTIARCH
1769         is defined.
1771 2009-06-04  Ulrich Drepper  <drepper@redhat.com>
1773         * sysdeps/x86_64/strlen.S: Minor optimizations.
1775 2009-06-02  H.J. Lu  <hongjiu.lu@intel.com>
1777         * elf/Makefile (distribute): Add ifuncmain1.c, ifuncmain1pic.c,
1778         ifuncmain1vis.c, ifuncmain1vispic.c, ifuncmain1static.c,
1779         ifuncmain1staticpic.c, ifuncmain1picstatic.c, ifuncdep1.c,
1780         ifuncdep1pic.c, ifuncmod1.c, ifuncmain1pie.c, ifuncmain1vispie.c,
1781         ifuncmain2.c, ifuncmain2static.c, ifuncdep2.c,
1782         funcmain2pic.c, ifuncmain2picstatic.c, ifuncdep2pic.c,
1783         ifuncmain3.c, ifuncmod3.c,.
1784         ifuncmain4.c, ifuncmain4static.c, ifuncmain4picstatic.c.
1785         (tests-static): Add ifuncmain1static, ifuncmain1picstatic,
1786         ifuncmain2static, ifuncmain2picstatic, ifuncmain4static,
1787         ifuncmain4picstatic.
1788         (tests): Add ifuncmain1, ifuncmain1pic, ifuncmain1vis,
1789         ifuncmain1vispic, ifuncmain1staticpic, ifuncmain2, ifuncmain2pic,
1790         ifuncmain3, ifuncmain4.
1791         (tests): Depend on $(objpfx)ifuncmain1pie.out and
1792         $(objpfx)ifuncmain1vispie.out.
1793         (modules-names): Add ifuncmod1 ifuncmod3.
1794         (generated): Add ifuncmain1pie ifuncmain1pie.out
1795         ifuncmain1vispie ifuncmain1vispie.out.
1796         Define rules to build and run the tests.
1797         * elf/ifuncdep1.c: New file.
1798         * elf/ifuncdep1pic.c: New file.
1799         * elf/ifuncdep2.c: New file.
1800         * elf/ifuncdep2pic.c: New file.
1801         * elf/ifuncmain1.c: New file.
1802         * elf/ifuncmain1pic.c: New file.
1803         * elf/ifuncmain1picstatic.c: New file.
1804         * elf/ifuncmain1pie.c: New file.
1805         * elf/ifuncmain1static.c: New file.
1806         * elf/ifuncmain1staticpic.c: New file.
1807         * elf/ifuncmain1vis.c: New file..
1808         * elf/ifuncmain1vispic.c: New file..
1809         * elf/ifuncmain1vispie.c: New file.
1810         * elf/ifuncmain2.c: New file.
1811         * elf/ifuncmain2pic.c: New file.
1812         * elf/ifuncmain2picstatic.c: New file.
1813         * elf/ifuncmain2static.c: New file.
1814         * elf/ifuncmain3.c: New file.
1815         * elf/ifuncmain4.c: New file.
1816         * elf/ifuncmain4picstatic.c: New file.
1817         * elf/ifuncmain4static.c: New file.
1818         * elf/ifuncmod1.c: New file.
1819         * elf/ifuncmod3.c: New file.
1821 2009-06-03  Ulrich Drepper  <drepper@redhat.com>
1823         * elf/dl-sysdep.c (_dl_show_auxv): Terminate correct string.
1825 2009-06-02  Ulrich Drepper  <drepper@redhat.com>
1827         [BZ #10221]
1828         * posix/Makefile (routines): Add execvpe.
1829         * posix/Versions: Export execvpe for GLIBC_2.11.
1830         * posix/execvp.c: Now only a wrapper.  Move code to...
1831         * posix/execvpe.c: ...here.  New file.
1832         * posix/unistd.h: Declare execvpe.
1834 2009-06-01  Ulrich Drepper  <drepper@redhat.com>
1836         * sysdeps/i386/dl-machine.h (elf_machine_rel): Reorder conditions
1837         for STT_GNU_IFUNC handling for efficiency.
1838         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
1840         * sysdeps/i386/dl-irel.h (elf_irel): Use __libc_fatal instead of just
1841         _exit.
1842         * sysdeps/x86_64/dl-irel.h (elf_irela): Likewise.
1844 2009-05-31  Ulrich Drepper  <drepper@redhat.com>
1846         * sysdeps/x86_64/multiarch/sched_cpucount.c: Also use optimized code
1847         for !SHARED.
1849 2009-05-29  H.J. Lu  <hongjiu.lu@intel.com>
1851         * csu/elf-init.c: Include <link.h> and <dl-irel.h> if LIBC_NONSHARED
1852         is not defined.
1853         (__rela_iplt_start): New declaration.
1854         (__rela_iplt_end): Likewise.
1855         (__rel_iplt_start): Likewise.
1856         (__rel_iplt_end): Likewise.
1857         (__libc_csu_init): Process __rela_iplt_start and __rel_iplt_start.
1858         * elf/elf.h (R_386_IRELATIVE): New macro.
1859         (R_X86_64_IRELATIVE): New macro.
1860         (R_386_NUM): Updated.
1861         (R_X86_64_NUM): Likewise.
1862         * include/libc-symbols.h (libc_ifunc_hidden_def1): New macro.
1863         (libc_ifunc_hidden_def): New macro.
1864         * sysdeps/generic/dl-irel.h: New file.
1865         * sysdeps/i386/dl-irel.h: New file.
1866         * sysdeps/x86_64/dl-irel.h: New file.
1867         * sysdeps/i386/dl-machine.h (elf_machine_rel): Handle R_386_IRELATIVE.
1868         (elf_machine_rela): Check SHN_UNDEF for STT_GNU_IFUNC symbol.
1869         Handle R_386_IRELATIVE.
1870         (elf_machine_lazy_rel): Handle R_386_IRELATIVE.
1871         (elf_machine_lazy_rela): Likewise.
1872         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
1873         R_X86_64_IRELATIVE.
1874         (elf_machine_lazy_rel): Handle R_X86_64_IRELATIVE.
1876 2009-05-31  Ulrich Drepper  <drepper@redhat.com>
1878         * sysdeps/x86_64/multiarch/init-arch.h: Define COMMON_CPUID_INDEX_1
1879         instead of INTEL_CPUID_INDEX_1 and AMD_CPUID_INDEX_1.  So far there
1880         are no differences.  If an architecture has bits in CPUID index 1
1881         meaning different things the values for the COMMON_CPUID_INDEX_1
1882         index must not be set.
1883         (INTEL_HAS_POPCOUNT, AMD_HAS_POPCOUNT): Removed in favor of...
1884         (HAS_POPCOUNT): ...this.  New macro.
1885         * sysdeps/x86_64/multiarch/init-arch.c: Use COMMON_CPUID_INDEX_1
1886         instead of INTEL_CPUID_INDEX_1 and AMD_CPUID_INDEX_1.  Unify code
1887         to set the value for Intel and AMD architectures.
1888         * sysdeps/x86_64/cacheinfo.c: Use COMMON_CPUID_INDEX_1 instead of
1889         INTEL_CPUID_INDEX_1.
1890         * sysdeps/x86_64/multiarch/sched_cpucount.c: Adjust for HAS_POPCOUNT
1891         change.
1893 2009-05-30  Andreas Schwab  <schwab@linux-m68k.org>
1895         * configure.in: Move AC_CANONICAL_HOST before first use of $host
1896         and $build.
1898 2009-05-29  Jakub Jelinek  <jakub@redhat.com>
1900         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Include <errno.h>.
1901         (__expm1l): Set errno to ERANGE on overflow.
1902         * sysdeps/ieee754/ldbl-128/s_tanl.c: Include <errno.h>.
1903         (__tanl): Set errno to EDOM for Â±Inf.
1904         * sysdeps/ieee754/ldbl-128/s_cosl.c: Include <errno.h>.
1905         (__cosl): Set errno to EDOM for Â±Inf.
1906         * sysdeps/ieee754/ldbl-128/s_sinl.c: Include <errno.h>.
1907         (__sinl): Set errno to EDOM for Â±Inf.
1909         * sysdeps/s390/s390-32/__longjmp.c (__longjmp): If CHECK_SP is
1910         defined, use it.
1911         * sysdeps/s390/s390-64/__longjmp.c (__longjmp): Likewise.
1912         * sysdeps/s390/s390-32/____longjmp_chk.c: New file.
1913         * sysdeps/s390/s390-64/____longjmp_chk.c: New file.
1915 2009-05-29  Ulrich Drepper  <drepper@redhat.com>
1917         * sysdeps/x86_64/cacheinfo.c: Compact intel_02_known array.  Adjust
1918         code accessing it.
1919         * sysdeps/unix/sysv/linux/i386/sysconf.c: Likewise.
1921 2009-05-22  Andreas Schwab  <schwab@linux-m68k.org>
1923         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Set errno for Â±Inf.
1924         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
1925         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
1926         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c: Set errno for overflow.
1928         * sysdeps/powerpc/powerpc32/____longjmp_chk.S: New file.
1929         * sysdeps/powerpc/powerpc64/____longjmp_chk.S: New file.
1930         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Use CHECK_SP if
1931         defined.
1932         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
1933         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Likewise.
1935 2009-05-22  Jakub Jelinek  <jakub@redhat.com>
1937         * sysdeps/unix/sysv/linux/accept4.c: Include kernel-features.h.
1938         (accept4): If __NR_accept4 is not defined, but __NR_socketcall
1939         is, either do nothing at all if __ASSUME_ACCEPT4, or
1940         call __internal_accept4 and handle EINVAL -> ENOSYS translation.
1941         * sysdeps/unix/sysv/linux/internal_accept4.S: New file.
1942         * sysdeps/unix/sysv/linux/i386/accept4.S (SOCKOP_accept4): Don't
1943         define.
1944         * sysdeps/unix/sysv/linux/i386/internal_accept4.S: New file.
1945         * sysdeps/unix/sysv/linux/Makefile (sysdep-routines): Add
1946         internal_accept4 in socket directory.
1948 2009-05-20  H.J. Lu  <hongjiu.lu@intel.com>
1950         * sysdeps/ia64/configure.in: New file.
1952 2009-05-21  H.J. Lu  <hongjiu.lu@intel.com>
1954         [BZ #10162]
1955         * sysdeps/ia64/memchr.S: Use speculative load.
1957         * sysdeps/unix/sysv/linux/ia64/____longjmp_chk.S: New file.
1958         * sysdeps/unix/sysv/linux/ia64/__longjmp.S: If CHECK_RSP is defined,
1959         use it.
1961         * sysdeps/i386/__longjmp.S: Add .text.
1962         * sysdeps/x86_64/__longjmp.S: Likewise.
1964 2009-05-21  Ulrich Drepper  <drepper@redhat.com>
1966         * sysdeps/unix/sysv/linux/kernel-features.h: Don't define
1967         __ASSUME_ACCEPT4 for IA-64.
1969 2009-05-21  Jakub Jelinek  <jakub@redhat.com>
1971         * sysdeps/unix/sysv/linux/accept4.c (__NR_accept4): Don't define.
1973         * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_paccept): Remove.
1974         (SOCKOP_accept4): Define.
1976 2009-05-20  Ulrich Drepper  <drepper@redhat.com>
1978         Sun approved the change of the license.
1979         * sunrpc/auth_des.c: Replace license text.
1980         * sunrpc/auth_none.c: Likewise.
1981         * sunrpc/auth_unix.c: Likewise.
1982         * sunrpc/authdes_prot.c: Likewise.
1983         * sunrpc/authuxprot.c: Likewise.
1984         * sunrpc/bindrsvprt.c: Likewise.
1985         * sunrpc/clnt_gen.c: Likewise.
1986         * sunrpc/clnt_perr.c: Likewise.
1987         * sunrpc/clnt_raw.c: Likewise.
1988         * sunrpc/clnt_simp.c: Likewise.
1989         * sunrpc/clnt_tcp.c: Likewise.
1990         * sunrpc/clnt_udp.c: Likewise.
1991         * sunrpc/clnt_unix.c: Likewise.
1992         * sunrpc/des_crypt.c: Likewise.
1993         * sunrpc/des_soft.c: Likewise.
1994         * sunrpc/get_myaddr.c: Likewise.
1995         * sunrpc/getrpcport.c: Likewise.
1996         * sunrpc/key_call.c: Likewise.
1997         * sunrpc/key_prot.c: Likewise.
1998         * sunrpc/openchild.c: Likewise.
1999         * sunrpc/pm_getmaps.c: Likewise.
2000         * sunrpc/pm_getport.c: Likewise.
2001         * sunrpc/pmap_clnt.c: Likewise.
2002         * sunrpc/pmap_prot.c: Likewise.
2003         * sunrpc/pmap_prot2.c: Likewise.
2004         * sunrpc/pmap_rmt.c: Likewise.
2005         * sunrpc/rpc/auth.h: Likewise.
2006         * sunrpc/rpc/auth_unix.h: Likewise.
2007         * sunrpc/rpc/clnt.h: Likewise.
2008         * sunrpc/rpc/des_crypt.h: Likewise.
2009         * sunrpc/rpc/key_prot.h: Likewise.
2010         * sunrpc/rpc/netdb.h: Likewise.
2011         * sunrpc/rpc/pmap_clnt.h: Likewise.
2012         * sunrpc/rpc/pmap_prot.h: Likewise.
2013         * sunrpc/rpc/pmap_rmt.h: Likewise.
2014         * sunrpc/rpc/rpc.h: Likewise.
2015         * sunrpc/rpc/rpc_des.h: Likewise.
2016         * sunrpc/rpc/rpc_msg.h: Likewise.
2017         * sunrpc/rpc/svc.h: Likewise.
2018         * sunrpc/rpc/svc_auth.h: Likewise.
2019         * sunrpc/rpc/types.h: Likewise.
2020         * sunrpc/rpc/xdr.h: Likewise.
2021         * sunrpc/rpc_clntout.c: Likewise.
2022         * sunrpc/rpc_cmsg.c: Likewise.
2023         * sunrpc/rpc_common.c: Likewise.
2024         * sunrpc/rpc_cout.c: Likewise.
2025         * sunrpc/rpc_dtable.c: Likewise.
2026         * sunrpc/rpc_hout.c: Likewise.
2027         * sunrpc/rpc_main.c: Likewise.
2028         * sunrpc/rpc_parse.c: Likewise.
2029         * sunrpc/rpc_parse.h: Likewise.
2030         * sunrpc/rpc_prot.c: Likewise.
2031         * sunrpc/rpc_sample.c: Likewise.
2032         * sunrpc/rpc_scan.c: Likewise.
2033         * sunrpc/rpc_scan.h: Likewise.
2034         * sunrpc/rpc_svcout.c: Likewise.
2035         * sunrpc/rpc_tblout.c: Likewise.
2036         * sunrpc/rpc_util.c: Likewise.
2037         * sunrpc/rpc_util.h: Likewise.
2038         * sunrpc/rpcinfo.c: Likewise.
2039         * sunrpc/rpcsvc/bootparam_prot.x: Likewise.
2040         * sunrpc/rpcsvc/key_prot.x: Likewise.
2041         * sunrpc/rpcsvc/klm_prot.x: Likewise.
2042         * sunrpc/rpcsvc/mount.x: Likewise.
2043         * sunrpc/rpcsvc/nfs_prot.x: Likewise.
2044         * sunrpc/rpcsvc/rex.x: Likewise.
2045         * sunrpc/rpcsvc/rstat.x: Likewise.
2046         * sunrpc/rpcsvc/rusers.x: Likewise.
2047         * sunrpc/rpcsvc/sm_inter.x: Likewise.
2048         * sunrpc/rpcsvc/spray.x: Likewise.
2049         * sunrpc/rpcsvc/yppasswd.x: Likewise.
2050         * sunrpc/rtime.c: Likewise.
2051         * sunrpc/svc.c: Likewise.
2052         * sunrpc/svc_auth.c: Likewise.
2053         * sunrpc/svc_authux.c: Likewise.
2054         * sunrpc/svc_raw.c: Likewise.
2055         * sunrpc/svc_run.c: Likewise.
2056         * sunrpc/svc_simple.c: Likewise.
2057         * sunrpc/svc_tcp.c: Likewise.
2058         * sunrpc/svc_udp.c: Likewise.
2059         * sunrpc/svc_unix.c: Likewise.
2060         * sunrpc/svcauth_des.c: Likewise.
2061         * sunrpc/xcrypt.c: Likewise.
2062         * sunrpc/xdr.c: Likewise.
2063         * sunrpc/xdr_array.c: Likewise.
2064         * sunrpc/xdr_float.c: Likewise.
2065         * sunrpc/xdr_mem.c: Likewise.
2066         * sunrpc/xdr_rec.c: Likewise.
2067         * sunrpc/xdr_ref.c: Likewise.
2068         * sunrpc/xdr_sizeof.c: Likewise.
2069         * sunrpc/xdr_stdio.c: Likewise.
2071         * po/da.po: Update from translation team.
2073 2009-05-18  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
2075         * sysdeps/sh/____longjmp_chk.S: New file.
2076         * sysdeps/sh/sh3/__longjmp.S: If CHECK_SP is defined, use it.
2077         * sysdeps/sh/sh4/__longjmp.S: Likewise.
2079 2009-05-18  Jakub Jelinek  <jakub@redhat.com>
2080             Ulrich Drepper  <drepper@redhat.com>
2082         * nscd/nscd_helper.c (MINIMUM_HASHENTRY_SIZE): Define.
2083         (__nscd_cache_search): Assume each entry in the
2084         hash chain needs one hashentry and half of datahead.  Use
2085         MINIMUM_HASHENTRY_SIZE instead of sizeof(hashentry).
2087 2009-05-16  Ulrich Drepper  <drepper@redhat.com>
2089         * posix/sys/wait.h: Fix typos.  Pretty printing.
2090         * stdlib/stdlib.h: Likewise.  Correct comments.
2092         [BZ #10159]
2093         * stdlib/stdlib.h (__WAIT_INT): Match the definition in <sys/wait.h>.
2095         * nscd/nscd_helper.c (__nscd_cache_search): Fix exit condition in last
2096         patch.
2098 2009-05-15  Ulrich Drepper  <drepper@redhat.com>
2100         * nscd/nscd_helper.c (__nscd_cache_search): Introduce loop counter.
2101         Use it if we absolutely cannot reach any more correct list elements
2102         because that many do not fit into the currently mapped database.
2104 2009-05-14  Jakub Jelinek  <jakub@redhat.com>
2106         * nscd/nscd_helper.c: Include stddef.h.
2107         (__nscd_cache_search): Add datalen argument.  Use atomic_forced_read
2108         in a couple of places.  Return NULL if trail is not less than
2109         datasize, don't consider dataheads with length smaller than
2110         offsetof (struct datahead, data) + datalen.
2111         * nscd/nscd_client.h (__nscd_cache_search): Adjust prototype.
2112         * nscd/nscd_gethst_r.c (nscd_gethst_r): Adjust callers.
2113         * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
2114         * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
2115         * nscd/nscd_getai.c (__nscd_getai): Likewise.
2116         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
2117         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
2119         * sysdeps/unix/sysv/linux/i386/fallocate64.c (__fallocate64_l64):
2120         Rename ...
2121         (fallocate64): ... to this.
2122         * sysdeps/unix/sysv/linux/fallocate64.c (__fallocate64_l64):
2123         Rename ...
2124         (fallocate64): ... to this.
2125         * sysdeps/unix/sysv/linux/Versions (libc): Remove fallocate64.
2126         * sysdeps/unix/sysv/linux/wordsize-64/Versions (libc): Add
2127         fallocate64@@GLIBC_2.10.
2128         * sysdeps/unix/sysv/linux/i386/Versions (libc): Add
2129         fallocate64@@GLIBC_2.11.
2130         * sysdeps/unix/sysv/linux/s390/s390-32/Versions (libc): Likewise.
2131         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions (libc): Likewise.
2132         * sysdeps/unix/sysv/linux/sparc/sparc32/Versions (libc): Likewise.
2133         * sysdeps/unix/sysv/linux/sh/Versions (libc): Likewise.
2135         * nscd/selinux.c (nscd_avc_destroy): Removed.
2136         * nscd/selinux.h (nscd_avc_destroy): Likewise.
2137         * nscd/nscd.c (termination_handler): Don't call
2138         nscd_avc_destroy.
2140 2009-05-12  Jakub Jelinek  <jakub@redhat.com>
2142         * include/atomic.h: Formatting.
2143         (catomic_compare_and_exchange_val_acq): Don't define if already
2144         defined by bits/atomic.h.
2146 2009-05-15  Ulrich Drepper  <drepper@redhat.com>
2148         * math/libm-test.inc (expm1_test): Add test for range error.
2150         * Versions.def: Add GLIBC_2.11 for libc.
2151         * debug/Makefile (routines): Add longjmp_chk.
2152         Add rules to build and run tst-longjmp_chk.
2153         * debug/Versions: Export __longjmp_chk for GLIBC_2.11.
2154         * debug/longjmp_chk.c: New file.
2155         * debug/tst-longjmp_chk.c: New file.
2156         * include/bits/setjmp2.: New file.
2157         * include/stdio.h: Mark __fortify_fail as internal_function.
2158         * setjmp/Makefile (headers): Add bits/setjmp2.h.
2159         * setjmp/bits/setjmp2.h: New file.
2160         * setjmp/longjmp.c: If __libc_siglongjmp is defined, don't define any
2161         of the aliases.
2162         * setjmp/setjmp.h: Include <bits/setjmp2.h> if _FORTIFY_SOURCE is
2163         defined.
2164         * sysdeps/i386/____longjmp_chk.S: New file.
2165         * sysdeps/x86_64/____longjmp_chk.S: New file.
2166         * sysdeps/i386/__longjmp.S: If CHECK_ESP is defined, use it.
2167         * sysdeps/x86_64/__longjmp.S: Likewise.
2169         * version.h: Bump for 2.11 development.
2171         * elf/check-execstack.c: New file.
2172         * elf/Makefile: Add rules to build and run check-execstack.
2174 2009-05-10  Ulrich Drepper  <drepper@redhat.com>
2176         * version.h (VERSION): Bump to 2.10.1.
2178         * nss/getXXbyYY_r.c: If NO_COMPAT_NEEDED is defined don't define any
2179         compatibility functions.
2180         * nss/getXXent_r.c: Likewise.
2181         * gshadow/getsgent_r.c: Define NO_COMPAT_NEEDED.
2182         * gshadow/getsgnam_r.c: Likewise.
2183         * gshadow/Version: Remove duplicate entries.
2185         * sysdeps/x86_64/cacheinfo.c (intel_02_cache_info): Add missing entries
2186         for recent processor.
2187         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_cache_info):
2188         Likewise.
2190 2009-05-09  Ulrich Drepper  <drepper@redhat.com>
2192         * version.h (VERSION): Bump for 2.10 release.
2193         * include/features.h (__GLIBC_MINOR__): Bump to 10.
2195         * Makeconfig: Undo last change.  Add asflags-cpu to ASFLAGS in the
2196         same place we add ASFLAGS-config.
2198 2009-05-05  Aurelien Jarno  <aurelien@aurel32.net>
2200         [BZ #10128]
2201         * resolv/res_query.c (__libc_res_nquery): If one query returns NOTIMP
2202         or FORMERR and the other NOERROR, don't raise an error.
2204 2009-05-06  Ryan S. Arnold  <rsa@us.ibm.com>
2206         [BZ #10118]
2207         * Makeconfig (+asflags): New variable based upon ASFLAG or
2208         asflags-cpu.
2209         (ASFLAGS): Add override to set ASFLAGS to +asflags.
2210         * config.make.in (asflags-cpu): Add variable based upon
2211         @libc_cv_cc_submachine@ to propagate -mcpu=CPU from --with-cpu=CPU to
2212         the assembler.
2213         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/setcontext.S:
2214         Remove unneeded file now that the assembler emits _ARCH_PWR6 and
2215         recognizes power6 instruction set due to passing -mcpu=power6 from
2216         --with-cpu=power6 when compiling .S files.
2217         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/swapcontext.S:
2218         Likewise.
2219         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/setcontext.S:
2220         Likewise.
2221         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/swapcontext.S:
2222         Likewise.
2224 2009-05-09  Jakub Jelinek  <jakub@redhat.com>
2226         * string/stratcliff.c (do_test): Test for zero length
2227         STRNLEN, MEMCHR, STRNCPY, STPNCPY, MEMCPY, MEMPCPY and memccpy
2228         at the end of the page.
2230 2009-05-08  Ulrich Drepper  <drepper@redhat.com>
2232         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_AT_RANDOM.
2234         * sysdeps/x86_64/memchr.S: Handle invalid buffer pointers when
2235         count is zero.
2237         * po/da.po: Update from translation team.
2239 2009-05-05  Jakub Jelinek  <jakub@redhat.com>
2241         * io/sys/stat.h (fstatat64): Guard prototype with __USE_LARGEFILE64,
2242         guard __extern_inline wrapper with __USE_ATFILE instead of __USE_GNU.
2244 2009-05-05  Ulrich Drepper  <drepper@redhat.com>
2246         * sysdeps/unix/sysv/linux/sys/personality.h: Add ADDR_COMPAT_LAYOUT
2247         and READ_IMPLIES_EXEC.
2249 2009-05-04  Ulrich Drepper  <drepper@redhat.com>
2251         * po/da.po: Update from translation team.
2253 2009-04-29  Jakub Jelinek  <jakub@redhat.com>
2255         * sysdeps/unix/sysv/linux/ifaddrs.c: Revert unintended 2008-08-12
2256         comment change.
2258 2009-04-27  Jakub Jelinek  <jakub@redhat.com>
2260         * locale/programs/locarchive.c (create_archive): Add MAP_PRIVATE
2261         to MAP_ANON in PROT_NONE mmap64 call.
2262         (open_archive): Likewise.
2263         (file_data_available_p): Use mmap64 instead of mremap.
2264         (enlarge_archive): Likewise.  Update head if ah->addr changed.
2265         Attempt to reserve address space after mmap64 region.
2267 2009-04-26  Ulrich Drepper  <drepper@redhat.com>
2269         * sysdeps/ieee754/dbl-64/s_expm1.c: Set errno for overflow.
2270         * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
2271         * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
2273         * sysdeps/ieee754/k_standard.c (__kernel_standard): Pole errors in
2274         atanh should set ERANGE.
2276         [BZ #10087]
2277         * elf/dl-runtime.c (_dl_fixup): Use DL_FIXUP_VALUE_ADDR to access
2278         result of lookup to make call to implement STT_GNU_IFUNC.
2279         (_dl_profile_fixup): Likewise.
2280         Patch by H.J. Lu <hjl.tools@gmail.com>.
2282         * nscd/connections.c (send_ro_fd): Define temporary variable to avoid
2283         warning.
2285         * sysdeps/unix/sysv/linux/dl-osinfo.h (dl_fatal): Remove inline
2286         from definition.
2288         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Don't define
2289         label if it is not used.
2291         * elf/dl-profile.c (_dl_start_profile): Define real-type variant
2292         of gmon_hist_hdr and gmon_hdr structures and use them.
2293         * elf/sprof.c: Likewise.
2295         * elf/dl-load.c (open_verify): Add temporary variable to avoid
2296         warning.
2298         * nscd/nscd_helper.c (get_mapping): Avoid casts to avoid warnings.
2300         * sunrpc/clnt_raw.c (clntraw_private_s): Use union in definition
2301         to avoid cast.
2303         * inet/rexec.c (rexec_af): Make sa2 a union to avoid warnings.
2304         * inet/rcmd.c (rcmd_af): Make from a union of the various needed types
2305         to avoid warnings.
2306         (iruserok_af): Use ss_family instead of casts.
2308         * gmon/gmon.c (write_hist): Define real-type variant of
2309         gmon_hist_hdr structure and use it.
2310         (write_gmon): Likewise for gmon_hdr.
2312         * sysdeps/unix/sysv/linux/readv.c: Avoid declaration of replacement
2313         function if we are not going to define it.
2314         * sysdeps/unix/sysv/linux/writev.c: Likewise.
2316         * inet/inet6_option.c (option_alloc): Add temporary variable to
2317         avoid warning.
2319         * libio/strfile.h (struct _IO_streambuf): Use correct type and
2320         name of VTable element.
2321         * libio/iovsprintf.c: Avoid casts to avoid warnings.
2322         * libio/iovsscanf.c: Likewise.
2323         * libio/vasprintf.c: Likewise.
2324         * libio/vsnprintf.c: Likewise.
2325         * stdio-common/isoc99_vsscanf.c: Likewise.
2326         * stdlib/strfmon_l.c: Likewise.
2327         * debug/vasprintf_chk.c: Likewise.
2328         * debug/vsnprintf_chk.c: Likewise.
2329         * debug/vsprintf_chk.c: Likewise.
2331         * nss/nsswitch.c (__nss_lookup_function): En/Decrypt cached
2332         function pointers.
2334 2009-04-26  Jakub Jelinek  <jakub@redhat.com>
2336         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Fix -Wsequence-point warnings.
2338 2009-04-25  Ulrich Drepper  <drepper@redhat.com>
2340         * posix/bits/posix1_lim.h: Cleanup namespace a bit.
2342         * sysdeps/i386/fpu/s_tan.S: Set errno for Â±Inf.
2343         * sysdeps/i386/fpu/s_tanf.S: Likewise.
2344         * sysdeps/i386/fpu/s_tanl.S: Likewise.
2345         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
2346         * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
2347         * sysdeps/x86_64/fpu/s_tanl.S: Likewise.
2348         * math/libm-test.inc: Add tests for errno after tan calls with
2349         Â±Inf.
2351         * sysdeps/ieee754/k_standard.c (__kernel_standard): Use correct
2352         errno value vor pow(+-0,neg).
2353         * math/libm-test.inc (pow_test): Add tests for errno value for
2354         pole errors.
2356         * math/w_fmod.c: Also handle x=±Inf as error.
2357         * math/w_fmodf.c: Likewise.
2358         * math/w_fmodl.c: Likewise.
2359         * math/libm-test.inc (fmod_test): Add tests for errno after calls for
2360         x=±Inf or y=0.
2362         * sysdeps/i386/fpu/s_cos.S: Set errno for Â±Inf.
2363         * sysdeps/i386/fpu/s_cosf.S: Likewise.
2364         * sysdeps/i386/fpu/s_cosl.S: Likewise.
2365         * sysdeps/i386/fpu/s_sin.S: Likewise.
2366         * sysdeps/i386/fpu/s_sinf.S: Likewise.
2367         * sysdeps/i386/fpu/s_sinl.S: Likewise.
2368         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
2369         * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
2370         * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
2371         * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
2372         * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
2373         * sysdeps/x86_64/fpu/s_cosl.S: Likewise.
2374         * sysdeps/x86_64/fpu/s_sinl.S: Likewise.
2375         * math/libm-test.inc: Add tests for errno after sin/cos calls with
2376         Â±Inf.
2378         * stdlib/strtod_l.c (round_and_return): We have to set errno to
2379         ERANGE for underflows.
2380         * stdlib/tst-strtod.c (tests): Two tests should set errno to ERANGE.
2382         * stdio-common/stdio_lim.h.in (L_cuserid): Not part of POSIX since
2383         the 2001 revision.
2385         * libio/tst-widetext.input: Remove surrogates.
2387         * include/features.h: _POSIX_C_SOURCE >= 200112L implies C99.
2389         * sysdeps/ieee754/k_standard.c (__kernel_standard): Pole errors
2390         for lgamma should set errno to ERANGE, not EDOM.
2391         * math/libm-test.inc (lgamma_test): Check errno for pole errors.
2393 2009-04-24  Ulrich Drepper  <drepper@redhat.com>
2395         [BZ #10093]
2396         * iconv/gconv_simple.c (BODY for UTF-8 to INTERNAL): Don't accept
2397         UTF-16 surrogates.
2399         * locale/programs/locarchive.c (enlarge_archive): Conserve address
2400         space when temporarily mapping the whole content of the old file.
2402         [BZ #10100]
2403         * misc/hsearch_r.c (hsearch_r): Add back ensurance that hval is
2404         not zero.
2406 2009-04-24  Jakub Jelinek  <jakub@redhat.com>
2408         * iconvdata/sjis.c (BODY): Don't advance inptr before
2409         STANDARD_FROM_LOOP_ERR_HANDLER (2) for 2 byte invalid input.
2410         Use STANDARD_FROM_LOOP_ERR_HANDLER with 2 instead of 1 for
2411         two byte chars.
2413 2009-04-24  Ulrich Drepper  <drepper@redhat.com>
2415         * locale/locarchive.h (struct locarhandle): Rename len field to
2416         mmaped and add new reserved field.
2417         * locale/programs/locarchive.c (RESERVE_MMAP_SIZE): Define.
2418         (create_archive): Reserve address space and then map file into it.
2419         (open_archive): Likewise.
2420         (file_data_available_p): New function.
2421         (compare_from_file): New function.
2422         (close_archive): Adjust to member name changes.
2423         (add_locale): Before comparing locale data, check it is mapped.
2424         Otherwise fall back to reading from the file.
2426 2009-04-23  H.J. Lu  <hongjiu.lu@intel.com>
2428         * stdio-common/psiginfo.c: Include <errno.h>.
2430 2009-04-23  Ulrich Drepper  <drepper@redhat.com>
2432         [BZ #9920]
2433         * stdlib/random_r.c (__srandom_r): Change type of word to int32_t
2434         to get consistency between 32 and 64 bit architectures.
2436         [BZ #10052]
2437         * sysdeps/unix/make-syscalls.sh: Add rule to create target
2438         directory for dummy syscall rules.
2439         Patch by Chris Steinbroner <hesh@pobox.com>.
2441 2009-04-23  Aurelien Jarno  <aurelien@aurel32.net>
2443         [BZ #10092]
2444         * sysdeps/unix/sysv/linux/sys/mount.h: Define MNT_DETACH and
2445         MNT_EXPIRE.
2447 2009-04-23  Ulrich Drepper  <drepper@redhat.com>
2449         * sysdeps/unix/sysv/linux/preadv.c: The kernel API changed.  Adjust.
2450         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
2452 2009-04-23  Jakub Jelinek  <jakub@redhat.com>
2454         * sysdeps/posix/pwritev.c (PWRITEV): Fix up comment.  Copy
2455         data from vector to temporary buffer and call PWRITEV after it
2456         instead of vice versa.
2457         * sysdeps/posix/preadv.c: Fix up comment.
2458         * misc/preadv.c: Likewise.
2459         * misc/preadv64.c: Likewise.
2460         * misc/pwritev.c: Likewise.
2461         * misc/pwritev64.c: Likewise.
2462         * misc/sys/uio.h (preadv, pwritev, preadv64, pwritev64): Likewise.
2464 2009-04-23  Ulrich Drepper  <drepper@redhat.com>
2466         * shadow/sgetspent_r.c (__sgetspent_r): Recognize too small buffers.
2468         * shadow/Makefile (tests): Add tst-shadow.
2469         * shadow/tst-shadow.c: New file.
2471         [BZ #9955]
2472         * gshadow/Makefile: New file.
2473         * gshadow/Versions: New file.
2474         * gshadow/fgetsgent.c: New file.
2475         * gshadow/fgetsgent_r.c: New file.
2476         * gshadow/getsgent.c: New file.
2477         * gshadow/getsgent_r.c: New file.
2478         * gshadow/getsgnam.c: New file.
2479         * gshadow/getsgnam_r.c: New file.
2480         * gshadow/gshadow.h: New file.
2481         * gshadow/putsgent.c: New file.
2482         * gshadow/sgetsgent.c: New file.
2483         * gshadow/sgetsgent_r.c: New file.
2484         * gshadow/tst-gshadow.c: New file.
2485         * include/gshadow.h: New file.
2486         * Makeconfig (all-subdirs): Add gshadow.
2487         * Makefile (installed-headers): Add gshadow/gshadow.h.
2488         * nss/Makefile (databases): Add sgrp.
2489         * nss/Versions: Add gshadow functions as private exports.
2490         * nss/nsswitch.conf: Add gshadow entry.
2491         * nss/sgrp-lookup.c: New file.
2492         * nss/nss_files/files-parse.c: Add STRING_LIST macro.  Rewrite
2493         parse_list to handle STRING_LIST and TRAILING_LIST_PARSER.
2494         * nss/nss_files/files-sgrp.c: New file.
2495         * sysdeps/generic/paths.h: Add _PATH_GSHADOW.
2496         * sysdeps/unix/sysv/linux/paths.h: Likewise.
2498 2009-04-22  Ulrich Drepper  <drepper@redhat.com>
2500         * stdio-common/printf.h: Add missing const to register_printf_modifier.
2501         * stdio-common/reg-modifier.c: Likewise.
2503 2009-04-22  Andrew Stubbs  <ams@codesourcery.com>
2505         * sysdeps/sh/sh4/setjmp.S (__sigsetjmp): Adjust JB_SIZE when there
2506         is no FPU.
2508 2009-04-20  Ulrich Drepper  <drepper@redhat.com>
2510         [BZ #10086]
2511         * sysdeps/unix/sysv/linux/sys/timex.h: Add definitions from kernel
2512         headers up to 2.6.30.
2514         * po/ca.po: Update from translation team.
2516 2009-04-19  Ulrich Drepper  <drepper@redhat.com>
2518         [BZ #10069]
2519         * elf/dl-open.c (dl_open_worker): We cannot guarantee that we can load
2520         an object that uses static TLS if the TLS modid is higher than the
2521         reserve we always allocate.  At least for multi-threaded code.
2523 2009-04-18  Ulrich Drepper  <drepper@redhat.com>
2525         * stdlib/strfmon_l.c (__vstrfmon_l): Don't wrap when computing width.
2526         Numerically stable check for valid width.
2528         * locale/programs/locarchive.c (open_archive): Map the entire file
2529         and not just the administrative data.
2530         (add_locale): When we find a hash sum match compare the content
2531         to be sure.
2533         * malloc/malloc.c (malloc_info): Output address space information.
2535 2009-04-17  Ulrich Drepper  <drepper@redhat.com>
2537         * malloc/malloc.c (malloc_info): Also output system memory information.
2539         * sysdeps/unix/sysv/linux/kernel-features.h: All supported
2540         architectures have preadv/pwritev in 2.6.30.
2542         * sysdeps/posix/preadv.c: Reading of zero bytes is no error.
2543         * sysdeps/posix/readv.c: Likewise.
2544         Reported by Markus Armbruster <armbru@redhat.com>.
2546         * malloc/hooks.c (top_check): Force hook value into register.
2548 2009-04-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2550         * elf/rtld.c (dl_main): Really call _dl_sysdep_start_cleanup after all
2551         calls to _dl_relocate_object.
2553 2009-04-16  Ulrich Drepper  <drepper@redhat.com>
2555         [BZ #9957]
2556         * malloc/malloc.c (force_reg): Define.
2557         (sYSMALLOc): Load hook variable into variable
2558         before test and force into register.
2559         (sYSTRIm): Likewise.
2560         (public_mALLOc): Force hook value into register.
2561         (public_fREe): Likewise.
2562         (public_rEALLOc): Likewise.
2563         (public_mEMALIGn): Likewise.
2564         (public_vALLOc): Likewise.
2565         (public_pVALLOc): Likewise.
2566         (public_cALLOc): Likewise.
2567         (__posix_memalign): Likewise.
2568         * malloc/arena.c (ptmalloc_init): Load hook variable into variable
2569         before test and force into register.
2570         * malloc/hooks.c (top_check): Likewise.
2571         (public_sET_STATe): Pretty printing.
2573         * resolv/res_send.c (send_dg): Don't just ignore the result we got
2574         in case we only receive one reply in single-request mode.
2576 2009-04-16  Jakub Jelinek  <jakub@redhat.com>
2578         * elf/dl-open.c (_dl_open): Bump GL(dl_nns) to 1 if no libraries
2579         are dlopened in statically linked program even for __LM_ID_CALLER.
2581 2009-04-16  Ulrich Drepper  <drepper@redhat.com>
2583         * resolv/res_send.c (send_dg): Don't switch into single-request
2584         mode if we already are in it.
2586 2009-04-15  Ulrich Drepper  <drepper@redhat.com>
2588         * sysdeps/unix/sysv/linux/getsysstats.c (next_line): Make sure there
2589         are always at least 4 bytes in the returned line.
2591 2009-04-15  Jakub Jelinek  <jakub@redhat.com>
2593         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Check
2594         __libc_use_alloca (8192), if the stack is too small use 512 bytes
2595         instead of 8K.  Stop searching in /proc/stat after hitting first
2596         line not starting with cpu.
2597         (next_line): Truncate too long
2598         lines at buffer size * 3/4 instead of pretending there were line
2599         breaks inside of large lines.
2601 2009-04-14  Ulrich Drepper  <drepper@redhat.com>
2603         * sysdeps/x86_64/mp_clz_tab.c: New file.
2605 2009-03-17  Ryan S. Arnold  <rsa@us.ibm.com>
2606             Ulrich Drepper  <drepper@redhat.com>
2608         * sysdeps/unix/sysv/linux/fallocate.c: Handle old kernel headers.
2609         * sysdeps/unix/sysv/linux/fallocate64.c: Likewise.
2610         * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.
2612 2009-03-25  Andrew Stubbs  <ams@codesourcery.com>
2614         * sysdeps/sh/libc-tls.c: New file.
2616         * sysdeps/sh/bits/setjmp.h (__jmp_buf): Give name to structure type.
2618 2009-04-14  Roland McGrath  <roland@redhat.com>
2620         * elf/elf.h: Add various missing ARM constants, to match binutils.
2622 2009-04-14  Ulrich Drepper  <drepper@redhat.com>
2624         Optimizations from GMP.
2625         * sysdeps/x86_64/add_n.S: New file.
2626         * sysdeps/x86_64/addmul_1.S: New file.
2627         * sysdeps/x86_64/lshift.S: New file.
2628         * sysdeps/x86_64/mul_1.S: New file.
2629         * sysdeps/x86_64/rshift.S: New file.
2630         * sysdeps/x86_64/sub_n.S: New file.
2631         * sysdeps/x86_64/submul_1.S: New file.
2633 2009-04-14  Jakub Jelinek  <jakub@redhat.com>
2635         * sysdeps/powerpc/powerpc32/elf/start.S: Ensure .data is non-empty.
2636         * sysdeps/powerpc/powerpc64/elf/start.S: Likewise.
2637         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
2638         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
2640 2009-04-14  Ulrich Drepper  <drepper@redhat.com>
2642         * sysdeps/unix/sysv/linux/kernel-features.h: SH also has
2643         preadv/pwritev.
2645 2009-04-13  Ulrich Drepper  <drepper@redhat.com>
2647         * sysdeps/x86-64/strrchr.S: New file.
2649 2009-04-10  Ulrich Drepper  <drepper@redhat.com>
2651         * stdio-common/printf.h (struct printf_info): Add user element.
2652         New types printf_arginfo_size_function, printf_va_arg_function.
2653         Declare register_printf_specifier, register_printf_modifier,
2654         register_printf_type.
2655         * stdio-common/printf-parse.h (struct printf_spec): Add size element.
2656         (union printf_arg): Add pa_user element.
2657         Adjust __printf_arginfo_table type.
2658         Add __printf_va_arg_table, __printf_modifier_table,
2659         __handle_registered_modifier_mb, and __handle_registered_modifier_wc
2660         declarations.
2661         * stdio-common/printf-parsemb.c: Recognize registered modifiers.
2662         If registered arginfo call failed try normal specifier.
2663         * stdio-common/printf-prs.c: Pass additional parameter to arginfo
2664         function.
2665         * stdio-common/Makefile (routines): Add reg-modifier and reg-type.
2666         * stdio-common/Versions: Export register_printf_modifier,
2667         register_printf_type, and register_printf_specifier for GLIBC_2.10.
2668         * stdio-common/reg-modifier.c: New file.
2669         * stdio-common/reg-type.c: New file.
2670         * stdio-common/reg-printf.c (__register_printf_specifier): New
2671         function.  Mostly the old __register_printf_function function but
2672         uses locking and type of third parameter changed.
2673         (__register_printf_function): Implement using
2674         __register_printf_specifier.
2675         * stdio-common/vfprintf.c (vfprintf): Collect argument sizes in
2676         calls to arginfo functions.  Allocate enough memory for user-defined
2677         types.  Call new va_arg functions to get user-defined types.
2678         Try installed handlers even for existing format specifiers first.
2680 2009-04-09  Ulrich Drepper  <drepper@redhat.com>
2682         * sysdeps/x86_64/rawmemchr.S: New file.
2684         * stdio-common/vfprintf.c (vfprintf): Slightly more compact code.
2685         Simplified code and possible copy problem fixed.
2687         * sysdeps/unix/sysv/linux/preadv.c: Avoid prototype for static
2688         function if it is not defined.  Add some necessary casts.
2689         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
2691         * sysdeps/unix/sysv/linux/kernel-features.h: SPARC and IA64 also
2692         have preadv/pwritev in 2.6.30.
2694 2009-04-08  Ulrich Drepper  <drepper@redhat.com>
2696         * malloc/malloc.c (malloc_info): New function.
2697         * malloc/malloc.h: Declare it.
2698         * malloc/Versions: Export malloc_info for GLIBC_2.10.
2700         * sysdeps/unix/sysv/linux/preadv64.c (PREAD): Use __libc_pread64
2701         to avoid PLT slot.
2703         * malloc/malloc.c (_int_realloc): Add parameter with old block
2704         size.  Remove duplicated test.  Don't handle mmap'ed blocks here.
2705         Adjust all callers.
2706         * malloc/hooks.c (realloc_check): Adjust _int_realloc call.
2708 2009-04-07  Ulrich Drepper  <drepper@redhat.com>
2710         * sysdeps/x86_64/strchrnul.S: New file.
2712         * crypt/Makefile (LDLIBS-crypt.so): Use this variable instead of
2713         depending libcrypt on -lfreebl3.
2715         * sysdeps/unix/sysv/linux/kernel-features.h: Power also has
2716         preadv/pwritev in 2.6.30.
2718         * resolv/nss_dns/dns-host.c (getanswer_r): Use strcasecmp
2719         instead of __strcasecmp.
2721         * string/stratcliff.c (do_test): Add memchr tests..
2722         * wcsmbs/wcsatcliff.c (MEMCHR): Define.
2723         * sysdeps/x86_64/memchr.S: Fix handling of end of buffer after
2724         first read quad word.
2726 2009-04-06  Ulrich Drepper  <drepper@redhat.com>
2728         * string/strverscmp.c (__strverscmp): Fix last cleanups.
2729         * string/tst-svc.input: Add new test case.
2730         * string/tst-svc.expect: Adjust.
2731         * string/Makefile: Don't ignore tst-svc error.
2733         * sysdeps/x86_64/memchr.S: New file.
2735         * resolv/resolv.h (RES_SNGLKUP): Define.
2736         * resolv/res_init.c (res_setoptions): Recognize single-request option.
2737         * resolv/res_send.c (send_dg): If we sent two requests at once and
2738         only get one reply before timeout switch to mode where we send the
2739         second request only after the first answer has been received.
2741 2009-04-05  Ulrich Drepper  <drepper@redhat.com>
2743         * sysdeps/x86_64/strlen.S: Optimize by using SSE2 instructions.
2744         * sysdeps/x86_64/strchr.S: Likewise.
2746 2009-04-03  Ulrich Drepper  <drepper@redhat.com>
2748         * configure.in: We need to test for the compiler earlier.
2750         * misc/Makefile (routines): Add preadv, preadv64, pwritev, pwritev64.
2751         * misc/Versions: Export preadv, preadv64, pwritev, pwritev64 for
2752         GLIBC_2.10.
2753         * misc/sys/uio.h: Declare preadv, preadv64, pwritev, pwritev64.
2754         * sysdeps/unix/sysv/linux/kernel-features.h: Add entries for preadv
2755         and pwritev.
2756         * misc/preadv.c: New file.
2757         * misc/preadv64.c: New file.
2758         * misc/pwritev.c: New file.
2759         * misc/pwritev64.c: New file.
2760         * sysdeps/posx/preadv.c: New file.
2761         * sysdeps/posx/preadv64.c: New file.
2762         * sysdeps/posx/pwritev.c: New file.
2763         * sysdeps/posx/pwritev64.c: New file.
2764         * sysdeps/unix/sysv/linux/preadv.c: New file.
2765         * sysdeps/unix/sysv/linux/preadv64.c: New file.
2766         * sysdeps/unix/sysv/linux/pwritev.c: New file.
2767         * sysdeps/unix/sysv/linux/pwritev64.c: New file.
2768         * sysdeps/unix/sysv/linux/wordsize-64/preadv64.c: New file.
2769         * sysdeps/unix/sysv/linux/wordsize-64/pwritev64.c: New file.
2771         * sysdeps/unix/sysv/linux/readv.c (__libc_readv): Fix calling of
2772         compatibility code.
2773         * sysdeps/unix/sysv/linux/writev.c (__libc_writev): Likewise.
2775         * sysdeps/unix/sysv/linux/kernel-features.h: Define
2776         __ASSUME_COMPLETE_READV_WRITEV.
2777         * sysdeps/unix/sysv/linux/readv.c: No need for userlevel fallback
2778         with modern kernels.
2779         * sysdeps/unix/sysv/linux/writev.c: Likewise.
2781         * sysdeps/posix/readv.c: Since read is a cancellation point we have
2782         to free a possible malloced buffer in case of cancellation.
2783         * sysdeps/posix/writev.c: Likewise for write.
2785 2009-04-02  Ulrich Drepper  <drepper@redhat.com>
2787         * sysdeps/unix/sysv/linux/bits/socket.h: Add missing protocol numbers.
2789         * configure.in: Recognize --enable-nss-crypt.
2790         * config.make.in: Add nss-crypt entry.
2791         * crypt/Makefile: If nss-crypt==yes, don't build md5.c, sha256.c,
2792         sha512.c.  Don't run md5test, sha256test, sha512test.  Pass -DUSE_NSS
2793         and include path for NSS directory to compiler for md5-crypt,
2794         sha256-crypt, sha512-crypt.  Link libcrypt.so with -lfreebl3.
2795         * crypt/md5-crypt.c: If USE_NSS is defined, don't use local hash
2796         function implementation, use NSS.  Introduce wrappers around the
2797         hash function calls.  Little code size optimization.
2798         * crypt/sha256-crypt.c: Likewise.
2799         * crypt/sha512-crypt.c: Likewise.
2800         * scripts/check-local-headers.sh: Ignore nss3 directory.
2802         * configure.in: Rename pic_default to libc_cv_pic_default.
2803         * config.make.in: Likewise.
2805 2009-04-01  Roland McGrath  <roland@redhat.com>
2807         * elf/elf.h (R_SPARC_GLOB_JMP): New macro.
2808         (R_SPARC_GOTDATA_HIX22, R_SPARC_GOTDATA_LOX10): New macros.
2809         (R_SPARC_GOTDATA_OP_HIX22, R_SPARC_GOTDATA_OP_LOX10): Likewise.
2810         (R_SPARC_GOTDATA_OP, R_SPARC_H34): Likewise.
2811         (R_SPARC_SIZE32, R_SPARC_SIZE64): Likewise.
2812         (R_SPARC_GNU_VTINHERIT, R_SPARC_GNU_VTENTRY, R_SPARC_REV32): Likewise.
2813         (R_SPARC_NUM): Update.
2814         From Dave Miller <davem@davemloft.net>.
2816 2009-04-01  Ulrich Drepper  <drepper@redhat.com>
2818         * sysdeps/unix/sysv/linux/sys/eventfd.h (EFD_SEMAPHORE): Define.
2820 2009-03-31  Ulrich Drepper  <drepper@redhat.com>
2822         * elf/dl-open.c: Keep track of used name spaces and only iterate over
2823         those which are used.
2824         * elf/dl-addr.c: Likewise.
2825         * elf/dl-caller.c: Likewise.
2826         * elf/dl-fini.c: Likewise.
2827         * elf/dl-iteratephdr.c: Likewise.
2828         * elf/dl-libc.c: Likewise.
2829         * elf/dl-load.c: Likewise.
2830         * elf/dl-support.c: Likewise.
2831         * elf/dl-sym.c: Likewise.
2832         * elf/rtld.c: Likewise.
2833         * sysdeps/generic/ldsodefs.h: Likewise.
2835         * elf/dl-load.c: Remove support for systems without MAP_ANON.
2836         * elf/dl-minimal.c: Likewise.
2837         * elf/dl-misc.c: Likewise.
2838         * elf/rtld.c: Likewise.
2839         * sysdeps/generic/ldsodefs.h: Likewise.
2841 2009-03-30  Ulrich Drepper  <drepper@redhat.com>
2843         * elf/do-lookup.h (do_lookup_x): Minor optimization and cleanup.
2844         Avoid reuse of complex expression.
2846         * po/fr.po: Update from translation team.
2848 2009-03-16  Ulrich Drepper  <drepper@redhat.com>
2850         * include/dirent.h: Yet more changes to match sort function type
2851         change.
2852         * sysdeps/unix/sysv/linux/i386/alphasort64.c: Likewise.
2853         * sysdeps/unix/sysv/linux/i386/olddirent.h: Likewise.
2854         * sysdeps/unix/sysv/linux/i386/versionsort64.c: Likewise.
2856 2009-03-16  Thomas Schwinge  <tschwinge@gnu.org>
2858         * dirent/scandir64.c (scandir64): Adjust declaration to type change.
2860 2009-03-16  Ulrich Drepper  <drepper@redhat.com>
2862         * nscd/connections.c (restart): Try to preserve the process name
2863         by reading the /proc/self/exe symlink and using the return name.
2864         Patch by Jeff Bastian <jbastian@redhat.com>.
2866 2009-03-15  Ulrich Drepper  <drepper@redhat.com>
2868         [BZ #9733]
2869         * elf/dl-load.c (_dl_map_object_from_fd): Only call audit hooks
2870         if we are not loading a new audit library.
2871         * elf/dl-reloc (_dl_relocate_object): Third parameter is now a bitmask.
2872         Only use profiling trampoline for auditing if we are not relocating
2873         an audit library.
2874         * elf/dl-open.c (dl_open_worker): Adjust _dl_relocate_object call.
2875         * elf/rtld.c: Likewise.
2876         * sysdeps/generic/ldsodefs.h: Adjust _dl_relocate_object prototype.
2878         * elf/rtld.c (dl_main): Extend help message for --audit option.
2880         [BZ #9759]
2881         * dirent/dirent.h: Adjust prototypes of scandir, scandir64, alphasort,
2882         alphasort64, versionsort, and versionsort64 to POSIX 2008.
2883         * dirent/alphasort.c: Adjust implementation to type change.
2884         * dirent/alphasort64.c: Likewise.
2885         * dirent/scandir.c: Likewise.
2886         * dirent/versionsort.c: Likewise.
2887         * dirent/versionsort64.c: Likewise.
2888         * sysdeps/wordsize-64/alphasort.c: Add hack to hide alphasort64
2889         declaration.
2890         * sysdeps/wordsize-64/versionsort.c: Add hack to hide versionsort64
2891         declaration.
2893         [BZ #9880]
2894         * inet/inet6_rth.c (inet6_rth_reverse): Compute number of segments
2895         correctly.  Set segleft member in output as required.
2896         Patch partly by Yang Hongyang <yanghy@cn.fujitsu.com>.
2897         * inet/tst-inet6_rth.c (do_test): Add tests for inet6_rth_reverse.
2899         [BZ #9881]
2900         * inet/inet6_rth.c (inet6_rth_add): Add some error checking.
2901         Patch mostly by Yang Hongyang <yanghy@cn.fujitsu.com>.
2902         * inet/Makefile (tests): Add tst-inet6_rth.
2903         * inet/tst-inet6_rth.c: New file.
2905         [BZ #5807]
2906         * string/strlen.c (strlen): Fix omission in the expression to test
2907         for NUL bytes.
2909 2009-03-14  Ulrich Drepper  <drepper@redhat.com>
2911         * crypt/sha256test.c (main): Perform 100,000 'a' test in a second way.
2913         * elf/dl-runtime.c (reloc_offset): Define.
2914         (reloc_index): Define.
2915         (_dl_fixup): Rename reloc_offset parameter to reloc_arg.
2916         (_dl_fixup_profile): Likewise.  Use reloc_index instead of
2917         computing index from reloc_offset.
2918         (_dl_call_pltexit): Likewise.
2919         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_resolve): Just pass
2920         the relocation index to _dl_fixup.
2921         (_dl_runtime_profile): Likewise for _dl_fixup_profile and
2922         _dl_call_pltexit.
2923         * sysdeps/x86_64/dl-runtime.c: New file.
2925         [BZ #9893]
2926         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix
2927         alignment of La_x86_64_regs.  Store xmm parameters.
2928         Patch mostly by Jiri Olsa <olsajiri@gmail.com>.
2930         [BZ #9913]
2931         * string/strverscmp.c (__strverscmp): Fix case of different digits
2932         in fractional part of string.
2933         Patch by Jingyu Liu <jyliu@fortinet.com>.
2934         * string/Makefile (tests): Add tst-svc2.
2935         * string/tst-svc2.c: New file.
2937         * string/strverscmp.c (__strverscmp): Optimize size of tables.
2939         * locale/iso-639.def: Add Min Nan.
2941 2009-03-11  Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
2943         [BZ #9948]
2944         * elf/dl-sysdep.c (_dl_show_auxv): Add support for AT_BASE_PLATFORM.
2946 2009-03-14  Ulrich Drepper  <drepper@redhat.com>
2948         * elf/dl-sysdep.c (auxvars): Compress data structure.
2950         * sysdeps/i386/dl-machine.h (elf_machine_rel): Implement
2951         STT_GNU_IFUNC handling.
2952         (elf_machine_rela): Likewise.
2954 2009-03-13  Ulrich Drepper  <drepper@redhat.com>
2956         * config.h.in (USE_MULTIARCH): Define.
2957         * configure.in: Handle --enable-multi-arch.
2958         * elf/dl-runtime.c (_dl_fixup): Handle STT_GNU_IFUNC.
2959         (_dl_fixup_profile): Likewise.
2960         * elf/do-lookup.c (dl_lookup_x): Likewise.
2961         * sysdeps/x86_64/dl-machine.h: Handle STT_GNU_IFUNC.
2962         * elf/elf.h (STT_GNU_IFUNC): Define.
2963         * include/libc-symbols.h (libc_ifunc): Define.
2964         * sysdeps/x86_64/cacheinfo.c: If USE_MULTIARCH is defined, use the
2965         framework in init-arch.h to get CPUID values.
2966         * sysdeps/x86_64/multiarch/Makefile: New file.
2967         * sysdeps/x86_64/multiarch/init-arch.c: New file.
2968         * sysdeps/x86_64/multiarch/init-arch.h: New file.
2969         * sysdeps/x86_64/multiarch/sched_cpucount.c: New file.
2971         * config.make.in (experimental-malloc): Define.
2972         * configure.in: Handle --enable-experimental-malloc.
2973         * malloc/Makefile: Handle experimental-malloc flag.
2974         * malloc/malloc.c: Implement PER_THREAD and ATOMIC_FASTBINS features.
2975         * malloc/arena.c: Likewise.
2976         * malloc/hooks.c: Likewise.
2977         * malloc/malloc.h: Define M_ARENA_TEST and M_ARENA_MAX.
2979 2009-03-11  Ulrich Drepper  <drepper@redhat.com>
2981         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Add branch
2982         prediction.  A few size optimizations.
2984 2009-03-10  Ulrich Drepper  <drepper@redhat.com>
2986         * time/tzset.c: Optimize a bit for size.
2988 2009-03-10  Jakub Jelinek  <jakub@redhat.com>
2990         * include/stdio.h (fmemopen): Add libc_hidden_proto.
2991         * libio/fmemopen.c (fmemopen): Add libc_hidden_def.
2993         * elf/sprof.c: Avoid warning about multi-line comment.
2995 2009-03-10  Ulrich Drepper  <drepper@redhat.com>
2997         * time/tzset.c (__tzset_parse_tz): Use correct string when parsing
2998         DST name.
2999         * time/tst-posixtz.c: Add tests for quoted timezone names.
3001 2009-03-10  Jakub Jelinek  <jakub@redhat.com>
3003         * posix/unistd.h (_POSIX_VERSION, _POSIX2_VERSION, _POSIX2_C_BIND,
3004         _POSIX2_C_DEV, _POSIX2_SW_DEV, _POSIX2_LOCALEDEF): Define to
3005         200809L instead of 200112L.
3006         (_XOPEN_VERSION): For __USE_XOPEN2K8 define to 700.
3007         * posix/tst-sysconf.c (STDVER): Define to 200809L instead of 200112L.
3009         * stdlib/quick_exit.c (quick_exit): Pass &__quick_exit_funcs
3010         instead of __quick_exit_funcs to __run_exit_handlers.
3011         * stdlib/at_quick_exit.c (at_quick_exit): Add attribute_hidden.
3012         * stdlib/exit.h (__run_exit_handlers): Add noreturn attribute.
3013         (__cxa_at_quick_exit): Remove attribute_hidden.
3014         * stdlib/exit.c (exit): Pass &__exit_funcs instead of __exit_funcs
3015         to __run_exit_handlers.
3016         * stdlib/cxa_at_quick_exit.c (__cxa_at_quick_exit): Remove
3017         attribute_hidden.
3019 2009-03-10  Ulrich Drepper  <drepper@redhat.com>
3021         * po/id.po: Update from translation team.
3023 2009-02-18  Jakub Jelinek  <jakub@redhat.com>
3025         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Use
3026         .machine push; .machine "power6" and .machine pop around mtfsf
3027         insns outside of _ARCH_PWR6 define.
3028         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
3029         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
3030         Likewise.
3031         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
3032         Likewise.
3033         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_SET_DI_FPSCR): Likewise.
3034         * sysdeps/powerpc/fpu/fenv_libc.h (fesetenv_register,
3035         relax_fenv_state): Likewise.
3037 2009-03-08  Ulrich Drepper  <drepper@redhat.com>
3039         * stdlib/Makefile (routines): Add quick_exit, at_quick_exit, and
3040         cxa_at_quick_exit.
3041         (static-only-routines): Add at_quick_exit.
3042         * stdlib/Versions: Export quick_exit and __cxa_at_quick_exit for
3043         GLIBC_2.10.
3044         * stdlib/quick_exit.c: New file.
3045         * stdlib/at_quick_exit.c: New file.
3046         * stdlib/cxa_at_quick_exit.c: New file.
3047         * stdlib/cxa_atexit.c (__cxa_atexit): Move body to new function.  Call
3048         it appropriately.
3049         (__internal_atexit): New function.
3050         (__new_exitfn): Now takes parameter to point to the list to use.
3051         * stdlib/cxa_finalize.c: Remove quick_exit handlers, don't call them.
3052         * stdlib/exit.c (__run_exit_handlers): New function.  Split from...
3053         (exit): ...here.  Just call __run_exit_handlers appropriately.
3054         * stdlib/exit.h: Declare __quick_exit_funcs, __run_exit_handlers,
3055         __internal_atexit, __cxa_at_quick_exit.  Adjust __new_exitfn.
3056         * stdlib/on_exit.c: Adjust call to __new_exitfn.
3057         * stdlib/stdlib.h: Declare at_quick_exit and quick_exit.
3059         * po/id.po: Update from translation team.
3061 2009-03-07  Ulrich Drepper  <drepper@redhat.com>
3063         * po/ru.po: Update from translation team.
3065 2009-03-04  Ulrich Drepper  <drepper@redhat.com>
3067         * po/nl.po: Update from translation team.
3069 2009-03-03  Ulrich Drepper  <drepper@redhat.com>
3071         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Declare fallocate{,64}.
3072         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
3073         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
3074         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
3075         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
3076         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
3077         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
3079         * po/pl.po: Update from translation team.
3081 2009-03-02  Ulrich Drepper  <drepper@redhat.com>
3083         [BZ #7083]
3084         * sysdeps/unix/sysv/linux/fallocate.c: New file.
3085         * sysdeps/unix/sysv/linux/fallocate64.c: New file.
3086         * sysdeps/unix/sysv/linux/wordsize-64/fallocate64.c: New file.
3087         * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: New file.
3088         * sysdeps/unix/sysv/linux/i386/fallocate64.c: New file.
3089         * sysdeps/unix/sysv/linux/i386/fallocate.c: New file.
3090         * sysdeps/unix/sysv/linux/Versions: Export fallocate and fallocate64
3091         for GLIBC_2.10.
3092         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
3093         Add fallocate and fallocate64.
3095         * io/fcntl.h: Pretty printing.
3097 2009-03-02  Richard Guenther  <rguenther@suse.de>
3099         * misc/sys/cdefs.h (__extern_always_inline): Add __artificial__
3100         attribute also for non-C99 inline semantics variant.
3102 2009-02-12  Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
3104         * sysdeps/powerpc/powerpc32/power7/fpu/Implies: New file.
3105         * sysdeps/powerpc/powerpc32/power7/Implies: Likewise.
3106         * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
3107         * sysdeps/powerpc/powerpc64/power7/Implies: Likewise.
3108         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/fpu/Implies:
3109         Likewise.
3110         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/fpu/Implies:
3111         Likewise.
3113 2009-03-02  Ulrich Drepper  <drepper@redhat.com>
3115         * po/cs.po: Update from translation team.
3117 2009-02-28  Ulrich Drepper  <drepper@redhat.com>
3119         * po/bg.po: Update from translation team.
3120         * po/sv.po: Likewise.
3121         * po/fi.po: Likewise.
3122         * po/vi.po: Likewise.
3124 2009-02-27  Roland McGrath  <roland@redhat.com>
3126         * Makeconfig (%.v.i): Depend on Makeconfig.
3127         Exclude % lines from initial #-comment removal.
3129 2009-02-27  Ulrich Drepper  <drepper@redhat.com>
3131         * po/ko.po: Update from translation team.
3133 2009-02-26  Roland McGrath  <roland@redhat.com>
3135         * shadow/lckpwdf.c (__lckpwdf): Move FLAGS inside block using it,
3136         avoids unused warning.
3138 2009-02-26  Andrew Stubbs  <ams@codesourcery.com>
3139             SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
3141         * sysdeps/unix/sysv/linux/sh/sys/procfs.h: Don't include signal.h,
3142         sys/ucontext.h and asm/elf.h.  Include sys/user.h.
3143         * sysdeps/unix/sysv/linux/sh/sys/user.h: Don't include features.h
3144         and asm/user.h.  Include asm/ptrace.h.
3145         (PTRACE_GETREGS, PTRACE_SETREGS, PTRACE_GETFPREGS,
3146         PTRACE_SETFPREGS, PTRACE_GETFDPIC, PTRACE_GETFDPIC_EXEC,
3147         PTRACE_GETFDPIC_INTERP, PTRACE_GETDSPREGS, PTRACE_SETDSPREGS):
3148         Undefine.
3149         (start_thread): Don't undefine.
3150         (elf_greg_t, ELF_NGREG, elf_fpregset_t, user_fpu_struct, user):
3151         Define.
3153 2009-02-26  Ulrich Drepper  <drepper@redhat.com>
3155         * wctype/wctype.h: The *_l functions are in POSIX 2008.
3156         * wcsmbs/wchar.h: mbsnrtowcs, open_wmemstream, wcpcpy, wcpncpy,
3157         wcscasecmp, wcsdup, wcsncasecmp, wcsnlen, wcsnrtombs,
3158         wcscasecmp_l, wcsncasecmp_l, wcscoll_l, and wcsxfrm_l.
3159         * sysdeps/mach/hurd/bits/posix_opt.h: Reset value of macros from
3160         200112L to 200809L.
3161         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Likewise.
3162         * posix/getconf.c (vars): Add _SC_THREAD_ROBUST_PRIO_INHERIT and
3163         _SC_THREAD_ROBUST_PRIO_PROTECT entries.
3164         * bits/confname.h: Add _SC_THREAD_ROBUST_PRIO_INHERIT and
3165         _SC_THREAD_ROBUST_PRIO_PROTECT.
3166         * posix/unistd.h: fexecve is in POSIX 2008.
3167         * time/time.h: strftime_l is in POSIX 2008.
3168         * io/sys/stat.h: futimens is in POSIX 2008.
3169         * string/strings.h: strcasecmp_l and strncasecmp_l are in POSIX 2008.
3170         * string/string.h: stpcpy, stpncpy, strndup, strnlen, strsignal,
3171         strcoll_l, strerror_l, and strxfrm_l are in POSIX 2008.
3172         * stdlib/stdlib.h: mkdtemp is in POSIX 2008.
3173         * libio/stdio.h: dprintf, fmemopen, getdelim, getline,
3174         open_memstream, and vdprintf are in POSIX 2008.
3176 2009-02-25  Ulrich Drepper  <drepper@redhat.com>
3178         * include/features.h: Define macros for XPG7/POSIX 2008.
3179         * ctype/ctype.h: The *_l functions are in POSIX 2008.
3180         * dirent/dirent.h: alphasort, dirfd, scandir, and fdopendir are in
3181         POSIX 2008.
3182         * locale/langinfo.h: nl_langinfo_l is in POSIX 2008.
3183         * locale/xlocale.h: Define locale_t type.
3184         * locale/locale.h: duplocale, freelocale, newlocale, uselocale are
3185         in POSIX 2008.  Don't define locale_t here.
3186         * stdlib/monetary.h: strfmon_l is in POSIX 2008.
3187         * sysdeps/unix/sysv/linux/bits/stat.h: Protect UTIME_NOW and
3188         UTIME_OMIT only with __USE_ATFILE.
3189         * signal/signal.h: Declare psignal and psiginfo for POSIX 2008.
3190         * stdio-common/psiginfo.c: New file.
3191         * stdio-common/psiginfo-data.h: New file.
3192         * stdio-common/psiginfo-define.h: New file.
3193         * stdio-common/Makefile (routines): Add psiginfo.
3194         * stdio-common/Versions: Export psiginfo for GLIBC_2.10.
3195         * sysdeps/unix/sysv/linux/ia64/bits/stat.h: Likewise.
3196         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
3197         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
3198         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
3199         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
3200         * io/sys/stat.h: Move mknodat definition into same conditional as
3201         mknod.
3202         * time/sys/time.h: futimesat is not among the functions accepted
3203         into the POSIX standard.
3205         * include/features.h: If no feature selection given and we select
3206         by default a POSIX mode, also define __USE_POSIX_IMPLICITLY.
3207         * posix/Versions: Export __posix_getopt.
3208         * posix/getopt.c (_getopt_initialize): Take additional parameter.
3209         Use it to alternatively initialize __posixly_correct.
3210         (_getopt_internal_r): Take addition parameter.  Pass on to
3211         _getopt_initialize.
3212         (_getopt_internal): Take addition parameter.  Pass on to
3213         _getopt_internal_r.
3214         (getopt): Pass additional zero to _getopt_internal.
3215         (__posix_getopt): New function.
3216         * posix/getopt.h: Add redirection for getopt.
3217         * posix/getopt1.c (getopt_long): Pass additional zero to
3218         _getopt_internal.
3219         (getopt_long_only): Likewise.
3220         (_getopt_long_r): Pass additional zero to _getopt_internal_r.
3221         (_getopt_long_only_r): Likewise.
3222         * posix/getopt_int.h: Adjust declarations of _getopt_internal and
3223         _getopt_internal_r.
3225 2009-02-24  Ulrich Drepper  <drepper@redhat.com>
3227         * bits/confname.h: Define _SC_TRACE_EVENT_NAME_MAX, _SC_TRACE_NAME_MAX,
3228         _SC_TRACE_SYS_MAX, _SC_TRACE_USER_EVENT_MAX, _SC_XOPEN_STREAMS.
3229         * sysdeps/posix/sysconf.c (__sysconf): Handle
3230         _SC_TRACE_EVENT_NAME_MAX, _SC_TRACE_NAME_MAX, _SC_TRACE_SYS_MAX,
3231         _SC_TRACE_USER_EVENT_MAX, _SC_XOPEN_STREAMS.
3233 2009-02-24  Roland McGrath  <roland@redhat.com>
3235         [BZ #9895]
3236         * README.template: Reworded not to use substituted version number.
3237         Renamed to ...
3238         * README: ... here (no longer generated).
3239         * Makefile (README): Target removed.
3241 2009-02-24  Ulrich Drepper  <drepper@redhat.com>
3243         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf):
3244         /proc/sys/kernel/rtsig_max doesn't exist anymore, use getrlimit
3245         instead.
3247         * io/sys/stat.h: The lstat functions have been mandatory since 2001.
3249         * time/tzset.c (tzset_internal): Correct parsing of TZ envvar.
3251 2009-02-22  Ulrich Drepper  <drepper@redhat.com>
3253         * po/bg.po: Update from translation team.
3255 2009-02-16  Jakub Jelinek  <jakub@redhat.com>
3257         * stdlib/monetary.h: Uglify function parameter names.
3258         * sunrpc/rpc/pmap_clnt.h: Likewise.
3259         * sunrpc/rpc/svc.h: Likewise.
3260         * sunrpc/rpc/xdr.h: Likewise.
3261         * sunrpc/rpc/clnt.h: Likewise.
3262         * resolv/netdb.h: Likewise.
3263         * resolv/arpa/nameser.h: Likewise.
3264         * resolv/resolv.h: Likewise.
3265         * argp/argp.h: Likewise.
3266         * locale/langinfo.h: Likewise.
3267         * io/sys/stat.h: Likewise.
3268         * posix/spawn.h: Likewise.
3269         * nis/rpcsvc/nislib.h: Likewise.
3270         * malloc/obstack.h: Likewise.
3271         * sysdeps/ia64/bits/link.h: Likewise.
3272         * sysdeps/i386/bits/link.h: Likewise.
3273         * sysdeps/s390/bits/link.h: Likewise.
3274         * sysdeps/powerpc/bits/link.h: Likewise.
3275         * sysdeps/x86_64/bits/link.h: Likewise.
3276         * sysdeps/sparc/bits/link.h: Likewise.
3277         * sysdeps/sh/bits/link.h: Likewise.
3278         * sysdeps/unix/sysv/linux/i386/sys/io.h: Likewise.
3279         * sysdeps/unix/sysv/linux/x86_64/sys/io.h: Likewise.
3280         * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: Likewise.
3281         * sysdeps/unix/sysv/linux/sys/eventfd.h: Likewise.
3283 2008-12-01  Fredrik Unger  <fred@tree.se>
3285         * soft-fp/double.h [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_D,
3286         FP_UNPACK_SEMIRAW_DP): Use _FP_UNPACK_RAW_1 instead of
3287         _FP_UNPACK_RAW_2, fix up first argument.
3289 2009-02-15  Ulrich Drepper  <drepper@redhat.com>
3291         * sysdeps/unix/sysv/linux/getsysstats.c (next_line): New function.
3292         (GET_NPROCS_PARSER): Change parameters and use next_line.
3293         (__get_nprocs): Rewrite to not use stdio routines.
3294         * sysdeps/unix/sysv/linux/sparc/getsysstats.c (GET_NPROCS_PARSER):
3295         Change parameters and use next_line.
3297 2009-02-13  Ulrich Drepper  <drepper@redhat.com>
3299         [BZ #5381]
3300         * nscd/nscd.h: Remove definitions and declarations for mem_in_flight.
3301         Change mempool_alloc prototype.
3302         * nscd/mem.c (gc): Don't handle mem_in_flight.
3303         (mempool_alloc): Third parameter now only indicates whether this is the
3304         first call (to allocate data) or not.  If it is, get db rdlock.
3305         Release it on error.  Don't handle mem_in_flight.
3306         * nscd/aicache.c (addhstaiX): Mark he parameter as const.
3307         Adjust third parameter of mempool_alloc calls.
3308         Nothing to do here in case mempool_alloc fails.
3309         Avoid local variable shadowing parameter.  No need to get db rdlock
3310         before calling cache_add.
3311         * nscd/cache.c (cache_add): Adjust call to mempool_alloc.  There is
3312         no mem_in_flight array anymore.
3313         * nscd/connections.c: Remove definition and handling of mem_in_flight.
3314         * nscd/grpcache.c (cache_addgr): Adjust third parameter of
3315         mempool_alloc calls.  Mark he parameter as const.  Nothing to do here
3316         in case mempool_alloc fails. No need to get db rdlock before calling
3317         cache_add.
3318         * nscd/hstcache.c (cache_addhst): Likewise.
3319         * nscd/initgrcache.c (addinitgroupsX): Likewise.
3320         * nscd/servicescache.c (cache_addserv): Likewise.
3321         * nscd/pwdcache.c (cache_addpw): Likewise.  Remove some debugging code.
3323 2009-02-11  Ulrich Drepper  <drepper@redhat.com>
3325         * po/lt.po: Update from translation team.
3327 2009-02-10  Ulrich Drepper  <drepper@redhat.com>
3329         * elf/dl-load.c (open_verify): In case VALID_ELF_HEADER is
3330         defined, allow additional data to be added using the optional
3331         MORE_ELF_HEADER_DATA macro.
3332         * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_HEADER,
3333         VALID_ELF_OSABI, VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA): Define.
3335 2009-02-08  Ulrich Drepper  <drepper@redhat.com>
3337         * include/atomic.h: Define catomic_and if not already defined.
3338         * sysdeps/x86_64/bits/atomic.h: Define catomic_and.
3339         * sysdeps/i386/i486/bits/atomic.h: Likewise.
3341 2009-02-07  Ulrich Drepper  <drepper@redhat.com>
3343         * malloc/malloc.c (_int_free): Second argument is now mchunkptr.
3344         Change all callers.
3345         (_int_realloc): Likewise.  Third argument is now padded size
3346         All _int_* functions are now static.
3348         * malloc/hooks.c: Change all callers to _int_free and _int_realloc.
3349         * malloc/arena.c: Likewise.
3350         * include/malloc.h: Remove now unnecessary declarations of the _int_*
3351         functions.
3353         * sunrpc/rpc_common.c: We cannot move _null_auth into .rodata that
3354         easily.
3356         * malloc/malloc.c: Add branch prediction for use of the hooks.
3358         * grp/compat-initgroups.c [NOT_IN_libc] (__libc_use_alloca): Define.
3360 2009-02-06  Ulrich Drepper  <drepper@redhat.com>
3362         [BZ #7095]
3363         * bits/confname.h: Add SUSv7 macros for getconf environments.
3364         * bits/environments.h: Likewise.
3365         * sysdeps/unix/sysv/linux/i386/bits/environments.h: Likewise.
3366         * sysdeps/unix/sysv/linux/powerpc/bits/environments.h: Likewise.
3367         * sysdeps/unix/sysv/linux/s390/bits/environments.h: Likewise.
3368         * sysdeps/unix/sysv/linux/sparc/bits/environments.h: Likewise.
3369         * sysdeps/unix/sysv/linux/x86_64/bits/environments.h: Likewise.
3370         * posix/confstr.c: Handle SUSv5 and SUSv7 environments.
3371         * posix/getconf.c: Likewise.
3372         * posix/sysconf.c: Likewise.
3373         * sysdeps/posix/sysconf.c: Likewise.
3374         * posix/Makefile (getconf.speclist): Also collect SUSv5 and SUSv7
3375         environments.
3377 2009-01-16  Petr Baudis  <pasky@suse.cz>
3379         [BZ #9753]
3380         * resolv/res_libc.c (__res_maybe_init): Call __res_vinit()
3381         even if we currently have zero nscount.
3383 2009-02-06  Ulrich Drepper  <drepper@redhat.com>
3385         [BZ #9781]
3386         * grp/compat-initgroups.c (compat_call): Switch to use malloc when
3387         the input line is too long.
3389         * po/Makefile (libc.pot): Add f_print as function taking c-format
3390         parameter.
3392         * debug/xtrace.sh: Unify translatable messages.
3393         * elf/ldd.bash.in: Likewise.
3394         * elf/sprof.c: Likewise.
3395         * locale/programs/locale.c: Likewise.
3396         * malloc/memusage.sh: Likewise.
3397         * nss/getent.c: Likewise.
3399 2009-02-06  Joseph Myers  <joseph@codesourcery.com>
3401         * debug/pcprofiledump.c (print_version,
3402         argp_program_version_hook): New function.
3403         * elf/ldconfig.c (more_help): New function.
3404         (argp): Use it.
3405         * elf/sln.c (usage): New function.
3406         (main): Support --help and --version.
3407         * malloc/memusagestat.c (print_version): New function.
3408         (argp_program_version_hook): New variable.
3409         * nscd/nscd.c (more_help): New function.
3410         (argp): Use it.
3411         * posix/getconf.c (main): Send --version output to stdout.
3412         Support --help.
3413         * sunrpc/rpc_main.c (usage, options_usage): Take STREAM and STATUS
3414         arguments.  All callers changed.
3415         (print_version): New function.
3416         (parseargs): Support --help and --version.
3417         * sunrpc/rpcinfo.c (usage): Take STREAM argument.  All callers
3418         changed.
3419         (print_version): New function.
3420         (main): Use getopt_long.  Support --help and --version.
3421         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Support --help and
3422         --version.
3424 2009-02-06  Ulrich Drepper  <drepper@redhat.com>
3426         * malloc/memusage.c (DEFAULT_BUFFER_SIZE): Change to 32768.
3427         (update_data): Fix handling of wrapping back
3428         to the beginning of the buffer.
3430         [BZ #9823]
3431         * stdio-common/psignal.c (psignal): Fix test for empty string.
3433 2009-02-05  Ulrich Drepper  <drepper@redhat.com>
3435         * include/rpc/auth.h: Use libc_hidden_proto for _null_auth.
3436         * sunrpc/rpc_common.c: Add libc_hidden_def for _null_auth.  Also
3437         move _null_auth to .rodata.
3439         * time/tzset.c (__tzset_parse_tz): DST offset must also allow hour
3440         value of 24.
3442         * intl/dcigettext.c (DCIGETTEXT): Avoid some code duplication.
3444         * sysdeps/unix/opendir.c (__alloc_dir): We have a lot more memory
3445         today than when the original code was written.  Use larger
3446         buffers.  This also makes it unnecessary to have stat information,
3447         if this causes extra efforts.
3448         (__opendir): In case O_DIRECTORY works, don't call fstat just for
3449         __alloc_dir.
3451 2009-02-03  Andrew Stubbs  <ams@codesourcery.com>
3453         * sysdeps/sh/sh4/dl-trampoline.S: Only set HAVE_FPU if __SH_FPU_ANY__
3454         is set.
3455         * sysdeps/sh/sh4/setjmp.S: Support SH4-NOFPU.
3456         * sysdeps/sh/sh4/__longjmp.S: Likewise.
3457         * sysdeps/unix/sysv/linux/sh/sh4/getcontext.S: Likewise.
3458         * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S: Likewise.
3459         * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S: Likewise.
3460         * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Likewise.
3462 2009-02-04  Ulrich Drepper  <drepper@redhat.com>
3464         * po/ru.po: Update from translation team.
3466 2008-11-17  Nathan Sidwell  <nathan@codesourcery.com>
3468         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (struct sigevent):
3469         Add _tid slot to maintain consistency with kernel.
3471 2009-02-04  Ulrich Drepper  <drepper@redhat.com>
3473         * libio/wfileops.c (_IO_wfile_underflow): Fix handling of
3474         incomplete characters at end of input buffer.
3475         * libio/Makefile (tests): Add tst-fgetwc.
3476         * libio/tst-fgetwc.c: New file.
3477         * libio/tst-fgetwc.input: New file.
3479 2009-02-02  Andrew Stubbs  <ams@codesourcery.com>
3481         * sysdeps/unix/sysv/linux/sh/Makefile (libm.so-no-z-defs): Define.
3483 2009-02-02  Ulrich Drepper  <drepper@redhat.com>
3485         [BZ #9793]
3486         * iconv/gconv_trans.c (__gconv_transliterate): Don't change
3487         *OUTBUFSTART unless the whole output fit into the buffer.
3488         * iconv/Makefile (tests): Add tst-iconv4.
3489         * iconv/tst-iconv4.c: New file.
3491 2009-02-01  Ulrich Drepper  <drepper@redhat.com>
3493         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Add new descriptors.
3494         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
3496 2009-01-29  Andrew Stubbs  <ams@codesourcery.com>
3498         * elf/Makefile (ld.so): Adjust the sed script to insert _begin in to
3499         newer linker scripts.
3501 2009-01-30  Ulrich Drepper  <drepper@redhat.com>
3503         [BZ #7040]
3504         * sysdeps/unix/sysv/linux/sys/inotify.h: Second parameter of
3505         inotify_rm_watch should have type int.
3507 2009-01-06  Steven Munroe  <sjmunroe@us.ibm.com>
3509         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
3510         Make aligned_restore_vmx a local symbol.
3511         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp):
3512         Likewise.
3514 2009-01-30  Andreas Jaeger  <aj@suse.de>
3516         * sysdeps/unix/sysv/linux/bits/shm.h (SHM_EXEC): Define.
3517         * sysdeps/unix/sysv/linux/ia64/bits/shm.h (SHM_EXEC): Define.
3518         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h (SHM_EXEC): Define.
3519         * sysdeps/unix/sysv/linux/s390/bits/shm.h (SHM_EXEC): Define.
3520         * sysdeps/unix/sysv/linux/sh/bits/shm.h (SHM_EXEC): Define.
3521         * sysdeps/unix/sysv/linux/sparc/bits/shm.h (SHM_EXEC): Define.
3522         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h (SHM_EXEC): Define.
3524 2009-01-11  Ryan S. Arnold  <rsa@us.ibm.com>
3526         [BZ #9726]
3527         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_SET_DI_FPSCR,
3528         _SET_SI_FPSCR): Clobber fp0 to prevent erroneous test-case passes.
3530 2009-01-08  Ryan S. Arnold  <rsa@us.ibm.com>
3532         [BZ #9726]
3533         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
3534         (__CONTEXT_FUNC_NAME): Fix mtfsf to use fp31 instead of fp0.
3535         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
3536         (__CONTEXT_FUNC_NAME): Fix mtfsf to use fp31 instead of fp0.
3538 2009-01-11  Thomas Schwinge  <tschwinge@gnu.org>
3540         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Use
3541         memcpy instead of memcmp.
3542         (_dl_setup_pointer_guard): Likewise.
3544 2009-01-30  Ulrich Drepper  <drepper@redhat.com>
3546         * malloc/malloc.c (sYSMALLOc): Don't use assert when detecting
3547         manipulated brk, use malloc_printerr.
3548         * misc/sbrk.c (__sbrk): Better error handling for nonsense
3549         requests.
3551 2009-01-30  Jakub Jelinek  <jakub@redhat.com>
3553         * string/string.h (memchr, strchr, strrchr, strpbrk, strstr, index,
3554         rindex): For C++ add inlines so that they can be recognized as
3555         builtins.
3556         * string/strings.h: Define correct C++ prototypes for gcc 4.4.
3558 2009-01-29  Ulrich Drepper  <drepper@redhat.com>
3559             Jakub Jelinek  <jakub@redhat.com>
3561         * string/string.h: Define correct C++ prototypes for gcc 4.4.
3562         * wcsmbs/wchar.h: Likewise.
3564 2009-01-29  Ulrich Drepper  <drepper@redhat.com>
3566         * sysdeps/i386/stackinfo.h (stackinfo_get_sp): Define.
3567         (stackinfo_sub_sp): Define.
3569 2009-01-28  Ulrich Drepper  <drepper@redhat.com>
3571         [BZ #9750]
3572         * nscd/mem.c (gc): Use alloca_count to get the real stack usage.
3573         * include/alloca.h (alloca_account): Define.
3574         * sysdeps/x86_64/stackinfo.h (stackinfo_get_sp): Define.
3575         (stackinfo_sub_sp): Define.
3577         * nscd/connections.c (nscd_init): If database file access fails
3578         check whether this is due to permission problems and bail in that
3579         case.
3581         [BZ #9741]
3582         * nscd/mem.c (gc): Fix assignment of he_data in case malloc is used.
3583         Reported by Jun'ichi Nomura <j-nomura@ce.jp.nec.com>.
3585 2009-01-14  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
3587         * sysdeps/unix/sysv/linux/sh/sysdep.h (INTERNAL_SYSCALL):
3588         Add "t" to clobber list.
3589         (INTERNAL_SYSCALL_NCS): Likewise.
3591 2009-01-28  Ulrich Drepper  <drepper@redhat.com>
3593         * nss/getent.c (print_networks): Don't print comma between aliases.
3595 2009-01-23  Ulrich Drepper  <drepper@redhat.com>
3597         * sysdeps/unix/sysv/linux/tst-clone.c (do_test): Avoid warning.
3599         * misc/hsearch_r.c (hcreate_r): We need at least three elements in
3600         the hash table.
3601         * misc/Makefile (tests): Add bug-hsearch1.
3602         * misc/bug-hsearch1.c: New file.
3604 2009-01-22  Roland McGrath  <roland@redhat.com>
3606         * Makeconfig (%.v.i): Strip trailing # comments,
3607         not only whole-line comments.
3609 2009-01-10  Ulrich Drepper  <drepper@redhat.com>
3611         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Take
3612         one parameter.  If non-NULL use it to initialize return value.
3613         (_dl_setup_pointer_guard): New function.
3614         * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
3615         * sysdeps/generic/ldsodefs.h: Declare _dl_random.
3616         * elf/rtld.c (security_init): Pass _dl_random to
3617         _dl_setup_stack_chk_guard.  Call _dl_setup_pointer_guard to initialize
3618         pointer_chk_guard.
3619         * elf/dl-sysdep.c (_dl_random): New variable.
3620         (_dl_sysdep_start): Handle AT_RANDOM.
3621         (_dl_show_auxv): Likewise.
3622         * elf/dl-support.c (_dl_random): New variable.
3623         (_dl_aux_init): Handle AT_RANDOM.
3624         * csu/libc-start.c [!SHARED] (libc_start_main): Pass _dl_random
3625         to _dl_setup_stack_chk_guard.
3627         * elf/elf.h (AT_RANDOM): Define AT_BASE_PLATFORM and AT_RANDOM.
3629 2009-01-10  Roland McGrath  <roland@redhat.com>
3631         * nscd/nscd.c (parse_opt): Use argp_error for bad -i argument.
3633 2009-01-08  Ulrich Drepper  <drepper@redhat.com>
3635         * sysdeps/i386/fpu/libm-test-ulps: Adjust expm1 errors.
3637         [BZ #9706]
3638         * nss/nss_files/files-parse.c (strtou32): New function.
3639         (INT_FIELD): Use strotu32 instead of strtoul to unify behavior
3640         across 32-bit and 64-bit platforms.
3641         (INT_FIELD_MAYBE_NULL): Likewise.
3643 2009-01-08  Jakub Jelinek  <jakub@redhat.com>
3645         [BZ #9720]
3646         * sysdeps/unix/sysv/linux/bits/resource.h (enum __rusage_who): Avoid
3647         comma after RUSAGE_CHILDREN if not -D_GNU_SOURCE.
3648         * sysdeps/unix/sysv/linux/sparc/bits/resource.h (enum __rusage_who):
3649         Likewise.
3651 2009-01-05  Paolo Bonzini  <bonzini@gnu.org>
3653         [BZ #697]
3654         * posix/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
3655         being NULL also if there are no backreferences.
3656         * posix/rxspencer/tests: Add testcases.
3658 2009-01-04  Paolo Bonzini  <bonzini@gnu.org>
3660         [BZ #9697]
3661         * posix/bug-regex17.c: Add testcases.
3662         * posix/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
3663         handling.
3665 2009-01-05  Martin Schwidefsky  <schwidefsky@de.ibm.com>
3667         * sysdeps/unix/sysv/linux/s390/bits/libc-vdso.h: New file.
3668         * sysdeps/unix/sysv/linux/s390/gettimeofday.c: New file.
3669         * sysdeps/unix/sysv/linux/s390/init-first.c: New file.
3670         * sysdeps/unix/sysv/linux/s390/Makefile (sysdep_routines): Add dl-vdso
3671         for elf subdir.
3672         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (INLINE_VSYSCALL,
3673         INTERNAL_VSYSCALL, INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK,
3674         INTERNAL_SYSCALL_NCS, HAVE_CLOCK_GETRES_VSYSCALL and
3675         HAVE_CLOCK_GETTIME_VSYSCALL: Define.
3676         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
3677         * sysdeps/unix/sysv/linux/s390/Versions: New file.
3679 2008-12-31  Paolo Bonzini  <bonzini@gnu.org>
3681         * posix/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
3682         * posix/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
3683         re_string_skip_chars, re_string_reconstruct): Likewise.
3684         * posix/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
3686 2008-12-31  Rafael Avila de Espindola  <espindola@google.com>
3688         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r): Check and
3689         adjust the buffer alignment.
3691 2009-01-07  Samuel Thibault  <samuel.thibault@ens-lyon.org>
3693         * sysdeps/mach/hurd/Makefile (sysdep_headers) [subdir=socket]:
3694         Add net/ethernet.h net/if_arp.h net/if_ether.h net/if_ppp.h
3695         net/route.h.
3697         * hurd/report-wait.c (describe_number): Use __stpcpy to prepend
3698         flavor to description only when flavor is not NULL.
3700         * hurd/hurdsig.c (signal_allowed): Unlock _hurd_dtable_lock
3701         mutex after SIGIO/SIGURG lookup loop.
3703 2009-01-03  Samuel Thibault  <samuel.thibault@ens-lyon.org>
3705         * bits/resource.h (PRIO_PROCESS, PRIO_PGRP, PRIO_USER): Add macros.
3707 2009-01-03  Ulrich Drepper  <drepper@redhat.com>
3709         * sysdeps/unix/sysv/linux/i386/sysdep.h: Describe 6th argument
3710         handling.
3712 2009-01-02  Ulrich Drepper  <drepper@redhat.com>
3714         * sysdeps/unix/sysv/linux/kernel-features.h
3715         (__ASSUME_FUTEX_CLOCK_REALTIME): Define.
3717         * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Create temporary state object
3718         if no output is written.
3720         * version.h: Bump to 2.10 development.
3722         * posix/getconf.c: Update copyright year.
3723         * nss/getent.c: Likewise.
3724         * iconv/iconvconfig.c: Likewise.
3725         * iconv/iconv_prog.c: Likewise.
3726         * elf/ldconfig.c: Likewise.
3727         * catgets/gencat.c: Likewise.
3728         * csu/version.c: Likewise.
3729         * elf/ldd.bash.in: Likewise.
3730         * elf/sprof.c (print_version): Likewise.
3731         * locale/programs/locale.c: Likewise.
3732         * locale/programs/localedef.c: Likewise.
3733         * nscd/nscd.c (print_version): Likewise.
3734         * debug/xtrace.sh: Likewise.
3735         * malloc/memusage.sh: Likewise.
3736         * malloc/mtrace.pl: Likewise.
3737         * debug/catchsegv.sh: Likewise.
3739 2008-12-29  Mike Frysinger  <vapier@gentoo.org>
3741         * iconvdata/Makefile (iconv-rules): Use LC_ALL=C when running awk
3742         script.
3744 2008-12-29  Ulrich Drepper  <drepper@redhat.com>
3746         * sysdeps/posix/getaddrinfo.c (gaih_inet): When the
3747         gethostbyname4_r function call succeeded, just leave the loop.
3749         [BZ #9694]
3750         * wcsmbs/wchar.h: Move undefs for local __need_* constants to the
3751         very end.
3752         * wctype/wctype.h: Get wint_t definition directly from <stddef.h>.
3753         * wctype/Makefile (tests): Add bug-wctypeh.
3754         * wctype/bug-wctypeh.c: New file.
3756         * nscd/nscd_gethst_r.c (nscd_gethst_r): Don't use nscd if
3757         LOCALDOMAIN is defined.
3758         * nscd/nscd_getai.c (__nscd_getai): Likewise.
3760         * sysdeps/x86_64/bits/select.h: New file.
3762         * resolv/res_init.c (__res_vinit): Count all servers in statp->nscount.
3764 2008-12-21  Bruno Haible  <bruno@clisp.org>
3766         [BZ #9677]
3767         * wcsmbs/mbsnrtowcs.c (__mbsnrtowcs): Create temporary state object
3768         if no output is written.
3770 2008-12-13  Klaus Dittrich  <kladit@arcor.de>
3772         * login/utmp_file.c (pututline_file): Replace call to dup2 with
3773         libc internal symbol __dup2 to avoid access through the PLT.
3775 2008-12-08  Ulrich Drepper  <drepper@redhat.com>
3777         [BZ #6545]
3778         * sysdeps/unix/sysv/linux/bits/socket.h (SCM_CREDENTIALS): Make
3779         available only for __USE_GNU.
3781         * inet/Makefile (tests): Add tst-getni2.
3782         * inet/tst-getni2.c: New file.
3784         [BZ #7080]
3785         * inet/getnameinfo.c (getnameinfo): Check for output buffers being
3786         NULL when NI_NAMEREQD is set.
3787         Patch mostly by Yang Hongyang <yanghy@cn.fujitsu.com>.
3788         * inet/Makefile (tests): Add tst-getni1.
3789         * inet/tst-getni1.c: New file.
3791 2008-12-03  Petr Baudis  <pasky@suse.cz>
3793         [BZ #7067]
3794         * nscd/connections.c (invalidate_cache): Use prune_run_lock
3795         instead of prune_lock.
3796         (nscd_run_prune): Before calling prune_cache, take prune_run_lock.
3797         * nscd/nscd.h (database_dyn): Add prune_run_cache.
3799 2008-12-07  Ulrich Drepper  <drepper@redhat.com>
3801         * resolv/res_send.c (send_dg): Use correct guards for SOCK_CLOEXEC
3802         use.
3804         * sysdeps/unix/sysv/linux/kernel-features.h: Fix typo in accept4
3805         handling.
3807         * resolv/res_init.c (__res_vinit): Always assign to statp->nscount
3808         after reading name server list.
3810         [BZ #7058]
3811         * nis/nss_nis/nis-hosts.c (_nss_nis_gethostbyname4_r): Fix memory
3812         handling for host name aliases.
3814 2008-11-24  Arkadiusz MiÅ›kiewicz  <arekm@maven.pl>
3816         * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Use LOAD_PIC_REG
3817         instead of doing things manually.
3819 2008-11-26  Chris Steel  <chris.steel.lnx@googlemail.com>
3821         * posix/regex_internal.h (build_wcs_upper_buffer):
3822         Return type is reg_error_t.
3824 2008-12-05  Ulrich Drepper  <drepper@redhat.com>
3826         * posix/globtest.sh: Use mktemp to create temporary file and
3827         directory.
3829         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_SET_S): Handle large
3830         sets correctly.
3831         (__CPU_CLR_S): Likewise.
3832         (__CPU_ISSET_S): Likewise.
3834 2008-12-05  Joseph Myers  <joseph@codesourcery.com>
3835             Ulrich Drepper  <drepper@redhat.com>
3837         * scripts/firstversion.awk: Use custom comparison function to compare
3838         version numbers.
3839         * scripts/versions.awk: Use sort invocation which can handle
3840         multi-digit sub-version numbers.
3842 2008-12-04  Ulrich Drepper  <drepper@redhat.com>
3844         * locale/programs/ld-address.c (DEFINE_LANGUAGE_CODE2): Define.
3845         * locale/iso-639.def: Add Chhattisgarhi entry.
3847 2008-12-02  Ulrich Drepper  <drepper@redhat.com>
3849         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Recognize
3850         ESRCH return value.
3851         (_nss_dns_gethostbyname4_r): Likewise.
3852         * resolv/res_init.c (__res_vinit): Initialize nscount to zero.
3853         * sysdeps/posix/getaddrinfo.c (gaih_inet): In case we use
3854         gethostbyname4_r, we don't have a separate IPv6 status, so copy
3855         the no_data variable.
3857         * resolv/res_init.c (__res_vinit): Fill in IPv4 name server
3858         information at the correct index.
3860         * socket/sys/socket.h: Declare accept4.
3861         * socket/accept4.c: New file.
3862         * sysdeps/unix/sysv/linux/accept4.c: New file.
3863         * sysdeps/unix/sysv/linux/i386/accept4.S: New file.
3864         * socket/Makefile (routines): Add accept4.
3865         * socket/Versions: Export accept4 with version GLIBC_2.10.
3866         * socket/paccept.c: Removed.
3867         * sysdeps/unix/sysv/linux/paccept.c: Removed.
3868         * sysdeps/unix/sysv/linux/i386/paccept.S: Removed.
3869         * Versions.def: Define GLIBC_2.10 for libc.
3870         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_ACCEPT4.
3872         * nscd/connections.c: Use accept4.
3874         * sysdeps/unix/sysv/linux/i386/socket.S: Fix comment.
3876 2008-12-01  Ulrich Drepper  <drepper@redhat.com>
3878         * resolv/res_send.c (send_dg): Create sockets with non-blocking
3879         flag already set.
3881         * stdlib/setenv.c (unsetenv): Don't search environment if it does
3882         not exist.
3883         * stdlib/Makefile (tests): Add tst-unsetenv1.
3884         * stdlib/tst-unsetenv1.c: New file.
3886 2008-11-29  Ulrich Drepper  <drepper@redhat.com>
3888         * login/utmp_file.c (file_writable): New variable.
3889         (setutent_file): Don't try to open file for writing.
3890         (pututline_file): Before writing, make descriptor writable if
3891         necessary.
3893 2008-11-26  Ulrich Drepper  <drepper@redhat.com>
3895         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Only restrict search
3896         to IPv4 or IPv6 if an interface has been found.
3898 2008-11-26  Roland McGrath  <roland@redhat.com>
3900         * sysdeps/unix/sysv/linux/alpha/ipc_priv.h: Renamed to ...
3901         * sysdeps/unix/sysv/linux/powerpc/ipc_priv.h: ... here.
3903         * sysdeps/unix/sysv/linux/alpha/wordexp.c: Renamed to ...
3904         * sysdeps/unix/sysv/linux/ia64/wordexp.c: ... here.
3905         * sysdeps/unix/sysv/linux/sparc/sparc64/wordexp.c: Change #include.
3907         * elf/elf.h (NT_386_IOPERM): New macro.
3908         (NT_PPC_VSX): New macro.
3910 2008-11-25  Roland McGrath  <roland@redhat.com>
3912         * sysdeps/alpha, sysdeps/unix/bsd/osf/alpha,
3913         sysdeps/unix/bsd/Attic/osf1/alpha, sysdeps/unix/sysv/linux/alpha,
3914         sysdeps/unix/sysv/linux/alpha/alpha, sysdeps/unix/alpha,
3915         sysdeps/mach/alpha, sysdeps/mach/hurd/alpha:
3916         Subdirectories moved to ports repository.
3917         * configure.in (base_machine): Remove alpha case.
3919 2008-11-25  Thomas Schwinge  <tschwinge@gnu.org>
3921         * sysdeps/mach/strerror_l.c: New file.
3923 2008-11-13  Ryan S. Arnold  <rsa@us.ibm.com>
3925         [BZ #6411]
3926         * sysdeps/powerpc/fpu/Makefile: Added test case tst-setcontext-fpscr.
3927         * sysdeps/powerpc/fpu/feholdexcpt.c (_FPU_MASK_ALL): Define to replace
3928         magic numbers.
3929         * sysdeps/powerpc/fpu/fenv_libc.h (fesetenv_register): Dynamically
3930         choose mtfsf insn based on PPC_FEATURE_HAS_DFP.
3931         (relax_fenv_state): Same as above.
3932         (FPSCR_29): Reserve bit in ISA 2.05.
3933         (FPSCR_NI): Provide define for compat.
3934         * sysdeps/powerpc/fpu/fesetenv.c (_FPU_MASK_ALL): Define to replace
3935         magic numbers.
3936         * sysdeps/powerpc/fpu/feupdateenv.c (_FPU_MASK_ALL): Define to replace
3937         magic numbers.
3938         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c: New file.  Test case to
3939         test setcontext and swapcontext with dynamic 64-bit FPSCR detection.
3940         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp): Adjust
3941         access to hwcap to account for hwcap size increase to uint64_t.
3942         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S (__sigsetjmp ):
3943         Likewise.
3944         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S
3945         (*setcontext): Likewise.
3946         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/setcontext.S:
3947         New file.
3948         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/swapcontext.S:
3949         New file.
3950         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
3951         (*setcontext): dynamically select mtfsf insn based on
3952         PPC_FEATURE_HAS_DFP. Adjust access to hwcap to account for hwcap size
3953         increase to uint64_t.
3954         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
3955         (*swapcontext): dynamically select mtfsf insn based on
3956         PPC_FEATURE_HAS_DFP.  Adjust access to hwcap to account for hwcap size
3957         increase to uint64_t.
3958         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/setcontext.S:
3959         New file.
3960         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/swapcontext.S:
3961         New file.
3962         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
3963         (*setcontext): dynamically select mtfsf insn based on
3964         PPC_FEATURE_HAS_DFP.
3965         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
3966         (*swapcontext): dynamically select mtfsf insn based on
3967         PPC_FEATURE_HAS_DFP.
3969 2008-11-13  Ulrich Drepper  <drepper@redhat.com>
3971         * version.h: Bump for 2.9 release.
3972         * include/features.h (__GLIBC_MINOR__): Bump to 9.
3974         [BZ #7029]
3975         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_ALLOC_SIZE):
3976         Multiply with sizeof of __cpu_mask, not 8 unconditionally after
3977         all the rounding.
3979 2008-11-11  Ulrich Drepper  <drepper@redhat.com>
3981         [BZ #7009]
3982         * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): Don't abort for
3983         unknown request types for now.
3985 2008-11-11  Roland McGrath  <roland@redhat.com>
3987         * sysdeps/x86_64/configure: New file.
3989         * configure.in: Add AC_SUBST(libc_cv_cpp_asm_debuginfo).
3990         * configure: Regenerated.
3992 2008-11-03  Martin Schwidefsky  <schwidefsky@de.ibm.com>
3994         * sysdeps/s390/s390-64/dl-trampoline.S (_dl_runtime_profile): Use the
3995         correct instruction to remove the stack frame.
3997 2008-11-03  Michael Matz  <matz@suse.de>
3999         * sysdeps/s390/bits/atomic.h (__arch_compare_and_exchange_val_32_acq,
4000         __arch_compare_and_exchange_val_64_acq): Add "memory" clobber.
4002 2008-11-07  Jakub Jelinek  <jakub@redhat.com>
4004         * include/stdio.h (__builtin_fwrite, __builtin_fwrite_unlocked):
4005         Remove.
4007         * bits/libc-tsd.h (__libc_tsd_define, __libc_tsd_address,
4008         __libc_tsd_get, __libc_tsd_set): Add TYPE argument, use it as the type
4009         of the thread variable instead of void *.
4010         * sysdeps/mach/hurd/bits/libc-tsd.h (__libc_tsd_define,
4011         __libc_tsd_address, __libc_tsd_get, __libc_tsd_set): Likewise.
4012         * include/ctype.h (CTYPE_B, CTYPE_TOUPPER, CTYPE_TOLOWER): Adjust
4013         __libc_tsd_define arguments.
4014         (__ctype_b_loc, __ctype_toupper_loc, __ctype_tolower_loc): Adjust
4015         __libc_tsd_address arguments.  Remove union hack.
4016         * include/rpc/rpc.h (RPC_VARS): Adjust __libc_tsd_define arguments.
4017         * sunrpc/rpc_thread.c (RPC_VARS): Likewise.
4018         (__rpc_thread_destroy, rpc_thread_multi, __rpc_thread_variables):
4019         Adjust __libc_tsd_{set,get} arguments.
4020         * ctype/ctype-info.c (CTYPE_B, CTYPE_TOUPPER, CTYPE_TOLOWER): Adjust
4021         __libc_tsd_define arguments.
4022         * locale/uselocale.c (__uselocale): Adjust __libc_tsd_{set,get}
4023         arguments.
4024         * locale/lc-ctype.c (_nl_postload_ctype): Likewise.
4025         * locale/global-locale.c (__libc_tsd_LOCALE): Adjust type.
4026         (LOCALE): Adjust __libc_tsd_define arguments.
4027         * locale/localeinfo.h (_NL_CURRENT_LOCALE): Adjust __libc_tsd_get
4028         arguments.
4029         (LOCALE): Adjust __libc_tsd_define arguments.
4030         * sysdeps/mach/hurd/malloc-machine.h (MALLOC): Adjust __libc_tsd_define
4031         arguments.
4032         (tsd_setspecific, tsd_getspecific): Adjust __libc_tsd_{set,get}
4033         arguments.
4035 2008-11-02  Ulrich Drepper  <drepper@redhat.com>
4037         * malloc/malloc.c (public_rEALLOc): When new arena is used, copy
4038         really all bytes.  Patch by Denys Vlasenko <dvlasenk@redhat.com>.
4040 2008-11-01  Ulrich Drepper  <drepper@redhat.com>
4042         [BZ #6966]
4043         * misc/hsearch_r.c (hsearch_r): Fix secondary hash function.
4045 2008-10-24  Joseph Myers  <joseph@codesourcery.com>
4046             Ulrich Drepper  <drepper@redhat.com>
4048         * math/tgmath.h (__floating_type): Use __builtin_classify_type in
4049         definition for GCC 3.1 and later.
4051 2008-10-31  Jakub Jelinek  <jakub@redhat.com>
4053         * elf/dl-tls.c (__tls_get_addr): After calling _dl_update_slotinfo
4054         refetch dtv, as it might have changed.
4055         * elf/Makefile: Add rules to build and run tst-tls18.
4056         * elf/tst-tls18.c: New test.
4057         * elf/tst-tlsmod18a.c: New file.
4059 2008-09-09  Aurelien Jarno  <aurelien@aurel32.net>
4061         [BZ #6875]
4062         * iconvdata/gconv-modules: Add LATIN9 as an alias to ISO-8859-15.
4064 2008-10-31  Ulrich Drepper  <drepper@redhat.com>
4066         [BZ #6867]
4067         * sysdeps/powerpc/elf/rtld-global-offsets.sym: Fix typo.
4069         [BZ #6919]
4070         * posix/spawnattr_getschedparam.c (posix_spawnattr_getschedparam):
4071         Fix length of copy operation.
4073 2008-10-02  Pierre Habouzit <madcoder@debian.org>
4075         * sysdeps/unix/sysv/linux/eventfd.c (eventfd): Use the eventfd2 syscall
4076         and fix its calling convention.
4078 2008-10-07  Andreas Schwab  <schwab@suse.de>
4080         [BZ #6942]
4081         * resolv/res_send.c (send_vc): Fix last change.
4082         (send_dg): Align here as well.
4084 2008-10-31  Ulrich Drepper  <drepper@redhat.com>
4086         * sysdeps/unix/sysv/linux/ulimit.c (__ulimit): Handle UL_GETFSIZE
4087         return value in case rlimit is RLIM_INFINITY.
4089         [BZ #6947]
4090         * sysdeps/unix/sysv/linux/ulimit.c (__ulimit): Fix return value
4091         for UL_SETFSIZE.
4092         * resource/Makefile (tests): Add bug-ulimit1.
4093         * resource/bug-ulimit1.c: New file.
4095         [BZ #6974]
4096         * sunrpc/rpc_main.c (mkfile_output): Properly handle filename
4097         without dot.  Properly terminate the string with a null byte.
4098         Based on a patch by Aurelien Jarno <aurelien@aurel32.net>.
4100         [BZ #6980]
4101         * debug/getgroups_chk.c (__getgroups_chk): Return EINVAL error for
4102         negative sizees.
4103         * posix/bits/unistd.h (getgroups): Call __getgroups_chk for
4104         negative __size.
4106         [BZ #6995]
4107         * sysdeps/powerpc/powerpc32/dl-machine.c: Fix typo in message.
4109 2008-10-30  Ulrich Drepper  <drepper@redhat.com>
4111         * grp/initgroups.c (internal_getgrouplist): Don't prematurely
4112         abort if there is no initgroups_dyn function.
4114         * resolv/res_send.c (send_dg): On timeout, only return nonzero
4115         result if any of the queries really provided an answer.
4117 2008-10-28  Ulrich Drepper  <drepper@redhat.com>
4119         * po/lt.po: Update from translation team.
4121 2008-10-26  Ulrich Drepper  <drepper@redhat.com>
4123         * po/id.po: Update from translation team.
4125 2008-10-24  Ulrich Drepper  <drepper@redhat.com>
4127         * resolv/res_query.c (__libc_res_nquery): Add a few casts.
4128         Fix tests for existence of second reply.
4130 2008-10-23  Ulrich Drepper  <drepper@redhat.com>
4132         * po/id.po: New file.
4133         Contributed by the Indonesian translation team.
4135 2008-10-22  Dmitry V. Levin  <ldv@altlinux.org>
4137         * misc/syslog.c (openlog_internal): Fix __have_sock_cloexec
4138         initialization.
4140 2008-10-17  Jakub Jelinek  <jakub@redhat.com>
4142         * elf/Makefile: Add rules to build and run tst-tls17.
4143         * elf/tst-tls17.c: New test.
4144         * elf/tst-tlsmod17a.c: New file.
4145         * elf/tst-tlsmod17b.c: Likewise.
4147 2008-10-17  Ulrich Drepper  <drepper@redhat.com>
4149         * stdlib/divmod_1.c: Use correct type for dummy variable.
4150         * stdlib/mod_1.c: Likewise.
4152 2008-10-16  Ulrich Drepper  <drepper@redhat.com>
4154         * elf/dl-tls.c (_dl_update_slotinfo): Copy all of the initial DTV.
4156 2008-10-16  Jakub Jelinek  <jakub@redhat.com>
4158         * sysdeps/unix/sysv/linux/sys/signalfd.h (signalfd): Fix __THROW vs.
4159         __nonnull order for C++.
4160         * sysdeps/unix/sysv/linux/alpha/sys/signalfd.h (signalfd): Likewise.
4161         * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h (signalfd): Likewise.
4163 2008-10-01  Daniel Jacobowitz  <dan@codesourcery.com>
4165         * stdlib/longlong.h: Update from GCC.
4167 2008-10-09  Jakub Jelinek <jakub@redhat.com>
4168             David S. Miller  <davem@davemloft.net>
4170         * sysdeps/sparc/sparc64/sparcv9v/memcpy.S: When not USE_BPR,
4171         make sure any registers used with 64-bit 'branch-on-register'
4172         instructions have their top 32-bits clear.
4173         * sysdeps/sparc/sparc64/sparcv9v/memset.S: Likewise.
4174         * sysdeps/sparc/sparc64/sparcv9v2/memcpy.S: Likewise.
4176 2008-09-18  Andreas Schwab  <schwab@suse.de>
4178         [BZ #6942]
4179         * resolv/res_send.c (send_vc): Fix use of unaligned address.
4180         Properly handle partial reads.
4182 2008-10-01  Mark Shinwell  <shinwell@codesourcery.com>
4184         * elf/elf.h (STO_MIPS_PLT): New.
4185         (R_MIPS_COPY): New.
4186         (R_MIPS_JUMP_SLOT): New.
4187         (R_MIPS_NUM): Redefine to 128.
4188         (DT_MIPS_PLTGOT): New.
4189         (DT_MIPS_RWPLT): New.
4190         (DT_MIPS_NUM): Redefine to 0x35.
4192 2008-10-01  Ulrich Drepper  <drepper@redhat.com>
4194         * timezone/africa: Update from tzdata2008f.
4195         * timezone/asia: Likewise.
4196         * timezone/australasia: Likewise.
4197         * timezone/europe: Likewise.
4198         * timezone/leapseconds: Likewise.
4199         * timezone/northamerica: Likewise.
4200         * timezone/southamerica: Likewise.
4201         * timezone/zone.tab: Likewise.
4203 2008-09-30  Ulrich Drepper  <drepper@redhat.com>
4205         * nscd/connections.c: Disable use of paccept for now.
4207 2008-09-29  Ulrich Drepper  <drepper@redhat.com>
4209         * socket/Versions: Remove paccept export for GLIBC_2.9.
4210         * socket/Makefile (routines): Remove paccept.
4211         * socket/sys/socket.h: Remove paccept declaration.
4213         * po/sv.po: Update from translation team.
4215 2008-09-22  Deborah S. Townsend  <dstownse@us.ibm.com>
4217         * sysdeps/s390/s390-64/s390x-mcount.S: Replace ahi with aghi.
4218         * sysdeps/unix/sysv/linux/s390/s390-64/socket.S: Likewise.
4220 2008-09-16  Ulrich Drepper  <drepper@redhat.com>
4222         * dlfcn/dlopen.c (dlopen_doit): Allow __RTLD_SPROF flag.
4223         Patch by Olivier Fourdan <ofourdan@redhat.com>.
4225 2008-09-15  Ulrich Drepper  <drepper@redhat.com>
4227         * sunrpc/rpc/svc.h: Declare svcfd_create.
4228         Patch by Michael Solberg <msolberg@redhat.com>.
4230 2008-09-12  Flavio Leitner  <fleitner@redhat.com>
4231             Ulrich Drepper  <drepper@redhat.com>
4233         * malloc/malloc.c (public_vALLOc): Try other arenas in case
4234         _int_valloc fails.
4235         (public_pVALLOc): Likewise.
4237 2008-09-02  Andreas Jaeger  <aj@suse.de>
4239         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: Fix last
4240         commit.
4242 2008-08-26  Aurelien Jarno  <aurelien@aurel32.net>
4244         [BZ #6860]
4245         * hurd/hurd/signal.h (HURD_MSGPORT_RPC): Fix a typo.
4247 2008-07-18  Daniel Jacobowitz  <dan@codesourcery.com>
4249         * Makefile (check-data): Check data directory in add-ons.
4250         * elf/Makefile (check-data): Likewise.
4252 2008-08-18  Roland McGrath  <roland@redhat.com>
4254         * configure.in (--with-cpu): Check compiler support for -march/-mcpu.
4255         * configure: Regenerated.
4256         * config.make.in (cflags-cpu): New substituted variable.
4257         (with-cpu): Variable removed.
4258         * Makeconfig (+cflags): Use $(cflags-cpu), not $(with-cpu).
4260 2008-08-14  Ryan S. Arnold  <rsa@us.ibm.com>
4262         [BZ #6845]
4263         * sysdeps/powerpc/fpu/bits/mathinline.h (__signbitl): Copy new
4264         __signbitl definition and __LONG_DOUBLE_128__ guard from:
4265         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: Remove as
4266         redundant.  Functions which call floating point assembler operations
4267         should go into a sysdeps powerpc/fpu directory.
4269 2008-08-15  Ulrich Drepper  <drepper@redhat.com>
4271         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Define MAP_STACK.
4272         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Likewise.
4274 2008-08-14  Ulrich Drepper  <drepper@redhat.com>
4276         * sysdeps/x86_64/memset.S: Reduce size of tables for PIC.
4278         * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): Undo all
4279         change related to AT_EXECFN.  We cannot use that string.
4280         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Remove
4281         _dl_execfn member.
4282         * elf/dl-support.c: Remove _dl_execfn variable.
4283         (_dl_aux_init): Remove handling of AT_EXECFN.
4284         * elf/dl-sysdep.c (_dl_sysdep_start): Remove handling of AT_EXECFN.
4285         * elf/rtld.c (process_envvars): Remove use of __ASSUME_AT_EXECFN.
4287 2008-08-13  Ulrich Drepper  <drepper@redhat.com>
4289         [BZ #6544]
4290         * libio/fmemopen.c: Implement binary mode.  In this mode no NUL
4291         byte gets added to writes and seeks from the end use the length of
4292         the buffer and not the currently terminating NUL byte.
4294         [BZ #6634]
4295         * login/utmp_file.c (getutent_r_file): Take additional parameter.
4296         Set to true if locking failed.
4297         (getutid_r_file): Adjust caller.
4298         (pututline_file): Likewise.  Return NULL in this case.
4299         Patch mostly by halesh.s@gmail.com.
4301 2008-08-12  Ulrich Drepper  <drepper@redhat.com>
4303         [BZ #6589]
4304         * sysdeps/unix/sysv/linux/ifaddrs.c (struct sockaddr_ll_max):
4305         Define.
4306         (struct ifaddrs_storage): Use it instead of sockaddr_ll.
4308 2008-08-12  Ryan S. Arnold  <rsa@us.ibm.com>
4310         [BZ #6839]
4311         * sysdeps/powerpc/powerpc32/dl-machine.c (CHECK_STATIC_TLS): Remove
4312         macro since it is now available in elf/dynamic-link.h.
4314 2008-08-12  Roland McGrath  <roland@frob.com>
4316         * hurd/hurd/signal.h (HURD_MSGPORT_RPC): Avoid -Wparenthesis triggers,
4317         in case used outside of libc.
4318         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>
4320 2008-08-11  Ulrich Drepper  <drepper@redhat.com>
4322         * resolv/res_mkquery.c (res_nmkquery): Call ns_name_compress
4323         directly instead of going through dn_comp.
4325 2008-08-11  Aurelien Jarno  <aurel32@debian.org>
4327         * sysdeps/mach/i386/machine-lock.h (__spin_unlock, __spin_try_lock):
4328         Fix asm constraints.
4330 2008-08-07  Ulrich Drepper  <drepper@redhat.com>
4332         [BZ #6790]
4333         * sysdeps/unix/sysv/linux/bits/in.h (IP_PMTUDISC_PROBE): Define.
4334         (IPV6_PMTUDISC_PROBE): Likewise.
4336 2008-08-07  Pete Eberlein  <eberlein@us.ibm.com>
4338         [BZ #6791]
4339         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h (PROT_SAO): Define.
4341 2008-08-01  Steven Munroe  <sjmunroe@us.ibm.com>
4342             Carlos Eduardo Seo  <cseo@linux.vnet.ibm.com>
4344         [BZ #6817]
4345         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags):
4346         Added the members 'vsx' and 'arch_2_06'.
4347         (_dl_powerpc_platforms): Add the member 'power7'.
4348         * sysdeps/powerpc/dl-procinfo.h: Modify _DL_HWCAP_FIRST
4349         to reflect the changes required by VSX and ISA 2.06.
4350         Modify _DL_PLATFORMS_COUNT to reflect the addition of
4351         'power7'.
4352         Defined PPC_PLATFORM_POWER7.
4353         (_dl_string_platform): Add support for POWER7.
4354         * sysdeps/powerpc/sysdep.h: Define bit masks for VSX
4355         capability and ISA 2.06.
4357 2008-08-07  Ulrich Drepper  <drepper@redhat.com>
4359         [BZ #6824]
4360         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: Use correct
4361         macro to detect use of 128 bit long double.
4362         Patch by Ryan S. Arnold <rsa@us.ibm.com>.
4364 2008-08-05  Ulrich Drepper  <drepper@redhat.com>
4366         * scripts/gen-as-const.awk: Use 32-bit values on 32-bit platforms.
4368         [BZ #5794]
4369         * sysdeps/i386/fpu/s_expm1l.S: Simply use exp implementation for large
4370         parameters.
4371         * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
4372         Patch by Denys Vlasenko <dvlasenk@redhat.com>.
4374 2008-08-03  Ulrich Drepper  <drepper@redhat.com>
4376         * nscd/connections.c (main_loop_poll): Pass a buffer which is
4377         guaranteed to be large enough to read inotify event.  Ignore
4378         EAGAIN error.  Better error message.  Add branch predicition.
4379         (main_loop_epoll): Likewise.
4381 2008-08-02  Roland McGrath  <roland@frob.com>
4383         * sysdeps/mach/i386/machine-lock.h (__spin_unlock, __spin_try_lock):
4384         Add memory clobbers.
4386 2008-08-02  Ulrich Drepper  <drepper@redhat.com>
4388         * manual/arith.texi: Avoid @strong{Note:}.
4389         * manual/creature.texi: Likewise.
4390         * manual/filesys.texi: Likewise.
4391         * manual/math.texi: Likewise.
4392         * manual/memory.texi: Likewise.
4393         * manual/resource.texi: Likewise.
4394         * manual/syslog.texi: Likewise.
4395         * manual/time.texi: Likewise.
4397         * sysdeps/posix/clock_getres.c (hp_timing_getres): Remove inline
4398         to prevent warning.
4400 2008-08-01  Ulrich Drepper  <drepper@redhat.com>
4402         * sysdeps/unix/sysv/linux/Versions: Fix changes due to old patch for
4403         new epoll_create1 interface.
4404         * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
4405         * sysdeps/unix/sysv/linux/sys/epoll.h: Likewise.
4406         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
4408         * include/arpa/nameser.h (NS_GET16): Use const pointer.
4409         (NS_GET32): Likewise.
4411         * sysdeps/unix/sysv/linux/kernel-features.h: s390 has the new
4412         syscalls, too.
4414         * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): We cannot
4415         use the AT_EXECFN value if it is no absolute path.
4416         * sysdeps/unix/sysv/linux/kernel-features.h: Never define
4417         __ASSUME_AT_EXECFN.
4419         * Versions.def: Add GLIBC_2.9 to libresolv.
4420         * include/resolv.h: Remove hidden proto declarations for __ns_*
4421         functions.  Add them for __dn_count_labels and __p_secstodate.
4422         * include/arpa/nameser.h: Add a number of hidden proto declarations.
4423         Define ns_msg_getflags macro here.
4424         * resolv/res_debug.c: Add hidden definition for __dn_count_labels
4425         and __p_secstodate.
4426         * resolv/Versions: Export functions from <arpa/nameser.h> from
4427         libresolv in version GLIBC_2.9.
4428         * resolv/ns_name.c: Integrate changes from bind 9.5.0.  Add necessary
4429         hidden definitions.
4430         * resolv/ns_netint.c: Likewise.
4431         * resolv/ns_parse.c: Likewise.
4432         * resolv/ns_print.c: Likewise.
4433         * resolv/ns_samedomain.c: Likewise.
4434         * resolv/ns_ttl.c: Likewise.
4435         * resolv/arpa/nameser_compat.h: Likewise.
4436         * resolv/arpa/nameser.h: Likewise.  Remove macros which redirect
4437         function calls.
4438         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Use __ns_get16
4439         instead of ns_get16.
4440         * resolv/nss_dns/dns-host.c (getanswer_r): Use __ns_get16 and
4441         __ns_get32 instead of ns_get16 and ns_get32 respectively.
4442         (gaih_getanswer_slice): Likewise.
4443         * resolv/Makefile (libresolv-routines): Add ns_date.
4444         * resolv/ns_date.c: New file.
4446         * elf/Makefile (check-localplt.out): Also check libresolv and
4447         libcrypt.
4449 2008-07-31  Ulrich Drepper  <drepper@redhat.com>
4451         * sysdeps/unix/sysv/linux/kernel-features.h: Define
4452         __ASSUME_O_CLOEXEC.
4454 2008-07-30  Ulrich Drepper  <drepper@redhat.com>
4456         * sysdeps/posix/getaddrinfo.c (gaih_inet): Raise size of initial
4457         buffer passed to NSS functions.
4459         * nscd/connections.c (nscd_init): Typo in preprocessor directive.
4461         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PACCEPT):
4462         Define.
4464         * misc/syslog.c (openlog_internal): Fix compile problem.
4466 2008-07-28  Roland McGrath  <roland@redhat.com>
4468         * elf/dl-sysdep.c (_dl_show_auxv): Add AT_EXECFN to the table.
4470 2008-07-28  Ulrich Drepper  <drepper@redhat.com>
4472         * io/ftw.c (add_object): Remove inline to avoid warning.
4474         * sysdeps/unix/sysv/linux/paccept.c: Fix compile problem.
4476         * resolv/res_send.c (__libc_res_nsend): Take additional parameter.
4477         Use it instead of locally defined resplen2 variable.
4478         (res_nsend): Adjust for __libc_res_nsend interface change.
4479         (send_vc): Initialize *resplen2 if necessary.  Read length of
4480         package into an appropriately aligned variable.  Store converted length
4481         in new variable and use it appropriately.
4482         Add branch prediction help.
4483         * resolv/res_query.c (__libc_res_nquery): Take additional parameter
4484         and pass it on to __libc_res_nsend.  Adjust all callers.
4485         (__libc_res_nsearch): Likewise.
4486         (__libc_res_nqeurydomain): Likewise.
4487         * resolv/nss_dns/dns-host.c: Adjust for __libc_res_nsearch interface
4488         change.
4489         (_nss_dns_gethostbyname4): Don't unconditionally allocate tmp array.
4490         Define resplen2 variable and pass it to __libc_res_nsearch and then
4491         to gaih_getanswer.
4492         (getanswer_r): In case of incorrect DNS data don't overread buffer.
4493         Add branch prediction.
4494         (gaih_getanswer_slice): Likewise.  Check for invalid data types.
4495         (gaih_getanswer): Don't decode second slice if first one failed due
4496         to a too small buffer.  Don't let not found status of second
4497         decoder shadow results of the first.
4498         * resolv/gethnamaddr.c (gethostbyname2): Adjust for __libc_res_nsearch
4499         and __libc_res_nquery interface changes
4500         (gethostbyaddr): Adjust for __libc_res_nquery interface change.
4501         * include/resolv.h: Adjust prototypes for __libc_res_nquery,
4502         __libc_res_nsearch, and __libc_res_nsend.
4503         * resolv/nss_dns/dns-canon.c: Adjust for __libc_res_nquery interface
4504         change.
4505         * resolv/nss_dns/dns-network.c: Adjust for __libc_res_nquery and
4506         __libc_res_nsearch interface changes.
4508 2008-07-27  Ulrich Drepper  <drepper@redhat.com>
4510         * libio/iopopen.c (_IO_new_proc_open): Remove unnecessary volatile.
4512         * posix/wordexp.c (exec_comm): Use pipe2 if possible to create
4513         file descriptors with close-on-exec set.
4514         (exec_comm_child): Fix the case where the write end of the pipe is
4515         STDOUT_FILENO already.  In case it is, clear close-on-exec.
4517         * sysdeps/unix/sysv/linux/syscalls.list: Add __pipe2 alias.
4518         * io/pipe2.c: Likewise.
4519         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PIPE2
4520         instead of __ASSUME_PACCEPT.
4521         * include/unistd.h: Declare __have_pipe2.
4522         * libio/iopopen.c: Implement "e" flag.
4523         * libio/Makefile (tests): Add tst-popen1.
4524         * libio/tst-popen1.c: New file.
4526         * sysdeps/unix/sysv/linux/bits/socket.h: Define PF_ISDN and AF_ISDN.
4527         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
4529 2008-07-26  Ulrich Drepper  <drepper@redhat.com>
4531         [BZ #6771]
4532         * libio/fileops.c (_IO_new_file_attach): Preserve errno around
4533         success call of _IO_SEEKOFF or calls which failed because the
4534         descriptor is for a pipe.
4536         * sunrpc/key_call.c (getkeyserv_handle): Use FD_CLOEXEC instead of
4537         magic number.
4539         * misc/syslog.c (openlog_internal): Use SOCK_CLOEXEC if possible.
4541         * malloc/mtrace.c (mtrace): Use 'e' flag in fopen call.  Drop
4542         F_SETFD use if we know fopen set the flag.
4544         * login/utmp_file.c (setutent_file): Minor optimization in case
4545         O_CLOEXEC is available.
4547 2008-07-24  Tom "spot" Callaway  <tcallawa@redhat.com>
4549         * Makeconfig: Define pie-ccflag and PIE-ccflag variables.
4550         * elf/Makefile: Use pie-ccflag variable.
4551         * nscd/Makefile: Likewise.
4552         * sysdeps/sparc/Makefile: Set $(pie-ccflag) to -fPIE.
4554 2008-07-21  Andreas Krebbel  <krebbel1@de.ibm.com>
4556         [BZ #6724]
4557         * Versions.def: Add GLIBC_2.9 version tag for libutil.
4558         * sysdeps/unix/sysv/linux/s390/bits/utmp.h: Copy of
4559         gnu/bits/utmp.h.  Check for __WORDSIZE_COMPAT32 removed.
4560         * sysdeps/unix/sysv/linux/s390/bits/utmpx.h: Copy of
4561         gnu/bits/utmpx.h.  Check for __WORDSIZE_COMPAT32 removed.
4562         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Add new files
4563         utmp32, utmpx32 and login32.
4564         * sysdeps/unix/sysv/linux/s390/s390-32/Versions: Add 2.9
4565         versions of struct utmp functions to libc and libutil.
4566         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-compat.h: New file.
4567         * sysdeps/unix/sysv/linux/s390/s390-32/getutent.c: New file.
4568         * sysdeps/unix/sysv/linux/s390/s390-32/getutent_r.c: New file.
4569         * sysdeps/unix/sysv/linux/s390/s390-32/getutid.c: New file.
4570         * sysdeps/unix/sysv/linux/s390/s390-32/getutid_r.c: New file.
4571         * sysdeps/unix/sysv/linux/s390/s390-32/getutline.c: New file.
4572         * sysdeps/unix/sysv/linux/s390/s390-32/getutline_r.c: New file.
4573         * sysdeps/unix/sysv/linux/s390/s390-32/getutmp.c: New file.
4574         * sysdeps/unix/sysv/linux/s390/s390-32/getutxent.c: New file.
4575         * sysdeps/unix/sysv/linux/s390/s390-32/getutxid.c: New file.
4576         * sysdeps/unix/sysv/linux/s390/s390-32/getutxline.c: New file.
4577         * sysdeps/unix/sysv/linux/s390/s390-32/login.c: New file.
4578         * sysdeps/unix/sysv/linux/s390/s390-32/login32.c: New file.
4579         * sysdeps/unix/sysv/linux/s390/s390-32/pututxline.c: New file.
4580         * sysdeps/unix/sysv/linux/s390/s390-32/updwtmp.c: New file.
4581         * sysdeps/unix/sysv/linux/s390/s390-32/updwtmpx.c: New file.
4582         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: New file.
4583         * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.c: New file.
4584         * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h: New file.
4585         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx-convert.h: New file.
4586         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.c: New file.
4587         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: New file.
4589 2008-07-26  Ulrich Drepper  <drepper@redhat.com>
4591         * scripts/gen-as-const.awk: Generate more widely usable code by
4592         using 64-bit arithmetic.
4594         * stdio-common/printf_fp.c (___printf_fp): Give wide outout code
4595         the same treatment as narrow output code in last patch.
4597         * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Namespace cleanup.
4599         [BZ #6763]
4600         * elf/dl-load.c (local_strdup): Remove inline.
4601         (_dl_map_object_from_fd): Don't allocate l_symbolic_searchlist.r_list.
4602         * elf/dl-object.c (_dl_new_object): Allocate symbolic searchlist as
4603         part of the object.
4605         * sysdeps/unix/sysv/linux/dl-origin.c: Add const to avoid warning.
4607 2008-07-25  Ulrich Drepper  <drepper@redhat.com>
4609         * sysdeps/unix/sysv/linux/kernel-features.h: IA-64 and SPARC have
4610         the new syscalls, too.
4612         * sysdeps/i386/i686/memcmp.S: Fix unwind information.
4613         Reported by Paul Pluzhnikov <ppluzhnikov@google.com>.
4615         [BZ #6698]
4616         * stdio-common/_i18n_number.h (_i18n_number_rewrite): Take additional
4617         parameter for end of buffer.  If temporary copy is too large use
4618         malloc.
4619         * stdio-common/vfprintf.c: Adjust for _i18n_number_rewrite
4620         interface change.
4621         * stdio-common/printf_fp.c (__printf_fp): Likewise..  Account for
4622         string rewrite when allocating buffer.
4624         * sysdeps/unix/sysv/linux/kernel-features.h: PPC has the new
4625         syscalls, too.
4627         * nscd/connections.c (nscd_init): Clean up fcntl call.
4629         * nscd/nscd_helper.c (open_socket): Use SOCK_CLOEXEC and
4630         SOCK_NONBLOCK if possible.
4632         * sysdeps/unix/sysv/linux/opensock.c (__opensock): Use
4633         SOCK_CLOEXEC if available.
4635         * include/rpc/clnt.h: Declare __libc_clntudp_bufcreate and
4636         __libc_clntudp_bufcreate_internal.
4637         * include/sys/socket.h: Declare __have_sock_cloexec.
4638         * socket/Makefile (aux): Add have_sock_cloexec.
4639         * socket/have_sock_cloexec.c: New file.
4640         * sunrpc/clnt_udp.h (clntudp_bufcreate): Now a wrapper around
4641         __libc_clntudp_bufcreate.
4642         (__libc_clntudp_bufcreate): Former implementation of clntudp_bufcreate
4643         which takes an additional parameter.  Create socket with non-blocking
4644         mode and close-on-exec flag set, if wanted.
4645         * sunrpc/Versions: Export __libc_clntudp_bufcreate@GLIBC_PRIVATE.
4646         * nis/ypclnt.c (yp_bind_client_create): Use __libc_clntpudp_bufcreate
4647         instead of clntudp_create.  The socket has already the close-on-exec
4648         flag set if SOCK_CLOEXEC is defined.
4650 2008-07-24  Ulrich Drepper  <drepper@redhat.com>
4652         * sysdeps/unix/sysv/linux/kernel-features.h: Define
4653         __ASSUME_PACCEPT, __ASSUME_IN_NONBLOCK, and __ASSUME_PACCEPT if
4654         appropriate.
4655         * nscd/connections.c: Avoid fcntl calls to set close-on-exec flag and
4656         non-blocking mode by using socket, paccept, and inotify_init1.
4658         * Versions.def (glibc): Add GLIBC_2.9.
4659         * io/Makefile (routines): Add dup3 and pipe2.
4660         * io/Versions [glibc] (GLIBC_2.9): Add dup3 and pipe2.
4661         * io/dup3.c: New file.
4662         * io/pipe2.c: New file.
4663         * posix/unistd.h: Declare dup3 and pipe2.
4664         * socket/Makefile (routines): Add paccept.
4665         * socket/Versions [glibc] (GLIBC_2.9): Add paccept.
4666         * socket/paccept.c: New file.
4667         * socket/sys/socket.h: Declare paccept.
4668         * sysdeps/unix/syscalls.list: Add entry for dup3.
4669         * sysdeps/unix/sysv/linux/Versions [glibc] (GLIBC_2.9): Add
4670         epoll_create2 and inotify_init1.
4671         * sysdeps/unix/sysv/linux/eventfd.c: Use eventfd1 syscall if possible.
4672         * sysdeps/unix/sysv/linux/paccept.c: New file.
4673         * sysdeps/unix/sysv/linux/signalfd.c: Use signalfd4 syscall if
4674         possible.
4675         * sysdeps/unix/sysv/linux/socketcall.h: Add SOCKOP_paccept.
4676         * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_create2,
4677         inotify_init1, and pipe2 entries.
4678         * sysdeps/unix/sysv/linux/alpha/sys/epoll.h: New file.
4679         * sysdeps/unix/sysv/linux/alpha/sys/eventfd.h: New file.
4680         * sysdeps/unix/sysv/linux/alpha/sys/inotify.h: New file.
4681         * sysdeps/unix/sysv/linux/alpha/sys/signalfd.h: New file.
4682         * sysdeps/unix/sysv/linux/alpha/sys/timerfd.h: New file.
4683         * sysdeps/unix/sysv/linux/bits/socket.h: Define SOCK_CLOEXEC and
4684         SOCK_NONBLOCK.
4685         * sysdeps/unix/sysv/linux/i386/paccept.S: New file.
4686         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: New file.
4687         * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: New file.
4688         * sysdeps/unix/sysv/linux/sparc/sys/inotify.h: New file.
4689         * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h: New file.
4690         * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: New file.
4691         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: New file.
4692         * sysdeps/unix/sysv/linux/sys/epoll.h: Define EPOLL_CLOEXEC and
4693         EPOLL_NONBLOCK.  Declare epoll_create2.
4694         * sysdeps/unix/sysv/linux/sys/eventfd.h: Define EFD_CLOEXEC and
4695         EFD_NONBLOCK.
4696         * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOEXEC and
4697         IN_NONBLOCK.  Declare inotify_init1.
4698         * sysdeps/unix/sysv/linux/sys/signalfd.h: Define SFD_CLOEXEC and
4699         SFD_NONBLOCK.
4700         * sysdeps/unix/sysv/linux/sys/timerfd.h: Define TFD_CLOEXEC and
4701         TFD_NONBLOCK.
4703         * elf/elf.h: Define AT_EXECFN.
4704         * elf/rtld.c [!__ASSUME_AT_EXECFN] (process_envvars): Don't handle
4705         LD_ORIGIN_PATH.
4706         * elf/dl-sysdep.c (_dl_sysdep_start): Handle AT_EXECFN.
4707         * elf/dl-support.c: Define _dl_execfn.  Don't define _dl_origin_path
4708         if __ASSUME_AT_EXECFN is defined.
4709         (_dl_aux_init): Handle AT_EXECFN.
4710         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_AT_EXECFN
4711         for 2.6.27 and up.
4712         * sysdeps/generic/ldsodefs.h (rtld_global_ro): Add _dl_execfn.
4713         Don't define _dl_origin_path if __ASSUME_AT_EXECFN is defined.
4714         * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): Use
4715         _dl_execfn if available and avoid compatibility code if
4716         __ASSUME_AT_EXECFN is defined.
4718         * sysdeps/unix/sysv/linux/dl-sysdep.h: Don't declare
4719         _dl_discover_osversion only for older kernels.
4721 2008-07-22  Roland McGrath  <roland@frob.com>
4723         * hurd/fd-read.c (_hurd_fd_read): Fix last change.
4725 2008-07-21  Roland McGrath  <roland@frob.com>
4727         * hurd/fd-read.c (_hurd_fd_read): Return EGRATUITOUS if the server
4728         returned too much data out of line.
4730 2008-07-20  Ulrich Drepper  <drepper@redhat.com>
4732         * locale/setlocale.c (setname): Remove inline to avoid compiler
4733         warning.
4735         [BZ #6712]
4736         * locale/setlocale.c (setlocale): Take the setlocale lock earlier.
4738 2008-07-15  Ulrich Drepper  <drepper@redhat.com>
4740         * stdio-common/vfprintf.c (_IO_helper_overflow): In case _IO_sputn
4741         doesn't manage to write anything, fail.
4743         * malloc/hooks.c (__malloc_check_init): Remove printf.
4745 2008-07-14  Samuel Thibault  <samuel.thibault@ens-lyon.org>
4747         * sysdeps/mach/hurd/bits/fcntl.h: Include <sys/types.h>.
4749 2008-07-12  Ulrich Drepper  <drepper@redhat.com>
4751         * nscd/connections.c (main_loop_poll): Fix handling of read errors
4752         from inotify.
4753         (main_loop_epoll): Likewise.
4755 2008-07-09  Ulrich Drepper  <drepper@redhat.com>
4757         * resolv/res_send.c: Remove unnecessary res_pquery prototype.
4759         * resolv/res_query.c (__libc_res_nquery): Issue debug message only
4760         if DEBUG is defined.
4762         * resolv/res_query.c (__libc_res_nquery): Align buffer for T_AAAA
4763         query.  Adjust buffer size computation for padding.
4765 2008-07-08  Ulrich Drepper  <drepper@redhat.com>
4767         * stdio-common/Makefile: Add rules to build and run tst-setvbuf1.
4768         * stdio-common/tst-setvbuf1.c: New file.
4769         * stdio-common/tst-setvbuf1.expect: New file.
4771         [BZ #6719]
4772         * libio/iosetvbuf.c (_IO_setvbuf): Correctly clear buffering flags
4773         when selecting fully-buffered stream.
4774         Patch by Wang Xin <wxinee@gmail.com>.
4776 2008-07-06  Samuel Thibault  <samuel.thibault@ens-lyon.org>
4778         * sysdeps/mach/hurd/open.c: Include <stdio.h>.
4779         (__open_2): New function.
4780         (__open64_2): New alias to __open_2.
4781         * sysdeps/mach/hurd/openat.c: Include <stdio.h>.
4782         (__openat_2): New function.
4783         (__openat64_2): New alias to __openat_2.
4785 2008-07-06  Ulrich Drepper  <drepper@redhat.com>
4787         [BZ #6723]
4788         * time/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
4790 2008-07-01  Samuel Thibault  <samuel.thibault@ens-lyon.org>
4792         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Define MSG_NOSIGNAL.
4793         * hurd/hurd/fd.h (__hurd_sockfail): Add extern inline function.
4794         * sysdeps/mach/hurd/recv.c (__recv): Use __hurd_sockfail instead of
4795         __hurd_dfail.
4796         * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise.
4797         * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise.
4798         * sysdeps/mach/hurd/send.c (__send): Likewise.
4799         * sysdeps/mach/hurd/sendto.c (__sendfrom): Likewise.
4800         * sysdeps/mach/hurd/sendmsg.c (__sendmsg): Likewise.
4802 2008-03-04  Samuel Thibault  <samuel.thibault@ens-lyon.org>
4804         * sysdeps/mach/hurd/recv.c (__recv): Initialize NPORTS.
4805         * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Likewise.
4806         * sysdeps/mach/hurd/recvmsg.c (__recvmsg): Likewise.
4807         * hurd/fd-read.c (_hurd_fd_read): Initialize NREAD.
4808         * hurd/get-host.c (_hurd_get_host_config): Likewise.
4809         * sysdeps/mach/hurd/dl-sysdep.c (__libc_read): Likewise.
4811 2008-06-27  Ulrich Drepper  <drepper@redhat.com>
4813         [BZ #6657]
4814         * time/strptime_l.c: Don't clear s.era_cnt after successful match
4815         of %EY.
4816         Patch by Petr Baudis.
4818 2008-06-26  Ulrich Drepper  <drepper@redhat.com>
4820         * resolv/res_debug.c (__p_type_syms): Add ns_t_dname entry.
4821         Patch by Peter Jones <pjones@redhat.com>.
4823 2008-06-25  Ulrich Drepper  <drepper@redhat.com>
4825         [BZ #6654]
4826         * stdlib/canonicalize.c (__realpath): readlink can write too much
4827         into the buffer on platforms without PATH_MAX.
4829 2008-06-17  Carlos O'Donell  <carlos@codesourcery.com>
4831         [BZ #6653]
4832         * posix/tst-regex.c (main): Rename to...
4833         (do_test): ... this. Remove cmdline option processing.
4834         (TIMEOUT): Define.
4835         (TEST_FUNCTION): Define.
4836         (CMDLINE_OPTIONS): Define.
4838 2008-06-25  Ulrich Drepper  <drepper@redhat.com>
4840         [BZ #5210]
4841         * configure.in: Add -Werror to -fstack-protector test to catch
4842         unsupported architectures.
4843         Patch by Gilles Esponasse <g.esp@free.fr>.
4845 2008-06-17  Joseph Myers  <joseph@codesourcery.com>
4847         * stdlib/tst-setcontext.c: Set back_in_main before exit if
4848         getcontext returns ENOSYS.
4850 2008-06-18  Ulrich Drepper  <drepper@redhat.com>
4852         * nscd/connections.c (main_loop_poll): Fix test for read error.
4853         (main_loop_epoll): Likewise.
4855 2008-06-13  Ulrich Drepper  <drepper@redhat.com>
4857         * sysdeps/posix/getaddrinfo.c: Move _res_hconf_init call to a
4858         better place so it is not called when nscd is used.
4860         * nscd/connections.c: Also recognize and handle changes to the
4861         resolver configuration file.
4863 2008-06-12  Ulrich Drepper  <drepper@redhat.com>
4865         * time/strftime.c: Pass reference to tzset_called around to handle
4866         recursive calls.
4868         [BZ #6612]
4869         * time/strftime.c (__strftime_internal): Call tzset() only
4870         when printing timezone-dependent values.
4871         Based on a patch by Petr Baudis <pasky@suse.cz>.
4873         * resolv/nss_dns/dns-host.c (gaih_getanswer): Don't
4874         unconditionally use second gaih_getanswer_slice result.
4876         * sysdeps/posix/getaddrinfo.c (gai_inet): Remove unnecessary test.
4877         (getaddrinfo): RES must always be non-NULL.
4879 2008-06-12  Jakub Jelinek  <jakub@redhat.com>
4881         * sysdeps/powerpc/powerpc64/fpu/s_llround.S (__llround): Avoid using
4882         cr[34] registers.
4883         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S (__llroundf): Likewise.
4884         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S (__llround):
4885         Likewise.
4886         * sysdeps/powerpc/powerpc32/fpu/s_lround.S (__lround): Avoid using cr3
4887         register.
4889 2008-06-12  Ulrich Drepper  <drepper@redhat.com>
4891         * nscd/nscd.h (struct database_dyn): Add inotify_descr and clear_cache
4892         fields.
4893         * nscd/connections.c (inotify_fd): New variable.
4894         (nscd_init): Try to open an inotify descriptor.
4895         If successful, watch files for databases using inotify instead of
4896         having prune threads stat the files.
4897         (nscd_run_prune): Recognize clear_cache flag being set and call
4898         prune_cache appropriately.
4899         (main_loop_poll): Add inotify descriptor to wait set and handle the
4900         reported changes.
4901         (main_loop_epoll): Likewise.
4902         * nscd/cache.c (prune_cache): Don't stat files for databases if
4903         inotify is used.
4904         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd]
4905         (CFLAGS-connections.c): Add -DHAVE_INOTIFY.
4907         * nscd/grpcache.c (cache_addgr): Correctly compute size of
4908         fixed-size portion of the record.
4909         * nscd/servicescache.c (cache_addserv): Likewise.
4910         * nscd/pwdcache.c (cache_addpw): Likewise.
4911         * nscd/initgrcache.c (addinitgroupsX): Likewise.
4913 2008-06-11  Ulrich Drepper  <drepper@redhat.com>
4915         * nscd/mem.c (gc): Initialize obstack earlier so that if we jump
4916         out we don't use uninitialized memory.
4918         * nscd/hstcache.c (cache_addhst): Send correct number of bytes to
4919         the client.
4921 2008-06-10  Ulrich Drepper  <drepper@redhat.com>
4923         * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): Also log and
4924         ignore T_DNAME messages.
4925         * resolv/arpa/nameser_compat.h (T_DNAME): Define.
4927 2008-06-05  Jakub Jelinek  <jakub@redhat.com>
4929         * misc/regexp.h (compile): Use __REPB_PREFIX macro.
4930         Avoid segfault if first GETC returns eof/'\0'/'\n'.
4932 2008-06-03  Jakub Jelinek  <jakub@redhat.com>
4934         * nscd/nscd_getserv_r.c (__nscd_getservbyport_r): Pass cp
4935         instead of portstr to nscd_getserv_r.  Patch by
4936         Roman Kagan <rkagan@mail.ru>.
4938 2008-05-26  Jim Meyering  <meyering@redhat.com>
4940         Remove more useless "if" tests before "free".
4941         * include/inline-hashtab.h (htab_delete): Likewise.
4942         * libio/freopen.c (freopen): Likewise.
4943         * libio/freopen64.c (freopen64): Likewise.
4944         * locale/programs/ld-collate.c (collate_read): Likewise.
4945         * misc/fstab.c (libc_freeres_fn): Likewise.
4946         * posix/glob.c (globfree): Likewise.
4948 2008-05-24  Ulrich Drepper  <drepper@redhat.com>
4950         * string/Makefile (strop-tests): Add memmem.
4951         * string/test-memmem.c: New file.
4952         * string/test-string.h (BUF1PAGES): Define to 1 if undefined.
4953         (test_init): Size buf1 according to BUF1PAGES.
4955 2008-05-24  Jakub Jelinek  <jakub@redhat.com>
4957         * libio/stdio.h (vscanf): Fix -std=c99 redirect.
4958         * stdio-common/Makefile (tests): Add scanf16 and scanf17.
4959         (CFLAGS-scanf17.c): New.
4960         * stdio-common/scanf14.c (main): Add fscanf and scanf tests.
4961         * stdio-common/scanf15.c (main): Likewise.
4962         * stdio-common/scanf16.c: New file.
4963         * stdio-common/scanf17.c: New file.
4965 2008-05-24  Ulrich Drepper  <drepper@redhat.com>
4967         * resolv/res_send.c (send_dg): If we already have one of two
4968         answers and the server reports SERVFAIL, NOTIMP, or REFUSED, then
4969         use the one answer insted of failing.
4971 2008-02-20  Ryan S. Arnold  <rsa@us.ibm.com>
4973         * math/libm-test.inc (exp_test): Exclude expl(1000.0L) from
4974         being executed on PowerPC as the expected result exceeds IBM
4975         long double 128 __LDBL_MAX__.
4977 2008-05-21  Roland McGrath  <roland@redhat.com>
4979         * shlib-versions (sparc.*-.*-.*, sparc64.*-.*-.*): Add ABI lines.
4981         * Makefile (check-data): Use $(abi-name) before other guesses.
4982         Look in $(add-ons) dirs before scripts/data/.
4983         * elf/Makefile (check-data): Likewise.
4985         * scripts/soversions.awk: Grok ABI line.
4986         * Makeconfig ($(common-objpfx)soversions.mk): Likewise.
4987         Emit definition for abi-name variable.
4989 2008-05-21  Ulrich Drepper  <drepper@redhat.com>
4991         * string/endian.h: Define new fixed-size hto* and *toh macros only
4992         if [__USE_BSD].
4994         * iconvdata/Depend: Add localedata.
4996 2008-05-21  Samuel Thibault  <samuel.thibault@ens-lyon.org>
4998         * bits/termios.h (ONLCR): Define under [__USE_XOPEN] too.
5000 2008-05-08  David S. Miller  <davem@davemloft.net>
5002         * sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S: Use
5003         HIDDEN_JUMPTARGET.
5004         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
5005         (__SYSCALL_CLOBBERS): Remove %g* registers.
5006         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
5007         (__SYSCALL_CLOBBERS): Likewise.
5008         * scripts/data/localplt-sparc-linux-gnu.data: New file.
5009         * scripts/data/localplt-sparc64-linux-gnu.data: New file.
5011 2008-05-21  Jakub Jelinek  <jakub@redhat.com>
5013         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
5014         (CALL_ERRNO_LOCATION): Define.
5015         (__SYSCALL_STRING, __CLONE_SYSCALL_STRING): Use it.
5016         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
5017         (CALL_ERRNO_LOCATION): Define.
5018         (__SYSCALL_STRING, __CLONE_SYSCALL_STRING): Use it.
5019         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S (__brk): Use
5020         HIDDEN_JUMPTARGET for __errno_location call in libc.so.
5022 2008-05-20  Ulrich Drepper  <drepper@redhat.com>
5024         * include/inline-hashtab.h (higher_prime_number): Fix type of mid
5025         variable.
5027 2008-05-20  Jakub Jelinek  <jakub@redhat.com>
5029         * sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h
5030         (FIRST_FRAME_POINTER): Define.
5032 2008-05-09  David S. Miller  <davem@davemloft.net>
5034         * sysdeps/sparc/sparc64/backtrace.c: New file.
5036 2008-05-14  David S. Miller  <davem@davemloft.net>
5038         * sysdeps/sparc/machine-gmon.h: New file.
5039         * sysdeps/sparc/sparc-mcount.S: Likewise.
5040         * sysdeps/sparc/Makefile: Add sparc-mcount target to
5041         sysdep_routines in gmon directory.
5043 2008-05-19  Jakub Jelinek  <jakub@redhat.com>
5045         * elf/soinit.c (__EH_FRAME_BEGIN__): Remove.
5047 2008-05-19  Ulrich Drepper  <drepper@redhat.com>
5049         * resolv/res_query.c (__libc_res_nquery): In case one of two
5050         answer was too short don't try to read that answer's header.
5052         * resolv/res_send.c (send_dg): In case of timeout and there are
5053         two queries and one has been answered, return value indicating
5054         success.
5056 2008-05-18  Ulrich Drepper  <drepper@redhat.com>
5058         * nscd/cache.c (cache_add): Take additional parameter specifying
5059         whether this is in response of a cache refill.  Check alignment
5060         of package data.  Revamp waking of pruning thread.
5061         (prune_cache): Small optimization.
5062         * nscd/nscd.h: Adjust cache_add prototypes.
5063         * nscd/aicache.c: Adjust cache_add calls.
5064         * nscd/grpcache.c: Likewise.
5065         * nscd/hstcache.c: Likewise.
5066         * nscd/initgrcache.c: Likewise.
5067         * nscd/pwdcache.c: Likewise.
5068         * nscd/servicescache.c: Likewise.
5069         * nscd/connections.c (restart): Really disable cache use before
5070         exec attempt.  If it fails, reenable cache.
5071         (nscd_run_prune): Initialize wakeup_time.  After wakeup, set wakeup
5072         time to max to be able to notice concurrent cache additions.  Unlock
5073         prune_lock while performing gc.  Afterwards compute wakeup time with
5074         current wakeup_time value in mind.
5076 2008-05-17  Ulrich Drepper  <drepper@redhat.com>
5078         * nscd/mem.c (gc): Avoid stack overflow when allocating move list.
5080         * nscd/mem.c (gc): Correctly determine highest used array element
5081         in mark.
5083         * nscd/mem.c (markrange): Add assert to check entries are all
5084         aligned.  Small cleanup in bitmap use.
5086         * nscd/nscd.h (mem_in_flight): Replace blockaddr field with
5087         blockoff of type nscd_ssize_t.
5088         * nscd/mem.c (gc): Simplify markrange call for on-flight blocks.
5089         (mempoll_alloc): Record block offset and not address.
5091         * nscd/mem.c (gc): Fix test for stack overuse.
5093         * nscd/aicache.c (addhstaiX): Fix a few small problems, cleanups,
5094         more asserts.
5096         * sysdeps/posix/getaddrinfo.c (gaih_inet): If nscd reports no
5097         entry is available, believe it.
5099         * resolv/nss_dns/dns-host.c (gaih_getanswer_slice): If there are
5100         no answers return NSS_STATUS_NOTFOUND.
5101         (gaih_getanswer): Don't call gaih_getanswer_slice if the answer
5102         buffer does not have any content.
5104 2008-05-16  Ulrich Drepper  <drepper@redhat.com>
5106         * string/strcasestr.c (CMP_FUNC): Use __strncasecmp, not strncasecmp.
5108         * sysdeps/posix/getaddrinfo.c (gaih_inet): After gethostbyname4_r
5109         lookup, don't assign canon unconditionally.
5111 2008-05-14  Ulrich Drepper  <drepper@redhat.com>
5113         * string/Makefile (distribute): Add str-two-way.h.
5115 2008-03-29  Eric Blake  <ebb9@byu.net>
5117         Rewrite string searches to O(n) rather than O(n^2).
5118         * string/str-two-way.h: New file.  For linear fixed-allocation
5119         string searching.
5120         * string/memmem.c: New implementation.
5121         * string/strstr.c: New implementation.
5122         * string/strcasestr.c: New implementation.
5124 2008-04-11  Paolo Bonzini  <bonzini@gnu.org>
5126         * posix/regcomp.c (optimize_utf8): Add a note on why we test
5127         opr.ctx_type.
5128         (calc_first): Initialize constraint field.
5129         (duplicate_node_closure): Use it instead of special casing ANCHORS.
5130         Use search_duplicated_node to avoid loops.  Fix grammar.
5131         (duplicate_node): Merge constraint field for all node types.
5132         (calc_eclosure_iter): Look at constraint field for all node types.
5133         * posix/regex_internal.c (create_cd_newstate): Don't look at
5134         create_cd_newstate.
5136 2008-05-14  Ulrich Drepper  <drepper@redhat.com>
5138         [BZ #6428]
5139         * configure.in: Don't use $CFLAGS when assembling, use $ASFLAGS.
5141         [BZ #6442]
5142         * string/endian.h: Add macros for fixed-size endian conversion.
5143         * bits/byteswap.h: Allow inclusion from <endian.h>.
5144         * sysdeps/i386/bits/byteswap.h: Likewise.
5145         * sysdeps/ia64/bits/byteswap.h: Likewise.
5146         * sysdeps/s390/bits/byteswap.h: Likewise.
5147         * sysdeps/x86_64/bits/byteswap.h: Likewise.
5148         * string/Makefile (tests): Add tst-endian.
5149         * string/tst-endian.c: New file.
5151         * iconvdata/run-iconv-test.sh: Use = instead of == in test.
5152         Patch by Reuben Thomas.
5154 2008-05-14  Joseph Myers  <joseph@codesourcery.com>
5156         * iconvdata/Makefile (bug-iconv6-ENV, tst-iconv7-ENV): Define.
5158 2008-05-14  Ulrich Drepper  <drepper@redhat.com>
5160         * iconvdata/bug-iconv6.c (do_test): Use de_DE.UTF-8 locale.
5162         [BZ #6461]
5163         * iconv/gconv_simple.c (BODY for __gconv_transform_ascii_internal):
5164         Add missing braces.
5165         (BODY for __gconv_transform_internal_ascii): Likewise.
5167         [BZ #6472]
5168         * sysdeps/posix/getaddrinfo.c (get_scope): Loopback addresses have
5169         to be treated like link-local addresses.
5170         (match_prefix): Don't treat IPv4 loopback address special when
5171         converting to v4 mapped addressed.
5173         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Call _res_hconf_init
5174         if necessary.
5175         * posix/tst-rfc3484.c: Add dummy definition of _res_hconf_init.
5176         * posix/tst-rfc3484-2.c: Likewise.
5177         * posix/tst-rfc3484-3.c: Likewise.
5179         * sysdeps/posix/getaddrinfo.c: Implement handling of DCCP, UDPlite,
5180         and SCTP.
5182         * nss/getent.c (ahosts_keys_int): Handle all known socket types.
5184         * inet/netinet/in.h (IPPIPPROTO_DCCP, IPPROTO_UDPLITE): Define.
5186         * sysdeps/unix/sysv/linux/bits/socket.h (SOCK_DCCP): Define.
5188 2008-05-13  Ulrich Drepper  <drepper@redhat.com>
5190         * po/lt.po: New file.  From Lituanian translation team.
5192 2008-01-30  Alexandre Oliva  <aoliva@redhat.com>
5194         Introduce TLS descriptors for i386 and x86_64.
5195         * include/inline-hashtab.h: New file, copied from 2005's
5196         libiberty, with fix for memory leak imported afterwards by
5197         Glauber de Oliveira Costa.
5198         * elf/tlsdeschtab.h: New file.
5199         * elf/dl-reloc.c (_dl_try_allocate_static_tls): Extract from...
5200         (_dl_allocate_static_tls): ... here.  Rearrange failure path.
5201         (CHECK_STATIC_TLS): Move to...
5202         * elf/dynamic-link.h: ... this file.
5203         (TRY_STATIC_TLS): New macro.
5204         * elf/dl-conflict.c (CHECK_STATIC_TLS, TRY_STATIC_TLS): Override.
5205         * elf/elf.h (R_386_TLS_GOTDESC, R_386_TLS_DESC_CALL,
5206         R_386_TLS_DESC): Define.
5207         (R_X86_64_PC64, R_X86_GOTOFF64, R_X86_64_GOTPC32): Merge from
5208         binutils.
5209         (R_X86_64_GOTPC32_TLSDESC, R_X86_64_TLSDESC_CALL,
5210         R_X86_64_TLSDESC): Define.
5211         (R_386_NUM, R_X86_64_NUM): Adjust.
5212         * sysdeps/i386/Makefile (sysdep-dl-routines, sysdep_routines,
5213         sysdep-rtld-routines): Add tlsdesc and dl-tlsdesc for elf subdir.
5214         (gen-as-const-headers): Add tlsdesc.sym to csu subdir.
5215         * sysdeps/i386/dl-lookupcfg.h: New file.  Introduce _dl_unmap to
5216         release tlsdesc_table.
5217         * sysdeps/i386/dl-machine.h: Include dl-tlsdesc.h.
5218         (elf_machine_type_class): Mark R_386_TLS_DESC as PLT class.
5219         (elf_machine_rel): Handle R_386_TLS_DESC.
5220         (elf_machine_rela): Likewise.
5221         (elf_machine_lazy_rel): Likewise.
5222         (elf_machine_lazy_rela): Likewise.
5223         * sysdeps/i386/dl-tls.h (struct dl_tls_index): Name it.
5224         * sysdeps/i386/dl-tlsdesc.S: New file.
5225         * sysdeps/i386/dl-tlsdesc.h: New file.
5226         * sysdeps/i386/tlsdesc.c: New file.
5227         * sysdeps/i386/tlsdesc.sym: New file.
5228         * sysdeps/i386/bits/linkmap.h (struct link_map_machine): Add
5229         tlsdesc_table.
5230         * sysdeps/x86_64/Makefile (sysdep-dl-routines, sysdep_routines,
5231         sysdep-rtld-routines): Add tlsdesc and dl-tlsdesc for elf subdir.
5232         (gen-as-const-headers): Add tlsdesc.sym to csu subdir.
5233         * sysdeps/x86_64/dl-lookupcfg.h: New file.  Introduce _dl_unmap to
5234         release tlsdesc_table.
5235         * sysdeps/x86_64/dl-machine.h: Include dl-tlsdesc.h.
5236         (elf_machine_runtime_setup): Set up lazy TLSDESC GOT entry.
5237         (elf_machine_type_class): Mark R_X86_64_TLSDESC as PLT class.
5238         (elf_machine_rel): Handle R_X86_64_TLSDESC.
5239         (elf_machine_rela): Likewise.
5240         (elf_machine_lazy_rel): Likewise.
5241         * sysdeps/x86_64/dl-tls.h (struct dl_tls_index): Name it.
5242         (__tls_get_addr): Do not declare for non-shared compiles.
5243         * sysdeps/x86_64/dl-tlsdesc.S: New file.
5244         * sysdeps/x86_64/dl-tlsdesc.h: New file.
5245         * sysdeps/x86_64/tlsdesc.c: New file.
5246         * sysdeps/x86_64/tlsdesc.sym: New file.
5247         * sysdeps/x86_64/bits/linkmap.h (struct link_map_machine): Add
5248         tlsdesc_table for both 32- and 64-bit structs.
5250 2008-05-11  Ulrich Drepper  <drepper@redhat.com>
5252         * elf/dl-tls.c (__tls_get_addr): Optimize by moving slow path in
5253         its own function.  This reduces the frame setup costs and more.
5255 2008-02-11  Joseph Myers  <joseph@codesourcery.com>
5257         [BZ #3406]
5258         * sysdeps/ieee754/flt-32/w_expf.c (o_threshold): Correct value.
5259         * math/libm-test.inc (exp_test): Test 88.72269439697265625.
5261 2008-05-11  Ulrich Drepper  <drepper@redhat.com>
5263         * io/openat.c (__openat_2): Also pass fd to __openat.
5264         * io/openat64.c (__openat64_2): Also pass fd to __openat64.
5265         Patch by Kristian Van Der Vliet <vanders@liqwyd.com>.
5267         * string/tester.c (test_memcmp): Add a few more tests.
5268         Patch by Mats Erik Andersson <ynglingatal@comhem.se>.
5270 2008-05-10  Ulrich Drepper  <drepper@redhat.com>
5272         * nscd/cache.c (cache_add): Before returning with failure and this
5273         is the first use of the record, mark it as unusable.
5274         * nscd/aicache.c: Don't touch the dataset after cache_add returns
5275         reporting a failure.
5276         * nscd/grpcache.c: Likewise
5277         * nscd/hstcache.c: Likewise.
5278         * nscd/initgrcache.c: Likewise.
5279         * nscd/pwdcache.c: Likewise.
5280         * nscd/servicescache.c: Likewise.
5282 2008-05-10  Roland McGrath  <roland@redhat.com>
5284         [BZ #6505]
5285         * sysdeps/unix/sysv/linux/sys/user.h: Replace with #error stub.
5287 2008-05-08  David S. Miller  <davem@davemloft.net>
5289         * misc/truncate64.c (truncate64): Use __truncate not truncate.
5291         * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee751_j0l): Use __finitel.
5292         (__ieee754_y0l): Likewise.
5293         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
5294         (__ieee754_y1l): Likewise.
5295         * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Use __ldexpl.
5296         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Kill bogus prototypes for
5297         frexpl and ldexpl.  math_private.h provides them and the latter
5298         is not even used.
5299         (__log1pl): Use __frexpl.
5301 2008-05-10  Ulrich Drepper  <drepper@redhat.com>
5303         * include/resolv.h: Adjust __libc_res_nquery and __libc_res_nsend
5304         prototypes.
5305         * include/arpa/nameser_compat.h: Define T_UNSPEC.
5306         * nis/Versions (libnss_nis): Export _nss_nis_gethostbyname4_r.
5307         (libnss_nisplus): Export _nss_nisplus_gethostbyname4_r.
5308         * nis/nss_nis/nis-hosts.c (LINE_PARSER): Change to also handle
5309         af==AF_UNSPEC.
5310         (_nss_nis_gethostbyname4_r): New function.
5311         * nis/nss_nisplus/nisplus-hosts.c (_nss_nisplus_parse_hostent):
5312         Change to also handle af==AF_UNSPEC.
5313         (get_tablename): New function.  Use it to avoid duplication.
5314         (_nss_nisplus_gethostbyname4_r): New function.
5315         * nscd/aicache.c (addhstaiX): Use gethostbyname4_r function is
5316         available.
5317         * nss/Versions (libnss_files): Export _nss_files_gethostbyname4_r.
5318         * nss/nss.h: Define struct gaih_addrtuple.
5319         * nss/nss_files/files-hosts.c (LINE_PARSER): Change to also handle
5320         af==AF_UNSPEC.
5321         (_nss_files_gethostbyname4_r): New function.
5322         * resolv/Versions (libnss_dns): Export _nss_dns_gethostbyname4_r.
5323         * resolv/gethnmaddr.c: Adjust __libc_res_nsearch and __libc_res_nquery
5324         calls.
5325         * resolv/res_query.c (__libc_res_nquery): Take two additional
5326         parameters for second answer buffer.  Handle type=T_UNSPEC to mean
5327         look up IPv4 and IPv6.
5328         Change all callers.
5329         * resolv/res_send.c (__libc_res_nsend): Take five aditional parameters
5330         for an additional query and answer buffer.  Pass to send_vc and
5331         send_dg.
5332         (send_vc): Send possibly two requests and receive two answers.
5333         (send_dg): Likewise.
5334         * resolv/nss_dns/dns-host.c: Adjust calls to __libc_res_nsearch and
5335         __libc_res_nquery.
5336         (_nss_dns_gethostbyname4_r): New function.
5337         (gaih_getanswer_slice): Likewise.
5338         (gaih_getanswer): Likewise.
5339         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Adjust
5340         __libc_res_nquery call.
5341         * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyaddr_r): Likewise.
5342         (_nss_dns_getnetbyname_r): Adjust __libc_res_nsearch call.
5343         * sysdeps/posix/getaddrinfo.c: Use gethostbyname4_r function is
5344         available.
5346 2008-05-05  David S. Miller  <davem@davemloft.net>
5348         * sysdeps/sparc/sparc32/Makefile: Use -mcpu=v7 for initfini.s build.
5349         * sysdeps/sparc/sparc64/Makefile: Use -mcpu=v9 for initfini.s build.
5351 2007-09-14  Samuel Thibault  <samuel.thibault@ens-lyon.org>
5353         Fix termios bit macros.
5354         Move *DLY definitions where they belong, in termios.h.
5355         Add *[0-3] definitions.
5356         Fixes confusion between VT and FF.
5357         * sysdeps/mach/hurd/bits/ioctls.h (NL0, NL1, TAB0, TAB1, TAB2, CR0,
5358         CR1, CR2, CR3, FF0, FF1, BS0, BS1): Undefine these at start if they
5359         are already defined to avoid collision with termios.h.
5360         (NLDLY, TABDLY, TAB3, CRDLY, VTDLY, BSDLY): Remove macros.
5361         * bits/termios.h [__USE_MISC || __USE_XOPEN] (NL0, NL1, TAB0,
5362         TAB1, TAB2, CR0, CR1, CR2, CR3, FF0, FF1, BS0, BS1): Likewise.
5363         [__USE_BSD || __USE_XOPEN] (OCRNL, ONOCR, ONLRET): New macros.
5364         [__USE_MISC || __USE_XOPEN] (NLDLY, NL0, NL1, TABDLY, TAB0, TAB1, TAB2,
5365         TAB3, CRDLY, CR0, CR1, CR2, CR3, FFDLY, FF0, FF1, BSDLY, BS0, BS1,
5366         VTDLY, VT0, VT1): New macros.
5367         [__USE_GNU] (OLCUC): Change value of macro.
5368         [__USE_XOPEN] (OFILL): New macro.
5369         [__USE_BSD] (CRTSCTS): Change value.
5370         (CRTS_IFLOW, CCTS_OFLOW): Change into compatibility macros.
5371         [__USE_BSD] (CDTRCTS, CHWFLOW): New macros.
5372         (B7200, B14400, B28800, B76800): New macros.
5374 2008-05-01  David S. Miller  <davem@davemloft.net>
5376         * sysdeps/unix/sysv/linux/sparc/sparc32/ucontext_i.sym: New file.
5377         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile [$(subdir) = stdlib]:
5378         (gen-as-const-headers): Add it.
5379         * sysdeps/unix/sysv/linux/sparc/sparc32/getcontext.S: New file.
5380         * sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c: Likewise.
5381         * sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S: Likewise.
5382         * sysdeps/unix/sysv/linux/sparc/sparc32/swapcontext.S: Likewise.
5384         * sysdeps/unix/sysv/linux/sparc/sparc32/syscall.S: Add support for
5385         six system call parameters.
5386         * sysdeps/unix/sysv/linux/sparc/sparc64/syscall.S: Likewise.
5388 2008-04-30  Ulrich Drepper  <drepper@redhat.com>
5390         * sysdeps/unix/sysv/linux/bits/resource.h: Define RUSAGE_THREAD and
5391         RUSAGE_LWP.
5392         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
5393         * sysdeps/unix/sysv/linux/alpha/bits/resource.h: Likewise.
5395 2008-04-30  Jakub Jelinek  <jakub@redhat.com>
5397         * stdlib/tst-setcontext.c: Include unistd.h.
5399 2008-04-25  David S. Miller  <davem@davemloft.net>
5401         * sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c (semctl):
5402         Pass "union semun" properly in to sys_ipc, it must be passed
5403         by value, not by reference.
5405 2008-04-22  Jakub Jelinek  <jakub@redhat.com>
5407         * nscd/Makefile (nscd-cflags): Set back to -fpie.
5408         * nscd/nscd.h (mem_in_flight): Add attribute_tls_model_ie.
5409         * nscd/connections.c (mem_in_flight): Likewise.
5411         * nscd/nscd.h (dbs): Make hidden.
5413         * sysdeps/unix/sysv/linux/times.c (__times): Fix check for EFAULT.
5414         Avoid returning -1, return 0 instead.
5416 2008-04-19  Ulrich Drepper  <drepper@redhat.com>
5418         * resolv/res_mkquery.c (__res_nopt): Use NS_PUT16 instead of ns_put16.
5420 2008-04-15  Ulrich Drepper  <drepper@redhat.com>
5422         [BZ #5209]
5423         * sysdeps/unix/sysv/linux/times.c: New file.
5425         [BZ #5381]
5426         * nscd/nscd.h: Define enum in_flight, mem_in_flight, and
5427         mem_in_flight_list variables.  Add new parameter to mempool_alloc
5428         prototype.
5429         * nscd/mem.c (mempool_alloc): Take additional parameter.  Initialize
5430         appropriate mem_in_flight element.
5431         (gc): Take allocations which have not yet been committed to the
5432         database into account.
5433         * nscd/cache.c (cache_add): Add new parameter to mempool_alloc call.
5434         Reset mem_in_flight before returning.
5435         * nscd/connections.c (nscd_run_worker): Initialize mem_in_flight and
5436         cue it up in mem_in_flight_list.
5437         * nscd/aicache.c: Adjust mempool_alloc call.
5438         * nscd/grpcache.c: Likewise.
5439         * nscd/hstcache.c: Likewise.
5440         * nscd/initgrcache.c: Likewise.
5441         * nscd/pwdcache.c: Likewise.
5442         * nscd/servicescache.c: Likewise.
5443         * nscd/Makefile (nscd-flags): Until ld is fixed, use -fpic instead
5444         of -fpie.
5446         * nscd/connections.c (handle_request): Provide better error message
5447         in case SELinux forbids the service.
5449         * version.h (VERSION): Bump to 2.8.90.
5451 2008-04-17  Jakub Jelinek  <jakub@redhat.com>
5453         * sysdeps/unix/sysv/linux/dl-osinfo.h: Include fcntl.h.
5455 2008-04-11  Ulrich Drepper  <drepper@redhat.com>
5457         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h (__signbitl):
5458         Also use for 32-bit.
5459         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c (__nearbyintl): Use
5460         __nextafter instead of nextafter to avoid local PLT.
5461         * sysdeps/powerpc/fpu/e_sqrt.c: Avoid call to fetestexcept.
5462         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
5464         * scripts/data/localplt-powerpc64-linux-gnu.data: New file.
5466         * sysdeps/powerpc/fpu/fenv_libc.h: Add libm_hidden_proto for
5467         __fe_nomask_env.
5468         * sysdeps/powerpc/fpu/fe_nomask.c: Add libm_hidden_def.  Include
5469         <fenv_libc.h> instead of <fenv.h>.
5470         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: Likewise.
5471         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: Likewise.
5473         * sysdeps/powerpc/bits/fenv.h: Make safe for C++.
5475         * sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: New file.
5476         * sysdeps/powerpc/fpu/fegetexcept.c (__fegetexcept): Rename
5477         function from fegetexcept and make old name weak alias.
5478         * include/fenv.h: Declare __fegetexcept.
5479         * sysdeps/powerpc/fpu/fedisblxcpt.c: Use __fegetexcept instead of
5480         fegetexcept.
5481         * sysdeps/powerpc/fpu/feenablxcpt.c: Likewise.
5482         * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Avoid call
5483         to fetestexcept.
5484         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Use __frexpl
5485         instead of frexpl to avoid local PLT.
5486         * math/s_significandl.c (__significandl): Use __ilogbl instead of
5487         ilogbl to avoid local PLT.
5488         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Use __ldexpl
5489         instead of ldexpl to avoid local PLT.
5490         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Use
5491         __roundl not roundl to avoid local PLT.
5492         * sysdeps/ieee754/ldbl-128/e_j0l.c: Use function names which avoid
5493         local PLTs.  Use __sincosl instead of separate sinl and cosl
5494         calls.
5495         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
5497         * sysdeps/unix/sysv/linux/configure.in: Bump minimal kernel
5498         version for ppc64 to 2.4.21 since without it makecontext will fail.
5500         * elf/tls-macros.h [__powerpc64__] (__TLS_GET_ADDR): Define according
5501         to the ABI in use.
5502         [__powerpc64__] (TLS_LD): Use __TLS_GET_ADDR instead of
5503         .__tls_get_addr.
5504         [__powerpc64__] (TLS_GD): Likewise.
5506 2007-11-20  Ryan S. Arnold  <rsa@us.ibm.com>
5508         [BZ #4997]
5509         * sysdeps/powerpc/powerpc32/fpu/s_lround.S (__lround): Fixed erroneous
5510         result when x is +/-nextafter(+/-0.5,-/+1) i.e. all 1's in the
5511         mantissa.
5512         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S (__llround):
5513         Likewise.  Also account for when x is an odd number between 2^52
5514         and 2^53-1.
5515         * sysdeps/powerpc/powerpc64/fpu/s_llround.S (__llround): Likewise.
5516         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S (__llroundf): Likewise.
5517         * math/libm-test.inc (lround_test, llround_test): Added test cases to
5518         detect aforementioned erroneous conditions.
5520 2008-04-11  Jakub Jelinek  <jakub@redhat.com>
5522         * configure.in: Check for -fno-section-anchors in addition to
5523         -fno-toplevel-reorder.
5525 2008-04-11  Ulrich Drepper  <drepper@redhat.com>
5527         * include/features.h (__GLIBC_MINOR__): Bump to 8.
5529         * sysdeps/powerpc/powerpc32/fpu/s_lroundf.S: Remove duplicate comment.
5530         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llroundf.S: Likewise.
5531         * sysdeps/powerpc/powerpc32/power6/fpu/s_llroundf.S: Likewise.
5532         * sysdeps/powerpc/powerpc64/fpu/s_lrint.S: Likewise.
5533         * sysdeps/powerpc/powerpc64/fpu/s_lround.S: Likewise.
5534         * sysdeps/powerpc/powerpc64/fpu/s_lroundf.S: Likewise.
5536 2008-04-11  Jakub Jelinek  <jakub@redhat.com>
5538         [BZ #5443]
5539         * time/era.c: Transform __libc_setlocale_lock into rwlock.
5540         * time/alt_digit.c: Likewise.
5541         * wcsmbs/wcsmbsload.c: Likewise.
5543 2008-04-10  Ulrich Drepper  <drepper@redhat.com>
5545         * version.h (VERSION): Bump to 2.8.
5547         * timzeone/asia: Update from tzdata2008b.
5548         * timezone/backward: Likewise.
5549         * timezone/europe: Likewise.
5550         * timezone/northamerica: Likewise.
5551         * timezone/southamerica: Likewise.
5552         * timezone/iso3166.tab: Likewise.
5553         * timezone/leapseconds: Likewise.
5554         * timezone/zone.tab: Likewise.
5555         * timezone/private.h: Update from tzcode2008a.
5556         * timezone/zdump.c: Likewise.
5557         * timezone/zic.c: Likewise.
5559 2008-01-24  Steven Munroe  <sjmunroe@us.ibm.com>
5561         [BZ #5741]
5562         * sysdeps/powerpc/powerpc64/dl-machine.h (PPC_DCBT, PPC_DCBF):
5563         Define additonal Data Cache Block instruction macros.
5564         (elf_machine_fixup_plt): Add dcbt for opd and plt entries.
5565         Replace dcbst with dcbf and sync with sync/isync.
5567 2008-02-21  Alan Modra  <amodra@bigpond.net.au>
5569         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_type_class):
5570         Always set ELF_RTYPE_CLASS_PLT.
5571         (elf_machine_lookup_noexec_p, elf_machine_lookup_noplt_p): Delete.
5573 2008-04-03  Steven Munroe  <sjmunroe@us.ibm.com>
5575         * sysdeps/powerpc/powerpc32/power4/hp-timing.c: New file.
5576         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: New file.
5577         * sysdeps/powerpc/powerpc64/hp-timing.h [_ARCH_PWR4] (HP_TIMING_NOW):
5578         For ISA 2.01 and later replace mftb with mfspr 268.
5580 2008-02-19  Steven Munroe  <sjmunroe@us.ibm.com>
5582         [BZ #5768]
5583         * sysdeps/powerpc/fpu/Makefile (libm-tests): Add test-powerpc-snan.
5584         * sysdeps/powerpc/fpu/test-powerpc-snan.c: New file.
5586 2008-02-18  Steven Munroe  <sjmunroe@us.ibm.com>
5588         [BZ #5768]
5589         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: New file.
5590         * sysdeps/powerpc/powerpc32/fpu/s_isnan.c: Removed.
5591         * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: New file.
5592         * sysdeps/powerpc/powerpc64/fpu/s_isnan.c: Removed.
5594 2008-04-10  Jakub Jelinek  <jakub@redhat.com>
5596         * stdlib/tst-makecontext.c (othervar): New variable.
5597         (cf): Test sign extending the argument to long.
5599 2008-03-03  Steven Munroe  <sjmunroe@us.ibm.com>
5601         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: New file.
5602         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnanf.S: New file.
5603         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: New file.
5604         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S: New file.
5605         * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: New file.
5606         * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: New file.
5607         * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: New file.
5609 2008-02-22  Alan Modra  <amodra@bigpond.net.au>
5611         * elf/Makefile (tests): Substitute tests-vis-yes here.
5612         (tests-vis-yes): Delete.
5613         (modules-name, modules-vis-yes): Similarly.
5615 2008-02-12  Pete Eberlein  <eberlein@us.ibm.com>
5617         [BZ #4407]
5618         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
5619         Preserve sign in signgamp when x is zero.
5621 2007-10-26  Steven Munroe  <sjmunroe@us.ibm.com>
5623         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: New File.
5624         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.c: Removed.
5625         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: New File.
5626         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.c: Removed.
5627         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: New File.
5628         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: New File.
5630 2008-04-09  Ulrich Drepper  <drepper@redhat.com>
5632         [BZ #4314]
5633         * sysdeps/i386/i686/memcpy.S: Optimize copying of equally aligned
5634         buffers.
5636         [BZ #5209]
5637         * sysdeps/unix/sysv/syscalls.list: The times syscall doesn't have
5638         a reserved error value.
5640         * stdlib/tst-makecontext.c: Change parameter to cf to negative
5641         value to check for correct sign extension.
5643         [BZ #5436]
5644         * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
5645         Copy 64-bit parameter values even though this is not required in
5646         the standard.
5648         * sysdeps/unix/sysv/linux/x86_64/vfork.S (__vfork): Record return
5649         PC save.
5651 2008-02-14  Daniel Jacobowitz  <dan@codesourcery.com>
5653         * sysdeps/unix/sysv/linux/i386/vfork.S (__vfork): Record return
5654         PC save.
5656 2008-04-09  Jakub Jelinek  <jakub@redhat.com>
5658         * nss_files/files-XXX.c (_nss_files_getXXent_r): Restore saved errno.
5660 2008-04-09  Ulrich Drepper  <drepper@redhat.com>
5662         [BZ #5998]
5663         * libio/iofwrite.c (_IO_fwrite): Return correct count if flushing
5664         in line-buffered stream failed.
5665         * libio/iofwrite_u.c (fwrite_unlocked): Likewise.
5667 2008-04-08  Ulrich Drepper  <drepper@redhat.com>
5669         [BZ #6024]
5670         * scripts/abi-versions.awk: If the version specified by
5671         --enable-oldest-abi is older than the first version for this
5672         architecture, use the default version.
5674         * locale/programs/ld-collate.c (collate_read): Ignore script lines
5675         as well when ignoring the whole category.
5677 2008-04-07  Ulrich Drepper  <drepper@redhat.com>
5679         [BZ #6042]
5680         * sysdeps/unix/sysv/linux/net/ethernet.h: Add a few more
5681         ETHERTYPE_* definitions.
5682         Patch partly by Aurelien Jarno <aurelien@aurel32.net>.
5684 2008-04-07  Jakub Jelinek  <jakub@redhat.com>
5686         * stdlib/mbtowc.c (__no_r_state): Remove.
5687         (mbtowc): New static state variable.  Use it instead of
5688         __no_r_state.
5689         * stdlib/wctomb.c (__no_r_state): Remove extern decl.
5690         (__wctomb_state): New hidden variable.
5691         (wctomb): Use __wctomb_state instead of __no_r_state.
5692         * debug/wctomb_chk.c (__no_r_state): Remove extern decl.
5693         (__wctomb_state): New extern decl.
5694         (__wctomb_chk): Use __wctomb_state instead of __no_r_state.
5696 2008-04-07  Ulrich Drepper  <drepper@redhat.com>
5698         [BZ #5475]
5699         * resolv/res_init.c: Handle scope IDs in resolv.conf.
5701 2008-04-07  Jakub Jelinek  <jakub@redhat.com>
5703         * malloc/mtrace.pl: Use $@ instead of $* to keep perl 5.10 quiet.
5705 2008-04-06  Ulrich Drepper  <drepper@redhat.com>
5707         * po/nl.po: Update from translation team.
5709 2008-03-31  Ulrich Drepper  <drepper@redhat.com>
5711         [BZ #6007]
5712         * string/strfry.c: Handle empty strings again.
5714 2008-03-30  Ulrich Drepper  <drepper@redhat.com>
5716         [BZ #5443]
5717         * intl/dcigettext.c (__dcigettext): Get reader lock for locale data
5718         before looking for translation.
5719         * locale/duplocale.c: Transform __libc_setlocale_lock into rwlock.
5720         * locale/freelocale.c: Likewise.
5721         * locale/newlocale.c: Likewise.
5722         * locale/setlocale.c: Likewise.
5723         Based partially on a patch by ryo@np.css.fujitsu.com.
5725 2008-03-30  Jakub Jelinek  <jakub@redhat.com>
5727         * intl/dcigettext.c (_nl_find_msg): Reread nconversions after
5728         acquiring wrlock.  Do conv_tab allocation while holding lock.
5729         * intl/Makefile: Add rules to build and run tst-gettext6.
5730         * intl/tst-gettext6.c: New test.
5731         * intl/tst-gettext6.sh: New file.
5733 2008-03-30  Ulrich Drepper  <drepper@redhat.com>
5735         * po/nl.po: Update from translation team.
5737         * sysdeps/unix/opendir.c (__alloc_dir): If allocation fails for size
5738         provided through st_blksize, try the default size before giving up.
5740 2008-03-29  Ulrich Drepper  <drepper@redhat.com>
5742         * stdio-common/vfprintf.c (vfprintf): Correct overflow test.
5744         [BZ #5939]
5745         * sysdeps/posix/tempname.c (__gen_tempname): Correct flag selection.
5747         * posix/getopt.c (_getopt_internal_r): Remove old POSIX-demanded
5748         error message.  POSIX today does not require the messages to be in
5749         a specific form.  Suggested by Jim Meyering <jim@meyering.net>.
5751         [BZ #5979]
5752         * sunrpc/auth_unix.c: Unify printed strings.
5753         * sunrpc/clnt_tcp.c: Likewise.
5754         * sunrpc/clnt_udp.c: Likewise.
5755         * sunrpc/clnt_unix.c: Likewise.
5756         * sunrpc/svc_tcp.c: Likewise.
5757         * sunrpc/svc_udp.c: Likewise.
5758         * sunrpc/svc_unix.c: Likewise.
5759         * sunrpc/xdr.c: Likewise.
5760         * sunrpc/xdr_array.c: Likewise.
5761         * sunrpc/xdr_rec.c: Likewise.
5762         * sunrpc/xdr_ref.c: Likewise.
5763         * locale/programs/ld-time.c (time_finish): Unify messages.
5764         * locale/programs/locfile.c (handle_copy): Fix typo.
5765         * nscd/nscd.c (options): Fix typo.
5767         [BZ #5995]
5768         * stdlib/strtod_l.c: Use correct sign for result in one more
5769         underflow case.
5770         Patch by Eric Blake <ebb9@byu.net>.
5772 2008-03-27  Jakub Jelinek  <jakub@redhat.com>
5774         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Add open
5775         and creat system calls.
5776         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove open system
5777         call.
5778         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Remove open and creat
5779         system calls.
5780         * sysdeps/unix/sysv/linux/powerpc/powerpc64/syscalls.list: Likewise.
5781         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
5782         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
5784 2008-03-27  Ulrich Drepper  <drepper@redhat.com>
5786         * sysdeps/unix/sysv/linux/bits/local_lim.h: Undefined ARG_MAX if
5787         <linux/limits.h> has defined it.
5788         * sysdeps/unix/sysv/linux/sys/param.h: Define NCARGS to the legacy
5789         ARG_MAX value and prevent ARG_MAX from being defined by the kernel
5790         headers.
5791         * sysdeps/unix/sysv/linux/sysconf.c: Define legacy_ARG_MAX and use
5792         it instead of ARG_MAX.
5794 2008-03-25  Jakub Jelinek  <jakub@redhat.com>
5796         * posix/gai.conf: Fix comment for scope nullbits.
5797         * sysdeps/posix/getaddrinfo.c (gaiconf_init): If /bits is not present,
5798         default to 128 bits for v4 mapped addresses.
5800 2008-03-07  Martin Schwidefsky  <schwidefsky@de.ibm.com>
5802         * sysdeps/s390/fpu/fegetenv.c (fegetenv): Remove PTRACE_PEEKUSER
5803         ptrace call to get the ieee_instruction_pointer from the kernel.
5804         * sysdeps/s390/fpu/fesetenv.c (fesetenv): Remove PTRACE_POKEUSER
5805         ptrace call to set the ieee_instructtion_pointer.
5806         * sysdeps/unix/sysv/linux/s390/sys/user.h (struct _user_regs_struct):
5807         Add comment that ieee_instruction_pointer is always 0.
5809 2008-03-09  Andreas Jaeger  <aj@suse.de>
5811         [BZ #5857]
5812         * sysdeps/ieee754/dbl-64/s_rint.c (__rint): Handle j0==18.
5813         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Likewise.
5814         Patch by Mark Elliott <mark.h.elliott@lmco.com>.
5816         * math/libm-test.inc (nearbyint_test): Add new test cases from #5857.
5817         (rint_test): Likewise.
5819 2008-03-24  Ulrich Drepper  <drepper@redhat.com>
5821         * nis/nis_call.c (nis_server_cache_search): Save errno around stat
5822         call.
5823         (__nisfind_server): Similar for open readColdStartFile call.
5824         Patch partially by Jim Meyering.
5825         * nss/nss_files/files-XXX.c (_nss_files_getXXent_r): Save errno
5826         around internal_setent call.
5828         * po/vi.po: New Vietnamese translation.
5830         * sysdeps/unix/sysv/linux/adjtime.c: Correctly use
5831         ADJ_OFFSET_SS_READ.
5833         * sysdeps/unix/sysv/linux/bits/sched.h: Add new CLONE_* flags,
5834         remove CLONE_STOPPED.
5836 2008-02-10  Jim Meyering  <meyering@redhat.com>
5838         Remove useless "if" before "free":
5839         * elf/ldconfig.c (parse_conf_include): Likewise.
5840         * gmon/gmon.c (weak_alias): Likewise.
5841         * iconv/gconv_conf.c (__gconv_get_path): Likewise.
5842         * inet/rcmd.c (__validuser2_sa): Likewise.
5843         * intl/bindtextdom.c (set_binding_values): Likewise.
5844         * intl/loadmsgcat.c (_nl_load_domain, _nl_unload_domain): Likewise.
5845         * libio/genops.c (save_for_backup): Likewise.
5846         * libio/wgenops.c (save_for_wbackup): Likewise.
5847         * locale/programs/ld-collate.c (collate_read): Likewise.
5848         * locale/programs/linereader.c (get_string): Likewise.
5849         * nis/nss_compat/compat-pwd.c (give_pwd_free): Likewise.
5850         * nis/nss_compat/compat-spwd.c (give_spwd_free): Likewise.
5851         * resolv/res_debug.c (do_section): Likewise.
5852         * sunrpc/xdr_sizeof.c (x_inline, xdr_sizeof): Likewise.
5853         * sysdeps/mach/hurd/if_index.c (libc_hidden_def): Likewise.
5854         * sysdeps/posix/sprofil.c (__sprofil): Likewise.
5855         * time/lc-time-cleanup.c (_nl_cleanup_time): Likewise.
5856         * time/tzset.c (tzset_internal): Likewise.
5858 2008-03-18  Jakub Jelinek  <jakub@redhat.com>
5860         * sysdeps/unix/sysv/linux/dl-sysdep.h: Use __ASSEMBLER__ instead
5861         of ASSEMBLER.
5863 2008-03-11  Ulrich Drepper  <drepper@redhat.com>
5865         [BZ #5903]
5866         * iconv/iconv_charmap.c (charmap_conversion): Pass name of output file
5867         not stream for output file.  Open output file here.
5868         * iconv/iconv_prog.c (process_lock): Take pointer to output stream
5869         and output file name.
5870         (process_fd): Likewise.
5871         (process_file): Likewise.
5872         (main): Adjust callers of changed functions.
5873         * iconv/iconv_prog.h: Adjust prototype.
5875 2008-03-09  Andreas Jaeger  <aj@suse.de>
5877         [BZ #5753]
5878         * sysdeps/ia64/ieee754.h: Use protected namespace
5879         __BIG_ENDIAN/__LITTLE_ENDIAN.
5880         * sysdeps/ieee754/ieee754.h: Likewise.
5881         Patch by Aurelien Jarno <aurelien@aurel32.net>.
5883 2008-03-08  Roland McGrath  <roland@frob.com>
5885         * hurd/hurdsig.c (_hurd_internal_post_signal): When normal rules would
5886         ignore a signal that came from a machine exception, treat it as a
5887         fatal core-dump signal instead.
5888         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
5890         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
5891         Clear DF bit in thread state's eflags.
5892         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
5894 2008-03-08  Ulrich Drepper  <drepper@redhat.com>
5896         [BZ #5774]
5897         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Consume closing brace
5898         of NAN(...) sequence.
5899         * stdlib/Makefile (tests): Add tst-strtod6.
5900         * stdlib/tst-strtod6.c: New file.
5902         * inet/inet6_opt.c (inet6_opt_init): Check extlen for overflow.
5904         [BZ #5762]
5905         * posix/getopt.c (_getopt_internal_r): Clarify error message by
5906         putting offending option character in quotes.  Clean up error
5907         messages.
5908         * po/be.po: Adjust msgstr in translation file.
5909         * po/bg.po: Likewise.
5910         * po/ca.po: Likewise.
5911         * po/cs.po: Likewise.
5912         * po/da.po: Likewise.
5913         * po/de.po: Likewise.
5914         * po/es.po: Likewise.
5915         * po/fr.po: Likewise.
5916         * po/hr.po: Likewise.
5917         * po/ko.po: Likewise.
5918         * po/nl.po: Likewise.
5919         * po/rw.po: Likewise.
5920         * po/sk.po: Likewise.
5921         * po/sv.po: Likewise.
5922         * po/tr.po: Likewise.
5923         * po/zh_CN.po: Likewise.
5924         * po/zh_TW.po: Likewise.
5926         [BZ #5760]
5927         * inet/inet6_opt.c (inet6_opt_init): Fix ip6h_len computation.
5928         Patch by Roland Bless <roland@bless.de>.
5930         * sysdeps/unix/sysv/linux/dl-sysdep.c: Avoid unnecessary code for
5931         .o file.
5932         * elf/Makefile (routines): Add dl-sysdep.
5933         (elide-routines.os): Likewise.
5935 2008-03-07  Ulrich Drepper  <drepper@redhat.com>
5937         [BZ #5786]
5938         * elf/dl-sysdep.c: Undefine ROUND after use.
5939         * sysdeps/generic/ldsodefs.h [HAVE_DL_DISCOVER_OSVERSION]
5940         (struct rtld_global_ro): Add _dl_tls_get_addr_soft element.
5941         * elf/rtld.c (rtld_global_ro): Initialize _dl_discover_osversion.
5942         * sysdeps/unix/sysv/linux/dl-osinfo.h: Move _dl_discover_osversion
5943         to ...
5944         * sysdeps/unix/sysv/linux/dl-sysdep.c: ...here.
5945         * sysdeps/unix/sysv/linux/dl-sysdep.h: Declare _dl_discover_osversion
5946         if necessary.
5947         * sysdeps/unix/sysv/linux/sysconf.c: Handle _SC_ARG_MAX here.
5949         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Add
5950         _dl_tls_get_addr_soft element.
5951         * elf/rtld.c (rtld_global_ro): Initialize _dl_tls_get_addr_soft.
5952         * elf/Versions (ld): Don't export _dl_tls_get_addr_soft.
5953         * dlfcn/dlinfo.c (dlinfo_doit): Access dl_tls_get_addr_soft through
5954         GLRO.
5955         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Likewise.
5956         * elf/dl-tls.c (_dl_tls_get_addr_soft): Use attribute_hidden instead
5957         of internal_function.
5959         * stdlib/Makefile (aux): Add tens_in_limb.
5960         * stdlib/strtod_l.c: Move _tens_in_limb definition to...
5961         * stdlib/tens_in_limb.c: ...here.  New file.
5963         [BZ #5778]
5964         * sysdeps/unix/sysv/linux/pathconf.h: Declare
5965         __statfs_chown_restricted.
5966         * sysdeps/unix/sysv/linux/fpathconf.c: Call __statfs_chown_restricted
5967         for _PC_CHOWN_RESTRICTED.
5968         * sysdeps/unix/sysv/linux/pathconf.c: Likewise.
5969         Implement __statfs_chown_restricted.
5970         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Change
5971         _POSIX_CHOWN_RESTRICTED value to zero.
5972         * io/tst-fchownat.c: Correctly handle _POSIX_CHOWN_RESTRICTED
5973         defined to zero.
5975         * sysdeps/x86_64/rtld-memset.c: New file.
5977 2008-02-26  Harsha Jagasia  <harsha.jagasia@amd.com>
5979         * sysdeps/x86_64/cacheinfo.c (NOT_USED_RIGHT_NOW): Remove ifdef guards.
5981         * sysdeps/x86_64/memset.S: Rewrite non-SSE code path as tuned for AMD
5982         Barcelona machine.  Make default fall through branch of
5983         __x86_64_preferred_memory_instruction check as the integer code path.
5985 2007-10-15  H.J. Lu  <hongjiu.lu@intel.com>
5987         * sysdeps/x86_64/cacheinfo.c
5988         (__x86_64_preferred_memory_instruction): New variable.
5989         (init_cacheinfo): Initialize __x86_64_preferred_memory_instruction.
5991         * sysdeps/x86_64/memset.S: Rewrite.
5993 2008-03-04  Jakub Jelinek  <jakub@redhat.com>
5995         * include/stdio.h (__asprintf_chk, __dprintf_chk,
5996         __obstack_printf_chk): New prototypes.
5997         (__vasprintf_chk, __vdprintf_chk,
5998         __obstack_vprintf_chk): Likewise.
5999         Add libc_hidden_proto.
6000         * libio/obprintf.c
6001         (_IO_obstack_jumps): No longer static, add attribute_hidden.
6002         * libio/bits/stdio-ldbl.h (__asprintf_chk, __dprintf_chk,
6003         __obstack_printf_chk, __vasprintf_chk, __vdprintf_chk,
6004         __obstack_vprintf_chk): Add __LDBL_REDIR_DECL.
6005         * libio/bits/stdio2.h (__asprintf_chk, __dprintf_chk,
6006         __obstack_printf_chk, __vasprintf_chk, __vdprintf_chk,
6007         __obstack_vprintf_chk): New prototypes.
6008         (asprintf, __asprintf, dprintf, obstack_printf, vasprintf, vdprintf,
6009         obstack_vprintf): New inlines.
6010         * debug/dprintf_chk.c: New file.
6011         * debug/vdprintf_chk.c: New file.
6012         * debug/asprintf_chk.c: New file.
6013         * debug/vasprintf_chk.c: New file.
6014         * debug/obprintf_chk.c: New file.
6015         * debug/tst-chk1.c (do_test): Add asprintf and obstack_printf tests.
6016         * debug/Versions (__asprintf_chk, __dprintf_chk, __obstack_printf_chk,
6017         __vasprintf_chk, __vdprintf_chk, __obstack_vprintf_chk): Export
6018         @@GLIBC_2.8.
6019         * debug/Makefile: Build asprintf_chk, vasprintf_chk, dprintf_chk,
6020         vdprintf_chk and obprintf_chk, set CFLAGS for them.
6021         * sysdeps/ieee754/ldbl-opt/nldbl-compat.c (__nldbl___vasprintf_chk,
6022         __nldbl___vdprintf_chk, __nldbl___obstack_vprintf_chk): Add
6023         libc_hidden_proto.
6024         * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl___vasprintf_chk,
6025         __nldbl___vdprintf_chk, __nldbl___obstack_vprintf_chk): New prototypes.
6026         * sysdeps/ieee754/ldbl-opt/Versions (__nldbl___asprintf_chk,
6027         __nldbl___vasprintf_chk, __nldbl___dprintf_chk, __nldbl___vdprintf_chk,
6028         __nldbl___obstack_printf_chk, __nldbl___obstack_vprintf_chk): Export
6029         @@GLIBC_2.8.
6030         * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add asprintf_chk,
6031         vasprintf_chk, dprintf_chk, vdprintf_chk, obstack_printf_chk and
6032         obstack_vprintf_chk.
6033         * sysdeps/ieee754/ldbl-opt/nldbl-obstack_vprintf_chk.c: New file.
6034         * sysdeps/ieee754/ldbl-opt/nldbl-dprintf_chk.c: New file.
6035         * sysdeps/ieee754/ldbl-opt/nldbl-obstack_printf_chk.c: New file.
6036         * sysdeps/ieee754/ldbl-opt/nldbl-asprintf_chk.c: New file.
6037         * sysdeps/ieee754/ldbl-opt/nldbl-vdprintf_chk.c: New file.
6038         * sysdeps/ieee754/ldbl-opt/nldbl-vasprintf_chk.c: New file.
6040 2008-03-04  Ulrich Drepper  <drepper@redhat.com>
6042         [BZ #5779]
6043         * misc/sys/queue.h: Add STAILQ_CONCAT and TAILQ_CONCAT definitions.
6044         Patch by Roy Marples <roy@marples.name>.
6046         [BZ #5736]
6047         * malloc/malloc.c: Fix typo in comment.
6049         [BZ #5627]
6050         * locale/iso-639.def: Add Shuswap.
6052 2008-02-25  Jakub Jelinek  <jakub@redhat.com>
6054         [BZ #5790]
6055         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r): Don't
6056         overwrite *h_errnop/*errnop values from getanswer_r in case of
6057         failure.
6059 2008-03-03  Ulrich Drepper  <drepper@redhat.com>
6061         [BZ #5818]
6062         * nscd/connections.c (dbs): Add initializers for .suggested_module.
6063         (verify_persistent_db): Remove one unnecessary test and add a new one
6064         for bad configuration.
6065         (nscd_init): Improve error reported when persistent database cannot
6066         be reused.
6067         * nscd/nscd.h (DEFAULT_SUGGESTED_MODULE): Define.
6068         * nscd/nscd_conf.c (nscd_parse_file): Provide default values for
6069         .suggested_module and .max_db_size and case config file says the
6070         values are zero.
6071         * nscd/nscd_helper.c (get_mapping): Fail if hash table module is zero.
6073         [BZ #5854]
6074         * nis/ypclnt.c (yp_order): Fix handling of return value of
6075         do_ypcall_tr call.
6076         Patch by Jeff Moyer <jmoyer@redhat.com>.
6078         * po/fr.po: Update from translation team.
6080 2008-02-22  Andreas Jaeger  <aj@suse.de>,
6081             Carlos O'Donell <carlos@systemhalted.org>
6083         [BZ #5012]
6084         * FAQ.in: Describe why glibc needs to be compiled with
6085         optimization.
6087 2008-02-19  Roland McGrath  <roland@redhat.com>
6089         * elf/elf.h (SHT_GNU_ATTRIBUTES): New macro.
6091 2008-02-15  Ulrich Drepper  <drepper@redhat.com>
6093         [BZ #5737]
6094         * resolv/netdb.h: Make NI_MAXHOST and NI_MAXSERV available when
6095         __USE_MISC is defined.
6097 2008-02-10  Ulrich Drepper  <drepper@redhat.com>
6099         * sysdeps/unix/sysv/linux/sys/timerfd.h: New file.
6100         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers): Add
6101         sys/timerfd.h.
6102         * sysdeps/unix/sysv/linux/syscalls.list: Add timerfd_create,
6103         timerfd_gettime, timerfd_settime.
6104         * sysdeps/unix/sysv/linux/Versions: Add timerfd_create,
6105         timerfd_gettime, timerfd_settime for GLIBC_2.8.
6107 2008-02-08  Roland McGrath  <roland@redhat.com>
6109         * elf/elf.h (NT_PPC_SPE): New macro.
6111 2008-02-06  Roland McGrath  <roland@redhat.com>
6113         * Makerules ($(common-objpfx)sysd-rules):
6114         Depend on $(sysdep-makeconfigs).
6116 2008-01-31  Roland McGrath  <roland@redhat.com>
6118         [BZ #5442]
6119         * configure.in: Use -print-file-name if it yields a directory,
6120         for each of include and include-fixed.
6121         * configure: Regenerated.
6123         * Makeconfig (sysd-rules-targets): New variable.
6124         * sysdeps/unix/make-syscalls.sh: Use it in the rules emitted.
6125         * sysdeps/unix/Makefile (omit-deps): Append variants for each target.
6127 2008-01-30  Roland McGrath  <roland@redhat.com>
6129         * manual/libc.texinfo: Update back-cover text.
6131         * elf/elf.h (NT_386_TLS): New macro.
6133 2008-01-29  Roland McGrath  <roland@redhat.com>
6135         * Makeconfig (sysd-rules-patterns): New variable.
6136         * Makerules ($(common-objpfx)sysd-rules): Drive the loop from that.
6137         (check-inhibit-asm): New canned sequence, replaces ...
6138         (open-check-inhibit-asm, close-check-inhibit-asm): ... these, removed.
6139         * elf/rtld-Rules ($(objpfx)rtld-%.os): Use $(rtld-CPPFLAGS) in commands.
6140         (rtld-CPPFLAGS): Renamed from CPPFLAGS-rtld.
6141         (CFLAGS-rtld): Variable removed.
6143 2008-01-24  Roland McGrath  <roland@redhat.com>
6145         * configure.in: Let configure fragments set base_os.
6146         * configure: Regenerated.
6148 2008-01-22  Ulrich Drepper  <drepper@redhat.com>
6150         * po/ko.po: Update from translation team.
6152 2008-01-12  H.J. Lu  <hongjiu.lu@intel.com>
6154         * sysdeps/i386/fpu/ftestexcept.c (fetestexcept): Use short for fnstsw.
6156 2008-01-12  Andreas Jaeger  <aj@suse.de>
6158         [BZ #5040]
6159         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h (enum EPOLL_EVENTS):
6160         Add EPOLLRDHUP.
6162 2008-01-20  Samuel Thibault  <samuel.thibault@ens-lyon.org>
6164         * hurd/hurdsock.c (_hurd_socket_server): Return the standard
6165         error EAFNOSUPPORT rather than non-standard EPFNOSUPPORT.
6166         * sunrpc/bindrsvprt.c (bindresvport): Likewise.
6168 2007-10-23  Alexandre Oliva  <aoliva@redhat.com>
6170         * include/link.h (FORCED_DYNAMIC_TLS_OFFSET): Define.
6171         * elf/dl-close.c (_dl_close): Check for it.
6172         * elf/dl-reloc.c (CHECK_STATIC_TLS): Likewise.
6173         (_dl_allocate_static_tls): Likewise.
6174         * elf/dl-tls.c (_dl_allocate_tls_init): Likewise.
6175         (__tls_get_addr): Protect from race conditions in setting l_tls_offset
6176         to it.
6177         * elf/tst-tls16.c: New file.
6178         * elf/tst-tlsmod16a.c: New file.
6179         * elf/tst-tlsmod16b.c: New file.
6180         * elf/Makefile: Add rules to build and run tst-tls16.
6182 2008-01-16  Ulrich Drepper  <drepper@redhat.com>
6184         [BZ #5628]
6185         * bits/shm.h: Fix comment describing shmid_ds.
6186         * sysdeps/gnu/bits/shm.h: Likewise.
6187         * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Likewise.
6188         * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
6189         * sysdeps/unix/sysv/linux/ia64/bits/shm.h: Likewise.
6190         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
6191         * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
6192         * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
6193         * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
6194         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Likewise.
6195         Patch by Hareesh Nagarajan <hareesh.nagarajan@gmail.com>.
6197         [BZ #5607]
6198         * conform/data/fcntl.h-data: Fix posix_fadvise and posix_fallocate
6199         prototypes.
6200         * conform/data/limits.h-data: Adjust limits changed in v6 and add
6201         additional suffixes.
6202         * conform/data/mqueue.h-data: Fix typo in mq_curmsgs entry.
6203         Add optional functions mq_timedreceive and mq_timedsend.
6204         * conform/data/netdb.h-data: Add more AI_* and EAI_* constants.
6205         * conform/data/pthread.h-data: Fix prototype of
6206         pthread_condattr_setclock.  pthread_sigmask is not required in v6.
6207         * conform/data/semaphore.h-data: Allow time.h definitions.
6208         * conform/data/signal.h-data: Likewise.
6209         * conform/data/stdio.h-data: getw and putw are not required in v6.
6210         * conform/data/stdlib.h-data: Change setstate prototype.
6211         * conform/data/string.h-data: Fix strerror_r prototype.
6212         * conform/data/time.h-data: Fix typo in TIMER_ABSTIME definition.
6213         * conform/data/unistd.h-data: pthread_atfork not required in v6.
6214         Fix readlink prototype.
6215         * conform/data/netinet/in.h-data: Add const to in6addr_any and
6216         in6addr_loopback.
6217         * inet/netinet/in.h: Cleanup namespace.
6218         * posix/regex.h: Likewise.
6219         * resolv/netdb.h: Likewise.
6220         * sysdeps/unix/sysv/linux/bits/in.h: Likewise.
6221         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
6222         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
6223         * sysdeps/posix/getaddrinfo.c (default_labels): Adjust for change
6224         of names of in in6_addr.
6225         (default_precedence): Likewise.
6226         * sysdeps/unix/sysv/linux/cmsg_nxthdr.c: Include <stddef.h> for
6227         NULL definition.
6229 2008-01-15  Ulrich Drepper  <drepper@redhat.com>
6231         * conform/data/fmtmsg.h-data: Add missing allows.
6232         * conform/data/ftw.h-data: Likewise.
6233         * conform/data/inttypes.h-data: Likewise.
6234         * conform/data/math.h-data: Likewise.
6235         * conform/data/signal.h-data: Likewise.
6236         * conform/data/net/if.h-data: Likewise.
6237         * conform/data/netinet/in.h-data: Likewise.
6238         * conform/data/sys/socket.h-data: Likewise.
6240         [BZ #5614]
6241         * string/bits/string2.h (__strtok_r_1c): Always update *__NEXTP.
6242         (__strtok_r): Simplify.
6243         * string/tester.c (test_strtok_r): Add test case for futile search
6244         with single-character seach string.
6246 2008-01-12  Ulrich Drepper  <drepper@redhat.com>
6248         * po/ko.po: Update from translation team.
6250 2008-01-11  Andreas Jaeger  <aj@suse.de>
6252         [BZ #5600]
6253         * sysdeps/unix/sysv/linux/sys/signalfd.h (struct
6254         signalfd_siginfo): Use 64-bit type for ssi_ptr to sync with Linux
6255         kernel header.
6257 2008-01-10  Ulrich Drepper  <drepper@redhat.com>
6259         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Store result of
6260         native interface lookup in all the relevant places.
6262 2008-01-10  Jakub Jelinek  <jakub@redhat.com>
6263             Ulrich Drepper  <drepper@redhat.com>
6265         * sysdeps/posix/getaddrinfo.c (sort_results): Remove service_order
6266         field.  Use sockaddr_in6 for source_addr.
6267         (get_scope): Change type of parameter to sockaddr_in6.  Adjust.
6268         (match_prefix): Likewise.
6269         (get_label): Likewise.
6270         (get_precedence): Likewise.
6271         (rfc3484_sort): Change to use indirect access to results array.
6272         Adjust to use of sockaddr_in6.  Replace service_order test with
6273         simple index comparison.
6274         (getaddrinfo): Define order array.  Initialize it.  Don't initialize
6275         service_order field.  Adjust qsort_t calls.  Access sorted result
6276         array indirectly through order array.
6277         * posix/tst-rfc3484.c: Adjust for change of rfc3484_sort.
6278         * posix/tst-rfc3484-2.c: Likewise.
6279         * posix/tst-rfc3484-3.c: Likewise.
6281 2008-01-09  Ulrich Drepper  <drepper@redhat.com>
6283         [BZ #5541]
6284         * sunrpc/rpc_thread.c (__rpc_thread_destroy): Also free xports and
6285         pollfd structures.
6286         Patch by André Cruz.
6288         [BZ #5545]
6289         * sunrpc/clnt_perr.c (clnt_sperror): Don't use fixed size buffer.
6290         (clnt_spcreateerror): Likewise.
6292         [BZ #5553]
6293         * malloc/malloc.c (public_mALLOc): Set ar_ptr when trying main_arena.
6294         (public_mEMALIGn): Likewise.
6295         Patch mostly by Daniel Jacobowitz.
6297 2008-01-09  Jakub Jelinek  <jakub@redhat.com>
6299         * sysdeps/unix/sysv/linux/i386/makecontext.S (__makecontext): Avoid
6300         clobbering memory at or above uc_stack.ss_sp + uc_stack.ss_size.
6301         * stdlib/Makefile: Add rules to build and run tst-makecontext2.
6302         * stdlib/tst-makecontext2.c: New test.
6304 2008-01-08  Jakub Jelinek  <jakub@redhat.com>
6306         * iconv/loop.c (UPDATE_PARAMS): Define to empty statement if not
6307         defined.
6308         (REINIT_PARAMS): Likewise.  Undefine before end of file.
6309         (STANDARD_TO_LOOP_ERR_HANDLER): Use UPDATE_PARAMS before calling
6310         transliteration hooks and REINIT_PARAMS afterwards.
6311         * iconvdata/iso-2022-jp.c (BODY): Use a separate variable for
6312         status.
6313         (REINIT_PARAMS): Define.
6314         * iconvdata/ibm1364.c (REINIT_PARAMS): Likewise.
6315         * iconvdata/ibm930.c (REINIT_PARAMS): Likewise.
6316         * iconvdata/ibm933.c (REINIT_PARAMS): Likewise.
6317         * iconvdata/ibm935.c (REINIT_PARAMS): Likewise.
6318         * iconvdata/ibm937.c (REINIT_PARAMS): Likewise.
6319         * iconvdata/ibm939.c (REINIT_PARAMS): Likewise.
6320         * iconvdata/iso-2022-cn.c (REINIT_PARAMS): Likewise.
6321         * iconvdata/iso-2022-cn-ext.c (REINIT_PARAMS): Likewise.
6322         * iconvdata/iso-2022-jp-3.c (REINIT_PARAMS): Likewise.
6323         * iconvdata/iso-2022-kr.c (REINIT_PARAMS): Likewise.
6324         * iconvdata/Makefile: Add rules to build and run tst-iconv7.c.
6325         * iconvdata/tst-iconv7.c: New test.
6327 2008-01-07  Ulrich Drepper  <drepper@redhat.com>
6329         * libio/stdio.h (vscanf): Fix definition for loser compilers.
6331 2008-01-05  Jakub Jelinek  <jakub@redhat.com>
6333         [BZ #5112]
6334         * nscd/connections.c (restart): Fix condition.
6336 2008-01-03  Jakub Jelinek  <jakub@redhat.com>
6338         * ctype/ctype.h (__ctype_b_loc, __ctype_tolower_loc,
6339         __ctype_toupper_loc): Add __THROW.
6341 2008-01-02  Ulrich Drepper  <drepper@redhat.com>
6343         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Fix
6344         recognition of interface family.
6346         * posix/getconf.c: Update copyright year.
6347         * nss/getent.c: Likewise.
6348         * iconv/iconvconfig.c: Likewise.
6349         * iconv/iconv_prog.c: Likewise.
6350         * elf/ldconfig.c: Likewise.
6351         * catgets/gencat.c: Likewise.
6352         * csu/version.c: Likewise.
6353         * elf/ldd.bash.in: Likewise.
6354         * elf/sprof.c (print_version): Likewise.
6355         * locale/programs/locale.c: Likewise.
6356         * locale/programs/localedef.c: Likewise.
6357         * nscd/nscd.c (print_version): Likewise.
6358         * debug/xtrace.sh: Likewise.
6359         * malloc/memusage.sh: Likewise.
6360         * malloc/mtrace.pl: Likewise.
6361         * debug/catchsegv.sh: Likewise.
6363 2007-12-26  Ulrich Drepper  <drepper@redhat.com>
6365         * nss/nsswitch.c (__nss_lookup): Actually use alternative name in
6366         second lookup.
6368 2007-12-23  Ulrich Drepper  <drepper@redhat.com>
6370         * sysdeps/x86_64/cacheinfo.c (intel_02_known): New entry 0x3f.
6371         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
6373 2007-12-17  Roland McGrath  <roland@redhat.com>
6375         * inet/ether_line.c (ether_line): Remove unused variable.
6377 2007-12-17  Samuel Thibault  <samuel.thibault@ens-lyon.org>
6379         * login/forkpty.c (forkpty): Add const qualifier to parameters termp
6380         and winp.
6381         * login/openpty.c (openpty): Likewise.
6382         * login/pty.h (openpty, forkpty): Likewise.
6383         * manual/terminal.texi (openpty, forkpty): Likewise.
6385 2007-12-17  Ulrich Drepper  <drepper@redhat.com>
6387         * malloc/malloc.c (public_cALLOc): For arenas other than
6388         main_arena, count all bytes inside the mprotect_size range of the
6389         heap as uninitialized.
6391 2007-12-16  Ulrich Drepper  <drepper@redhat.com>
6393         * elf/tst-execstack.c (do_test): Don't fail if SELinux forbids
6394         executable stacks.
6396         * malloc/malloc.c (public_mTRIm): Iterate over all arenas and call
6397         mTRIm for all of them.
6398         (mTRIm): Additionally iterate over all free blocks and use madvise
6399         to free memory for all those blocks which contain at least one
6400         memory page.
6401         * malloc/tst-trim1.c: New file.
6402         * malloc/Makefile (tests): Add tst-trim1.
6404         * malloc/malloc.c (do_check_malloc_state): Minimal cleanups.
6406 2007-12-14  Ulrich Drepper  <drepper@redhat.com>
6408         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
6409         First cast argument to long
6410         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_gettimeofday):
6411         Return long.
6412         (__vdso_clock_gettime): Likewise.
6413         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Functions
6414         return long.
6416 2007-12-13  Ulrich Drepper  <drepper@redhat.com>
6418         * locale/nl_langinfo.c (nl_langinfo): Just call __nl_langinfo_l.
6419         * locale/nl_langinfo_l.c: Real implementation, copied from
6420         nl_langinfo.c.
6421         * include/langinfo.h: Add libc_hidden_proto for __nl_langinfo_l.
6423 2007-12-01  Jim Meyering  <meyering@redhat.com>
6425         * posix/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
6426         that would inhibit utf8-optimization of a regexp containing line-
6427         or buffer-anchors, e.g., `^', `$'.
6429 2007-12-12  Ulrich Drepper  <drepper@redhat.com>
6431         * time/bug-getdate1.c (do_test): Don't use century values which
6432         aren't valid on 32-bit systems.
6434 2007-12-12  Jakub Jelinek  <jakub@redhat.com>
6436         * sysdeps/i386/i486/bits/string.h (memmove): Define as macro.
6437         (memmove): Rename to __memmove_g, with __asm__ ("memmove").
6438         * sysdeps/s390/bits/string.h (__strlen_g, __strcpy_g, __strncpy_g,
6439         __strcat_g, __strncat_g): Add __asm__.
6441 2007-12-12  Ulrich Drepper  <drepper@redhat.com>
6443         [BZ #5477]
6444         * io/fchmodat.c: Fix typo in stub_warning use.
6445         Patch by Petr Salinger.
6447 2007-12-11  Ulrich Drepper  <drepper@redhat.com>
6449         * iconvdata/hp-thai8.c: New file.
6450         * iconvdata/Makefile: Add rules for hp-thai8.c.
6451         * iconvdata/tst-tables.sh: Add entry for HP-THAI8.
6452         * iconvdata/gconv-modules: Likewise.
6454         [BZ #5464]
6455         * iconvdata/hp-greek8.c: New file.
6456         * iconvdata/Makefile: Add rules for hp-greek8.c.
6457         * iconvdata/tst-tables.sh: Add entry for HP-GREEK8.
6458         * iconvdata/gconv-modules: Likewise.
6460         [BZ #5463]
6461         * iconvdata/hp-turkish8.c: New file.
6462         * iconvdata/Makefile: Add rules for hp-turkish8.c.
6463         * iconvdata/tst-tables.sh: Add entry for HP-TURKISH8.
6464         * iconvdata/gconv-modules: Likewise.
6466         * malloc/arena.c (grow_heap): Split out code to shrink heap into...
6467         (shrink_heap): ... this new function.
6468         (heap_trim): Call shrink_heap instead of grow_heap.
6470         * malloc/malloc.c (_int_malloc): sYSMALLOc might fail, in this
6471         case don't call alloc_perturb.
6473 2007-12-10  Ulrich Drepper  <drepper@redhat.com>
6475         * sysdeps/unix/sysv/linux/adjtime.c: Use ADJ_OFFSET_SS_READ if
6476         possible.
6477         * sysdeps/unix/sysv/linux/kernel-features.h
6478         (__ASSUME_ADJ_OFFSET_SS_READ): Define for 2.6.24.
6479         * sysdeps/unix/sysv/linux/sys/timex.h (ADJ_OFFSET_SS_READ): Define.
6481 2007-12-08  Ulrich Drepper  <drepper@redhat.com>
6483         [BZ #5424]
6484         * stdio-common/vfprintf.c: Do not overflow when adding to done.
6485         * stdio-common/Makefile (tests): Add bug22.
6486         * stdio-common/bug22.c: New file.
6488         [BZ #5451]
6489         * time/getdate.c: Fix filling in default values.
6490         * time/bug-getdate1.c: New file.
6491         * time/Makefile: Add rules to build and run bug-getdate1.
6493         * iconvdata/ebcdic-is-friss.c: Use 8bit-gap instead of 8bit-generic.
6494         * iconvdata/ebcdic-es.c: Likewise.
6495         * iconvdata/ebcdic-es-a.c: Likewise.
6496         * iconvdata/ebcdic-uk.c: Likewise.
6497         * iconvdata/iso8859-16.c: Likewise.
6498         * iconvdata/viscii.c: Likewise.
6499         * iconvdata/iso8859-9e.c: Likewise.
6500         * iconvdata/Makefile: Adjust appropriately.
6502         [BZ #5428]
6503         * wcsmbs/wchar.h: Unconditionally undefine __need_mbstate and
6504         __need_wint_t.
6506 2007-12-07  Ulrich Drepper  <drepper@redhat.com>
6508         [BZ #5427]
6509         * iconvdata/hp-roman9.c: New file.
6510         * iconvdata/Makefile: Add rules for hp-roman9.c.
6511         * iconvdata/tst-tables.sh: Add HP-ROMAN9.
6512         * iconvdata/gconv-modules: Likewise.
6514         * iconvdata/hp-roman8.c: Use 8bit-gap instead of 8bit-generic.
6515         * iconvdata/Makefile: Adjust appropriately.
6517         [BZ #5441]
6518         * stdio-common/vfscanf.c (_IO_vfwscanf): Don't free ptrs_to_free
6519         structure, it's allocated with alloca.
6520         * stdio-common/Makefile (tests): Add bug21.
6521         * stdio-common/bug21.c: New file.
6523 2007-12-06  Aurelien Jarno  <aurelien@aurel32.net>
6525         [BZ #5452]
6526         * sysdeps/unix/sysv/linux/bits/sched.h: Use __extension__
6527         keyword for gcc's braced-groups.
6529 2007-12-07  Ulrich Drepper  <drepper@redhat.com>
6531         [BZ #5454]
6532         * inet/ether_line.c: Strip hostname of whitespaces.
6533         * inet/Makefile (tests): Add tst-ether_line.
6534         * inet/tst-ether_line.c: New file.
6536 2007-12-03  Ulrich Drepper  <drepper@redhat.com>
6538         [BZ #5439]
6539         * sysdeps/unix/sysv/linux/sys/signalfd.h: Fix use of __nonnull.
6541         [BZ #5435]
6542         * sysdeps/unix/sysv/linux/i386/makecontext.S: Align stack.
6544         * stdlib/tst-setcontext.c: Catch the case where the links gets
6545         messed up and we do not reach main again.
6547         * po/ca.po: Update from translation team.
6549 2007-11-26  Ulrich Drepper  <drepper@redhat.com>
6551         * posix/unistd.h: Declare fsync also for __USE_XOPEN2K.
6552         * posix/regex.h (REG_ENOSYS): Likewise.
6553         * wcsmbs/wchar.h: Define __need_file also for __USE_XOPEN2K.
6555 2007-11-25  Ulrich Drepper  <drepper@redhat.com>
6557         * nscd/nscd.h (MAX_STACK_USE): Define.
6558         * nscd/mem.c (MAX_STACK_USE): Remove definition here.
6559         (gc): Initialize stack_used based on allocation in prune_cache.
6560         * nscd/cache.c (prune_cache): Use heap for mark array if necessary.
6561         Clear array before use.
6563         * nscd/aicache.c (addhstaiX): Update statistics counter in case
6564         memory allocation failed.
6565         * nscd/hstcache.c (cache_addhst): Likewise.
6566         * nscd/grpcache.c (cache_addgr): Likewise.
6567         * nscd/servicescache.c (cache_addserv): Likewise.
6568         * nscd/pwdcache.c (cache_addpw): Likewise.
6569         * nscd/initgrcache.c (addinitgroupsX): Likewise.
6571 2007-11-23  Ulrich Drepper  <drepper@redhat.com>
6573         * sysdeps/unix/sysv/linux/powerpc/powerpc64/syscalls.list: Add open
6574         and creat system calls.
6576         * sysdeps/unix/sysv/linux/check_native.c: Include <asm/types.h>.
6578 2007-11-23  Martin Schwidefsky  <schwidefsky@de.ibm.com>
6580         * sysdeps/unix/sysv/linux/Makefile [subdir=inet] (sysdep_headers):
6581         Add netiucv/iucv.h.
6582         * sysdeps/unix/sysv/linux/netiucv/iucv.h: New file.
6583         * sysdeps/unix/sysv/linux/opensock.c (__opensock): Add AF_IUCV
6584         protocol.
6585         * sysdeps/unix/sysv/linux/sa_len.c (__libc_sa_len): Likewise.
6586         * sysdeps/unix/sysv/linux/s390/opensock.c: New file.
6587         * sysdeps/unix/sysv/linux/s390/sa_len.c: New file.
6589 2007-11-22  Martin Schwidefsky  <schwidefsky@de.ibm.com>
6591         * sysdeps/s390/bits/string.h (strlen, strcpy, strncpy, strcat,
6592         strncat): Define as macros to avoid compile errors.
6594         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list:  Add open and
6595         creat entries.
6597 2007-11-22  Ulrich Drepper  <drepper@redhat.com>
6599         [BZ #5382]
6600         * nscd/nscd.h (NSCD_THREAD_STACKSIZE): Define.
6601         * nscd/connections.c (start_threads): Use NSCD_THREAD_STACKSIZE.
6602         * nscd/mem.c (gc): Don't allocate arrays on the stack if they can
6603         overflow it.
6604         Partially based on a patch by Petr Baudis <pasky@suse.cz>.
6606         * sysdeps/unix/sysv/linux/nscd_setup_thread.c (setup_thread):
6607         Return zero in case the thread library is not NPTL.
6609         [BZ #5375]
6610         * resolv/res_hconf.c (_res_hconf_reorder_addrs): Fix locking when
6611         initializing interface list.
6613         [BZ #5378]
6614         * nis/nss_compat/compat-initgroups.c (getgrent_next_nss): Don't
6615         use result of nss_getgrgid_r if nothing was found.  For other
6616         error return with a failure.
6617         Partially based on a patch by Petr Baudis <pasky@suse.cz>.
6619         * locale/programs/ld-collate.c (collate_read): Fix loop to match
6620         macro name.
6622 2007-11-19  Ulrich Drepper  <drepper@redhat.com>
6624         * sysdeps/posix/getaddrinfo.c (defaults_scopes, scopes): New variables.
6625         (get_scope): For IPv4 scope, use scopes table.
6626         (fini): Free scopes table if necessary.
6627         (free_scopelist): New function.
6628         (scopecmp): New function.
6629         (gaiconf_init): Also handle scopev4 entries.
6630         * posix/tst-rfc3484.c (do_test): Initialize scopes.
6631         * posix/tst-rfc3484-2.c (do_test): Likewise.
6632         * posix/gai.conf: Document scopev4 defaults.
6633         * posix/Makefile (tests): Add tst-rfc3484-3.
6634         * posix/tst-rfc3484-3.c: New file.
6636         * sysdeps/posix/getaddrinfo.c (default_labels): Describe entry for
6637         Teredo tunnels.
6638         * posix/gai.conf: Update for current default tables.
6640 2007-11-19  Ulrich Drepper  <drepper@redhat.com>
6642         * po/tr.po: Update from translation team.
6644 2007-11-18  Roland McGrath  <roland@frob.com>
6646         * manual/arith.texi (Remainder Functions): Spelling fix.
6647         From Shaun Silk <genix@mysoul.com.au>.
6649         * sysdeps/mach/hurd/bits/fcntl.h (O_CLOEXEC): Fix value.
6651 2007-11-17  Ulrich Drepper  <drepper@redhat.com>
6653         * po/zh_CN.po: Update from translation team.
6655         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers):
6656         Add sys/signalfd.h and sys/eventfd.h.
6658 2007-11-15  Bruno Haible  <bruno@clisp.org>
6660         [BZ #5346]
6661         * intl/dcigettext.c (struct known_translation_t): Turn msgid into a
6662         union.
6663         (transcmp): Use the appropriate part of s1->msgid and s2->msgid.
6664         (DCIGETTEXT): Change the allocation of the 'search' variable so that
6665         it needs only fixed stack space. Delay the initialization of
6666         msgid_len until it is needed.
6668 2007-11-15  Andreas Jaeger  <aj@suse.de>
6670         * sysdeps/ieee754/dbl-64/sincos.tbl: Fix size of union.
6671         Reported by Christoph Quirin Lauter <christoph.lauter@ens-lyon.fr>.
6673 2007-11-15  Ulrich Drepper  <drepper@redhat.com>
6675         * po/ko.po: Update from translation team.
6677 2007-11-14  Ulrich Drepper  <drepper@redhat.com>
6679         * sysdeps/unix/sysv/linux/check_native.c (__check_native): Simplify
6680         significantly.  The device type is also part of the ifinfomsg data.
6682         * po/sv.po: Update from translation team.
6683         * po/nl.po: Likewise.
6685         * nscd/cache.c (prune_cache): If cache is empty, instruct caller
6686         to wake up in 24 hours.
6688         * nscd/gai.c (__ioctl): Define.  Include check_native.c.
6690 2007-11-13  Ulrich Drepper  <drepper@redhat.com>
6692         * po/cs.po: Update from translation team.
6693         * po/pl.po: Likewise.
6695         * include/ifaddrs.h: Remove in6ai_temporary.
6696         (struct in6addrinfo): Add index element.
6697         Declare __check_native.
6698         * inet/Makefile (aux): Add check_native.
6699         * sysdeps/unix/sysv/linux/check_native.c: New file.
6700         * sysdeps/unix/sysv/linux/check_pf.c: No need to recognize
6701         IFA_F_TEMPORARY.  Pass back ifa_index.
6702         * sysdeps/posix/getaddrinfo.c: Remove netlink compatibility code.
6703         (rfc3484_sort): Add new parameter.  Implement rule 7 correctly:
6704         call __check_native if necessary.
6705         (getaddrinfo): Fill in index field.  Use qsort_r instead of qsort
6706         to sort addresses.  Pass information about the results.
6707         * posix/tst-rfc3484.c: Adjust for addition of index field and change
6708         of rfc3484_sort interface.
6709         * posix/tst-rfc3484-2.c: Likewise.
6711         * stdlib/stdlib.h: Define __compar_d_fn_t.  Declare qsort_r.
6712         * include/stdlib.h: Add hidden_proto for qsort_t and adjust protoype
6713         for _quicksort.
6714         * stdlib/msort.c (qsort): Now a wrapper around qsort_r.
6715         (qsort_r): Renamed from qsort.  Take additional parameter and pass it
6716         on as third parameter to compare function and _quicksort.
6717         * stdlib/qsort.c (_quicksort): Take additional parameter and pass on
6718         to the compare function.
6719         * stdlib/Versions [libc] (GLIBC_2.8): Add qsort_r.
6720         * Versions.def: Add GLIBC_2.8 for libc.
6722         * posix/tst-rfc3484.c: Adjust for addition of prefixlen field.
6723         * posix/tst-rfc3484-2.c: Likewise.
6725         * include/kernel-features.h: Moved to...
6726         * sysdeps/mach/hurd/kernel-features.h: ...here.
6728 2007-09-13  H.J. Lu  <hongjiu.lu@intel.com>
6730         * sysdeps/i386/i586/memcpy_chk.S: New file.
6731         * sysdeps/i386/i586/mempcpy_chk.S: Likewise.
6732         * sysdeps/i386/i586/memset_chk.S: Likewise.
6734 2007-11-12  Ulrich Drepper  <drepper@redhat.com>
6736         * include/ifaddrs.c (struct in6addrinfo): Add prefixlen field.
6737         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Always return
6738         list of interfaces.  Also store prefix length.
6739         * sysdeps/posix/getaddrinfo.c (sort_result): Add prefixlen element.
6740         (rfc3484_sort): In rule 9, for IPv4 addresses count only matching
6741         prefix if source and destination address are in the same subnet.
6742         (getaddrinfo): Always call __check_pf.  Fill in prefixlen field.
6743         Always look for matching record in in6ai list.
6744         Correct source_addr_len value for IPv6->IPv4 converted records.
6746 2007-11-11  Roland McGrath  <roland@frob.com>
6748         * include/kernel-features.h: New file.
6750 2007-11-10  Ulrich Drepper  <drepper@redhat.com>
6752         * sysdeps/pthread/aio_misc.c (handle_fildes_io): Avoid unnecessary
6753         complications for 64-bit platforms.
6755         * sysdeps/unix/sysv/linux/open64.c: Move __open64_2 implementation to..
6756         * sysdeps/unix/sysv/linux/open64_2.c: ...here.  New file.
6757         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines): Add
6758         open64_2.
6759         * sysdeps/unix/sysv/linux/ia64/syscalls.list: Add open and creat
6760         entries.
6761         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
6762         * sysdeps/wordsize-64/alphasort.c: New file.
6763         * sysdeps/wordsize-64/alphasort64.c: New file.
6764         * sysdeps/wordsize-64/fseeko.c: New file.
6765         * sysdeps/wordsize-64/fseeko64.c: New file.
6766         * sysdeps/wordsize-64/ftello.c: New file.
6767         * sysdeps/wordsize-64/ftello64.c: New file.
6768         * sysdeps/wordsize-64/ftw.c: New file.
6769         * sysdeps/wordsize-64/ftw64.c: New file.
6770         * sysdeps/wordsize-64/iofgetpos.c: New file.
6771         * sysdeps/wordsize-64/iofgetpos64.c: New file.
6772         * sysdeps/wordsize-64/iofopen.c: New file.
6773         * sysdeps/wordsize-64/iofopen64.c: New file.
6774         * sysdeps/wordsize-64/iofsetpos.c: New file.
6775         * sysdeps/wordsize-64/iofsetpos64.c: New file.
6776         * sysdeps/wordsize-64/lockf.c: New file.
6777         * sysdeps/wordsize-64/lockf64.c: New file.
6778         * sysdeps/wordsize-64/mkostemp.c: New file.
6779         * sysdeps/wordsize-64/mkostemp64.c: New file.
6780         * sysdeps/wordsize-64/mkstemp.c: New file.
6781         * sysdeps/wordsize-64/mkstemp64.c: New file.
6782         * sysdeps/wordsize-64/scandir.c: New file.
6783         * sysdeps/wordsize-64/scandir64.c: New file.
6784         * sysdeps/wordsize-64/tmpfile.c: New file.
6785         * sysdeps/wordsize-64/tmpfile64.c: New file.
6786         * sysdeps/wordsize-64/versionsort.c: New file.
6787         * sysdeps/wordsize-64/versionsort64.c: New file.
6788         * sysdeps/unix/sysv/linux/wordsize-64/aio_read.c: New file.
6789         * sysdeps/unix/sysv/linux/wordsize-64/aio_read64.c: New file.
6790         * sysdeps/unix/sysv/linux/wordsize-64/aio_write.c: New file.
6791         * sysdeps/unix/sysv/linux/wordsize-64/aio_write64.c: New file.
6792         * sysdeps/unix/sysv/linux/wordsize-64/creat64.c: New file.
6793         * sysdeps/unix/sysv/linux/wordsize-64/getdirentries.c: New file.
6794         * sysdeps/unix/sysv/linux/wordsize-64/getdirentries64.c: New file.
6795         * sysdeps/unix/sysv/linux/wordsize-64/lio_listio.c: New file.
6796         * sysdeps/unix/sysv/linux/wordsize-64/lio_listio64.c: New file.
6797         * sysdeps/unix/sysv/linux/wordsize-64/open64.c: New file.
6798         * sysdeps/unix/sysv/linux/wordsize-64/openat.c: New file.
6799         * sysdeps/unix/sysv/linux/wordsize-64/openat64.c: New file.
6801         * crypt/sha256-crypt.c: Fix a comment.
6802         * crypt/sha512-crypt.c: Likewise.
6804 2007-11-07  H.J. Lu  <hongjiu.lu@intel.com>
6806         * sysdeps/x86_64/memset.S: Add sfence after movnti.
6808 2007-11-07  Ulrich Drepper  <drepper@redhat.com>
6810         [BZ #5277]
6811         * iconv/loop.c (STANDARD_TO_LOOP_ERR_HANDLER): If conversion failed
6812         because output buffer is too small break, don't loop.
6813         * iconvdata/Makefile (tests): Add bug-iconv6.
6814         * iconvdata/bug-iconv6.c: New file.
6816 2007-11-06  Ulrich Drepper  <drepper@redhat.com>
6818         * stdio-common/vfprintf.c (vfprintf): Compute necessary buffer size
6819         with size_t type.
6820         * stdio-common/printf_fp.c (__print_fp): Change chars_needed type to
6821         size_t.  Add casts where needed.
6823         * nscd/selinux.c (nscd_request_avc_has_perm): When compiled with
6824         old headers, don't call avc_has_perm if we don't have the
6825         permission information.
6827 2007-11-05  Daniel Jacobowitz  <dan@codesourcery.com>
6829         * elf/rtld.c (dl_main): Use the page size to find the map start.
6831 2007-11-05  Ulrich Drepper  <drepper@redhat.com>
6833         * time/tzfile.c (__tzfile_read): Fix check for version 0 data files.
6834         Patch by Szymon Siwek <sls@poczta.wp.pl>.
6836         * nscd/aicache.c (addhstaiX): Check herrno after IPv4 lookup only
6837         when the lookup call failed.
6839         * nscd/nscd.h (struct database_dyn): Rename prunelock to prune_lock.
6840         Add prune_cond and wakeup_time.
6841         (CACHE_PRUNE_INTERNAL): Define.
6842         Update declarations of prune_cache and setup_thread.
6843         * nscd/connections.c (dbs): Update initializers.
6844         (CACHE_PRUNE_INTERNAL): Moved to nscd.h.
6845         (nscd_init): Default number of threads is now 4.
6846         (invalidate_cache): Take lock before calling prune_cache.
6847         (handle_request): If SELinux forbids the request, say so.
6848         (readylist_cond): Use static initializer.
6849         (nscd_run_prune): New function.  Used only by pruning threads.
6850         (nscd_run_worder): Renamed from nscd_run.  Remove support for pruning
6851         here.
6852         (fd_ready): Update nscd_run reference.
6853         (start_threads): No need to initialize readylist_cond.
6854         Start pruning threads separately.
6855         * nscd/nscd_setup_thread.c: Change return value type to int and always
6856         return 0.
6857         * sysdeps/unix/sysv/linux/nscd_setup_thread.c: Change return value type
6858         to int and return nonzero value if we can use the TID address hack.
6859         * nscd/cache.c (cache_add): If next wakeup time of cleanup thread for
6860         the database is later than the new entry's timeout, update the
6861         wakeup time and wake the cleanup thread.
6862         (prune_cache): Return seconds the next entry in the database is still
6863         valid.  Remove locking for pruning here.
6864         * nscd/nscd.conf: Document default number of threads.
6866 2007-10-31  Ulrich Drepper  <drepper@redhat.com>
6868         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Make sure
6869         stack is properly aligned for the target function.
6870         Correct unwind info.
6872         * elf/rtld.c (dl_main): Initialize stack and pointer guard early
6873         when using auditing libraries.
6875 2007-10-29  Ulrich Drepper  <drepper@redhat.com>
6877         * resolv/Versions [libresolv] (GLIBC_PRIVATE): Add
6878         _nss_dns_getnetbyaddr2_r.
6879         * resolv/nss_dns/dns-host.c: Define _nss_dns_getnetbyaddr2_r.  Pass
6880         extra parameter to getanswer_r.
6881         (_nss_dns_getnetbyaddr_r): Now a wrapper around
6882         _nss_dns_getnetbyaddr2_r.
6884         * nscd/Makefile (nscd-modules): Replace gethstbynm2_r with
6885         gethstbynm3_r.
6886         * nscd/gethstbynm2_r.c: Remove.
6887         * nscd/gethstbynm3_r.c: New file.
6888         * nscd/aicache.c (addhstaiX): Use __gethostbyaddr2_r instead of
6889         __gethostbyaddr_r.
6890         * nscd/gethstbyad_r.c: Generate __gethostbyaddr2_r function.  Define
6891         __gethostbyaddr_r compatibility wrapper.
6892         * nscd/hstcache.c (cache_addhst): Add ttl parameter.  Use it when
6893         determining timeout of entry.
6894         (lookup): Take new parameter and pass it to __gethostbyname3_r and
6895         __gethostbyaddr2_r.
6896         (addhstbyX): Pass reference to variable for TTL to lookup and
6897         cache_addhst.
6898         * nss/Versions [glibc] (GLIBC_PRIVATE): Export __nss_passwd_lookup2,
6899         __nss_group_lookup2, __nss_hosts_lookup2, __nss_services_lookup2,
6900         and __nss_next2.  Remove __nss_services_lookup.
6901         * nss/XXX-lookup.c: Name function now *_lookup2.  Add new parameter.
6902         Add compat wrapper.
6903         * nss/getXXbyYY_r.c: Changes to call new *_lookup2 functions and
6904         __nss_next2.
6905         * nss/getXXent_r.c: Likewise.
6906         * nss/getnssent_r.c: Likewise.
6907         * nss/nsswitch.c (__nss_lookup): Add new parameter.  If first function
6908         does not exist in module, try the optional second name.
6909         (__nss_next2): New function.
6910         (__nss_next): Now wrapper around __nss_next2.
6911         * nss/nsswitch.h: Adjust __nss_lookup prototype.
6912         Declare __nss_next2.
6913         Adjust definition of db_lookup_function type.
6914         * nss/service-lookup.c: Define NO_COMPAT.
6915         * include/netdb.h: Declare __gethostbyaddr2_r and __gethostbyname3_r.
6916         * inet/ether_hton.c: Use __nss_next2 instead of __nss_next.
6917         * inet/ether_ntoh.c: Likewise.
6918         * sunrpc/netname.c: Likewise.
6919         * sunrpc/publickey.c: Likewise.
6920         * inet/getnetgrent.c: Likewise.  Adjust calls to __nss_lookup.
6921         * inet/gethstbyad_r.c (DB_LOOKUP_FCT): Change to __nss_hosts_lookup2.
6922         * inet/gethstbynm2_r.c (DB_LOOKUP_FCT): Likewise.
6923         * inet/gethstbynm_r.c (DB_LOOKUP_FCT): Likewise.
6924         * inet/gethstent_r.c (DB_LOOKUP_FCT): Likewise.
6926         * nscd/aicache.c (addhstaiX): Fix default TTL handling.
6928         * inet/getnetgrent_r.c (setup): Encrypt static pointer.
6930 2007-10-28  Ulrich Drepper  <drepper@redhat.com>
6932         [BZ #5204]
6933         * crypt/sha256c-test.c: Define TIMEOUT to 6 for ancient hardware.
6934         * crypt/sha512c-test.c: Likewise.
6936         [BZ #5225]
6937         * stdio-common/vfscanf.c (_IO_vfwscanf): Don't misuse wp pointer
6938         to keep track of end of %[ format string element.
6939         * stdio-common/Makefile (tests): Add bug20.
6940         * stdio-common/bug20.c: New file.
6942         [BZ #5222]
6943         * elf/dl-load.c (_dl_rtld_di_serinfo): Correct handling of short
6944         path elements in counting mode.
6946 2007-10-27  Andreas Jaeger  <aj@suse.de>
6948         [BZ #5040]
6949         * sysdeps/unix/sysv/linux/sys/epoll.h (EPOLLRDHUP): Add value.
6951         [BZ #3112]
6952         * sysdeps/ia64/backtrace.c (init): Free shared library if incorrect.
6953         (__cleanup): Free shared library when exiting.
6954         * sysdeps/i386/backtrace.c (init): Free shared library if incorrect.
6955         (__cleanup): Free shared library when exiting.
6957 2006-04-14  H.J. Lu  <hongjiu.lu@intel.com>
6959         [BZ #2549]
6960         * math/libm-test.inc (check_float_internal): Support
6961         denormalized return.
6963 2007-10-23  Andreas Jaeger  <aj@suse.de>
6965         [BZ #5208]
6966         * sysdeps/unix/sysv/linux/readahead.c (__readahead): Use
6967         __LONG_LONG_PAIR to handle little endian byte order.
6968         Suggested by abhishekrai@google.com
6970 2007-10-27  Ulrich Drepper  <drepper@redhat.com>
6972         * malloc/arena.c [!NO_THREADS]: Use ATFORK_MEM if defined.
6974 2007-10-26  Ulrich Drepper  <drepper@redhat.com>
6976         * nscd/cache.c (prune_cache): Move test for modified file outside
6977         of locking.
6979 2007-10-21  Andreas Jaeger  <aj@suse.de>
6981         * manual/texinfo.tex: Update to latest version.
6983         * manual/sysinfo.texi (System Parameters): Fix Formatting.
6985         * manual/arith.texi (Status bit operations): Fix formatting.
6987         * manual/errno.texi (Error Messages): Fix formatting.
6989         * manual/sysinfo.texi (System Parameters): Fix formatting.
6991         * manual/libc.texinfo: Update VERSION and UPDATED.
6993 2007-10-19  Roland McGrath  <roland@redhat.com>
6995         * elf/Makefile ($(objpfx)ld.so): Use $(AWK).
6997 2007-10-06  David S. Miller  <davem@davemloft.net>
6999         * configure.in: Add sparcv9v2 and sparc64v2.
7000         * scripts/config.sub: Likewise.
7001         * configure: Regenerate.
7002         * elf/elf.h (HWCAP_SPARC_N2): New.
7003         * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Bump to 8.
7004         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add 'v9v2'.
7005         (HWCAP_IMPORTANT): Add HWCAP_SPARC_N2.
7006         * sysdeps/sparc/sparc32/sparcv9/sparcv9v2/memcpy.S: New file.
7007         * sysdeps/sparc/sparc32/sparcv9/sparcv9v2/memset.S: New file.
7008         * sysdeps/sparc/sparc64/sparcv9v2/memcpy.S: New file.
7009         * sysdeps/sparc/sparc64/sparcv9v2/memset.S: New file.
7011 2007-10-18  Ulrich Drepper  <drepper@redhat.com>
7013         * sunrpc/clnt_udp.c (clntudp_call): Don't block in recvfrom call
7014         even if the poll result indicates there is data to read.
7015         Patch by Jeff Moyer <jmoyer@redhat.com>.
7017 2007-10-18  Roland McGrath  <roland@redhat.com>
7019         * elf/elf.h (NT_PPC_VMX): New macro.
7021 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
7023         * version.h (VERSION): Set to 2.7.90.
7025 2007-10-17  Jakub Jelinek  <jakub@redhat.com>
7027         * sysdeps/x86_64/memset.S (bzero): Renamed to __bzero.  Add
7028         weak_alias.
7030 2007-10-17  Roland McGrath  <roland@frob.com>
7032         * sysdeps/mach/hurd/bits/fcntl.h [__USE_GNU__] (F_DUPFD_CLOEXEC): New.
7033         * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Implement it.
7035 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
7037         * version.h (VERSION): Bump to 2.7.
7038         * include/features.h (__GLIBC_MINOR__): Bump to 7.
7040         [BZ #5186]
7041         * time/tzset.c (__tz_convert): Don't force testing for a change of
7042         TZ if not called from localtime.  But then also see whether the
7043         file changed, in case __use_tzfile is set.
7045         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define F_DUPFD_CLOEXEC.
7046         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
7047         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
7048         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
7049         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
7050         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
7051         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h:  Likewise.
7052         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
7054 2007-10-17  Jakub Jelinek  <jakub@redhat.com>
7056         * sysdeps/posix/getaddrinfo.c (getaddrinfo): When sorting addresses
7057         and admin selects to be able to replace the gai.conf file, lock
7058         data structures around the qsort call.
7060 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
7062         * sysdeps/x86_64/cacheinfo.c: Comment out code added in support of
7063         new memset.
7064         * sysdeps/x86_64/memset.S: Revert to old version for now.  The cost is
7065         too high for the improvements.  Implement bzero unconditionally for
7066         use in libc.
7068 2007-10-17  Ulrich Drepper  <drepper@redhat.com>
7069             Jakub Jelinek  <jakub@redhat.com>
7071         * time/tzfile.c (__tzfile_read): Read POSIX TZ string if available
7072         even when time_t is 32-bit.
7073         (__tzfile_compute): Override POSIX TZ string STD/DST zone names if
7074         timezone data read by __tzfile_default.  Ensure __tzname[0] is
7075         always set after the search.
7077 2007-10-16  Ulrich Drepper  <drepper@redhat.com>
7079         * time/tzfile.c (__tzfile_read): Help the compiler recognize
7080         unreachable code on 32-bit machines.
7082 2007-10-16  Jakub Jelinek  <jakub@redhat.com>
7084         [BZ #5184]
7085         * time/strftime_l.c: Include stdbool.h.
7086         (my_strftime): New wrapper, old function renamed to...
7087         (__strftime_internal): ... new function.  Add tzset_called
7088         argument, pass it down to recursive calls, don't call tzset ()
7089         if already true, set to true after call to tzset ().
7091 2007-10-16  Ulrich Drepper  <drepper@redhat.com>
7093         * time/tzfile.c (__tzfile_read): Take extra memory requested by caller
7094         into account when copying TZ string.
7096 2007-10-16  Jakub Jelinek  <jakub@redhat.com>
7098         * time/tzfile.c (__tzfile_compute): For use_last case set i to
7099         num_transition rather than num_transitions - 1.
7101 2007-10-16  Jakub Jelinek  <jakub@redhat.com>
7103         * sysdeps/x86_64/memset.S (memset): Fix sse2_nt_move
7104         PIC indirect jump.
7106         * sysdeps/x86_64/memset.S: Jump from bzero to memset using
7107         a local label rather than HIDDEN_JUMPTARGET.
7109 2007-10-15  Ulrich Drepper  <drepper@redhat.com>
7111         * sysdeps/x86_64/cacheinfo.c (__x86_64_shared_cache_size): Define.
7112         (init_cacheinfo): Initialize it.
7113         * sysdeps/x86_64/memset.S: Use __x86_64_shared_cache_size.
7114         Always define bzero.
7115         Remove non-glibc code.
7116         * sysdeps/x86_64/bzero.S: Make an empty file.
7118 2007-10-15  H.J. Lu  <hongjiu.lu@intel.com>
7120         * sysdeps/x86_64/cacheinfo.c
7121         (__x86_64_preferred_memory_instruction): New.
7122         (init_cacheinfo): Initialize __x86_64_preferred_memory_instruction.
7124         * sysdeps/x86_64/memset.S: Rewrite.
7126 2007-10-15  Roland McGrath  <roland@redhat.com>
7128         * po/libc.pot: Regenerated.
7130 2007-10-15  Ulrich Drepper  <drepper@redhat.com>
7132         * nss/getXXbyYY_r.c (REENTRANT_NAME): Mangle startp and start_fct
7133         pointers.
7135         [BZ #3425]
7136         * resolv/nss_dns/dns-host.c (getanswer_r): Fail with
7137         NSS_STATUS_NOTFOUND if the server replied with only a CNAME and no
7138         address record to T_A/T_AAAA requests.
7140 2007-10-14  Ulrich Drepper  <drepper@redhat.com>
7142         * posix/glob.c: Reimplement link_exists_p to use fstatat64.
7144         * posix/glob.c: Add some branch prediction throughout.
7146         * nscd/nscd_getgr_r.c (nscd_getgr_r): Store result of successful
7147         read from nscd.
7149         * sysdeps/posix/getaddrinfo.c (struct sort_result): Add
7150         service_order.
7151         (rfc3484_sort): Make sure that even if qsort doesn't support
7152         stable sorting out sorting here is stable by comparing service_order.
7153         (getaddrinfo): Initialize service_order.
7154         * posix/tst-rfc3484.c (do_test): Adjust for addition of
7155         service_order field to sorting structure.
7156         * posix/tst-rfc3484-2.c (do_test): Likewise.
7158         * include/time.h: Declare __tzset_parse_tz and __tzset_compute.
7159         * time/tzset.c (tzset_internal): Break TZ string parsing out into
7160         __tzset_parse_tz and updating of daylight, timezone, tzname into
7161         update_vars.
7162         (__tz_compute): Renamed from tz_compute.  Take additional parameters.
7163         (__tz_convert): Updating of tm_isdst, tm_zone, and tm_gmtoff now
7164         happens in __tz_compute.
7165         * time/tzfile.c (__tzfile_read): Also read TZ string.
7166         (find_transition): Fold into __tzfile_compute.
7167         (__tzfile_compute): For times beyond the last transition try to
7168         use the TZ string.
7169         * timezone/tst-timezone.c: Information in daylight and tzname does
7170         change for Asia/Tokyo timezone with more concrete information.
7171         Remove the test.
7173         * include/stdio.h: Add libc_hidden_proto for ftello.
7174         * libio/ftello.c: Add libc_hidden_def.
7176         [BZ #1140]
7177         * time/tzfile.c (__tzfile_compute): Compute tzname[] values based
7178         on the specified time and not the last entries in the file.  Move
7179         code to determine tzname[] to...
7180         (find_transition): ...here.  Add ugly guess for times before the
7181         first transition.
7183 2007-10-13  Ulrich Drepper  <drepper@redhat.com>
7185         [BZ #3195]
7186         * nscd/nscd_getai.c (__nscd_getai): Set errno to 0 in case we found
7187         no entry.
7188         * nscd/nscd_getgr.c (nscd_getgr_r): Likewise.
7189         * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
7190         * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
7191         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
7193         * nscd/nscd_getgr_r.c (nscd_getgr_r): Optimize a bit: use simpler
7194         read mechanism when there are no group members and avoid no-op
7195         read syscall in this case.
7197         [BZ #3242]
7198         * nscd/nscd_helper.c (wait_on_socket): Take timeout as parameter.
7199         (__readall): If reading failed due to EAGAIN error wait a bit
7200         and possibly try again.
7201         (__readvall): Likewise.
7203 2007-10-13  Bruno Haible  <bruno@clisp.org>
7205         * intl/dcigettext.c (_nl_find_msg): Unlock the conversions_lock
7206         when we cannot recode the message.
7208 2007-10-13  Ulrich Drepper  <drepper@redhat.com>
7210         [BZ #4359]
7211         * libio/__freading.c (__freading): Don't return true for
7212         write-only streams.  For read/write streams, check whether we
7213         performed a read operation already.
7214         * libio/Makefile (tests): Add tst-ext2.
7215         * libio/tst-ext2.c: New file.
7217 2007-10-12  Ulrich Drepper  <drepper@redhat.com>
7219         * locale/programs/repertoire.c (repertoire_read): Always free
7220         memory for repertoire file name [Coverity CID 270].
7222         * elf/cache.c (save_aux_cache): Free memory allocated for
7223         temporary file name [Coverity CID 267].
7225 2007-10-12  Jakub Jelinek  <jakub@redhat.com>
7227         * misc/Makefile (headers): Add bits/error.h.
7229 2007-10-12  Ulrich Drepper  <drepper@redhat.com>
7231         * posix/fnmatch_loop.c: Take rule index returned as part of
7232         findidx return value into account when accessing weights.
7233         * posix/regcomp.c: Likewise.
7234         * posix/regexec.c: Likewise.
7236         * locale/programs/ld-collate.c (collate_read): Optimize a bit.
7237         (skip_to): Fix problems with parameter of elifdef/elifndef.
7239 2007-10-11  Ulrich Drepper  <drepper@redhat.com>
7241         * iconv/gconv_simple.c: Add some branch prediction.
7243 2007-10-12  Jakub Jelinek  <jakub@redhat.com>
7245         * locale/programs/ld-collate.c (collate_read): If ignore_content
7246         and nowtok is tok_define, eat any tok_eol tokens.
7248 2007-10-11  Jakub Jelinek  <jakub@redhat.com>
7250         * sysdeps/gnu/netinet/tcp.h: Include sys/socket.h if __USE_MISC.
7251         (struct tcp_md5sig): Change tcpm_addr type to struct sockaddr_storage.
7253         * inet/netinet/in.h: Don't include bits/socket.h.
7254         * sysdeps/unix/sysv/linux/bits/socket.h: Only check _SYS_SOCKET_H
7255         macro.
7256         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
7258 2007-10-10  Ulrich Drepper  <drepper@redhat.com>
7260         * locale/programs/locfile-token.h: Remove tok_elif, add tok_elifdef
7261         and tok_elifndef.
7262         * locale/programs/locfile-kw.gperf: Likewise.
7263         * locale/programs/ld-collate.c: Implement primitive preprocessor.
7265 2007-10-10  Jakub Jelinek  <jakub@redhat.com>
7267         * stdio-common/printf-parse.h: Include string.h and wchar.h.
7268         (__find_specwc): Change into __extern_always_inline function.
7269         (__find_specmb): Likewise.  Remove ps argument.  Use __strchrnul.
7270         (__parse_one_specmb): Remove ps argument.
7271         * stdio-common/vfprintf.c (vfprintf): Remove mbstate variable.
7272         Adjust __find_specmb and __parse_one_specmb callers.
7273         * stdio-common/printf-prs.c (parse_printf_format): Likewise.
7274         * stdio-common/printf-parsemb.c (__find_specwc, __find_specmb):
7275         Removed.
7276         (__parse_one_specmb): Remove ps argument, adjust __find_specmb
7277         caller.
7279 2007-10-09  Ulrich Drepper  <drepper@redhat.com>
7281         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Work around problem
7282         with some Pentium Ds.
7284 2007-10-08  Ulrich Drepper  <drepper@redhat.com>
7286         * sysdeps/unix/sysv/linux/eventfd_read.c (eventfd_read): Use
7287         __read not read.
7288         * sysdeps/unix/sysv/linux/eventfd_write.c (eventfd_write): Use
7289         __write not write.
7291 2007-10-07  Ulrich Drepper  <drepper@redhat.com>
7293         [BZ #181]
7294         * locale/C-time.c: Set week_1stday data to 19971201.
7295         * locale/programs/ld-time.c (time_finish): Default for
7296         first_workday is Monday.
7298         [BZ #2633]
7299         * wcsmbs/wchar.h: Move many C99 functions into std namespace.
7301         [BZ #5103]
7302         * posix/glob.c (glob): Recognize patterns starting \/.
7303         * posix/tst-gnuglob.c (find_file): Handle absolute path names.
7304         (main): Add test for pattern starting \/.
7306         * misc/error.h: Use __const instead of const.
7307         * misc/bits/error.h: Likewise.
7309 2007-10-07  Andreas Jaeger  <aj@suse.de>
7311         * include/bits/error.h: New file.
7313         * misc/bits/error.h (error_at_line): Fix prototype.
7315 2007-10-06  Ulrich Drepper  <drepper@redhat.com>
7317         [BZ #3924]
7318         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Fix a few
7319         more little bugs in creating the stack frame when pltexit has to
7320         be called.
7322         * nscd/nscd_helper.c (__nscd_cache_search): Prevent endless loops.
7323         * nscd/connections.c (verify_persistent_db): Recognize circular lists.
7325         [BZ #4407]
7326         * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Fix *signgamp for -0.0.
7327         * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
7328         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
7329         * math/libm-test.inc: Add test for this case.
7331         [BZ #5010]
7332         * sunrpc/svc.c (struct svc_callout): Add sc_mapped element.
7333         (svc_register): Initialize sc_mapped.  Set to TRUE if call to
7334         map service succeeded.
7335         (svc_is_mapped): New function.
7336         (svc_unregister): Use it before trying to unmap service.
7338 2007-10-05  Ulrich Drepper  <drepper@redhat.com>
7340         * timezone/zic.c: Update from tzcode2007h.
7342         [BZ #5063]
7343         * timezone/africa: Update from tzdata2007h.
7344         * timezone/antarctica: Likewise.
7345         * timezone/asia: Likewise.
7346         * timezone/australasia: Likewise.
7347         * timezone/europe: Likewise.
7348         * timezone/leapseconds: Likewise.
7349         * timezone/northamerica: Likewise.
7350         * timezone/southamerica: Likewise.
7351         * timzeone/zone.tab: Likewise.
7353         [BZ #5104]
7354         * elf/do-lookup.h (do_lookup_x): Don't ignore STT_COMMON symbols.
7356         [BZ #5113]
7357         * string/bits/string2.h (__strdup): Cast parameters to calloc to
7358         avoid warning with -Wconversion.
7359         (__strndup): Likewise.
7360         Half the patch by Christian Iseli <christian.iseli@licr.org>.
7362         [BZ #5112]
7363         * nscd/connections.c (restart): Don't resync if database is
7364         disabled.  Patch mostly by Brian De Wolf <bldewolf@csupomona.edu>.
7366         * sysdeps/gnu/netinet/tcp.h: Define TCP_MD5SIG, TCP_MD5SIG_MAXKEYLEN,
7367         struct tcp_md5sig.  Extend struct tcp_info according to recent kernels.
7369         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add eventfd,
7370         evetnfd_read, eventfd_write.
7371         * sysdeps/unix/sysv/linux/eventfd.c: New file.
7372         * sysdeps/unix/sysv/linux/eventfd_read.c: New file.
7373         * sysdeps/unix/sysv/linux/eventfd_write.c: New file.
7374         * sysdeps/unix/sysv/linux/sys/eventfd.h: New file.
7375         * sysdeps/unix/sysv/linux/Versions: Export eventfd, eventfd_read,
7376         eventfd_write for GLIBC_2.7.
7378         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add signalfd.
7379         * sysdeps/unix/sysv/linux/signalfd.c: New file.
7380         * sysdeps/unix/sysv/linux/sys/signalfd.h: New file.
7381         * sysdeps/unix/sysv/linux/Versions: Export signalfd for GLIBC_2.7.
7383 2007-10-04  Jakub Jelinek  <jakub@redhat.com>
7385         * stdlib/msort.c: Include stdint.h.
7386         (struct msort_param): New type.
7387         (msort_with_tmp): Use struct msort_param pointer for unchanging
7388         parameters.  Add optimized handling for several common sizes
7389         and indirect sorting mode.
7390         (qsort): Adjust msort_with_tmp callers.  For big S use indirect
7391         sorting.
7392         Suggested by Belazougui Djamel .
7394         * stdlib/Makefile (tests): Add tst-qsort2.
7395         * stdlib/tst-qsort2.c: New test.
7397 2007-10-04  Ulrich Drepper  <drepper@redhat.com>
7399         * login/login_tty.c (login_tty): The Linux kernel can return EBUSY
7400         for dup2 in case another thread races with the current one.  Retry
7401         in this case.
7403         * misc/error.h: Remove support for use outside of libc.  We have to
7404         include <features.h> now.  Include <bits/error.h> if possible.
7405         * misc/bits/error.h: New file.
7407 2007-10-03  Jakub Jelinek  <jakub@redhat.com>
7409         * string/bits/string3.h (memcpy, memmove, mempcpy, memset, bcopy,
7410         bzero, strcpy, stpcpy, strncpy, strcat, strncat): Use
7411         __extern_always_inline functions unconditionally, drop macros.
7413         * misc/sys/cdefs.h (__REDIRECT_LDBL, __REDIRECT_NTH_LDBL): New macros.
7414         * wcsmbs/bits/wchar2.h (__swprintf_alias, __vswprintf_alias): Use
7415         __REDIRECT_NTH_LDBL macro rather than __REDIRECT_NTH.
7417         * misc/sys/cdefs.h (__extern_always_inline): For GCC 4.3+
7418         add __artificial__ attribute.
7420 2007-10-02  Ulrich Drepper  <drepper@redhat.com>
7422         * string/strcoll_l.c (STRCOLL): Correct handling of switching from
7423         backward to forward direction.
7425         * string/strcoll_l.c (STRCOLL): Correct test for alloca use.
7427         [BZ #645]
7428         * locale/programs/ld-collate.c (collate_finish): Compare against last
7429         used section which is known to have rules defined.
7430         (collate_read): After order_start, correctly record order of sections
7431         and queue sections up.
7433 2007-10-01  Ulrich Drepper  <drepper@redhat.com>
7435         [BZ #5071]
7436         * malloc/malloc.c (mremap_chunk): Avoid resizing of new block has
7437         the same number of pages.
7438         Patch by Tomash Brechko <tomash.brechko@gmail.com>.
7440         * locale/programs/ld-collate.c (collate_read): After initial copy
7441         statement, continue in state 0.
7443         * include/stdio_ext.h (__fsetlocking): Define as macro.
7445 2007-09-30  Ulrich Drepper  <drepper@redhat.com>
7447         * locale/programs/ld-collate.c (collate_finish): Compare all bytes
7448         of section order.
7450         * po/pt_BR.po: Fix typo.
7452 2007-09-29  Ulrich Drepper  <drepper@redhat.com>
7454         * iconvdata/Makefile (modules): Add ISO8859-9E.
7455         (distribute): Add iso8859-9e.c.
7456         (gen-8bit-gap-modules): Add iso8859-9e.
7457         * iconvdata/iso8859-9e.c: New file.
7458         * iconvdata/gconv-modules: Add entries for ISO-8859-9E.
7459         * iconvdata/TESTS: Likewise.
7460         * iconvdata/tst-tables.sh: Likewise.
7462         * iconvdata/koi8-r.c (HAS_HOLES): Define to 0.
7464         * locale/iso-639.def: Add several new entries.
7466 2007-09-24  Jakub Jelinek  <jakub@redhat.com>
7468         * sysdeps/generic/ldsodefs.h (struct dl_scope_free_list): Store
7469         void * pointers instead of struct link_map **.
7470         (_dl_scope_free): Change argument type to void *.
7471         * include/link.h (struct link_map): Change type of l_reldeps
7472         to struct link_map_reldeps, move l_reldepsact into that
7473         struct too.
7474         * elf/dl-deps.c: Include atomic.h.
7475         (_dl_map_object_deps): Only change l->l_initfini when it is
7476         fully populated, use _dl_scope_free for freeing it.  Optimize
7477         removal of libs from reldeps by using l_reserved flag, when
7478         some removal is needed, allocate a new list instead of
7479         reallocating and free the old with _dl_scope_free.  Adjust
7480         for l_reldeps and l_reldepsact changes.
7481         * elf/dl-lookup.c (add_dependency): Likewise.  Reorganize to allow
7482         searching in l_initfini and l_reldeps without holding dl_load_lock.
7483         * elf/dl-fini.c (_dl_sort_fini): Adjust for l_reldeps and
7484         l_reldepsact changes.
7485         * elf/dl-close.c (_dl_close_worker): Likewise.
7486         * elf/dl-open.c (_dl_scope_free): Change argument type to void *.
7488 2007-09-28  Ulrich Drepper  <drepper@redhat.com>
7490         * iconvdata/Makefile (modules): Add KOI8-RU.
7491         (distribute): Add koi8-ru.c.
7492         (gen-8bit-gap-modules): Add koi8-ru.
7493         * iconvdata/koi8-ru.c: New file.
7494         * iconvdata/gconv-modules: Add entries for KOI8-RU.
7495         * iconvdata/TESTS: Likewise.
7496         * iconvdata/tst-tables.sh: Likewise.
7498         * iconvdata/koi8-r.c (HAS_HOLES): Define to 0.
7500 2007-09-26  Jakub Jelinek  <jakub@redhat.com>
7502         * misc/sys/cdefs.h (__warndecl, __errordecl): For GCC 4.3+ define
7503         with __warning__/__error__ attributes.
7504         (__warnattr): Define.
7505         * stdlib/bits/stdlib.h (__realpath_chk_warn, __ptsname_r_chk_warn,
7506         __mbstowcs_chk_warn, __wcstombs_chk_warn): New aliases with
7507         __warnattr.
7508         (realpath, ptsname_r, mbstowcs, wcstombs): Call __*_chk_warn instead
7509         of __*_chk if compile time detectable overflow is found.
7510         * libio/bits/stdio2.h (__fgets_chk_warn, __fread_chk_warn,
7511         __fgets_unlocked_chk_warn, __fread_unlocked_chk_warn): New aliases
7512         with __warnattr.
7513         (fgets, fread, fgets_unlocked, fread_unlocked): Call __*_chk_warn
7514         instead of __*_chk if compile time detectable overflow is found.
7515         (__gets_alias): Rename to...
7516         (__gets_warn): ... this.  Add __warnattr.
7517         (gets): Call __gets_warn instead of __gets_alias.
7518         * socket/bits/socket2.h (__recv_chk_warn, __recvfrom_chk_warn): New
7519         aliases with __warnattr.
7520         (recv, recvfrom): Call __*_chk_warn instead of __*_chk if compile
7521         time detectable overflow is found.
7522         * posix/bits/unistd.h (__read_chk_warn, __pread_chk_warn,
7523         __pread64_chk_warn, __readlink_chk_warn, __readlinkat_chk_warn,
7524         __getcwd_chk_warn, __confstr_chk_warn, __getgroups_chk_warn,
7525         __ttyname_r_chk_warn, __getlogin_r_chk_warn, __gethostname_chk_warn,
7526         __getdomainname_chk_warn): New aliases with __warnattr.
7527         (read, pread, pread64, readlink, readlinkat, getcwd, confstr,
7528         getgroups, ttyname_r, getlogin_r, gethostname, getdomainname): Call
7529         __*_chk_warn instead of __*_chk if compile time detectable overflow
7530         is found.
7531         (__getgroups_chk): Rename argument to __listlen from listlen.
7532         (__getwd_alias): Rename to...
7533         (__getwd_warn): ... this.  Add __warnattr.
7534         (getwd): Call __getwd_warn instead of __getwd_alias.
7535         * wcsmbs/bits/wchar2.h (__wmemcpy_chk_warn, __wmemmove_chk_warn,
7536         __wmempcpy_chk_warn, __wmemset_chk_warn, __wcsncpy_chk_warn,
7537         __wcpncpy_chk_warn, __fgetws_chk_warn, __fgetws_unlocked_chk_warn,
7538         __mbsrtowcs_chk_warn, __wcsrtombs_chk_warn, __mbsnrtowcs_chk_warn,
7539         __wcsnrtombs_chk_warn): New aliases with __warnattr.
7540         (wmemcpy, wmemmove, wmempcpy, wmemset, mbsrtowcs, wcsrtombs,
7541         mbsnrtowcs, wcsnrtombs): Call __*_chk_warn instead of __*_chk if
7542         compile time detectable overflow is found.
7543         (wcsncpy, wcpncpy): Likewise.  For constant __n fix check whether
7544         to use __*_chk or not.
7545         (fgetws, fgetws_unlocked): Divide __bos by sizeof (wchar_t), both
7546         in comparisons which function should be called and in __*_chk*
7547         arguments.  Call __*_chk_warn instead of __*_chk if compile time
7548         detectable overflow is found.
7549         (swprintf, vswprintf): Divide __bos by sizeof (wchar_t) in
7550         __*_chk argument.
7551         * debug/tst-chk1.c (do_test): Add a few more tests.
7553 2007-09-24  Ulrich Drepper  <drepper@redhat.com>
7555         [BZ #5058]
7556         * intl/gettextP.h (struct loaded_domain): Add conversions_lock member.
7557         * intl/loadmsgcat.c (_nl_load_domain): Initialize conversions_lock.
7558         (_nl_unload_domain): Finalize conversions_lock.
7559         * intl/dcigettext.c (_nl_find_msg): Take conversions_lock before
7560         handling table of known conversions.
7562 2007-09-24  Jakub Jelinek  <jakub@redhat.com>
7564         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Use
7565         close_not_cancel_no_status instead of close.
7567 2007-09-13  Aurelien Jarno  <aurelien@aurel32.net>
7569         [BZ #5028]
7570         * posix/regcomp.c (lookup_collation_sequence_value): Check that
7571         nrules != 0 for multibyte chars.
7573 2007-09-23  Ulrich Drepper  <drepper@redhat.com>
7575         * resolv/ns_print.c (ns_sprintrrf): Handle ns_t_a6 and ns_t_opt.
7576         Provide better error message in case the type is unknown.
7578         [BZ #4963]
7579         * wcsmbs/wcsnlen.c: Don't reference before checking the length.
7580         * string/stratcliff.c: Make usable to test wide char functions.
7581         * wcsmbs/wcsatcliff.c: New file.
7582         * wcsmbs/Makefiel (tests): Add wcsatcliff.
7584         [BZ #4972]
7585         * iconvdata/Makefile (modules): Add MAC-CENTRALEUROPE.
7586         (distribute): Add mac-centraleurope.c.
7587         (gen-8bit-gap-modules): Add mac-centraleurope.
7588         * iconvdata/mac-centraleurope.c: New file.
7589         * iconvdata/gconv-modules: Add entries for MAC-CENTRALEUROPE.
7590         * iconvdata/TESTS: Likewise.
7591         * iconvdata/tst-tables.sh: Likewise.
7593         [BZ #5043]
7594         * iconv/iconv_open.c (iconv_open): For large codeset names use malloc.
7596 2007-09-21  Ulrich Drepper  <drepper@redhat.com>
7598         * sysdeps/x86_64/cacheinfo.c (__x86_64_data_cache_size_half): Renamed
7599         from __x86_64_core_cache_size_half.
7600         (init_cacheinfo): Compute shared cache size for AMD processors with
7601         shared L3 correctly.
7602         * sysdeps/x86_64/memcpy.S: Adjust for __x86_64_data_cache_size_half
7603         name change.
7604         Patch in large parts by Evandro Menezes.
7606 2007-09-19  Ulrich Drepper  <drepper@redhat.com>
7608         * elf/dl-lookup.c (add_dependency): Handle failing memory
7609         allocation for dependency list.  Remove unnecessary check.
7611         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Avoid unnecessary
7612         open/close when determining source addresses.
7614         * crypt/Makefile (libcrypt-routines): Add sha256-crypt, sha256,
7615         sha512-crypt, and sha512.
7616         (tests): Add sha256test, sha256c-test, sha512test, and sha512c-test.
7617         (distribute): Add sha256.h and sha512.h.
7618         * crypt/crypt-entry.c (crypt): Recognize the new $5$ and $6$ prefixes
7619         and call the appropriate code.
7620         * crypt/sha256-crypt.c: New file.
7621         * crypt/sha256.c: New file.
7622         * crypt/sha256.h: New file.
7623         * crypt/sha256c-test.c: New file.
7624         * crypt/sha256test.c: New file.
7625         * crypt/sha512-crypt.c: New file.
7626         * crypt/sha512.c: New file.
7627         * crypt/sha512.h: New file.
7628         * crypt/sha512c-test.c: New file.
7629         * crypt/sha512test.c: New file.
7631 2007-09-19  Jakub Jelinek  <jakub@redhat.com>
7633         * misc/bits/syslog.h (syslog): Remove extraneous argument from
7634         the inline, pass __USE_FORTIFY_LEVEL - 1 as second argument to
7635         __syslog_chk.
7637 2007-09-18  Jakub Jelinek  <jakub@redhat.com>
7639         * locale/programs/charmap-dir.c (charmap_aliases): Use %ms instead of
7640         %as in fscanf format strings.
7642         * sysdeps/sparc/sparc32/elf/start.S: Remove cfi_* markup.
7643         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
7644         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__thread_start):
7645         Likewise.
7646         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__thread_start):
7647         Likewise.
7649         * sysdeps/generic/ldsodefs.h (DL_LOOKUP_GSCOPE_LOCK): New definition.
7650         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Or in
7651         DL_LOOKUP_GSCOPE_LOCK into flags after THREAD_GSCOPE_SET_FLAG ().
7652         * elf/dl-sym.c (do_sym): Likewise.
7653         * include/link.h (struct link_map): Add l_serial field.
7654         * elf/dl-object.c (_dl_new_object): Initialize l_serial.
7655         * elf/dl-lookup.c (add_dependency): Add flags argument.
7656         Remember map->l_serial, if DL_LOOKUP_GSCOPE_LOCK is among
7657         flags, use THREAD_GSCOPE_RESET_FLAG before and
7658         THREAD_GSCOPE_SET_FLAG after
7659         __rtld_lock_lock_recursive (GL(dl_load_lock)) to avoid deadlock.
7660         Don't dereference map until it has been found on some list.
7661         If map->l_serial changed, return -1.
7663 2007-09-17  Jakub Jelinek  <jakub@redhat.com>
7665         * include/stdio.h (__isoc99_fscanf, __isoc99_scanf,
7666         __isoc99_sscanf, __isoc99_vscanf): New prototypes.
7667         (__isoc99_vsscanf, __isoc99_vfscanf): New prototypes, add
7668         libc_hidden_proto.
7669         * include/wchar.h (__isoc99_fwscanf, __isoc99_wscanf,
7670         __isoc99_swscanf, __isoc99_vwscanf): New prototypes.
7671         (__isoc99_vswscanf, __isoc99_vfwscanf): New prototypes,
7672         add libc_hidden_proto.
7673         * libio/stdio.h (fscanf, scanf, sscanf, vfscanf, vscanf,
7674         vsscanf): Redirect to __isoc99_* if strict ISO C99 or POSIX
7675         conformance requested.
7676         * wcsmbs/wchar.h (fwscanf, wscanf, swscanf, vfwscanf, vwscanf,
7677         vswscanf): Redirect to __isoc99_* if strict ISO C99 or POSIX
7678         conformance requested.
7679         * libio/bits/stdio-ldbl.h (fscanf, scanf, sscanf, vfscanf, vscanf,
7680         vsscanf): Redirect to __nldbl___isoc99_* if strict ISO C99 or POSIX
7681         conformance requested.
7682         * wcsmbs/bits/wchar-ldbl.h (fwscanf, wscanf, swscanf, vfwscanf,
7683         vwscanf, vswscanf): Redirect to __nldbl___isoc99_* if strict
7684         ISO C99 or POSIX conformance requested.
7685         * stdio-common/Versions (libc): Export __isoc99_scanf@@GLIBC_2.7,
7686         __isoc99_vscanf@@GLIBC_2.7, __isoc99_fscanf@@GLIBC_2.7,
7687         __isoc99_vfscanf@@GLIBC_2.7, __isoc99_sscanf@@GLIBC_2.7
7688         and __isoc99_vsscanf@@GLIBC_2.7.
7689         * stdio-common/Makefile (routines): Add isoc99_scanf, isoc99_vscanf,
7690         isoc99_fscanf, isoc99_vfscanf, isoc99_sscanf and isoc99_vsscanf.
7691         (tests): Add scanf14.
7692         (CFLAGS-vfprintf.c, CFLAGS-fprintf.c, CFLAGS-printf.c,
7693         CFLAGS-vfwprintf.c, CFLAGS-vfscanf.c, CFLAGS-vfwscanf.c,
7694         CFLAGS-fscanf.c, CFLAGS-scanf.c, CFLAGS-isoc99_vfscanf.c,
7695         CFLAGS-isoc99_vscanf.c, CFLAGS-isoc99_fscanf.c,
7696         CFLAGS-isoc99_scanf.c): Add $(exceptions).
7697         (CFLAGS-scanf15.c): Add various -I paths to prevent the compiler
7698         from using internal headers.
7699         * wcsmbs/Versions (libc): Export __isoc99_wscanf@@GLIBC_2.7,
7700         __isoc99_vwscanf@@GLIBC_2.7, __isoc99_fwscanf@@GLIBC_2.7,
7701         __isoc99_vfwscanf@@GLIBC_2.7, __isoc99_swscanf@@GLIBC_2.7
7702         and __isoc99_vswscanf@@GLIBC_2.7.
7703         * wcsmbs/Makefile (routines): Add isoc99_wscanf, isoc99_vwscanf,
7704         isoc99_fwscanf, isoc99_vfwscanf, isoc99_swscanf and isoc99_vswscanf.
7705         (CFLAGS-isoc99_wscanf.c, CFLAGS-isoc99_fwscanf.c,
7706         CFLAGS-isoc99_vwscanf.c, CFLAGS-isoc99_vfwscanf.c): Add $(exceptions).
7707         (CPPFLAGS): Add -D_IO_MTSAFE_IO if needed.
7708         * stdio-common/isoc99_scanf.c: New file.
7709         * stdio-common/isoc99_vsscanf.c: New file.
7710         * stdio-common/isoc99_vscanf.c: New file.
7711         * stdio-common/isoc99_vfscanf.c: New file.
7712         * stdio-common/isoc99_fscanf.c: New file.
7713         * stdio-common/isoc99_sscanf.c: New file.
7714         * wcsmbs/isoc99_fwscanf.c: New file.
7715         * wcsmbs/isoc99_vswscanf.c: New file.
7716         * wcsmbs/isoc99_swscanf.c: New file.
7717         * wcsmbs/isoc99_wscanf.c: New file.
7718         * wcsmbs/isoc99_vwscanf.c: New file.
7719         * wcsmbs/isoc99_vfwscanf.c: New file.
7720         * libio/libio.h (_IO_FLAGS2_SCANF_STD): Define.
7721         * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): Also
7722         clear _IO_FLAGS2_SCANF_STD bit from _flags2.
7723         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Don't
7724         handle %as, %aS and %a[ if _IO_FLAGS2_SCANF_STD is set in _flags2.
7725         * stdio-common/scanf14.c: New test.
7726         * stdio-common/scanf15.c: New test.
7727         * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add
7728         isoc99_scanf, isoc99_fscanf, isoc99_sscanf,
7729         isoc99_vscanf, isoc99_vfscanf, isoc99_vsscanf,
7730         isoc99_wscanf, isoc99_fwscanf, isoc99_swscanf,
7731         isoc99_vwscanf, isoc99_vfwscanf and isoc99_vswscanf.
7732         * sysdeps/ieee754/ldbl-opt/Versions (libc): Export
7733         __nldbl___isoc99_scanf@@GLIBC_2.7,
7734         __nldbl___isoc99_fscanf@@GLIBC_2.7,
7735         __nldbl___isoc99_sscanf@@GLIBC_2.7,
7736         __nldbl___isoc99_vscanf@@GLIBC_2.7,
7737         __nldbl___isoc99_vfscanf@@GLIBC_2.7,
7738         __nldbl___isoc99_vsscanf@@GLIBC_2.7,
7739         __nldbl___isoc99_wscanf@@GLIBC_2.7,
7740         __nldbl___isoc99_fwscanf@@GLIBC_2.7,
7741         __nldbl___isoc99_swscanf@@GLIBC_2.7,
7742         __nldbl___isoc99_vwscanf@@GLIBC_2.7,
7743         __nldbl___isoc99_vfwscanf@@GLIBC_2.7
7744         and __nldbl___isoc99_vswscanf@@GLIBC_2.7.
7745         * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__isoc99_scanf,
7746         __isoc99_fscanf, __isoc99_sscanf, __isoc99_vscanf,
7747         __isoc99_vfscanf, __isoc99_vsscanf, __isoc99_wscanf,
7748         __isoc99_fwscanf, __isoc99_swscanf, __isoc99_vwscanf,
7749         __isoc99_vfwscanf, __isoc99_vswscanf): Add NLDBL_DECL.
7750         * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
7751         (__nldbl___isoc99_scanf, __nldbl___isoc99_fscanf,
7752         __nldbl___isoc99_sscanf, __nldbl___isoc99_vscanf,
7753         __nldbl___isoc99_vfscanf, __nldbl___isoc99_vsscanf,
7754         __nldbl___isoc99_wscanf, __nldbl___isoc99_fwscanf,
7755         __nldbl___isoc99_swscanf, __nldbl___isoc99_vwscanf,
7756         __nldbl___isoc99_vfwscanf, __nldbl___isoc99_vswscanf): New
7757         functions.
7758         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vfscanf.c: New file.
7759         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_swscanf.c: New file.
7760         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vwscanf.c: New file.
7761         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_wscanf.c: New file.
7762         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_scanf.c: New file.
7763         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_sscanf.c: New file.
7764         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vsscanf.c: New file.
7765         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_fwscanf.c: New file.
7766         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vfwscanf.c: New file.
7767         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vswscanf.c: New file.
7768         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_vscanf.c: New file.
7769         * sysdeps/ieee754/ldbl-opt/nldbl-isoc99_fscanf.c: New file.
7771         * stdio-common/Makefile (tests): Add scanf13.
7772         (scanf13-ENV): New.
7773         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Handle
7774         m modifier followed by l.
7775         (STRING_ARG): Add width argument.
7776         (_IO_vfscanf_internal) <case L_('c')>: Handle %mc.
7777         <case L_('C')>: Handle %mlc and %mC.
7778         <case L_('s'), case L_('S'), case L_('[')>: Adjust STRING_ARG
7779         arguments.
7780         * stdio-common/scanf13.c: New test.
7782         * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): Clear
7783         the _IO_FLAGS2_FORTIFY bit from _flags2 rather than _flags.
7785 2007-09-18  Ulrich Drepper  <drepper@redhat.com>
7787         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Correct return value
7788         type and __THROW marker of splice, vmsplice, and tee.
7789         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
7790         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
7791         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
7792         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
7793         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
7794         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
7795         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
7796         * sysdeps/unix/sysv/linux/syscalls.list: Mark splice, vmsplice, and tee
7797         as cancellation points.
7799 2003-11-01  Daniel Jacobowitz  <dan@debian.org>
7801         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion): Don't
7802         parse more than three parts of the version number.
7804 2007-09-15  Ulrich Drepper  <drepper@redhat.com>
7806         * stdio-common/vfscanf.c (_IO_vfwscanf): Add support for 'm'
7807         modifier.  Patch by Jakub Jelinek.
7809 2007-08-26  Jakub Jelinek  <jakub@redhat.com>
7811         * sysdeps/unix/sysv/linux/i386/Makefile (sysdep_routines): Add
7812         call_fallocate in misc subdir.
7813         * sysdeps/unix/sysv/linux/i386/call_fallocate.S: New file.
7814         * sysdeps/unix/sysv/linux/i386/syscalls.list (fallocate64): Remove.
7815         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c: Use __call_fallocate
7816         instead of __fallocate64.
7817         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c: Likewise.
7819 2007-09-15  Jakub Jelinek  <jakub@redhat.com>
7821         * rt/Versions (librt): Export __mq_open_2@@GLIBC_2.7.
7822         * rt/Makefile (headers): Add bits/mqueue2.h.
7823         * rt/mqueue.h: Include bits/mqueue2.h if -D_FORTIFY_SOURCE=2,
7824         optimizing with GCC and __va_arg_pack_len is defined.
7825         * rt/bits/mqueue2.h: New file.
7826         * rt/mq_open.c (__mq_open): Renamed from mq_open.
7827         (mq_open): New strong_alias.
7828         (__mq_open_2): New function.
7829         * sysdeps/unix/sysv/linux/mq_open.c (__mq_open): Renamed from mq_open.
7830         (mq_open): New strong_alias.
7831         (__mq_open_2): New function.
7832         * debug/Versions (libc): Export __fortify_fail@@GLIBC_PRIVATE.
7833         * Versions.def (librt): Add GLIBC_2.7 version.
7834         * debug/fortify_fail.c (__fortify_fail): Add libc_hidden_def.
7835         * include/stdio.h (__fortify_fail): Add libc_hidden_proto.
7837         * misc/sys/cdefs.h (__errordecl, __va_arg_pack_len): Define.
7838         * io/fcntl.h: Include bits/fcntl2.h when __va_arg_pack_len
7839         is defined rather than when not C++.
7840         * io/bits/fcntl2.h (__open_alias, __open64_alias, __openat_alias,
7841         __openat64_alias): New redirects.
7842         (__open_too_many_args, __open_missing_mode, __open64_too_many_args,
7843         __open64_missing_mode, __openat_too_many_args, __openat_missing_mode,
7844         __openat64_too_many_args, __openat64_missing_mode): New __errordecls.
7845         (open, open64, openat, openat64): Rewrite as __extern_always_inline
7846         functions instead of function-like macros.
7848 2007-09-14  H.J. Lu  <hongjiu.lu@intel.com>
7850         * sysdeps/i386/i586/memcpy.S (__memcpy_chk): New definition.
7851         * sysdeps/i386/i586/mempcpy.S (__memcpy_chk): New definition.
7852         * sysdeps/i386/i586/memset.S (__memset_chk): New definition.
7854 2007-09-15  Mike Frysinger  <vapier@gentoo.org>
7856         * inet/inet_net.c: Reset digit to 0 for inputs starting with "0x".
7857         * inet/tst-network.c (tests): Add edge case tests for "0", "0x", "0x0".
7859 2007-09-14  Mike Frysinger  <vapier@gentoo.org>
7861         * inet/tst-network.c: Increment ERRORS for failing tests.
7863 2007-09-07  Jakub Jelinek  <jakub@redhat.com>
7865         * misc/sys/cdefs.h (__va_arg_pack): Define for GCC 4.3+.
7866         * misc/bits/syslog.h (syslog): When __va_arg_pack is defined,
7867         implement as __extern_always_inline function.
7868         (vsyslog): Define as __extern_always_inline function unconditionally.
7869         * libio/bits/stdio2.h (sprintf, snprintf, printf, fprintf):
7870         When __va_arg_pack is defined, implement as __extern_always_inline
7871         functions.
7872         (vsprintf, vsnprintf, vprintf, vfprintf): Define as
7873         __extern_always_inline functions unconditionally.
7874         * libio/bits/stdio.h (vprintf): Ifdef out the inline when
7875         bits/stdio2.h will be included.
7876         * wcsmbs/bits/wchar2.h (__swprintf_alias): New redirect.
7877         (swprintf, wprintf, fwprintf): When __va_arg_pack is defined,
7878         implement as __extern_always_inline functions.
7879         (vswprintf, vwprintf, vfwprintf): Define as
7880         __extern_always_inline functions unconditionally.
7881         * debug/tst-chk1.c (do_test): Enable remaining tests for C++.
7883 2007-09-03  Jakub Jelinek  <jakub@redhat.com>
7885         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline): Only
7886         define in C++ for GCC 4.3+, in C++ always use __gnu_inline__
7887         attribute.
7888         * include/features.h (__USE_EXTERN_INLINES): Define only when
7889         __extern_inline is defined.
7890         * stdlib/stdlib.h: Include bits/stdlib.h when __extern_always_inline
7891         is defined instead of when not __cplusplus.
7892         * misc/sys/syslog.h: Include bits/syslog.h when __extern_always_inline
7893         is defined instead of when not __cplusplus.
7894         * socket/sys/socket.h: Include bits/socket2.h when
7895         __extern_always_inline is defined instead of when not __cplusplus.
7896         * libio/stdio.h: Include bits/stdio2.h when __extern_always_inline
7897         is defined instead of when not __cplusplus.
7898         * posix/unistd.h: Include bits/unistd.h when __extern_always_inline
7899         is defined instead of when not __cplusplus.
7900         * string/string.h: Include bits/string3.h when __extern_always_inline
7901         is defined instead of when not __cplusplus.
7902         * wcsmbs/wchar.h: Include bits/wchar2.h when __extern_always_inline
7903         is defined instead of when not __cplusplus.
7904         (btowc, wctob): Don't guard the inlines with ifndef __cplusplus.
7905         * io/fcntl.h: Don't include bits/fcntl2.h if __extern_always_inline
7906         is not defined.
7907         * misc/bits/syslog-ldbl.h: Guard *_chk stuff with
7908         defined __extern_always_inline instead of !defined __cplusplus.
7909         * libio/bits/stdio-ldbl.h: Likewise.
7910         * wcsmbs/bits/wchar-ldbl.h: Likewise.
7911         * misc/bits/syslog.h (syslog): Don't define for C++.
7912         (vsyslog): Use __extern_always_inline function for C++ instead of
7913         a macro.
7914         * libio/bits/stdio.h (__STDIO_INLINE): Define to __extern_inline
7915         whenever that macro is defined.
7916         (vprintf): Don't provide the inline for C++.
7917         (fread_unlocked, fwrite_unlocked): Don't define the macros for C++.
7918         * libio/bits/stdio2.h (sprintf, snprintf, printf, fprintf): Don't
7919         define the macros for C++.
7920         (vsprintf, vsnprintf, vprintf, vfprintf): Define as
7921         __extern_always_inline functions for C++.
7922         * io/sys/stat.h (stat, lstat, fstat, fstatat, mknod, mknodat,
7923         stat64, lstat64, fstat64, fstatat64): Don't define if not
7924         __USE_EXTERN_INLINES.
7925         * wcsmbs/bits/wchar2.h: Fix #error message.
7926         (swprintf, wprintf, fwprintf): Don't define the macros for C++.
7927         (vswprintf, vwprintf, vfwprintf): Define using
7928         __extern_always_inline functions for C++.
7929         * string/bits/string3.h: Don't #undef macros if __cplusplus.
7930         (memcpy, memmove, mempcpy, memset, bcopy, bzero, strcpy, stpcpy,
7931         strncpy, strcat, strncat): Define as __extern_always_inline
7932         functions instead of macros for C++.
7933         * math/bits/cmathcalls.h: Guard __extern_inline routines with
7934         defined __extern_inline.
7935         * sysdeps/alpha/fpu/bits/mathinline.h (__MATH_INLINE): Define
7936         to __extern_inline whenever that macro is defined.
7937         * sysdeps/ia64/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
7938         * sysdeps/i386/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
7939         * sysdeps/i386/i486/bits/string.h (__STRING_INLINE): Likewise.
7940         * sysdeps/s390/bits/string.h (__STRING_INLINE): Likewise.
7941         * sysdeps/s390/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
7942         * sysdeps/powerpc/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
7943         * sysdeps/x86_64/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
7944         * sysdeps/sparc/fpu/bits/mathinline.h (__MATH_INLINE): Likewise.
7945         * sysdeps/unix/sysv/linux/sys/sysmacros.h (gnu_dev_major,
7946         gnu_dev_minor, gnu_dev_makedev): Remove __extern_inline from
7947         prototypes.  Only provide __extern_inline routines if
7948         __USE_EXTERN_INLINES.
7949         * debug/Makefile: Add rules to build and run tst-{,lfs}chk{4,5,6}
7950         tests.
7951         * debug/tst-chk1.c (do_prepare, do_test): Allow compilation as C++.
7952         For now avoid some *printf tests in C++.  Skip all testing
7953         if __USE_FORTIFY_LEVEL is defined, but __extern_always_inline macro
7954         is not.
7955         * debug/tst-chk4.cc: New file.
7956         * debug/tst-chk5.cc: New file.
7957         * debug/tst-chk6.cc: New file.
7958         * debug/tst-lfschk4.cc: New file.
7959         * debug/tst-lfschk5.cc: New file.
7960         * debug/tst-lfschk6.cc: New file.
7961         * include/wchar.h (__vfwprintf_chk, __vswprintf_chk): Avoid
7962         prototypes in C++.
7963         * include/stdio.h (__sprintf_chk, __snprintf_chk, __vsprintf_chk,
7964         __vsnprintf_chk, __printf_chk, __fprintf_chk, __vprintf_chk,
7965         __vfprintf_chk, __fgets_unlocked_chk, __fgets_chk): Likewise.
7967 2007-09-13  Ulrich Drepper  <drepper@redhat.com>
7969         * po/cs.po: Update from translation team.
7971 2007-09-11  Roland McGrath  <roland@redhat.com>
7973         * posix/Makefile ($(objpfx)getconf.speclist): Make it empty if cross
7974         compiling.
7976 2007-09-07  Samuel Thibault  <samuel.thibault@ens-lyon.org>
7978         * sysdeps/mach/hurd/bits/ioctls.h (TAB3): New macro.
7980 2007-09-05  Roland McGrath  <roland@redhat.com>
7982         * manual/signal.texi (Signaling Another Process): Typo fix.
7983         From Karl Berry <karl@freefriends.org>.
7985 2007-08-29  Ulrich Drepper  <drepper@redhat.com>
7987         * sysdeps/unix/sysv/linux/check_pf.c (IFA_F_OPTIMISTIC): Define to
7988         zero if not defined.
7989         (make_request): Recognize optimistic addresses and treat them like
7990         deprecated addresses.
7991         Reported by Neil Horman <nhorman@redhat.com>.
7993 2007-08-28  Ulrich Drepper  <drepper@redhat.com>
7995         * nscd/connections.c (send_ro_fd): Also transfer file size.
7996         * nscd/nscd_helper.c (get_mapping): If nscd also transfers the
7997         file size don't call fstat.
7999         * nscd/nscd_helper.c (get_mapping): Avoid the pread call, just go
8000         ahead and map the file.  This should always be correct and we can
8001         catch problems later.
8003 2007-08-28  Jakub Jelinek  <jakub@redhat.com>
8005         * libio/bits/stdio2.h (__fread_chk, __fread_unlocked_chk): New
8006         prototypes.
8007         (__fread_alias, __fread_unlocked_alias): New aliases.
8008         (fread): New extern inline.
8009         (fread_unlocked): Likewise.  Undef macro before definition of
8010         the inline function.
8011         * debug/Makefile (routines): Add fread_chk and fread_u_chk.
8012         (CFLAGS-fread_chk.c, CFLAGS-fread_u_chk.c): Add.
8013         * debug/Versions (libc): Export __fread_chk@@GLIBC_2.7
8014         and __fread_unlocked_chk@@GLIBC_2.7.
8015         * debug/fread_chk.c: New file.
8016         * debug/fread_u_chk.c: New file.
8017         * debug/tst-chk1.c (do_test): Add fread and fread_unlocked tests.
8019 2007-08-27  Jakub Jelinek  <jakub@redhat.com>
8021         * sysdeps/unix/sysv/linux/syscalls.list
8022         (personality): Change caller to EXTRA.
8024 2007-08-25  Ulrich Drepper  <drepper@redhat.com>
8026         * iconvdata/iso-2022-kr.c (BODY): Fake initialization of array buf
8027         to keep gcc quiet.
8028         * iconvdata/iso-2022-cn.c (BODY): Likewise.
8030         * locale/programs/ld-collate.c (collate_output): Avoid warning if
8031         NDEBUG is defined.
8033         * Makerules: Use -p option with mkdir.
8035         * sunrpc/key_prot.c (xdr_unixcred): Work around gcc alias warning.
8036         * nis/nis_xdr.c (_xdr_nis_server): Likewise.
8037         (_xdr_directory_obj): Likewise.
8038         (xdr_entry_obj): Likewise.
8039         (xdr_group_obj): Likewise.
8040         (xdr_link_obj): Likewise.
8041         (xdr_table_obj): Likewise.
8042         (_xdr_nis_result): Likewise.
8043         (_xdr_ns_request): Likewise.
8044         (_xdr_ib_request): Likewise.
8045         (_xdr_nis_taglist): Likewise.
8046         (xdr_cback_data): Likewise.
8047         * nis/yp_xdr.c (xdr_ypmaplist): Likewise.
8048         (xdr_ypresp_maplist): Likewise.
8050         * stdio-common/Makefile: Avoid format string warning for tst-sprint.
8052         * posix/regex_internal.h: Prevent some declarations and definitions
8053         to be seen when used in tests.
8055         * posix/tst-rfc3484.c (__idna_to_unicode_lzlz): Initialize *OUTPUT.
8056         * posix/tst-rfc3484-2.c (__idna_to_unicode_lzlz): Likewise.
8058         * debug/Makefile: Disable format checking when compiling tst-chk?.c.
8060         * config.make.in (datarootdir): Add to shut up configure.
8062         * sysdeps/x86_64/cacheinfo.c (handle_amd): Fix computation of
8063         associativity for fully-associative caches.
8065         * sysdeps/x86_64/cacheinfo.c (handle_amd): Handle L3 cache
8066         requests.  Fill on more associativity values for L2.
8067         Patch mostly by Evandro Menezes.
8069 2007-08-24  Ulrich Drepper  <drepper@redhat.com>
8071         * sysdeps/unix/sysv/linux/x86_64/init-first.c
8072         (_libc_vdso_platform_setup): Avoid using exported variable by using
8073         alias.
8075         * resolv/arpa/nameser.h (NS_OPT_DNSSEC_OK): Define.
8077         * sysdeps/unix/sysv/linux/i386/syscalls.list: No reason to mark
8078         fallocate64 as EXTRA.  It is not referenced if the symbol isn't
8079         defined.
8081 2007-08-23  Ulrich Drepper  <drepper@redhat.com>
8083         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Correctly
8084         align stack for call if pltexit is to be used.
8086         [BZ #3924]
8087         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Correctly
8088         align for function call in case pltexit has to be called later.
8090         * sysdeps/i386/dl-trampoline.S (_dl_runtime_resolve): Avoid
8091         implicit atomic operation when storing function pointer.
8092         (_dl_runtime_profile): Likewise.
8094 2007-08-17  Jakub Jelinek  <jakub@redhat.com>
8096         * nis/nis_table.c (nis_list): Don't fail if __follow_path returned
8097         NIS_NOTFOUND.
8099 2007-08-21  Ulrich Drepper  <drepper@redhat.com>
8101         [BZ #4566]
8102         * string/strtok.c: Fix typo in comment.
8104         [BZ #4582]
8105         * debug/segfault.c: Fix typos in comments.
8107         [BZ #4588]
8108         * stdio-common/tempnam.c: Fix comment, it is not checked that
8109         TMPDIR points to a writable directory.
8111         [BZ #4726]
8112         * resolv/res_send.c (__libc_res_nsend): Initialize all of the
8113         memory allocated for the name server address.
8115         [BZ #4946]
8116         * nscd/connections.c (handle_request): Using sendfile always
8117         requires that mmap is used for the database.
8118         Patch by Petr Baudis <pasky@suse.cz>.
8120         [BZ #4905]
8121         * nscd/hstcache.c (cache_addhst): When reloading an entry which
8122         suddenly has two or more addresses, ignore it and remove the old
8123         entry.
8125         [BZ #4814]
8126         * resolv/res_hconf.c: Prepare for compiling outside libc.
8127         * nscd/res_hconf.c: New file.
8128         * nscd/Makefile (nscd-modules): Add res_hconf.  Add rules to build
8129         the new file.
8130         * nscd/gethstbynm2_r.c (NEED__RES_HCONF): Define.
8131         * nscd/gethstbyad_r.c (NEED__RES_HCONF): Likewise.
8133         * nscd/hstcache.c (cache_addhst): Minimal optimization.
8135         [BZ #4925]
8136         * debug/pcprofiledump.c: Turn on internationalization by calling
8137         setlocale.  Patch mostly by Benno Schulenberg.
8139         [BZ #4936]
8140         * iconv/gconv.c (__gconv): If flush was successful, clear rest of
8141         the state.
8142         * iconvdata/Makefile: Add rules to build and run bug-iconv5.
8143         * iconvdata/bug-iconv5.c: New file.
8145 2007-08-04  Carlos O'Donell  <carlos@systemhalted.org>
8147         [BZ #4896]
8148         * elf/elf.h: Define R_PARISC_PLABEL21L, R_PARISC_PLABEL14R,
8149         R_PARISC_GNU_VTENTRY, R_PARISC_GNU_VTINHERIT, R_PARISC_TLS_GD21L,
8150         R_PARISC_TLS_GD14R, R_PARISC_TLS_GDCALL, R_PARISC_TLS_LDM21L,
8151         R_PARISC_TLS_LDM14R, R_PARISC_TLS_LDMCALL, R_PARISC_TLS_LDO21L,
8152         R_PARISC_TLS_LDO14R, R_PARISC_TLS_DTPMOD32, R_PARISC_TLS_DTPMOD64,
8153         R_PARISC_TLS_DTPOFF32, R_PARISC_TLS_DTPOFF64, R_PARISC_TLS_LE21L,
8154         R_PARISC_TLS_LE14R, R_PARISC_TLS_IE21L, R_PARISC_TLS_IE14R,
8155         R_PARISC_TLS_TPREL32, R_PARISC_TLS_TPREL64.
8157 2007-08-21  Ulrich Drepper  <drepper@redhat.com>
8159         [BZ #4937]
8160         * elf/do-lookup.h (do_lookup_x): Minimal improvement in hash
8161         lookup loop.  Suggested by John Reiser.
8163 2007-08-21  Jakub Jelinek  <jakub@redhat.com>
8165         * sysdeps/unix/sysv/linux/alpha/sysdep.h: Include tls.h.
8167 2007-08-20  Ulrich Drepper  <drepper@redhat.com>
8169         * csu/libc-start.c: Don't handle VDSO_SETUP here.
8170         * sysdeps/unix/sysv/linux/init-first.c: Handle it here instead.
8171         * sysdeps/unix/sysv/linux/x86_64/libc-start.c: Renamed to...
8172         * sysdeps/unix/sysv/linux/x86_64/init-first.c: ...this.  New file.
8173         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Move VDSO_SETUP code
8174         to...
8175         * sysdeps/unix/sysv/linux/x86_64/init-first.c: ...here.  New file.
8177 2007-08-18  Ulrich Drepper  <drepper@redhat.com>
8179         * po/nl.po: Update from translation team.
8181 2007-08-16  Andreas Jaeger  <aj@suse.de>
8183         * locale/localeinfo.h: Make _nl_category_name_idxs extern.
8184         Reported by Peter Festner <peter.festner@ewetel.net>.
8186 2007-08-17  Jakub Jelinek  <jakub@redhat.com>
8188         * login/tst-grantpt.c (test_einval): Add 3rd argument to open.
8190 2007-08-16  Jakub Jelinek  <jakub@redhat.com>
8192         * elf/Makefile ($(objpfx)ld.so): Use readelf -s and awk instead of nm -u
8193         to check for undefined symbols.
8195         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone):
8196         If the syscall fails, set errno to the actual returned error number
8197         rather than EINVAL.
8198         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__clone): If
8199         arguments are incorrect, set errno to EINVAL, if the syscall
8200         fails, set errno to the actual returned error number.
8202         * stdlib/bits/stdlib-ldbl.h (__strtold_internal): Remove.
8203         * wcsmbs/bits/wchar-ldbl.h (__wcstold_internal): Remove.
8205         * sysdeps/sparc/sparc32/sparcv9b/memcpy.S: Moved to...
8206         * sysdeps/sparc/sparc32/sparcv9/sparcv9b/memcpy.S: ... here.  New
8207         file.
8208         (ASI_PNF, ASI_BLK_P): Don't define.
8209         * sysdeps/sparc/sparc32/sparcv9v/memcpy.S: Moved to...
8210         * sysdeps/sparc/sparc32/sparcv9/sparcv9v/memcpy.S: ... here.  New
8211         file.
8212         * sysdeps/sparc/sparc32/sparcv9v/memset.S: Moved to...
8213         * sysdeps/sparc/sparc32/sparcv9/sparcv9v/memset.S: ... here.  New
8214         file.
8216 2007-08-15  Jakub Jelinek  <jakub@redhat.com>
8218         * sysdeps/sparc/fpu/fraiseexcpt.c (__feraiseexcept): Fix raising
8219         FE_UNDERFLOW on Niagara CPUs.
8221         * sysdeps/sparc/fpu/feholdexcpt.c (feholdexcept): Clear all
8222         exceptions.
8224 2007-08-14  Jakub Jelinek  <jakub@redhat.com>
8226         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_runtime_setup): No
8227         need to check GLRO(dl_hwcap) & HWCAP_SPARC_FLUSH on sparcv9.
8228         (sparc_fixup_plt): Add do_flush argument instead of figuring whether
8229         flush should be used or not inside of the function.
8230         (elf_machine_fixup_plt, elf_machine_rela): Adjust caller.
8232         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__clone,
8233         __thread_start): Use HIDDEN_JUMPTARGET.
8234         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__clone,
8235         __thread_start): Likewise.
8236         * sysdeps/unix/sysv/linux/sparc/sysdep.h (JUMPTARGET): Define.
8238         * sysdeps/ieee754/ldbl-64-128/strtold_l.c (__STRTOF): Declare.
8239         Add libc_hidden_proto.
8240         (STRTOF): Add libc_hidden_proto.
8241         (___new_strtold_l, ___new_wcstold_l): New weak aliases.
8242         (strtold_l, wcstold_l): Use them as second argument for
8243         long_double_symbol.
8245 2007-08-14  Ulrich Drepper  <drepper@redhat.com>
8247         * elf/dl-misc.c: Undo last change.  The kernel won't allow it.
8249 2007-08-13  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
8251         * stdlib/strtold_l.c: Include wchar.h if needed.  Add libc_hidden_def.
8253 2007-08-14  Ulrich Drepper  <drepper@redhat.com>
8255         * po/bg.po: New file.  From the translation team.
8257 2007-08-13  Jakub Jelinek  <jakub@redhat.com>
8259         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PSELECT,
8260         __ASSUME_PPOLL, __ASSUME_ATFCTS, __ASSUME_SET_ROBUST_LIST,
8261         __ASSUME_UTIMENSAT, __ASSUME_FALLOCATE): Update per-arch conditions
8262         when each feature was introduced.
8264         * sysdeps/unix/sysv/linux/dl-vdso.c: Don't include dl-hash.h.
8265         * sysdeps/unix/sysv/linux/dl-vdso.h: Don't include dl-hash.h if NDEBUG.
8266         (CHECK_HASH): New macro.
8267         (PREPARE_VERSION): Use it.
8269         * sysdeps/unix/sysv/linux/pselect.c (__generic_pselect): Only provide
8270         prototype if not __ASSUME_PSELECT.
8271         * sysdeps/unix/sysv/linux/ppoll.c (__generic_ppoll): Only provide
8272         prototype if not __ASSUME_PPOLL.
8274         * sysdeps/unix/sysv/linux/dl-osinfo.h (ROUND): #undef after use.
8276         * sysdeps/unix/clock_settime.c (freq, __pthread_clock_settime,
8277         hp_timing_settime): Don't define or declare if HANDLED_CPUTIME
8278         is defined.
8280 2007-08-13  Ulrich Drepper  <drepper@redhat.com>
8282         * sysdeps/unix/sysv/linux/x86_64/libc-start.c
8283         (_libc_vdso_platform_setup): If vDSO is not available point
8284         __vdso_gettimeofday to the vsyscall.
8285         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S [SHARED]: Use
8286         __vdso_gettimeofday instead of vsyscall.
8288 2007-08-13  Jakub Jelinek  <jakub@redhat.com>
8290         * nscd/servicescache.c: Include kernel-features.h.
8291         * nscd/gai.c: Likewise.
8292         * sysdeps/unix/sysv/linux/statfs64.c: Likewise.
8293         * sysdeps/unix/sysv/linux/fstatfs64.c: Likewise.
8294         * sysdeps/unix/sysv/linux/fxstatat.c: Likewise.
8295         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S: Likewise.
8296         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: Likewise.
8297         * sysdeps/unix/sysv/linux/xstatconv.c: Likewise.
8298         * sysdeps/unix/sysv/linux/if_index.c: Likewise.
8299         * sysdeps/unix/sysv/linux/sparc/sparc64/xstat.c: Likewise.
8300         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
8302 2007-08-12  Ulrich Drepper  <drepper@redhat.com>
8304         * elf/dl-dst.h: No need for _dl_dst_count, _dl_dst_substitute,
8305         and _dl_get_origin defines anymore.
8307         * sysdeps/unix/sysv/linux/clock_gettime.c (maybe_syscall_gettime_cpu):
8308         Build fix for systems which might lack POSIX timer support.
8310         * sysdeps/unix/sysv/linux/x86_64/libc-start.c
8311         (_libc_vdso_platform_setup): Mangle function pointers before storing
8312         them.
8313         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INLINE_VSYSCALL):
8314         Demangle vdso pointer before use.
8315         (INTERNAL_VSYSCALL): Likewise.
8317         * elf/cache.c (primes): Mark as const.
8318         Noted by Roland McGrath.
8320 2007-08-01  Andreas Jaeger  <aj@suse.de>
8321             Jakub Jelinek  <jakub@redhat.com>
8323         * elf/ldconfig.c (opt_ignore_aux_cache): Add new option.
8324         (options): Add option.
8325         (parse_opt): Handle option.
8326         (manual_link): Adjust process_file caller.  Call implicit_soname.
8327         (search_dir): Formatting.  Use and populate auxiliary cache.
8328         (main): Load and save auxiliary cache.
8329         * elf/readlib.c (process_file): Add stat_buf argument.  Pass struct
8330         stat64 from fstat64 to caller.
8331         (implicit_soname): New function.
8332         * elf/readelflib.c (process_elf_file): If DT_SONAME is not present,
8333         leave *soname as NULL.
8334         * elf/cache.c: Include libgen.h.
8335         (print_entry, print_cache, compare, save_cache, add_to_cache):
8336         Formatting and cleanups.
8337         (aux_cache_entry_id, aux_cache_entry, aux_cache_file_entry,
8338         aux_cache_file): New structures.
8339         (AUX_CACHEMAGIC): Define.
8340         (primes): New array.
8341         (aux_hash_size, aux_hash): New variables.
8342         (aux_cache_entry_id_hash, nextprime, init_aux_cache,
8343         search_aux_cache, insert_to_aux_cache, add_to_aux_cache,
8344         load_aux_cache, save_aux_cache): New functions.
8345         * sysdeps/generic/ldconfig.h (_PATH_LDCONFIG_AUX_CACHE): Define.
8346         (init_aux_cache, search_aux_cache, add_to_aux_cache,
8347         load_aux_cache, save_aux_cache, implicit_soname): New prototypes.
8348         (process_file): Adjust prototype.
8350 2007-08-12  Jakub Jelinek  <jakub@redhat.com>
8352         * sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h: Include stddef.h
8353         with __need_size_t.
8355 2007-08-12  Ulrich Drepper  <drepper@redhat.com>
8357         * sysdeps/unix/sysv/linux/dl-vdso.c (_dl_vdso_vsym): Expect
8358         r_found_version structure as second parameter.
8359         * sysdeps/unix/sysv/linux/dl-vdso.h (PREPARE_VERSION): Define.
8360         (_dl_vdso_vsym): Change type of second parameter accordingly.
8361         * sysdeps/unix/sysv/linux/x86-64/libc-start.c
8362         (_libc_vdso_platform_setup): Adjust.
8363         * sysdeps/unix/sysv/linux/powerpc/libc-start.c
8364         (_libc_vdso_platform_setup): Likewise.
8366         * sysdeps/unix/sysv/linux/powerpc/dl-vdso.c: Move to...
8367         * sysdeps/unix/sysv/linux/dl-vdso.c: ...here.
8368         * sysdeps/unix/sysv/linux/powerpc/dl-vdso.h: Move to...
8369         * sysdeps/unix/sysv/linux/dl-vdso.h: ...here.
8370         * csu/libc-start.c: Pretty printing.
8371         Use VDSO_SETUP if defined.
8372         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Define VDSO_SETUP
8373         and let generic code call into _libc_vdso_platform_setup.
8374         * sysdeps/unix/sysv/linux/x86_64/libc-start.c: New file.
8375         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: New file.
8376         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Pretty printing.
8377         Define INLINE_VSYSCALL and INTERNAL_VSYSCALL.
8378         * sysdeps/unix/sysv/linux/x86_64/Versions: Export __vdso_clock_gettime
8379         for GLIBC_PRIVATE.
8380         * sysdeps/unix/sysv/linux/x86_64/Makefile [subdir=elf]
8381         (sysdep_rountines): Add dl-vdso.
8383         * sysdeps/unix/sysv/linux/powerpc/Makefile: Use sysdep_routines instead
8384         of routines.
8386         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Add
8387         attribute_hidden to __vdso_gettimeofday prototype.
8389 2007-08-12  Roland McGrath  <roland@redhat.com>
8391         * manual/stdio.texi (Variable Arguments Output): Fix xref to gcc manual.
8392         From: Karl Berry <karl@freefriends.org>.
8394 2007-08-11  Ulrich Drepper  <drepper@redhat.com>
8396         * elf/dl-misc.c (_dl_sysdep_read_whole_file): We really don't need
8397         an atime update for the files we read.
8399 2007-08-10  Ulrich Drepper  <drepper@redhat.com>
8401         * shadow/lckpwdf.c (__lckpwdf): Use O_CLOEXEC if possible.
8403         * nscd/connections.c: Use O_CLOEXEC if possible.  Use mkostemp
8404         instead of mkstemp.
8406         * misc/Makefile (routines): Add mkostemp and mkostemp64.
8407         * misc/Versions: Export mkostemp and mkostemp64 for GLIBC_2.7.
8408         * misc/mkostemp.c: New file.
8409         * misc/mkostemp64.c: New file.
8410         * stdlib/stdlib.h: Declare the new functions.
8411         * sysdeps/posix/tempname.c: Add new parameter which is added to
8412         the flags for open.  Remove __GT_BIGFILE handling.
8413         * stdio-common/tempname.c: Likewise.
8414         * include/stdio.h: Adjust __gen_tempname prototype.
8415         Renumber __GT_* constants.
8416         * libio/oldtmpfile.c: Adjust for __gen_tempname interface change.
8417         * misc/mkdtemp.c: Likewise.
8418         * misc/mkstemp.c: Likewise.
8419         * misc/mkstemp64.c: Likewise.
8420         * misc/mktemp.c: Likewise.
8421         * stdio-common/tempnam.c: Likewise.
8422         * stdio-common/tmpfile.c: Likewise.
8423         * stdio-common/tmpfile64.c: Likewise.
8424         * stdio-common/tmpnam.c: Likewise.
8425         * stdio-common/tmpnam_r.c: Likewise.
8427 2007-08-10  Roland McGrath  <roland@frob.com>
8429         * sysdeps/mach/hurd/bits/ioctls.h (NLDLY, TABDLY, BSDLY, VTDLY):
8430         New macros.
8431         (NLDELAY, CRDELAY, TBDELAY, BSDELAY, VTDELAY): Define to those.
8432         Reported by Samuel Thibault <samuel.thibault@ens-lyon.org>.
8434 2007-08-10  Ulrich Drepper  <drepper@redhat.com>
8436         * nss/nss_files/files-XXX.c (internal_setent): Use O_CLOEXEC if
8437         possible.
8438         * nss/nss_files/files-alias.c (internal_setent): Likewise.
8439         * nss/Makefile (libnss_files-routines): Add files-have_o_cloexec.
8440         * nss/nss_files/files-have_o_cloexec.c: New file.
8442         * sysdeps/unix/sysv/linux/shm_open.c (shm_open): Use O_CLOEXEC if
8443         available.
8445 2007-08-10  Jakub Jelinek  <jakub@redhat.com>
8447         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c (___new_strtold_l,
8448         ___new_wcstold_l): New weak aliases.
8449         (strtold_l, wcstold_l): Use them as second argument for
8450         long_double_symbol.
8452 2007-08-09  Ulrich Drepper  <drepper@redhat.com>
8454         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Use correct
8455         register in test for error.
8457         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_CLOEXEC): Define.
8458         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_CLOEXEC): Likewise.
8460         * po/sv.po: Update from translation team.
8462 2007-08-06  Roland McGrath  <roland@redhat.com>
8464         * include/stdlib.h: Add libc_hidden_proto for strto*, __strto*_l.
8465         Remove __strto*_l inlines.
8466         * include/wchar.h: Add libc_hidden_proto for wcsto*, __wcsto*_l.
8467         * stdlib/strtod.c: Add libc_hidden_def.
8468         * stdlib/strtod_l.c: Likewise.
8469         * stdlib/strtold.c [__LONG_DOUBLE_MATH_OPTIONAL]: Add libc_hidden_proto
8470         for __new_strtold and __new_wcstold.
8471         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Add libc_hidden_proto for
8472         __STRTOF, STRTOF.
8473         * stdlib/strtol.c: Add libc_hidden_def.
8474         * stdlib/strtol_l.c: Likewise.
8475         * sysdeps/wordsize-64/strtol.c: Add libc_hidden_ver for strtoll and
8476         strtoq.
8478         * scripts/data/localplt-powerpc-linux-gnu.data: New file.
8480         * scripts/data/localplt-x86_64-linux-gnu.data: File renamed to ...
8481         * scripts/data/localplt-generic.data: ... here.
8482         * elf/Makefile (check-data): Get generic file if no other.
8483         ($(objpfx)check-localplt.out): Make target unconditional.
8485         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion):
8486         Use ElfW(Nhdr).
8488 2007-08-05  Ulrich Drepper  <drepper@redhat.com>
8490         * po/zh_CN.po: Updated translation from translation team.
8492 2007-08-05  Jakub Jelinek  <jakub@redhat.com>
8494         * sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S (__socket):
8495         Don't use CGOTSETUP and CGOTRESTORE macros.
8497 2007-08-04  Roland McGrath  <roland@redhat.com>
8499         * posix/Makefile ($(objpfx)getconf.speclist): Fix typo.
8501 2007-08-04  Jakub Jelinek  <jakub@redhat.com>
8503         * io/bits/fcntl2.h (open, open64, openat, openat64): Add
8504         __extension__ around the whole statement expression.
8506 2007-08-04  Ulrich Drepper  <drepper@redhat.com>
8508         * sysdeps/unix/opendir.c (__alloc_dir): Correct order of DIR
8509         elements during initialization.
8511         * po/pl.po: Updated translation from translation team.
8512         * po/tr.po: Likewise.
8513         * po/nl.po: Likewise.
8515 2007-08-03  Ulrich Drepper  <drepper@redhat.com>
8517         * rt/aio.h: Add __nonnull attributes.
8519 2007-08-03  Jakub Jelinek  <jakub@redhat.com>
8521         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Properly handle -0.
8522         * stdlib/Makefile (tests): Add tst-strtod5.
8523         (tst-strtod5-ENV): New.
8524         * stdlib/tst-strtod5.c: New file.
8526         * intl/dcigettext.c (_nl_find_msg): Free encoding if __gconv_open
8527         failed.
8528         * intl/finddomain.c (_nl_find_domain): Free normalized_codeset
8529         on failure.
8531         * elf/dl-load.c (decompose_rpath): Free copy if result couldn't be
8532         allocated.
8534 2007-08-03  Jakub Jelinek  <jakub@redhat.com>
8536         * rt/mqueue.h (mq_timedreceive, mq_timedsend): Fix nonnull argument
8537         numbers.
8539 2007-08-02  Ulrich Drepper  <drepper@redhat.com>
8541         * io/Makefile (aux): Add have_o_cloexec.
8542         * include/fcntl.h: Declare __have_o_cloexec.
8543         * io/have_o_cloexec.c: New file.
8544         * sysdeps/unix/opendir.c (__opendir): Use O_CLOEXEC is available.
8545         (__alloc_dir): If O_CLOEXEC has been used, don't duplicate the
8546         fcntl call if not necessary.
8547         * login/utmp_file.c (setutent_file): Use __have_o_cloexec instead
8548         of local variable.
8550         * sysdeps/unix/opendir.c (__alloc_dir): Don't initialize ->data.
8551         Avoid memset, add explicit initialization.
8552         * sysdeps/unix/dirstream.h (struct __dirstream): Move data elemtn
8553         to the end and change into zero-sized array.
8554         Move lock member to fill a hole on 64-bit platforms.
8556         * stdlib/stdlib.h: Remove __strto*_internal prototypes and strto*
8557         inline functions.
8558         * include/stdlib.h: Add __strto*_internal prototypes here.
8559         * wcsmbs/wchar.h: Remove __wcsto*_internal prototypes and wcsto*
8560         inline functions.
8561         * include/wchar.h: Add __wcsto*_internal prototypes.
8562         * sysdeps/generic/inttypes.h: No need to protect the declaration
8563         of the __strto*_internal and __wcsto*_internal members here.
8565         * rt/mqueue.h: Change const to __const and add nonnull attributes.
8567 2007-08-02  Roland McGrath  <roland@redhat.com>
8569         * posix/Makefile ($(inst_libexecdir)/getconf): Make hard links to
8570         $(inst_bindir)/getconf if possible.
8572         * posix/Makefile ($(objpfx)getconf.speclist): New target.
8573         (generated): Add it.
8574         ($(inst_libexecdir)/getconf): Use it.
8576 2007-08-01  Ulrich Drepper  <drepper@redhat.com>
8578         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Using
8579         /proc is faster and sufficient.  /sys is still needed for
8580         __get_nprocs_conf.
8582 2007-08-01  Jakub Jelinek  <jakub@redhat.com>
8584         * sysdeps/unix/sysv/linux/i386/syscalls.list (fallocate): Add fallocate
8585         syscall as __fallocate64.
8586         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c: New file.
8587         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c: New file.
8589 2007-07-30  Jakub Jelinek  <jakub@redhat.com>
8591         * stdlib/tst-strtod2.c (do_test): Use %tu in fmt string for ptrdiff_t
8592         value.
8594         * stdio-common/tst-fmemopen2.c (do_test): Avoid fmt string warning
8595         if off_t is different rank from size_t.
8597         * sysdeps/generic/unwind-dw2.c (extract_cie_info, execute_cfa_program,
8598         uw_frame_state_for): Avoid type punning warnings.
8599         * sysdeps/generic/unwind-dw2-fde-glibc.c
8600         (_Unwind_IteratePhdrCallback): Likewise.
8601         * sysdeps/generic/unwind-dw2-fde.c (_Unwind_Find_FDE): Likewise.
8602         (binary_search_single_encoding_fdes, binary_search_mixed_encoding_fdes,
8603         get_cie_encoding, linear_search_fdes): Don't mix char and unsigned char
8604         pointers.
8606 2007-07-31  Ulrich Drepper  <drepper@redhat.com>
8608         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs_conf): Count
8609         total processors using sysfs.
8610         (__get_nprocs): Use sysfs to determine which processors are online.
8612 2007-07-31  Jakub Jelinek  <jakub@redhat.com>
8614         * sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate): Fix
8615         syscall arguments count.
8617         * stdio-common/tfformat.c (sprint_doubles): Add 12 new tests.
8619 2007-07-30  Roland McGrath  <roland@redhat.com>
8621         * manual/libc.texinfo: Update copyrights, formatting magic, and
8622         @dircategory.  From Karl Berry <karl@freefriends.org>.
8624 2007-07-29  Ulrich Drepper  <drepper@redhat.com>
8626         [BZ #4860]
8627         * io/Makefile (headers): Add bits/fcntl2.h.
8629         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_ZERO_S): Optimize
8630         using gcc builtin.
8631         (__CPU_EQUAL_S): Likewise.
8633         * posix/Makefile (routines): Add sched_cpualloc and sched_cpufree.
8634         (tests): Add tst-cpuset.
8635         * posix/sched_cpualloc.c: New file.
8636         * posix/sched_cpufree.c: New file.
8637         * posix/tst-cpuset.c: New file.
8638         * posix/Versions: Export __sched_cpualloc and __sched_cpufree for
8639         GLIBC_2.7.
8640         * sysdeps/unix/sysv/linux/bits/sched.h: Define __CPU_*_S macros.
8641         * posix/sched.h: Define old CPU_* macros in temers of __CPU_*_S
8642         macros.  Define CPU_*_S macros.
8644 2007-07-28  Ulrich Drepper  <drepper@redhat.com>
8646         * posix/getconf.c (vars): Add missing _SC_LEVEL4_CACHE_LINESIZE
8647         entry.
8649         [BZ #4858]
8650         * stdio-common/printf_fp.c (___printf_fp): Fix special case of
8651         #.0g and value rounded to 1.0.
8652         * stdio-common/tfformat.c (sprint_doubles): Add two new tests.
8654 2007-07-26  Jakub Jelinek  <jakub@redhat.com>
8656         * locale/programs/ld-monetary.c (monetary_finish): Avoid range check
8657         for int_frac_digits and frac_digits.
8659         * login/logout.c (logout): Avoid aliasing violation.
8660         * login/logwtmp.c (logwtmp): Likewise.
8662         * libio/genops.c (_IO_un_link): Avoid aliasing violation.
8664         * nscd/selinux.c (preserve_capabilities): Initialize new_caps
8665         to avoid warning.
8666         * iconv/gconv_open.c (__gconv_open): Initialize ptr to avoid
8667         warning.
8668         * nis/nis_subr.c (nis_getnames): Initialize saveptr to avoid
8669         warning.
8670         * resolv/inet_ntop.c (inet_ntop6): Initialize best.len and cur.len
8671         to avoid warnings.
8673         * nss/nsswitch.c (__nss_lookup_function): Don't cast &ni->known to
8674         void **.
8675         * nss/nsswitch.h (service_user): Use void * type for KNOWN field.
8677         * nss/nss_files/files-hosts.c (LINE_PARSER): Cast host_addr to
8678         char * to avoid warning.
8679         * nis/nss_nis/nis-hosts.c (LINE_PARSER): Likewise.
8681         * timezone/Makefile (CFLAGS-zdump.c): Add -fwrapv.
8683         * locale/programs/ld-ctype.c (ctype_finish, set_class_defaults,
8684         allocate_arrays): Cast second argument to charmap_find_symbol
8685         to char * to avoid warnings.
8687         * locale/programs/repertoire.c (repertoire_new_char): Change
8688         from_nr, to_nr and cnt to unsigned long, adjust printf format
8689         string.
8691         * locale/programs/ld-collate.c (insert_value, handle_ellipsis):
8692         Cast second argument to new_element to char * to avoid warnings.
8694         * locale/weightwc.h (findidx): Cast &extra[-i] to const int32_t *.
8696         * intl/gettextP.h (struct loaded_domain): Change plural to const
8697         struct expression *.
8698         * intl/plural-eval.c (plural_eval): Change first argument to
8699         const struct expression *.
8700         * intl/plural-exp.c (EXTRACT_PLURAL_EXPRESSION): Change first
8701         argument to const struct expression **.
8702         * intl/plural-exp.h (EXTRACT_PLURAL_EXPRESSION, plural_eval): Adjust
8703         prototypes.
8704         * intl/loadmsgcat (_nl_unload_domain): Cast away const
8705         in call to __gettext_free_exp.
8707         * posix/fnmatch.c (fnmatch): Rearrange code to avoid maybe
8708         unitialized wstring/wpattern var warnings.
8710         * posix/runtests.c (struct a_test): Make data field const char *.
8712         * stdio-common/tst-sprintf2.c (main): Don't declere u, v and buf
8713         vars if not LDBL_MANT_DIG >= 106.
8715         * stdio-common/Makefile (CFLAGS-vfwprintf.c): Add -Wno-unitialized.
8717         * stdio-common/vfprintf.c (vfprintf): Cast first arugment to
8718         __find_specmb to avoid warning.
8720         * rt/tst-mqueue1.c (do_one_test): Add casts to avoid warnings.
8722         * debug/test-strcpy_chk.c (do_tests, do_random_tests): Add casts
8723         to avoid warnings.
8725         * sysdeps/ieee754/ldbl-96/s_roundl.c (huge): Add L suffix to
8726         initializer.
8728         * sysdeps/unix/clock_gettime.c (clock_gettime): Only define
8729         tv var when it will be actually used.
8731         * sunrpc/rpc_cmsg.c (xdr_callmsg): Cast IXDR_PUT_* to void
8732         to avoid warnings.
8734         * iconvdata/gbk.c (BODY): Make buf and cp char instead of unsigned
8735         char array resp. pointer.
8736         * iconvdata/iso-2022-kr.c (BODY): Make buf unsigned char instead of
8737         char array.
8738         * iconvdata/cns11643.h (cns11643_to_ucs4): Change first argument
8739         to const unsigned char **.
8740         (ucs4_to_cns11643): Change second argument to unsigned char *.
8741         * iconvdata/euc-tw.c (BODY): Change endp type to
8742         const unsigned char *.
8743         * iconvdata/iso-ir-165.h (ucs4_to_isoir165): Change second argument
8744         to unsigned char *.
8745         * iconvdata/ibm1008_420.c (LOOP_NEED_FLAGS): Don't define.
8746         * iconvdata/iso-2022-cn.c (BODY): Change buf to unsigned char array.
8747         * iconvdata/iso-2022-cn-ext.c (BODY): Change buf, tmpbuf, tmp
8748         types to unsigned char pointers/arrays instead of char.
8749         * iconvdata/jis0201.h (ucs4_to_jisx0201): Change second argument
8750         to unsigned char *.
8751         * iconvdata/jis0208.h (ucs4_to_jisx0208): Likewise.
8752         * iconvdata/jis0212.h: Include assert.h.
8753         (ucs4_to_jisx0212): Change second argument to unsigned char *.
8754         assert that if cp[0] is not '\0', cp[1] is not '\0' either instead
8755         of trying to handle that.
8756         * iconvdata/euc-kr.c (euckr_from_ucs4): Initialize also cp[1] to
8757         shut up a warning.
8758         * iconvdata/euc-jp-ms.c (from_ucs4_lat1, from_ucs4_greek,
8759         from_ucs4_cjk, from_ucs4_cjkcpt, from_ucs4_extra): Change type to
8760         two dimensional const unsigned char arrays.
8761         (BODY): Cast "" to (const unsigned char *) for assignment to cp.
8762         Initialize endp to inptr to shut up a warning.
8764 2007-07-20  Jakub Jelinek  <jakub@redhat.com>
8766         [BZ #4772]
8767         * time/strptime_l.c (__strptime_internal): Silently ignore
8768         strftime modifiers and field width in recursive calls.
8770         * include/time.h (enum ptime_locale_status): Remove.
8771         (__strptime_internal): Remove decided and era_cnt arguments,
8772         add statep argument.
8773         * time/strptime_l.c (__strptime_internal): Remove decided
8774         and era_cnt arguments, add statep argument.  Don't recompute
8775         any fields in recursive calls, only update caller's tm
8776         and state, if recursive call fails, don't change tm nor
8777         any state.
8778         (get_alt_number): Adjust.
8779         (recursive): Adjust caller.
8780         (strptime): Likewise.
8781         * time/strptime.c (strptime): Likewise.
8783 2007-07-19  Jakub Jelinek  <jakub@redhat.com>
8785         * iconv/gconv_int.h (__GCONV_NULCONV): New internal only error code.
8786         * iconv/gconv_cache.c (__gconv_lookup_cache): Return __GCONV_NULCONV
8787         if from and to charsets are the same.
8788         * iconv/gconv_db.c (__gconv_find_transform): Likewise.
8789         * intl/dcigettext.c (_nl_find_msg): Return NULL even if __gconv_open
8790         returns __GCONV_NOCONV, but not for __GCONV_NULCONV.
8792 2007-07-17  Jakub Jelinek  <jakub@redhat.com>
8794         * wcsmbs/wchar.h: Only define wint_t if __need_wint_t.
8795         Don't define wint_t when __need_mbstate_t unless it
8796         is necessary.
8797         (__mbstate_t): Use __WINT_TYPE__ rather than wint_t
8798         in the typedef if possible.
8799         * wctype/wctype.h (wint_t): Define by including
8800         wchar.h with __need_wint_t instead of including stddef.h
8801         with __need_wint_t and as fallback definining it ourselves.
8802         * iconv/gconv.h (__need_wint_t): Define before including
8803         wchar.h.
8804         * sysdeps/gnu/_G_config.h: Don't include gconv.h if not _LIBC
8805         or _GLIBCPP_USE_WCHAR_T.
8806         (__need_wchar_t): Don't define
8807         if not _LIBC or _GLIBCPP_USE_WCHAR_T.
8808         (__need_wint_t): Don't define before including stddef.h,
8809         define before including wchar.h only if _LIBC or
8810         _GLIBCPP_USE_WCHAR_T.
8811         (_G_iconv_t): Don't define if not _LIBC or _GLIBCPP_USE_WCHAR_T.
8812         * sysdeps/mach/hurd/_G_config.h: Likewise.
8813         * sysdeps/generic/_G_config.h: Likewise.
8814         * libio/libio.h (__wunderflow, __wuflow, __woverflow): Only
8815         prototype if _LIBC or _GLIBCPP_USE_WCHAR_T.
8816         (_IO_getwc_unlocked, _IO_putwc_unlocked): Only define
8817         if _LIBC or _GLIBCPP_USE_WCHAR_T.
8819 2007-07-28  Ulrich Drepper  <drepper@redhat.com>
8821         * sysdeps/posix/posix_fallocate64.c: Undefine
8822         __posix_fallocate64_l64 before alias handling.
8823         * sysdeps/unix/sysv/linux/posix_fallocate.c: New file.
8824         * sysdeps/unix/sysv/linux/posix_fallocate64.c: New file.
8825         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c: New file.
8826         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate64.c: New file.
8828         * io/tst-posix_fallocate.c: Include <fcntl.h>.
8830 2007-07-23  Jakub Jelinek  <jakub@redhat.com>
8832         * locale/programs/ld-collate.c (atwc): New variable.
8833         (add_to_tablewc): New toplevel function, moved from collate_output.
8834         (collate_output): Remove add_to_tablewc nested function.
8836         * iconv/iconvconfig.c (hash_table, hash_size): New toplevel vars.
8837         (name_insert): New function.
8838         (write_output): Remove hash_table and hash_size vars and name_insert
8839         nested function.
8841 2007-07-24  Roland McGrath  <roland@redhat.com>
8843         * Makerules (install-others-programs-nosubdir): New target.
8844         (install-no-libc.a-nosubdir): Depend on it.
8846         * iconv/Makefile (install-others-programs): Set this instead of
8847         install-others.
8848         * login/Makefile (install-others-programs): Likewise.
8849         * posix/Makefile (install-others-programs): Likewise.
8851         * Makerules (install-no-libc.a-nosubdir): Clean up conditional
8852         dependencies.
8854 2007-07-23  Ulrich Drepper  <drepper@redhat.com>
8856         * io/Makefile (tests): Add tst-posix_fallocate.
8857         * io/tst-posix_fallocate.c: New file.
8859         * sysdeps/unix/sysv/linux/kernel-features.h: Define
8860         __ASSUME_FALLOCATE.
8862 2007-07-22  Roland McGrath  <roland@frob.com>
8864         * hurd/getdport.c: Add missing copyright year update.
8866         * sysdeps/mach/hurd/bits/fcntl.h [__USE_GNU] (O_CLOEXEC): New macro.
8867         * hurd/port2fd.c (_hurd_port2fd): Implement O_CLOEXEC.
8869 2007-07-22  Ulrich Drepper  <drepper@redhat.com>
8871         * login/utmp_file.c (setutent_file): Use O_CLOEXEC if possible.
8873         * libio/fileops.c (_IO_new_file_fopen): Recognize 'e' flag and set
8874         O_CLOEXEC is needed.
8875         * nis/nss_compat/compat-grp.c: Use 'e' flag when opening file.
8876         Avoid additional fcntl to set O_CLOEXEC if not needed.
8877         * nis/nss_compat/compat-initgroups.c: Likewise.
8878         * nis/nss_compat/compat-pwd.c: Likewise.
8879         * nis/nss_compat/compat-spwd.c: Likewise.
8881 2007-07-21  Samuel Thibault  <samuel.thibault@ens-lyon.org>
8883         [BZ #3665]
8884         * manual/errno.texi: Change ECANCELED value to 119.
8886         [BZ #4610]
8887         * mach/lock-intern.h: Include <sys/cdefs.h>.
8889         [BZ #4178]
8890         * sysdeps/mach/hurd/sigaction.c (__sigaction): Check ACT != NULL before
8891         reading A.
8893         [BZ #4126]
8894         * sysdeps/mach/hurd/sigsuspend.c (sigsuspend_not_cancel): Define alias
8895         to __sigsuspend.
8897         * sysdeps/mach/i386/sysdep.h: Include <dl-sysdep.h> and <tls.h>.
8899 2006-06-13  Thomas Schwinge  <tschwinge@gnu.org>
8901         * sysdeps/mach/hurd/tls.h: Change `ASSEMBLER' conditional to
8902         `__ASSEMBLER__'.
8903         * sysdeps/mach/hurd/i386/tls.h: Likewise.
8905 2007-07-21  Ulrich Drepper  <drepper@redhat.com>
8907         * nscd/nscd_helper.c (get_mapping): Use MSG_CMSG_CLOEXEC for
8908         descriptor received from nscd.
8910         * sysdeps/unix/sysv/linux/bits/socket.h: Define MSG_CMSG_CLOEXEC.
8912         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_CLOEXEC.
8913         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
8914         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
8915         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
8916         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
8917         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
8919 2007-07-20  Jakub Jelinek  <jakub@redhat.com>
8921         [BZ #4816]
8922         * manual/signal.texi (Non-atomic Example): Make memory var volatile.
8924         [BZ #4813]
8925         * login/forkpty.c (forkpty): Close master and slave fds on
8926         fork failure.  Patch by
8927         Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>.
8929 2007-07-18  Jakub Jelinek  <jakub@redhat.com>
8931         * include/features.h (__USE_ISOC95): New define.
8932         * wcsmbs/wchar.h (fwprintf, fwscanf, wprintf, wscanf, swprintf,
8933         swscanf, vfwprintf, vwprintf, vswprintf, fwide): Define even
8934         for -std=iso9899:199409.
8935         * CONFORMANCE: Remove comments about unsupported AMD1.
8937 2007-07-17  Jakub Jelinek  <jakub@redhat.com>
8939         * sysdeps/ia64/sched_cpucount.c: New file.
8940         * sysdeps/powerpc/sched_cpucount.c: New file.
8942         * sysdeps/unix/sysv/linux/bits/sched.h (__sched_cpucount): Add
8943         __BEGIN_DECLS/__END_DECLS around the prototype.
8944         * bits/sched.h (__sched_cpucount): Likewise.  Make second argument
8945         pointer to const cpu_set_t.
8947         * bits/types.h: Don't include stddef.h, don't define __need_size_t.
8948         * signal/signal.h <__USE_BSD || __USE_XOPEN_EXTENDED>: Define
8949         __need_size_t and include stddef.h.
8950         * sysvipc/sys/msg.h: Likewise.
8951         * posix/sched.h: Likewise.
8952         * hurd/hurd/signal.h (__need_size_t): Define.
8954         * CONFORMANCE: ctype.h and wctype.h no longer define size_t,
8955         neither does signal.h in pedantic ISO C namespaces.  stdio.h
8956         no longer defines wint_t or wchar_t.
8958         * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct): New function.
8959         * debug/vfwprintf_chk.c (__vfwprintf_chk): Use
8960         _IO_acquire_lock_clear_flags2 instead of _IO_acquire_lock.
8961         * debug/vprintf_chk.c (__vprintf_chk): Likewise.
8962         * debug/vwprintf_chk.c (__vwprintf_chk): Likewise.
8963         * debug/vfprintf_chk.c (__vfprintf_chk): Likewise.
8964         * debug/fwprintf_chk.c (__fwprintf_chk): Likewise.
8965         * debug/printf_chk.c (__printf_chk): Likewise.
8966         * debug/fprintf_chk.c (__fprintf_chk): Likewise.
8967         * debug/wprintf_chk.c (__wprintf_chk): Likewise.
8969         * sysdeps/pthread/bits/stdio-lock.h (_IO_acquire_lock_clear_flags2):
8970         Define.
8972         * bits/confname.h (_CS_POSIX_V6_WIDTH_RESTRICTED_ENVS): Define.
8973         * posix/getconf.c (vars): Add POSIX_V6_WIDTH_RESTRICTED_ENVS.
8975 2007-07-16  Jakub Jelinek  <jakub@redhat.com>
8977         [BZ #4792]
8978         * stdlib/stdlib.h (realloc): Remove __attribute_malloc__.
8979         * malloc/malloc.h (realloc): Likewise.
8981         * libio/iopopen.c (_IO_new_proc_open): Don't close child_std_end
8982         if one of proc_file_chain streams has that fileno.
8983         * stdio-common/Makefile (tests): Add tst-popen2.
8984         * stdio-common/tst-popen2.c: New test.
8986 2007-07-14  Jakub Jelinek  <jakub@redhat.com>
8988         * elf/ldconfig.c: Allow GPLv2 or any later version.
8989         * elf/readlib.c: Likewise.
8990         * elf/chroot_canon.c: Likewise.
8991         * elf/cache.c: Likewise.
8992         * nscd/mem.c: Likewise.
8993         * nscd/getpwuid_r.c: Likewise.
8994         * nscd/grpcache.c: Likewise.
8995         * nscd/aicache.c: Likewise.
8996         * nscd/getsrvbynm_r.c: Likewise.
8997         * nscd/nscd.c: Likewise.
8998         * nscd/servicescache.c: Likewise.
8999         * nscd/getsrvbypt_r.c: Likewise.
9000         * nscd/initgrcache.c: Likewise.
9001         * nscd/gethstbyad_r.c: Likewise.
9002         * nscd/gethstbynm2_r.c: Likewise.
9003         * nscd/getgrnam_r.c: Likewise.
9004         * nscd/nscd_setup_thread.c: Likewise.
9005         * nscd/getpwnam_r.c: Likewise.
9006         * nscd/gai.c: Likewise.
9007         * nscd/connections.c: Likewise.
9008         * nscd/dbg_log.c: Likewise.
9009         * nscd/cache.c: Likewise.
9010         * nscd/hstcache.c: Likewise.
9011         * nscd/nscd_conf.c: Likewise.
9012         * nscd/getgrgid_r.c: Likewise.
9013         * nscd/pwdcache.c: Likewise.
9014         * catgets/gencat.c: Likewise.
9015         * locale/programs/linereader.h: Likewise.
9016         * locale/programs/locarchive.c: Likewise.
9017         * locale/programs/ld-paper.c: Likewise.
9018         * locale/programs/locfile-kw.h: Likewise.
9019         * locale/programs/ld-address.c: Likewise.
9020         * locale/programs/xmalloc.c: Likewise.
9021         * locale/programs/ld-time.c: Likewise.
9022         * locale/programs/localedef.c: Likewise.
9023         * locale/programs/simple-hash.c: Likewise.
9024         * locale/programs/xstrdup.c: Likewise.
9025         * locale/programs/ld-numeric.c: Likewise.
9026         * locale/programs/locfile-kw.gperf: Likewise.
9027         * locale/programs/ld-collate.c: Likewise.
9028         * locale/programs/charmap-kw.gperf: Likewise.
9029         * locale/programs/charmap.h: Likewise.
9030         * locale/programs/charmap-kw.h: Likewise.
9031         * locale/programs/config.h: Likewise.
9032         * locale/programs/locfile.c: Likewise.
9033         * locale/programs/ld-ctype.c: Likewise.
9034         * locale/programs/charmap.c: Likewise.
9035         * locale/programs/ld-messages.c: Likewise.
9036         * locale/programs/repertoire.h: Likewise.
9037         * locale/programs/locale.c: Likewise.
9038         * locale/programs/ld-name.c: Likewise.
9039         * locale/programs/linereader.c: Likewise.
9040         * locale/programs/locfile.h: Likewise.
9041         * locale/programs/3level.h: Likewise.
9042         * locale/programs/ld-monetary.c: Likewise.
9043         * locale/programs/ld-measurement.c: Likewise.
9044         * locale/programs/charmap-dir.c: Likewise.
9045         * locale/programs/ld-identification.c: Likewise.
9046         * locale/programs/localedef.h: Likewise.
9047         * locale/programs/charmap-dir.h: Likewise.
9048         * locale/programs/repertoire.c: Likewise.
9049         * locale/programs/simple-hash.h: Likewise.
9050         * locale/programs/ld-telephone.c: Likewise.
9051         * locale/programs/locale-spec.c: Likewise.
9052         * locale/programs/locfile-token.h: Likewise.
9053         * posix/getconf.c: Likewise.
9054         * iconv/dummy-repertoire.c: Likewise.
9055         * iconv/iconv_charmap.c: Likewise.
9056         * iconv/iconvconfig.c: Likewise.
9057         * iconv/iconv_prog.c: Likewise.
9058         * malloc/memusagestat.c: Likewise.
9059         * sysdeps/unix/sysv/linux/nscd_setup_thread.c: Likewise.
9061 2007-07-06  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
9063         * sysdeps/sh/bsd-setjmp.S (setjmp): Use correct argument registers.
9064         * sysdeps/sh/bsd-_setjmp.S (_setjmp): Likewise.
9065         * sysdeps/unix/sysv/linux/sh/clone.S (__clone): Do correct sanity
9066         check for the first argument.
9068 2007-07-12  Jakub Jelinek  <jakub@redhat.com>
9070         [BZ #4775]
9071         * math/tgmath.h (__tgmath_real_type_sub): Formatting.
9072         (__tgmath_real_type): Fix if expr is const int or other const
9073         qualified integral type.
9074         (__TGMATH_UNARY_REAL_ONLY): Rewritten to avoid using statement
9075         expressions and handle const qualified arguments.
9076         (__TGMATH_BINARY_FIRST_REAL_ONLY, __TGMATH_UNARY_REAL_IMAG,
9077         __TGMATH_UNARY_REAL_IMAG_RET_REAL): Likewise.
9078         (__TGMATH_UNARY_REAL_RET_ONLY): Rewritten to avoid using
9079         statement expressions.
9080         (__TGMATH_BINARY_REAL_ONLY, __TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY,
9081         __TGMATH_TERNARY_REAL_ONLY, __TGMATH_BINARY_REAL_IMAG): Likewise.
9082         (__TGMATH_UNARY_IMAG): Define.
9083         (conj, cproj): Use __TGMATH_UNARY_IMAG macro.
9084         * math/Makefile (tests): Add test-tgmath2.
9085         (CFLAGS-test-tgmath2.c): Add.
9086         * math/test-tgmath.c (fy, dy, ly, fz, dz, lz, count_cdouble,
9087         count_cfloat, count_cldouble): New variables.
9088         (NCCALLS): Define.
9089         (main): Check number of complex calls as well.
9090         (F(compile_test)): Add complex tests and tests with const qualified
9091         arguments.
9092         (y, z, ccount): Define.
9093         (F(cacos), F(casin), F(catan), F(ccos), F(csin), F(ctan), F(cacosh),
9094         F(casinh), F(catanh), F(ccosh), F(csinh), F(ctanh), F(cexp), F(clog),
9095         F(csqrt), F(cpow), F(cabs), F(carg), F(creal), F(cimag), F(conj),
9096         F(cproj)): New functions.
9097         * math/test-tgmath2.c: New test.
9099 2007-07-11  Jakub Jelinek  <jakub@redhat.com>
9101         [BZ #4776]
9102         * elf/dl-load.c (_dl_rtld_di_serinfo): Output / in LD_LIBRARY_PATH,
9103         RPATH etc. as "/" rather than "", don't segfault on empty paths,
9104         instead output ".".
9105         * dlfcn/Makefile (distribute): Add glreflib3.c.
9106         (module-names): Add glreflib3.
9107         ($(objpfx)tst-dlinfo.out): Depend on glreflib3.so rather than
9108         glreflib1.so.
9109         (LDFLAGS_glreflib3.so): New.
9110         * dlfcn/tst-dlinfo.c (do_test): Load glreflib3.so instead of
9111         glreflib1.so.
9112         * dlfcn/glreflib3.c: New file.
9114         * intl/finddomain.c (_nl_find_domain): If _nl_explode_name
9115         returned -1, return NULL.
9116         * intl/explodename.c (_nl_explode_name): Return -1 if
9117         _nl_normalize_codeset failed.
9119 2007-07-07  Steven Munroe  <sjmunroe@us.ibm.com>
9121         * sysdeps/powerpc/powerpc32/power6/memset.S: Update comments.
9122         Specify .machine power6 to get ISA-V2.0 branch hints.  Unroll loops
9123         and avoid branch misspredicts for > 31 bytes memset case.
9124         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
9125         Remove toc ref to __cache_line_size.
9127         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Specify .machine power4
9128         to get ISA-V2.0 branch hints.
9129         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Likewise
9130         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise
9131         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
9132         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
9133         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
9134         * sysdeps/powerpc/powerpc64/power4/memset.S: Likewise.
9135         Remove toc ref to __cache_line_size.
9137         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S:
9138         Include math_ldbl_opt.h.
9140 2007-07-10  Ulrich Drepper  <drepper@redhat.com>
9142         [BZ #4773]
9143         * time/strptime_l.c (__strptime_internal): Implement greedy
9144         matching of weekday and month names.
9146 2007-07-09  Roland McGrath  <roland@redhat.com>
9148         * elf/elf.h (NT_GNU_ABI_TAG): New macro.
9149         (ELF_NOTE_ABI): Use it.
9150         (NT_GNU_HWCAP, NT_GNU_BUILD_ID): New macros.
9152 2007-07-09  Ulrich Drepper  <drepper@redhat.com>
9154         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Add new entries.
9155         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
9157 2007-07-07  Ulrich Drepper  <drepper@redhat.com>
9159         [BZ #4745]
9160         * stdio-common/vfscanf.c (_IO_vfscanf): Add additional test for EOF
9161         in loop to look for conversion specifier to avoid testing of
9162         wrong errno value.
9163         * stdio-common/Makefile (tests): Add bug18, bug18a, bug19, bug19a.
9164         * stdio-common/bug18.c: New file.
9165         * stdio-common/bug18a.c: New file.
9166         * stdio-common/bug19.c: New file.
9167         * stdio-common/bug19a.c: New file.
9169 2007-07-05  Mike Frysinger  <vapier@gentoo.org>
9171         * Makeconfig ($(common-objpfx)gnu/lib-names.stmp): Use LC_ALL=C when
9172         running awk script.
9174 2007-07-01  Jakub Jelinek  <jakub@redhat.com>
9176         * elf/dl-sysdep.c (_dl_important_hwcaps): Add integer overflow check.
9177         * elf/dl-minimal.c (__libc_memalign): Likewise.  Handle malloc (0).
9178         Return NULL if mmap failed instead of asserting it does not.
9179         (calloc): Check for integer overflow.
9181         * elf/dl-minimal.c (__strtoul_internal): Fix parsing of numbers bigger
9182         than LONG_MAX / 10.
9184 2007-07-03  Jakub Jelinek  <jakub@redhat.com>
9186         [BZ #4702]
9187         * nis/nss-default.c: Include errno.h.
9188         (init): Preserve errno.
9190 2007-07-02  Ulrich Drepper  <drepper@redhat.com>
9192         * sysdeps/unix/sysv/linux/bits/socket.h (PF_UNIX): Update comment.
9194 2007-06-30  Ulrich Drepper  <drepper@redhat.com>
9196         * sysdeps/unix/sysv/linux/bits/socket.h: Add PF_RXRPC and AF_RXRPC.
9198 2007-06-29  Martin Schwidefsky  <schwidefsky@de.ibm.com>
9200         * sysdeps/unix/sysv/linux/bits/socket.h: Add PF_IUCV and AF_IUCV.
9202 2007-06-29  Martin Schwidefsky  <schwidefsky@de.ibm.com>
9204         * sysdeps/s390/dl-procinfo.c: New file.
9205         * sysdeps/s390/dl-procinfo.h: New file.
9206         * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: New file.
9208 2007-06-29  Jakub Jelinek  <jakub@redhat.com>
9210         * elf/dl-load.c (open_verify): Find .note.ABI-tag notes even
9211         in PT_NOTE segments with multiple notes.
9212         * elf/readelflib.c (process_elf_file): Likewise.
9214 2007-06-22  Ulrich Drepper  <drepper@redhat.com>
9216         * nis/nis_domain_of.c (__nis_domain_of): Make the code a bit more
9217         ISO C compliant.
9219 2007-06-19  Ulrich Drepper  <drepper@redhat.com>
9221         * elf/dl-close.c (free_mem): Free _dl_scope_free_list.
9223 2007-06-13  Jakub Jelinek  <jakub@redhat.com>
9225         * include/link.h: Don't include rtld-lowlevel.h.
9226         (struct link_map): Remove l_scope_lock.
9227         * sysdeps/generic/ldsodefs.h: Don't include rtld-lowlevel.h.
9228         (_dl_scope_free_list): New field (variable) in _rtld_global.
9229         (DL_LOOKUP_SCOPE_LOCK): Remove.
9230         (_dl_scope_free): New prototype.
9231         * elf/dl-runtime.c (_dl_fixup): Don't use __rtld_mrlock_*lock.
9232         Don't pass DL_LOOKUP_SCOPE_LOCK to _dl_lookup_symbol_x.
9233         (_dl_profile_fixup): Likewise.
9234         * elf/dl-sym.c (do_sym): Likewise.  Use wrapped _dl_lookup_symbol_x
9235         whenever !RTLD_SINGLE_THREAD_P, use THREAD_GSCOPE_SET_FLAG and
9236         THREAD_GSCOPE_RESET_FLAG around it.
9237         * elf/dl-close.c (_dl_close_worker): Don't use
9238         __rtld_mrlock_{change,done}.  Call _dl_scope_free on the old
9239         scope.  Make sure THREAD_GSCOPE_WAIT () happens if any old
9240         scopes were queued or if l_scope_mem has been abandoned.
9241         * elf/dl-open.c (_dl_scope_free): New function.
9242         (dl_open_worker): Use it.  Don't use __rtld_mrlock_{change,done}.
9243         * elf/dl-support.c (_dl_scope_free_list): New variable.
9244         * elf/dl-lookup.c (add_dependency): Remove flags argument.
9245         Remove DL_LOOKUP_SCOPE_LOCK handling.
9246         (_dl_lookup_symbol_x): Adjust caller.  Remove DL_LOOKUP_SCOPE_LOCK
9247         handling.
9248         * elf/dl-object.c (_dl_new_object): Don't use
9249         __rtld_mrlock_initialize.
9251 2007-06-19  Ulrich Drepper  <drepper@redhat.com>
9253         * sysdeps/generic/ldsodefs.h (rtld_global): Reorder some elements
9254         to fill in holes
9255         (rtld_global_ro): Likewise.
9257 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
9259         * elf/dl-addr.c (_dl_addr): Skip PT_LOAD checking if l_contiguous.
9260         Move PT_LOAD checking to...
9261         (_dl_addr_inside_object): ... here, new function.
9262         * elf/dl-sym.c (do_sym): If not l_contiguous,
9263         call _dl_addr_inside_object.
9264         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Likewise.
9265         * dlfcn/dlinfo.c (dlinfo_doit): Likewise.
9266         * elf/dl-open.c (dl_open_worker): Likewise.
9267         (_dl_addr_inside_object): New function if IS_IN_rtld.
9268         * elf/dl-load.c (_dl_map_object_from_fd): Set l_contiguous if no
9269         holes are present or are PROT_NONE protected.
9270         * include/link.h (struct link_map): Add l_contiguous field.
9271         * sysdeps/generic/ldsodefs.h (_dl_addr_inside_object): New prototype.
9273 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
9274             Tomas Janousek  <tjanouse@redhat.com>
9275             Ulrich Drepper  <drepper@redhat.com>
9277         [BZ #4647]
9278         * resolv/res_send.c (send_dg): Remove socket_pf.  Use ipv6_unavail
9279         member in __res_state, only convaddr4to6 if nssocks[ns] is a PF_INET6
9280         socket.
9281         * resolv/resolv.h (__res_state): Add ipv6_unavail member.  Make
9282         unused member a bitmap.
9283         * resolv/res_init.c (__res_vinit): Reset ipv6_unavail if IPv6
9284         servers are configured.
9286 2007-06-18  Jakub Jelinek  <jakub@redhat.com>
9288         * elf/rtld.c (dl_main): Don't call init_tls more than once.
9290 2007-06-17  Andreas Schwab  <schwab@suse.de>
9292         * sysdeps/generic/initfini.c: Tell gcc about the nonstandard sections.
9294 2007-06-16  Andreas Jaeger  <aj@suse.de>
9296         [BZ #4125]
9297         * sysdeps/unix/sysv/linux/sys/ptrace.h
9298         (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK,
9299         PTRACE_O_TRACEVFORK, PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC,
9300         PTRACE_O_TRACEVFORKDONE, PTRACE_O_TRACEEXIT, PTRACE_O_MASK,
9301         PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK, PTRACE_EVENT_CLONE,
9302         PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE, PTRACE_EVENT_EXIT):
9303         Define.
9304         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
9305         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
9306         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
9307         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
9309 2007-06-16  Ulrich Drepper  <drepper@redhat.com>
9311         [BZ #4599]
9312         * sysdeps/unix/sysv/linux/check_pf.c (make_request): When
9313         determining whether there are IPv4/IPv6 addresses, ignore loopback
9314         addresses.
9316 2007-06-14 Uros Bizjak <ubizjak@gmail.com>
9318         * soft-fp/soft-fp.h (CMPtype): Define to "int" if undefined.
9319         * soft-fp/eqdf2.c (__eqdf2): Use CMPtype instead of int
9320         as the return type.  Change type of "r" variable to CMPtype.
9321         * soft-fp/eqsf2.c (__eqsf2): Likewise.
9322         * soft-fp/eqtf2.c (__eqtf2): Likewise.
9323         * soft-fp/gedf2.c (__gedf2): Likewise.
9324         * soft-fp/gesf2.c (__gesf2): Likewise.
9325         * soft-fp/getf2.c (__getf2): Likewise.
9326         * soft-fp/ledf2.c (__ledf2): Likewise.
9327         * soft-fp/lesf2.c (__lesf2): Likewise.
9328         * soft-fp/letf2.c (__letf2): Likewise.
9329         * soft-fp/unorddf2 (__unorddf2): Likewise.
9330         * soft-fp/unordsf2 (__unordsf2): Likewise.
9331         * soft-fp/unordtf2 (__unordtf2): Likewise.
9333 2007-06-09  Ulrich Drepper  <drepper@redhat.com>
9335         * elf/do-lookup.h (do_lookup_x): Read r_nlist before r_list and
9336         make sure gcc doesn't mess around with this.
9338 2007-06-08  Ulrich Drepper  <drepper@redhat.com>
9340         * elf/dl-lookup.c (_dl_lookup_symbol_x): Remove use of r_nlist.
9342 2007-06-08  Jakub Jelinek  <jakub@redhat.com>
9344         * elf/dl-close.c (_dl_close_worker): Remove all to be removed
9345         libraries from the global scope at once and call THREAD_GSCOPE_WAIT
9346         at most once per _dl_close_worker.
9348 2007-06-08  Ulrich Drepper  <drepper@redhat.com>
9350         * sysdeps/unix/sysv/linux/bits/sched.h: Make second parameter of
9351         __sched_cpucount as const.
9352         * posix/sched_cpucount.c: Adjust.
9354         * posix/sched_cpucount.c (__sched_cpucount): Allow using special
9355         instruction for counting bits.
9356         * sysdeps/x86_64/sched_cpucount.c: New file.
9358 2007-06-07  Ulrich Drepper  <drepper@redhat.com>
9360         * configure.in: Avoid variable named BASH.
9361         * config.make.in: Likewise.
9362         Patch in part by Mike Frysinger.
9364 2007-06-06  Jakub Jelinek  <jakub@redhat.com>
9366         [BZ #4586]
9367         * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Treat
9368         pseudo-zeros as zero.
9369         * sysdeps/x86_64/ldbl2mpn.c: New file.
9370         * sysdeps/ia64/ldbl2mpn.c: New file.
9372 2007-06-04  Jakub Jelinek  <jakub@redhat.com>
9374         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (nextafterl): Remove
9375         unused ily variable.  Fix nextafterl on +-__LDBL_MAX__ and +-Inf.
9376         Remove unreachable code at the end.
9378 2007-06-01  Steven Munroe  <sjmunroe@us.ibm.com>
9380         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Correct description of
9381         ldbl-128ibm in comment.
9382         (fpclassifyl): Correct classification of denormals.
9383         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (nextafterl): Correct
9384         return value for MIN denormal. Rewrite using long double math too
9385         correctly handle denormals and canonicalize the results.
9387 2007-06-05  Jakub Jelinek  <jakub@redhat.com>
9389         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c
9390         (__mpn_construct_long_double): Fix conversion where result ought
9391         to be smaller than __LDBL_MIN__, or the low double should be
9392         denormal.  Fix decision where to negate low double - honor round
9393         to even rules.
9394         * stdio-common/tst-sprintf2.c: Include string.h.
9395         (COMPARE_LDBL): Define.
9396         (TEST): Also test whether a string hexadecimal float representation
9397         can be parsed back to the number.
9398         (main): Add a couple of further tests.
9400 2007-06-04  Jakub Jelinek  <jakub@redhat.com>
9402         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c
9403         (PRINT_FPHEX_LONG_DOUBLE): Fix printing numbers where lower double
9404         is non-zero, but smaller than 2 * __DBL_MIN__.
9405         * stdio-common/tst-sprintf2.c: New test.
9406         * stdio-common/Makefile (tests): Add tst-sprintf2.
9408         * math/test-misc.c (main): Don't run last batch of tests with
9409         IBM long double format.
9411 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
9413         * sysdeps/powerpc/powerpc32/970/fpu/Implies: New file.
9414         * sysdeps/powerpc/powerpc32/power5/fpu/Implies: New file.
9415         * sysdeps/powerpc/powerpc32/power5+/fpu/Implies: New file.
9416         * sysdeps/powerpc/powerpc32/power6/fpu/Implies: New file.
9417         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
9418         * sysdeps/powerpc/powerpc64/970/fpu/Implies: New file.
9419         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: New file.
9420         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: New file.
9421         * sysdeps/powerpc/powerpc64/power6/fpu/Implies: New file.
9422         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: New file.
9423         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/fpu/Implies: New file.
9424         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/fpu/Implies:
9425         New file.
9426         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/fpu/Implies:
9427         New file.
9428         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/fpu/Implies:
9429         New file.
9430         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/Implies:
9431         New file.
9432         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/fpu/Implies:
9433         New file.
9434         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/fpu/Implies: New file.
9435         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/fpu/Implies:
9436         New file.
9437         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/fpu/Implies:
9438         New file.
9439         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/fpu/Implies:
9440         New file.
9441         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/Implies:
9442         New file.
9443         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/fpu/Implies:
9444         New file.
9446 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
9448         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S: Move.
9449         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: To here.
9450         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrintf.S: Move.
9451         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: To here.
9452         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llround.S: Move.
9453         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: To here.
9454         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llroundf.S: Move.
9455         * sysdeps/powerpc/powerpc32/power4/fpu/s_llroundf.S: To here.
9457 2007-05-22  Steven Munroe  <sjmunroe@us.ibm.com>
9459         * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S
9460         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
9461         * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S
9462         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
9463         * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S
9464         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
9465         * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S
9466         (LONG_DOUBLE_COMPAT): Specify correct version, GLIBC_2_1.
9468 2007-05-21  Steven Munroe  <sjmunroe@us.ibm.com>
9470         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: New file.
9471         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.c: New file.
9472         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: New file.
9473         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: New file.
9475 2007-03-15  Steven Munroe  <sjmunroe@us.ibm.com>
9477         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S
9478         [LONG_DOUBLE_COMPAT]: Add compat_symbol for llrintl@@GLIBC_2_1.
9480 2006-02-13  Steven Munroe  <sjmunroe@us.ibm.com>
9482         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: New File
9483         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: New File
9484         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: New File
9485         * sysdeps/powerpc/powerpc32/power6/fpu/s_llroundf.S: New File
9487 2006-10-20  Steven Munroe  <sjmunroe@us.ibm.com>
9489         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: New file.
9490         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: New file.
9492 2006-10-03  Steven Munroe  <sjmunroe@us.ibm.com>
9494         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llround.S: New file.
9495         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llroundf.S: New file.
9497         * sysdeps/powerpc/powerpc32/powerpc64/fpu/Makefile: Moved.
9498         * sysdeps/powerpc/powerpc32/powerpc64/fpu/mpa.c: Likewise.
9499         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile: To here.
9500         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
9502 2006-09-29  Steven Munroe  <sjmunroe@us.ibm.com>
9504         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S: New file.
9505         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: New file.
9506         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: New file.
9507         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: New file.
9509 2006-09-28  Steven Munroe  <sjmunroe@us.ibm.com>
9511         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: New file.
9512         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llroundf.S: New file.
9513         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: New file.
9514         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
9515         * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: New file.
9516         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: New file.
9518 2006-08-31  Steven Munroe  <sjmunroe@us.ibm.com>
9520         * sysdeps/powerpc/powerpc32/powerpc64/fpu/Makefile: New file.
9521         * sysdeps/powerpc/powerpc32/powerpc64/fpu/mpa.c: New file.
9522         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile: New file.
9523         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: New file.
9525 2006-06-15  Steven Munroe  <sjmunroe@us.ibm.com>
9527         * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S: New file.
9528         * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S: New file.
9529         * sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S: New file.
9530         * sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S: New file.
9531         * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S: New file.
9532         * sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S: New file.
9533         * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S: New file.
9534         * sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S: New file.
9535         * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S: New file.
9536         * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S: New file.
9537         * sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S: New file.
9538         * sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S: New file.
9539         * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S: New file.
9540         * sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S: New file.
9541         * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S: New file.
9542         * sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S: New file.
9544 2006-03-20  Steven Munroe  <sjmunroe@us.ibm.com>
9546         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrint.S: New file.
9547         * sysdeps/powerpc/powerpc32/powerpc64/fpu/s_llrintf.S: New file.
9549 2007-06-01  Steven Munroe  <sjmunroe@us.ibm.com>
9551         * sysdeps/powerpc/powerpc32/power6/memset.S: New file.
9552         * sysdeps/powerpc/powerpc64/power6/memset.S: New file.
9554 2007-05-31  Steven Munroe  <sjmunroe@us.ibm.com>
9556         * sysdeps/powerpc/powerpc32/970/Implies: New file.
9557         * sysdeps/powerpc/powerpc32/power5/Implies: New file.
9558         * sysdeps/powerpc/powerpc32/power5+/Implies: New file.
9559         * sysdeps/powerpc/powerpc32/power6/Implies: New file.
9560         * sysdeps/powerpc/powerpc32/power6x/Implies: New file.
9561         * sysdeps/powerpc/powerpc64/970/Implies: New file.
9562         * sysdeps/powerpc/powerpc64/power5/Implies: New file.
9563         * sysdeps/powerpc/powerpc64/power5+/Implies: New file.
9564         * sysdeps/powerpc/powerpc64/power6/Implies: New file.
9565         * sysdeps/powerpc/powerpc64/power6x/Implies: New file.
9567 2007-05-21  Steven Munroe  <sjmunroe@us.ibm.com>
9569         * sysdeps/powerpc/powerpc32/power4/memset.S: New file
9571 2007-03-13  Steven Munroe  <sjmunroe@us.ibm.com>
9573         * sysdeps/powerpc/powerpc64/memcpy.S: Improve aligned loop to minimize
9574         branch miss-predicts. Ensure that cache line crossing does not impact
9575         dispatch grouping.
9577 2006-12-13  Steven Munroe  <sjmunroe@us.ibm.com>
9579         * sysdeps/powerpc/powerpc64/power4/memcopy.h: Replace with include
9580         "../../powerpc32/power4/memcopy.h".
9581         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: Replace with include
9582         "../../powerpc32/power4/wordcopy.c".
9584 2006-10-03  Steven Munroe  <sjmunroe@us.ibm.com>
9586         * sysdeps/powerpc/powerpc32/powerpc64/Makefile: Moved.
9587         * sysdeps/powerpc/powerpc32/powerpc64/memcopy.h: Likewise.
9588         * sysdeps/powerpc/powerpc32/powerpc64/wordcopy.c: Likewise.
9589         * sysdeps/powerpc/powerpc32/power4/Makefile: To here.
9590         * sysdeps/powerpc/powerpc32/power4/memcopy.h: Likewise.
9591         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Likewise.
9593 2006-09-10  Steven Munroe  <sjmunroe@us.ibm.com>
9595         * sysdeps/powerpc/powerpc32/power6/memcpy.S: New file.
9597 2006-08-31  Steven Munroe  <sjmunroe@us.ibm.com>
9599         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: New file.
9600         * sysdeps/powerpc/powerpc32/powerpc64/Makefile: New file.
9601         * sysdeps/powerpc/powerpc32/powerpc64/memcopy.h: New file.
9602         * sysdeps/powerpc/powerpc32/powerpc64/wordcopy.c: New file.
9603         * sysdeps/powerpc/powerpc64/power4/Makefile: New file.
9604         * sysdeps/powerpc/powerpc64/power4/memcopy.h: New file.
9605         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: New file.
9606         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: New file.
9608 2006-07-06  Steven Munroe  <sjmunroe@us.ibm.com>
9610         * sysdeps/powerpc/powerpc64/power6/memcpy.S: New file.
9612 2006-03-20  Steven Munroe  <sjmunroe@us.ibm.com>
9614         * sysdeps/powerpc/powerpc32/power4/memcmp.S: New file.
9615         * sysdeps/powerpc/powerpc32/power4/memcpy.S: New file.
9616         * sysdeps/powerpc/powerpc32/power4/memset.S: New file.
9617         * sysdeps/powerpc/powerpc32/power4/strncmp.S: New file.
9618         * sysdeps/powerpc/powerpc64/power4/memcmp.S: New file.
9619         * sysdeps/powerpc/powerpc64/power4/memcpy.S: New file.
9620         * sysdeps/powerpc/powerpc64/power4/strncmp.S: New file.
9622 2007-05-29  Roland McGrath  <roland@redhat.com>
9624         * po/Makefile (po-sed-cmd): New variable.
9625         (libc.pot.files): Move sed command text in there, avoid \ inside ''.
9627 2007-05-29  Ulrich Drepper  <drepper@redhat.com>
9629         * crypt/md5-crypt.c: Fix comment.
9631         * nscd/nscd_helper.c (get_mapping): Handle short replies instead
9632         of crashing.  When this is the case or if the reply is malformed,
9633         don't try to close the new file descriptor since it does not
9634         exist.
9635         Patch in part by Guillaume Chazarain <guichaz@yahoo.fr>.
9637 2007-05-28  Jakub Jelinek  <jakub@redhat.com>
9639         * sysdeps/unix/sysv/linux/futimes.c (miss_utimensat): Don't define
9640         if __NR_utimensat is not defined.
9642 2007-05-26  Ulrich Drepper  <drepper@redhat.com>
9644         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Include <sysdep.h>.
9646 2007-05-25  Jakub Jelinek  <jakub@redhat.com>
9648         * io/bits/fcntl2.h (__open_2): Add nonnull attribute.
9649         (open): Fix comment typos.  Don't call __open_2 if flags
9650         is a compile time constant without O_CREAT.
9651         (__open64_2): Add nonnull attribute.
9652         (open64): Fix comment typos.  Don't call __open64_2 if flags
9653         is a compile time constant without O_CREAT.
9654         (__openat_2): Add nonnull attribute, fix nonnull attribute
9655         on redirect.
9656         (openat): Fix comment typos.  Don't call __openat_2 if flags
9657         is a compile time constant without O_CREAT.
9658         (__openat64_2): Add nonnull attribute, fix nonnull attribute
9659         on redirect.
9660         (openat64): Fix comment typos.  Don't call __openat64_2 if flags
9661         is a compile time constant without O_CREAT.
9663 2007-05-24  Ulrich Drepper  <drepper@redhat.com>
9665         * Makerules (sysd-rules): Define PTW for ptw-* files.
9666         * Versions: Define GLIBC_2.7 for libc.
9667         * include/stdio.h: Declare __fortify_fail.
9668         * debug/fortify_fail.c: New file.
9669         * debug/Makefile (routines): Add fortify_fail.
9670         * debug/chk_fail.c: Use __fortify_fail.
9671         * debug/stack_chk_fail.c: Likewise.
9672         * io/Versions: Export __open_2, __open64_2, __openat_2, and
9673         __openat64_2 for GLIBC_2.7.
9674         * io/fcntl.h: When compiling with fortification, include bits/fcntl2.h.
9675         * io/open.c: Define *_2 variant of function which checks for O_CREAT
9676         and fails if necessary.
9677         * io/open64.c: Likewise.
9678         * io/openat.c: Likewise.
9679         * io/openat64.c: Likewise.
9680         * sysdeps/unix/sysv/linux/open64.c: Likewise.
9681         * sysdeps/unix/sysv/linux/openat.c: Likewise.
9682         * sysdeps/unix/sysv/linux/openat64.c: Likewise.
9683         * io/bits/fcntl2.h: New file.
9684         * include/fcntl.h: Declare __open_2, __open64_2, __openat_2, and
9685         __openat64_2.
9686         * include/bits/fcntl2.h: New file.
9687         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
9688         Add open_2.
9689         * sysdeps/unix/sysv/linux/open_2.c: New file.
9691 2007-05-21  Ulrich Drepper  <drepper@redhat.com>
9693         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Pass correct value
9694         as second parameter to handle_intel.
9696         * nscd/aicache.c (addhstaiX): If reported TTL is zero don't cache
9697         the entry.
9699         * sysdeps/unix/sysv/linux/x86_64/sysconf.c: Move cache information
9700         handling to ...
9701         * sysdeps/x86_64/cacheinfo.c: ... here.  New file.
9702         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
9703         cacheinfo.
9704         * sysdeps/x86_64/memcpy.S: Complete rewrite.
9705         * sysdeps/x86_64/mempcpy.S: Adjust appropriately.
9706         Patch by Evandro Menezes <evandro.menezes@amd.com>.
9708         * sysdeps/unix/sysv/linux/i386/epoll_pwait.S: New file.
9710 2007-05-21  Jakub Jelinek  <jakub@redhat.com>
9712         [BZ #4525]
9713         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add epoll_pwait.
9714         * sysdeps/unix/sysv/linux/epoll_pwait.c: New file.
9715         * sysdeps/unix/sysv/linux/syscalls.list (epoll_pwait): Remove.
9717         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h (epoll_pwait): Declare.
9719         [BZ #4514]
9720         * stdio-common/vfprintf.c (vfprintf): Don't shadow workstart variable,
9721         reinitialize workend at the start of each do_positional format spec
9722         loop, free workstart before do_positional loops.
9723         (printf_unknown): Fix size of work_buffer.
9724         * stdio-common/tst-sprintf.c (main): Add 3 new testcases.
9726         * malloc/hooks.c (MALLOC_STATE_VERSION): Bump.
9727         (public_sET_STATe): If ms->version < 3, put all chunks into
9728         unsorted chunks and clear {fd,bk}_nextsize fields of largebin
9729         chunks.
9731         * malloc/malloc.c [MALLOC_DEBUG]: Revert 2007-05-13 changes.
9732         * malloc/hooks.c: Likewise.
9733         * malloc/arena.c: Likewise.
9734         * malloc/malloc.c (do_check_malloc_state): Don't assert
9735         n_mmaps is not greater than n_mmaps_max.  This removes the need
9736         for the previous change.
9738         * malloc/Makefile (CFLAGS-malloc.c): Revert accidental
9739         2007-05-07 commit.
9741 2007-05-19  Ulrich Drepper  <drepper@redhat.com>
9743         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_PRIVATE_FUTEX):
9744         Define for kernel >= 2.6.22.
9746 2007-05-18  Ulrich Drepper  <drepper@redhat.com>
9748         * elf/dl-close.c (_dl_close_worker): When removing object from
9749         global scope, wait for all lookups to finish afterwards.
9750         * elf/dl-open.c (add_to_global): When global scope array must
9751         grow, allocate a new one and free old array only after all
9752         lookups finish.
9753         * elf/dl-runtime.c (_dl_fixup): Protect using global scope.
9754         (_dl_lookup_symbol_x): Likewise.
9755         * elf/dl-support.c: Define _dl_wait_lookup_done.
9756         * sysdeps/generic/ldsodefs.h (struct rtld_global): Add
9757         _dl_wait_lookup_done.
9759         * malloc/malloc.c (do_check_chunk): Correct check for mmaped block
9760         not overlapping with arena.
9762         * malloc/mcheck.c (reallochook): If size==0, free the block.
9764         * rt/tst-shm.c: Use fstat64 instead of fstat.
9766         * sysdeps/unix/sysv/linux/i386/sync_file_range.S: Fix case where
9767         __NR_sync_file_range is not defined.
9769 2007-05-17  Ulrich Drepper  <drepper@redhat.com>
9771         Dummy files to prevent stub versions from being used.
9772         * sysdeps/x86_64/fpu/k_cosl.c: New file.
9773         * sysdeps/x86_64/fpu/k_rem_pio2l.c: New file.
9774         * sysdeps/x86_64/fpu/k_sinl.c: New file.
9775         * sysdeps/x86_64/fpu/k_tanl.c: New file.
9777         * version.h (VERSION): Set to 2.6.90.
9779 2007-05-14  Ulrich Drepper  <drepper@redhat.com>
9781         * version.h (VERSION): Define to 2.6.
9782         * include/features.h (__GLIBC_MINOR__): Define to 6.
9784         * malloc/malloc.c: Use all small bin slots on 64-bit archs.
9786         * malloc/malloc.c (largebin_index): Really have 32 buckets with 64
9787         sizes.
9789 2007-05-13  Ulrich Drepper  <drepper@redhat.com>
9791         * malloc/malloc.c [MALLOC_DEBUG]: Keep track of current maximum
9792         number of mmaps.  n_mmaps_max is the target.
9793         * malloc/hooks.c: Likewise.
9794         * malloc/arena.c: Likewise.
9796 2007-05-12  Andreas Jaeger  <aj@suse.de>
9798         * sysdeps/unix/sysv/linux/tst-getcpu.c: Include <unistd.h> for
9799         getpid.
9801 2007-05-11  Ulrich Drepper  <drepper@redhat.com>
9803         * elf/dl-close.c (_dl_close_worker): Help gcc to optimize by
9804         adding new variables.
9806         * elf/dl-open.c (add_to_global): Introduce variable ns to help gcc
9807         optimize.  Completely extend global scope array before making the
9808         new entries visible.
9810 2007-05-10  Ulrich Drepper  <drepper@redhat.com>
9812         * sysdeps/unix/sysv/linux/tst-getcpu.c: New file.
9813         * sysdeps/unix/sysv/linux/Makefile [subdir=posix] (tests): Add
9814         tst-getcpu.
9816         * include/link.h: Move l_version and l_nversion members around to
9817         fill gaps.
9819         * scripts/check-c++-types.sh: Don't use -fnu89-inline option.
9821         * sysdeps/unix/sysv/linux/sched_setaffinity.c
9822         (__sched_setaffinity_new): If syscall was successful and
9823         RESET_VGETCPU_CACHE is defined, use it before returning.
9824         * sysdeps/unix/sysv/linux/x86_64/sched_setaffinity.c: New file.
9826         * io/sys/stat.h: Make sure struct timespec is defined for
9827         __USE_ATFILE.
9829         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Define UTIME_NOW and
9830         UTIME_OMIT.
9831         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise.
9832         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
9833         * sysdeps/unix/sysv/linux/alpha/bits/stat.h: Likewise.
9834         * sysdeps/unix/sysv/linux/ia64/bits/stat.h: Likewise.
9835         * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
9836         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
9837         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_UTIMENSAT.
9838         * io/sys/stat.h: Declare utimensat, futimens.
9839         * io/utimensat.c: New file.
9840         * io/futimens.c: New file.
9841         * sysdeps/unix/sysv/linux/utimensat.c: New file.
9842         * sysdeps/unix/sysv/linux/futimens.c: New file.
9843         * io/Makefile (routines): Add utimensat, futimens.
9844         * io/Versions: Add utimensat, futimens to GLIBC_2.6.
9845         * sysdeps/unix/sysv/linux/lutimes.c: New file.
9846         * sysdeps/unix/sysv/linux/futimes.c: Use utimensat syscall if
9847         available.
9849         * include/sys/cdefs.h: Redefine __nonnull so that test for
9850         incorrect parameters in the libc code itself are not omitted.
9852 2007-05-09  Jakub Jelinek  <jakub@redhat.com>
9854         * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Don't raise overflow
9855         exception in addition to inexact when asked to raise only FE_INEXACT.
9857         [BZ #3427]
9858         * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Don't clear exceptions
9859         in *envp.
9861 2007-05-07  Ulrich Drepper  <drepper@redhat.com>
9863         [BZ #4403]
9864         * string/strfry.c (strfry): Make result more random.
9866 2007-05-07  Richard Henderson  <rth@redhat.com>
9868         * sysdeps/alpha/fpu/bits/mathinline.h (__isnanl): Don't define
9869         if __NO_LONG_DOUBLE_MATH.
9870         * sysdeps/unix/sysv/linux/alpha/ioperm.c: If BWX insns not
9871         available in the compiler, add .arch directive to the assembly.
9873 2007-05-07  Jakub Jelinek  <jakub@redhat.com>
9875         * sysdeps/alpha/fpu/s_nearbyint.c (nearbyintl): Fix version on
9876         compat_symbol to GLIBC_2_1.
9877         * sysdeps/alpha/fpu/s_fmin.S (fminl): Likewise.
9878         * sysdeps/alpha/fpu/s_trunc.c (truncl): Likewise.
9879         * sysdeps/alpha/fpu/s_fmax.S (fmaxl): Likewise.
9880         * sysdeps/alpha/fpu/s_lrint.c (lrintl, llrintl): Likewise.
9881         * sysdeps/alpha/fpu/s_lround.c (lroundl, llroundl): Likewise.
9882         * sysdeps/alpha/fpu/s_round.c (roundl): Likewise.
9883         * sysdeps/alpha/fpu/s_isnan.c (isnanl): Provide compat_symbol in
9884         libc, not libm.
9885         (__isnanl): New compat_symbol.
9887 2007-05-07  Ulrich Drepper  <drepper@redhat.com>
9888             Jakub Jelinek  <jakub@redhat.com>
9890         * malloc/arena.c (heap_info): Add mprotect_size field, adjust pad.
9891         (new_heap): Initialize mprotect_size.
9892         (grow_heap): When growing, only mprotect from mprotect_size till
9893         new_size if mprotect_size is smaller.  When shrinking, use PROT_NONE
9894         MMAP for __libc_enable_secure only, otherwise use MADV_DONTNEED.
9896 2007-04-30  Steven Munroe  <sjmunroe@us.ibm.com>
9897             Peter Bergner  <bergner@us.ibm.com>
9899         * sysdeps/powerpc/bits/fenv.h: Declare __fe_mask_env extern.
9900         Define FE_NOMASK_ENV as FE_EANBLED_ENV.  Define FE_MASK_ENV.
9901         * sysdeps/powerpc/fpu/Makefile: Add fe_mask to libm-support.
9902         * sysdeps/powerpc/fpu/fe_mask.c: New file.
9903         * sysdeps/powerpc/fpu/fe_nomask.c: Correct comment.
9904         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept):
9905         Call __fe_mask_env() if all FP exceptions disabled.
9906         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Copy high 32-bits
9907         from old FPSCR to new fenv to propagate DFP rounding modes.
9908         Call __fe_mask_env() if FP exceptions previously enabled.
9909         * sysdeps/powerpc/fpu/fesetenv.c (fesetenv): Change mask to merge
9910         exceptions from env.  Use __fe_nomask_env() or __fe_mask_env() when
9911         transitioning from all exceptions disabled to any exception enabled
9912         or visa versa.
9913         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Change mask to
9914         merge exceptions from env.  Call __fe_nomask_env or __fe_mask_env
9915         when transitioning from all exceptions disabled to any exception
9916         enabled or visa versa.
9917         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fe_nomask.c: Moved to...
9918         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: ...here.
9919         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fe_nomask.c: Moved to...
9920         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: ...here.
9921         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c: New file.
9922         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c: New file.
9924 2007-05-06  Ulrich Drepper  <drepper@redhat.com>
9926         [BZ #4465]
9927         * posix/unistd.h: Remove __THROW from fdatasync.
9929 2007-05-06  Mike Frysinger  <vapier@gentoo.org>
9931         [BZ #4465]
9932         * sysdeps/unix/sysv/linux/syscalls.list (fdatasync): Add "C" to args.
9934 2007-05-06  Ulrich Drepper  <drepper@redhat.com>
9936         * stdio-common/vfprintf.c (process_string_arg): Optimize
9937         ridiculous precision in wide char code printing multi-byte string.
9938         Reported by Jim Meyering <jim@meyering.net>.
9940         [BZ #4131]
9941         * elf/dl-addr.c (_dl_addr): Compare address with actual segment
9942         boundaries to work around systems with overlapping binary loading.
9943         Based on a patch by Suzuki <suzuki@in.ibm.com>.
9945 2007-05-04  Ulrich Drepper  <drepper@redhat.com>
9947         * stdio-common/vfprintf.c (process_string_arg): Adjust call to
9948         __mbsnrtowcs after last change.
9950         * locale/programs/linereader.c (get_symname): Fix adding final NUL.
9951         (get_ident): Likewise.
9953 2007-05-03  Jakub Jelinek  <jakub@redhat.com>
9955         * soft-fp/op-common.h (FP_TRUNC): Replace raising of FP_EX_INEXACT
9956         with setting the sticky bit.
9957         * math/test-misc.c (main): Add more truncation tests.
9959 2007-04-14  Uros Bizjak  <ubizjak@gmail.com>
9961         * soft-fp/floatunsidf.c (__floatunsidf): Use DFtype instead of
9962         double in the function declaration.
9963         * soft-fp/floatundidf.c (__floatundidf): Use DFtype instead of
9964         double in the function declaration.
9965         * soft-fp/floatunsisf.c (__floatunsisf): Use SFtype instead of
9966         float in the function declaration.
9967         * soft-fp/floatunsisf.c (__floatunsisf): Use SFtype instead of
9968         float in the function declaration.
9970         * soft-fp/extended.h (FP_UNPACK_RAW_E): Do not increase X##_e for
9971         denormal operands.  Do not generate FP_EX_DENORM exception.
9972         (FP_UNPACK_RAW_EP): Ditto.
9973         (FP_UNPACK_SEMIRAW_E): Use FP_UNPACK_RAW_E instead of
9974         undefined _FP_UNPACK_RAW_E.
9975         (FP_UNPACK_SEMIRAW_EP): Use FP_UNPACK_RAW_EP instead of
9976         undefined _FP_UNPACK_RAW_EP.
9977         (FP_PACK_SEMIRAW_E): Use FP_PACK_RAW_E instead of
9978         undefined _FP_PACK_RAW_E.
9979         (FP_PACK_SEMIRAW_EP): Use FP_PACK_RAW_EP instead of
9980         undefined _FP_PACK_RAW_EP.
9982         * soft-fp/op-2.h (_FP_FRAC_COPY_2_2): Define as alias to
9983         _FP_FRAC_COPY_2.
9984         * soft-fp/op-4.h (_FP_FRAC_COPY_2_2): Define as alias to
9985         _FP_FRAC_COPY_4.
9987 2007-04-16  Uros Bizjak  <ubizjak@gmail.com>
9988             Jakub Jelinek  <jakub@redhat.com>
9990         * soft-fp/op-common.h (FP_EXTEND): Do not abort when
9991         _FP_EXPBIAS_##dfs == _FP_EXPBIAS_##sfs.  Handle denormals for
9992         this case.
9993         * soft-fp/op-common.h (FP_TRUNC): Ditto.
9995 2007-05-03  Jakub Jelinek  <jakub@redhat.com>
9997         * math/test-misc.c (main): Add tests for rounding long double
9998         values close to smallest double denormalized value to double.
10000 2007-04-30  Joseph Myers  <joseph@codesourcery.com>
10002         * soft-fp/op-common.h (FP_TRUNC): Correct off-by-one error in
10003         condition for truncating to 0.  Set sticky bit for such
10004         truncation.
10006 2007-05-02  Jakub Jelinek  <jakub@redhat.com>
10008         * stdio-common/vfprintf.c (process_string_arg): Use a VLA rather than
10009         fixed length array for ignore.
10011 2007-04-30  Ulrich Drepper  <drepper@redhat.com>
10013         [BZ #4438]
10014         * stdio-common/vfprintf.c (process_string_arg): Don't overflow the
10015         stack for large precisions.
10016         * stdio-common/test-vfprintf.c (main): Add test for large
10017         precision.
10019 2007-04-30  Jakub Jelinek  <jakub@redhat.com>
10021         * stdio-common/printf_fp.c (___printf_fp): Don't print negative sign
10022         for exponent 0.
10023         * stdio-common/tfformat.c (sprint_doubles): Add a new test.
10025         [BZ #4439]
10026         * resolv/inet_ntop.c (inet_ntop4): Take terminating '\0' into
10027         account in the size check.
10028         * resolv/tst-inet_ntop.c: New test.
10029         * resolv/Makefile (tests): Add tst-inet_ntop.
10031 2007-04-30  Ulrich Drepper  <drepper@redhat.com>
10032             Jakub Jelinek  <jakub@redhat.com>
10034         [BZ #4349]
10035         * malloc/malloc.c: Keep separate list for first blocks on the bin
10036         lists with a given size.  This helps skipping over list elements
10037         we know won't fit in two places.
10038         Inspired by a patch by Tomash Brechko <tomash.brechko@gmail.com>.
10040 2007-04-28  Ulrich Drepper  <drepper@redhat.com>
10042         [BZ #4102]
10043         * sysdeps/posix/getaddrinfo.c (default_labels): Assign separate
10044         label to Teredo tunnel addresses 2001://32.
10046 2007-04-27  Ulrich Drepper  <drepper@redhat.com>
10048         * locale/programs/ld-collate.c (collate_read): Allow order_start
10049         after copy.
10051         * locale/programs/ld-collate.c (collate_read): Fix printing of
10052         error message.
10054         [BZ #3213]
10055         * locale/C-translit.h.in: Add entry for U2044.
10057         [BZ #4342]
10058         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Allow
10059         hexa-decimal floats without exponent.
10060         * stdio-common/tstscanf.c (main): Adjust Test 8 test for success.
10062 2007-04-25  Ulrich Drepper  <drepper@redhat.com>
10064         * sysdeps/unix/sysv/linux/bits/sched.h: Declare sched_getcpu.
10065         * sysdeps/unix/sysv/linux/sched_getcpu.c: New file.
10066         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: New file.
10067         * sysdeps/unix/sysv/linux/Versions: Export sched_getcpu for
10068         GLIBC_2.6.
10069         * sysdeps/unix/sysv/linux/Makefile [subdir=posix] (sysdep_routines):
10070         Add sched_getcpu.
10072 2007-04-25  Jakub Jelinek  <jakub@redhat.com>
10074         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Return -1 instead
10075         of 0 after the out_fail label.
10077 2007-04-25  Ulrich Drepper  <drepper@redhat.com>
10079         [BZ #4406]
10080         * iconv/gconv_charset.h (strip): Allow ':'.
10081         * iconv/iconv_open.c (iconv_open): Adjust comment.
10083 2007-04-25  Jakub Jelinek  <jakub@redhat.com>
10085         * libio/bits/stdio.h (fgetc_unlocked): Add extern inline optimized
10086         version.
10088 2007-04-23  Jakub Jelinek  <jakub@redhat.com>
10090         [BZ #4381]
10091         * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Ensure sufficient
10092         alignment of buffer and tmp_buffer.
10093         * nis/nss_nis/nis-hosts.c (internal_nis_gethostent_r,
10094         internal_gethostbyname2_r, _nss_nis_gethostbyaddr_r): Ensure sufficient
10095         alignment of buffer.
10096         * resolv/nss_dns/dns-hosts.c (getanswer_r): Likewise.  Handle buflen
10097         bigger than INT_MAX.
10098         * resolv/nss_dns/dns-network.c (getanswer_r): Likewise.  Add errnop and
10099         h_errnop arguments.  Fail if buflen is too small.
10100         (_nss_dns_getnetbyname_r, _nss_dns_getnetbyaddr_r): Adjust callers.
10102 2007-04-23  Jakub Jelinek  <jakub@redhat.com>
10104         [BZ #4405]
10105         * iconvdata/gconv-modules (E13B): Add a missing slash to the alias
10106         name.  Patch by Aurelien Jarno <aurelien@aurel32.net>.
10108 2007-04-22  Roland McGrath  <roland@redhat.com>
10110         * elf/elf.h (NT_PRXFPREG): New macro.
10112 2007-04-19  Andreas Jaeger  <aj@suse.de>
10114         [BZ #3905]
10115         * bits/in.h (IPV6_ROUTER_ALERT, IPV6_MTU_DISCOVER, IPV6_MTU,
10116         IPV6_RECVERR, IPV6_V6ONLY, IPV6_JOIN_ANYCAST, IPV6_LEAVE_ANYCAST):
10117         Added.
10119 2007-04-19  Ulrich Drepper  <drepper@redhat.com>
10121         * include/sys/mman.h: Mark madvise hidden.
10122         * misc/madvise.c: Add libc_hidden_def.
10124 2007-04-06  Jakub Jelinek  <jakub@redhat.com>
10126         * nis/nis_domain_of.c (__nis_domain_of): New function.
10127         * include/rpcsvc/nislib.h (__nis_domain_of): New prototype.
10128         * nis/nis_lookup.c (nis_lookup): Use __nis_domain_of.
10129         * nis/nis_call.c (rec_dirsearch): Likewise.
10130         (first_shoot): Likewise.  Remove search_parent_first argument.
10131         (struct nis_server_cache): Rename search_parent_first field
10132         to search_parent.
10133         (nis_server_cache_search, nis_server_cache_add): Rename
10134         search_parent_first argument to search_parent.
10135         (__nisfind_server): Likewise.  If search_parent, call
10136         __nis_domain_of.
10138 2007-04-18  Ulrich Drepper  <drepper@redhat.com>
10140         * sysdeps/posix/getaddrinfo.c: Remove commented-out code.
10142 2007-04-17  Ulrich Drepper  <drepper@redhat.com>
10144         [BZ #4368]
10145         * stdlib/stdlib.h: Remove obsolete part of comment for realpath.
10147 2007-04-16  Ulrich Drepper  <drepper@redhat.com>
10149         [BZ #4364]
10150         * posix/unistd.h (_XOPEN_VERSION): Define appropriately for SUSv3.
10152 2007-04-15  Jakub Jelinek  <jakub@redhat.com>
10154         * locale/programs/locarchive.c (INITIAL_NUM_NAMES,
10155         INITIAL_SIZE_STRINGS, INITIAL_NUM_LOCREC): Update to accomodate
10156         current number of locales in SUPPORTED.
10157         (create_archive): Initialize serial.
10158         (enlarge_archive): Preserve aliases rather than duplicating
10159         their locrecs.
10161 2007-04-13  Jakub Jelinek  <jakub@redhat.com>
10163         * libio/genops.c (_IO_default_finish): Call _IO_lock_fini
10164         after _IO_un_link, not before it.
10166         * stdio-common/printf_fp.c (___printf_fp): Fix exponent -4
10167         special case handling when wcp == wstartp + 1.  Fix a comment typo.
10168         * stdio-common/tfformat.c (sprint_doubles): Add a new testcase.
10170 2007-03-30  Jakub Jelinek  <jakub@redhat.com>
10172         * libio/libio.h (__underflow, __uflow, __overflow, __wunderflow,
10173         __wuflow, __woverflow, _IO_getc, _IO_putc, _IO_peekc_locked, _IO_padn,
10174         _IO_sgetn, _IO_seekoff, _IO_seekpos, _IO_getwc, _IO_putwc, _IO_wpadn):
10175         Remove __THROW.
10176         * libio/fileops.c (new_do_write, _IO_file_xsgetn_mmap,
10177         _IO_file_xsgetn_maybe_mmap): Likewise.
10178         * libio/oldfileops.c (old_do_write): Likewise.
10179         * libio/libioP.h (_IO_switch_to_get_mode, _IO_switch_to_wget_mode,
10180         _IO_init_marker, _IO_init_wmarker, _IO_default_uflow,
10181         _IO_wdefault_uflow, _IO_default_setbuf, _IO_default_seekpos,
10182         _IO_do_write, _IO_new_do_write, _IO_old_do_write, _IO_wdo_write,
10183         _IO_flush_all_lockp, _IO_flush_all, _IO_cleanup,
10184         _IO_flush_all_linebuffered, _IO_new_fgetpos, _IO_old_fgetpos,
10185         _IO_new_fsetpos, _IO_old_fsetpos, _IO_new_fgetpos64,
10186         _IO_old_fgetpos64, _IO_new_fsetpos64, _IO_old_fsetpos64,
10187         _IO_file_setbuf, _IO_file_seekoff, _IO_file_xsputn, _IO_file_xsgetn,
10188         _IO_file_underflow, _IO_file_underflow_mmap,
10189         _IO_file_underflow_maybe_mmap, _IO_file_overflow, _IO_file_attach,
10190         _IO_file_open, _IO_file_fopen, _IO_file_write, _IO_file_read,
10191         _IO_file_sync, _IO_file_close_it, _IO_file_finish,
10192         _IO_new_file_attach, _IO_new_file_close_it, _IO_new_file_finish,
10193         _IO_new_file_fopen, _IO_new_file_setbuf, _IO_file_setbuf_mmap,
10194         _IO_new_file_sync, _IO_new_file_underflow, _IO_new_file_overflow,
10195         _IO_new_file_seekoff, _IO_new_file_write, _IO_new_file_xsputn,
10196         _IO_old_file_setbuf, _IO_old_file_seekoff, _IO_old_file_xsputn,
10197         _IO_old_file_underflow, _IO_old_file_overflow, _IO_old_file_attach,
10198         _IO_old_file_fopen, _IO_old_file_write, _IO_old_file_sync,
10199         _IO_old_file_close_it, _IO_old_file_finish, _IO_wfile_xsputn,
10200         _IO_wfile_setbuf, _IO_wfile_sync, _IO_wfile_underflow,
10201         _IO_wfile_overflow, _IO_wfile_seekoff, _IO_old_proc_open,
10202         _IO_old_proc_close, _IO_getdelim, _IO_flush_all_internal,
10203         _IO_adjust_column_internal, _IO_default_uflow_internal,
10204         _IO_default_xsgetn_internal, _IO_wdefault_xsputn_internal,
10205         _IO_wdefault_xsgetn_internal, _IO_wdefault_uflow_internal,
10206         _IO_file_setbuf_internal, _IO_file_seekoff_internal,
10207         _IO_file_xsputn_internal, _IO_file_xsgetn_internal,
10208         _IO_file_close_it_internal, _IO_file_underflow_internal,
10209         _IO_file_overflow_internal, _IO_file_attach_internal,
10210         _IO_file_fopen_internal, _IO_file_sync_internal,
10211         _IO_file_finish_internal, _IO_wfile_xsputn_internal,
10212         _IO_wfile_seekoff_internal, _IO_wfile_sync_internal,
10213         _IO_switch_to_wget_mode_internal, _IO_padn_internal,
10214         _IO_switch_to_get_mode_internal, _IO_seekoff_unlocked,
10215         _IO_seekpos_unlocked): Likewise.
10216         (_IO_strtod, _IO_dtoa, _IO_outfloat, _IO_read, _IO_write,
10217         _IO_lseek, _IO_close, _IO_fstat): Remove unused prototypes.
10219 2007-04-16  Jakub Jelinek  <jakub@redhat.com>
10221         * locale/programs/locarchive.c (show_archive_content): Fix sizeof
10222         argument in xmalloc size computation.
10224 2007-04-01  Jakub Jelinek  <jakub@redhat.com>
10226         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Use
10227         math_opt_barrier and math_force_eval macros.
10229 2007-03-27  Jakub Jelinek  <jakub@redhat.com>
10231         [BZ #3306]
10232         * math/math_private.h (math_opt_barrier, math_force_eval): Define.
10233         * sysdeps/i386/fpu/math_private.h: New file.
10234         * sysdeps/x86_64/fpu/math_private.h: New file.
10235         * math/s_nexttowardf.c (__nexttowardf): Use math_opt_barrier and
10236         math_force_eval macros.  Use "+m" constraint on asm rather than
10237         "=m" and "m".
10238         * math/s_nextafter.c (__nextafter): Likewise.
10239         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward):
10240         Likewise.
10241         * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
10242         * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward): Likewise.
10243         * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
10244         * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Use
10245         math_opt_barrier and math_force_eval macros.
10246         * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl): Likewise.
10247         * sysdeps/ieee754/ldbl-96/s_nextafterl.c (__nextafterl): Likewise.
10248         * sysdeps/i386/fpu/s_nexttoward.c: Include float.h.
10249         (__nexttoward): Use math_opt_barrier and
10250         math_force_eval macros.  Use "+m" constraint on asm rather than
10251         "=m" and "m".  Only use asm to force double result if
10252         FLT_EVAL_METHOD is 2.
10253         * sysdeps/i386/fpu/s_nexttowardf.c: Include float.h.
10254         (__nexttowardf): Use math_opt_barrier and
10255         math_force_eval macros.  Use "+m" constraint on asm rather than
10256         "=m" and "m".  Only use asm to force double result if
10257         FLT_EVAL_METHOD is not 0.
10258         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Include float.h.
10259         (__nexttowardf): Use math_opt_barrier and
10260         math_force_eval macros.  If FLT_EVAL_METHOD is not 0, force
10261         x to float using asm.
10262         * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c: Include float.h.
10263         (__nldbl_nexttowardf): Use math_opt_barrier and
10264         math_force_eval macros.  If FLT_EVAL_METHOD is not 0, force
10265         x to float using asm.
10266         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Include float.h.
10267         (__nexttowardf): Use math_opt_barrier and math_force_eval
10268         macros.  If FLT_EVAL_METHOD is not 0, force x to float using asm.
10269         * math/bug-nextafter.c (zero, inf): New variables.
10270         (main): Add new tests.
10271         * math/bug-nexttoward.c (zero, inf): New variables.
10272         (main): Add new tests.
10274 2007-03-22  Jakub Jelinek  <jakub@redhat.com>
10276         [BZ #3427]
10277         * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Clear all
10278         exceptions both in SW and MXCSR.
10279         * sysdeps/x86_64/fpu/feupdateenv.c: New file.
10280         * sysdeps/x86_64/fpu/feenablxcpt.c (feenableexcept): Remove dead code.
10281         * sysdeps/x86_64/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
10282         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
10283         in MXCSR if SSE is available.
10284         * sysdeps/i386/fpu/feupdateenv.c: Include unistd.h, dl-procinfo.h
10285         and ldsodefs.h.
10286         (__feupdateenv): Query exceptions also from MXCSR if SSE is available.
10287         Fix comment typo.
10288         * sysdeps/ia64/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions.
10289         Return 0 rather than 1.
10290         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Fix comment typo.
10291         Remove incorrect part of a comment.  Fix argument to feraiseexcept.
10292         * math/test-fenv.c (feholdexcept_tests): New function.
10293         (main): Call it.
10295 2007-01-05  Richard B. Kreckel  <kreckel@ginac.de>
10297         [BZ #3427]
10298         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
10299         in SW.
10301 2007-04-13  Jakub Jelinek  <jakub@redhat.com>
10303         [BZ #4344]
10304         * elf/ldconfig.c (search_dir): Fix 2 off-by-2 errors.
10305         Reported by David Anderson <davea42@earthlink.net>.
10307 2007-04-07  Ulrich Drepper  <drepper@redhat.com>
10309         * posix/sys/wait.h: Remove unnecessary forward declaration.
10311 2007-04-05  Jakub Jelinek  <jakub@redhat.com>
10313         * nis/nis_call.c (__nisfind_server): Replace (*dir)->do_servers
10314         with obj->do_servers after first_shoot.
10316 2007-04-03  Ulrich Drepper  <drepper@redhat.com>
10318         * posix/Makefile (routines): Add sched_cpucount.
10319         (tests): Add tst-cpucount.
10320         * posix/sched_cpucount.c: New file.
10321         * posix/tst-cpucount.c: New file.
10322         * posix/Versions: Export __sched_cpucount with version GLIBC_2.6.
10323         * bits/sched.h: Define __CPU_COUNT.  Declare __sched_cpucount.
10324         * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
10325         * posix/sched.h: Define CPU_COUNT.
10327 2007-03-27  Jakub Jelinek  <jakub@redhat.com>
10329         * posix/fnmatch.c (STRUCT): Define.
10330         (fnmatch): Pass NULL as last argument to internal_fn{,w}match.
10331         * posix/fnmatch_loop.c (struct STRUCT): New type.
10332         (FCT): Add ends argument.  If ends != NULL and normal * is
10333         seen in the pattern, store current pattern and string pointers
10334         and return.  Adjust recursive calls.
10335         (EXT): Adjust FCT callers.
10336         (STRUCT): Undef at the end of the file.
10337         * posix/Makefile (tests): Add tst-fnmatch2.
10338         * posix/tst-fnmatch2.c: New test.
10340 2007-04-01  Jakub Jelinek  <jakub@redhat.com>
10342         * sysdeps/ia64/fpu/fesetround.c (fesetround): Return 0 on success
10343         and 1 on failure.
10345         * sysdeps/unix/sysv/linux/sync_file_range.c (sync_file_range):
10346         Change last argument to unsigned int.
10348 2007-03-23  Jakub Jelinek  <jakub@redhat.com>
10350         * scripts/check-local-headers.sh: Filter out sys/capability.h.
10352 2007-03-22  Jakub Jelinek  <jakub@redhat.com>
10354         * config.h.in (HAVE_LIBCAP): Add.
10355         * nscd/selinux.h: Include sys/capability.h rather than non-existent
10356         sys/capabilities.h.
10357         * nscd/selinux.c (preserve_capabilities): Use cap_free instead of
10358         free_caps.  Cast away const from 4th cap_set_flag argument.
10360 2007-03-26  Ulrich Drepper  <drepper@redhat.com>
10362         * sysdeps/unix/sysv/linux/Versions: Move sync_file_range to
10363         GLIBC_2.6.
10364         * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
10365         Add sync_file_range.
10366         Reported by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
10368 2007-03-19  Steven Munroe  <sjmunroe@us.ibm.com>
10370         * sysdeps/powerpc/bits/atomic.h
10371         [!MUTEX_HINT_ACQ]: Define MUTEX_HINT_ACQ.
10372         [!MUTEX_HINT_REL]: Define MUTEX_HINT_REL.
10373         (__arch_compare_and_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
10374         (__arch_compare_and_exchange_val_32_rel): Add MUTEX_HINT_REL to lwarx.
10375         (__arch_atomic_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
10376         (__arch_atomic_exchange_rel_32_rel): Add MUTEX_HINT_REL to lwarx.
10377         * sysdeps/powerpc/powerpc32/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6X]:
10378         Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
10379         (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
10380         (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
10381         * sysdeps/powerpc/powerpc64/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6D]:
10382         Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
10383         (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
10384         (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
10385         (__arch_compare_and_exchange_bool_64_acq): Add MUTEX_HINT_ACQ to lwarx.
10386         (__arch_compare_and_exchange_bool_64_rel): Add MUTEX_HINT_REL to lwarx.
10387         (__arch_compare_and_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
10388         (__arch_compare_and_exchange_val_64_rel): Add MUTEX_HINT_REL to lwarx.
10389         (__arch_atomic_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
10390         (__arch_atomic_exchange_rel_64_rel): Add MUTEX_HINT_REL to lwarx.
10392 2007-03-20  Jakub Jelinek  <jakub@redhat.com>
10394         * sysdeps/unix/sysv/linux/powerpc/libc-start.c
10395         (__cache_line_size): Define the variable here.  Add
10396         attribute_hidden, remove weak_extern.
10397         (__libc_start_main): Set __cache_line_size
10398         unconditionally.
10399         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
10400         (__cache_line_size): Define the variable here.  Add
10401         attribute_hidden, remove weak_extern.
10402         (DL_PLATFORM_AUXV): Set __cache_line_size
10403         unconditionally.
10404         * sysdeps/powerpc/powerpc32/dl-machine.c (__cache_line_size): Remove
10405         weak_extern, add attribute_hidden.
10406         (__elf_machine_runtime_setup): Assume __cache_line_size is always
10407         defined in ld.so.
10408         * sysdeps/powerpc/powerpc32/memset.S (__cache_line_size): Remove
10409         definition.
10410         * sysdeps/powerpc/powerpc64/memset.S (__cache_line_size): Likewise.
10412 2007-03-26  Jakub Jelinek  <jakub@redhat.com>
10414         [BZ #4276]
10415         * timezone/africa: Update from tzdata2007d.
10416         * timezone/asia: Likewise.
10417         * timezone/australasia: Likewise.
10418         * timezone/backward: Likewise.
10419         * timezone/europe: Likewise.
10420         * timezone/iso3166.tab: Likewise.
10421         * timezone/leapseconds: Likewise.
10422         * timezone/northamerica: Likewise.
10423         * timezone/southamerica: Likewise.
10424         * timezone/zone.tab: Likewise.
10426         * timezone/private.h: Update from tzcode2007d.
10427         * timezone/zdump.c: Likewise.
10428         * timezone/zic.c: Likewise.
10430 2007-03-21  Jakub Jelinek  <jakub@redhat.com>
10432         * nis/nis_call.c: Include bits/libc-lock.h, sys/stat.h, unistd.h.
10433         (nis_server_cache, nis_server_cache_lock, nis_cold_start_mtime): New
10434         variables.
10435         (nis_server_cache_search, nis_server_cache_add): New functions.
10436         (__nisfind_server): Use them.  Add dbp and flags argument, if
10437         call __nisbind_create.
10438         (__nisbind_create): Add server_used and current_ep arguments,
10439         only call __nis_findfastest if server_used is ~0.
10440         (__do_niscall2, __prepare_niscall): Adjust callers.
10441         (ckey_cache, ckey_cache_size, ckey_cache_allocated, ckey_cache_pid,
10442         ckey_cache_euid, ckey_cache_lock): New variables.
10443         (get_ckey): New function.
10444         (__nisbind_connect): If not dbp->use_udp, pass IPPROTO_TCP to
10445         __pmap_getnisport.  Save __pmap_getnisport result in
10446         dbp->addr.sin_port if non-zero.  Use get_ckey to create conversation
10447         key.
10448         * nis/nis_lookup.c (nis_lookup): Likewise.
10449         * nis/nis_table.c (nis_list): Likewise.
10450         * nis/rpcsvc/nislib.h (__nisbind_create, __nisfind_server): Adjust
10451         prototypes.
10453         * nis/nss_nisplus/nisplus-pwd.c (_nss_nisplus_getpwnam_r,
10454         _nss_nisplus_getpwuid_r): Pass USE_DGRAM flag to nis_list.
10455         * nis/nss_nisplus/nisplus-service.c (_nss_nisplus_getservbyname_r,
10456         _nss_nisplus_getservbyport_r): Likewise.
10457         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r,
10458         _nss_nisplus_getnetbyaddr_r): Likewise.
10459         * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_getspnam_r): Likewise.
10460         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r,
10461         _nss_nisplus_getntohost_r): Likewise.
10462         * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r,
10463         _nss_nisplus_getrpcbynumber_r): Likewise.
10465 2007-03-20  Jakub Jelinek  <jakub@redhat.com>
10467         * configure.in (libc_cv_gnu89_inline): Only do compile test.
10468         * configure: Rebuilt.
10470         * soft-fp/double.h (_FP_UNION_D): Use _FP_W_TYPE for frac
10471         bit-fields.
10472         * soft-fp/extended.h (_FP_UNION_E): Likewise.
10474 2006-06-07  Joseph Myers  <joseph@codesourcery.com>
10476         [BZ #2831]
10477         * soft-fp/quad.h (_FP_UNION_Q): Use _FP_W_TYPE for frac
10478         bit-fields.
10480 2007-03-18  Jakub Jelinek  <jakub@redhat.com>
10482         * nscd/gai.c: Include alloca.h.
10483         (__libc_use_alloca): Define.
10485 2007-03-16  Jakub Jelinek  <jakub@redhat.com>
10487         * elf/dl-open.c (dl_open_worker): Declare l in 2 different
10488         smaller scopes.
10489         * elf/dl-dst.h (DL_DST_REQ_STATIC): Add l as macro argument.
10490         (DL_DST_REQUIRED): Adjust user.
10492         * include/dlfcn.h (struct link_map): New forward decl.
10494         * inet/getnameinfo.c: Include stddef.h.
10495         (getnameinfo): Use offsetof.
10497         * time/tst-mktime2.c (do_test): Don't rely on signed wrap.
10499         * stdio-common/vfprintf.c (_itoa): Undef before redefining.
10501         * string/strerror_l.c: Include stdlib.h.
10503         * configure.in (libc_cv_gnu89_inline): Test for -fgnu89-inline.
10504         * config.make.in (gnu89-inline-CFLAGS): New variable.
10505         * Makeconfig (CFLAGS): Use $(gnu89-inline-CFLAGS) together with
10506         -std=gnu99.
10507         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline): Define.
10508         * argp/argp.h: Use it.
10509         * bits/mathinline.h: Likewise.
10510         * bits/sigset.h: Likewise.
10511         * bits/string.h: Likewise.
10512         * ctype/ctype.h: Likewise.
10513         * hurd/hurd.h: Likewise.
10514         * hurd/hurd/fd.h: Likewise.
10515         * hurd/hurd/port.h: Likewise.
10516         * hurd/hurd/signal.h: Likewise.
10517         * hurd/hurd/threadvar.h: Likewise.
10518         * hurd/hurd/userlink.h: Likewise.
10519         * io/sys/stat.h: Likewise.
10520         * libio/bits/stdio.h: Likewise.
10521         * libio/bits/stdio2.h: Likewise.
10522         * mach/lock-intern.h: Likewise.
10523         * mach/mach/mig_support.h: Likewise.
10524         * math/bits/cmathcalls.h: Likewise.
10525         * posix/bits/unistd.h: Likewise.
10526         * socket/bits/socket2.h: Likewise.
10527         * stdlib/bits/stdlib.h: Likewise.
10528         * stdlib/stdlib.h: Likewise.
10529         * string/argz.h: Likewise.
10530         * string/bits/string2.h: Likewise.
10531         * string/bits/string3.h: Likewise.
10532         * sysdeps/alpha/fpu/bits/mathinline.h: Likewise.
10533         * sysdeps/generic/inttypes.h: Likewise.
10534         * sysdeps/generic/machine-lock.h: Likewise.
10535         * sysdeps/generic/machine-sp.h: Likewise.
10536         * sysdeps/i386/fpu/bits/mathinline.h: Likewise.
10537         * sysdeps/i386/i486/bits/string.h: Likewise.
10538         * sysdeps/ia64/fpu/bits/mathinline.h: Likewise.
10539         * sysdeps/mach/alpha/machine-lock.h: Likewise.
10540         * sysdeps/mach/alpha/machine-sp.h: Likewise.
10541         * sysdeps/mach/i386/machine-lock.h: Likewise.
10542         * sysdeps/mach/powerpc/machine-lock.h: Likewise.
10543         * sysdeps/mach/powerpc/machine-sp.h: Likewise.
10544         * sysdeps/powerpc/fpu/bits/mathinline.h: Likewise.
10545         * sysdeps/s390/bits/string.h: Likewise.
10546         * sysdeps/s390/fpu/bits/mathinline.h: Likewise.
10547         * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
10548         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
10549         * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
10550         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
10551         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Likewise.
10552         * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
10553         * wcsmbs/bits/wchar2.h: Likewise.
10554         * wcsmbs/wchar.h: Likewise.
10555         * stdlib/gmp.h: Likewise.  Include <features.h> to get
10556         __extern_inline definition.
10558 2007-03-15  Jakub Jelinek  <jakub@redhat.com>
10560         * locale/programs/ld-ctype.c (find_translit): Return NULL if ctype is
10561         NULL.
10563         [BZ #3919]
10564         * math/libm-test.inc (log_test): Test -Inf and NaN.
10565         (log10_test, log1p_test, log2_test): Test -Inf.
10566         * sysdeps/i386/fpu/e_log.S (__ieee754_log): Don't raise
10567         FE_INVALID when argument is qNaN.
10568         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
10569         * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
10570         * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
10571         * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Replace
10572         andb $1, %ah with testb $1, %ah, don't test for parity, instead
10573         testb $4, %ah and jump if non-zero.
10574         * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Likewise.
10575         * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Likewise.
10577         [BZ #4101]
10578         * argp/argp-help.c (hol_cluster_cmp): Fix comparisons used to find
10579         ancestors with the same depths.
10580         Patch by Niels Moeller <nisse@lysator.liu.se>.
10581         (filter_doc): Don't crash if argp is NULL.
10582         * argp/Makefile (tests): Add tst-argp2.
10583         * argp/tst-argp2.c: New test.
10585         [BZ #4130]
10586         * login/utmp_file.c (setutent_file): Use O_LARGEFILE for
10587         open_not_cancel_2.
10588         (updwtmp_file): Likewise.
10590         [BZ #4181]
10591         * inet/inet6_opt.c (add_padding): Only insert padding if npad > 0.
10592         (inet6_opt_append): Don't check extlen is big enough if extbuf
10593         is NULL.
10594         (inet6_opt_finish): Likewise.
10595         * inet/Makefile (tests): Add test-inet6_opt.
10596         * inet/test-inet6_opt.c: New test.
10598         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Never
10599         reallocate the buffer, instead fail for MSG_TRUNC or for EBUSY
10600         NLMSG_ERR.  Instead use a page sized buffer.
10601         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use page sized
10602         buffer.
10604 2007-03-14  Richard Henderson  <rth@redhat.com>
10606         * sysdeps/alpha/fpu/s_llround.c: New file.
10607         * sysdeps/alpha/fpu/s_llroundf.c: New file.
10608         * sysdeps/alpha/fpu/s_lround.c: New file.
10609         * sysdeps/alpha/fpu/s_lroundf.c: New file.
10610         * sysdeps/alpha/fpu/s_round.c: New file.
10611         * sysdeps/alpha/fpu/s_roundf.c: New file.
10612         * sysdeps/alpha/fpu/s_trunc.c: New file.
10613         * sysdeps/alpha/fpu/s_truncf.c: New file.
10615         * sysdeps/alpha/fpu/s_ceil.c: Rewrite without branches.
10616         * sysdeps/alpha/fpu/s_ceilf.c: Likewise.
10617         * sysdeps/alpha/fpu/s_floor.c: Likewise.
10618         * sysdeps/alpha/fpu/s_floorf.c: Likewise.
10619         * sysdeps/alpha/fpu/s_rint.c: Likewise.
10620         * sysdeps/alpha/fpu/s_rintf.c: Likewise.
10622         * sysdeps/alpha/fpu/s_fmax.S: New file.
10623         * sysdeps/alpha/fpu/s_fmaxf.S: New file.
10624         * sysdeps/alpha/fpu/s_fmin.S: New file.
10625         * sysdeps/alpha/fpu/s_fminf.S: New file.
10626         * sysdeps/alpha/fpu/s_isnan.c: New file.
10627         * sysdeps/alpha/fpu/s_isnanf.c: New file.
10628         * sysdeps/alpha/fpu/s_llrint.c: New file.
10629         * sysdeps/alpha/fpu/s_llrintf.c: New file.
10630         * sysdeps/alpha/fpu/s_lrint.c: New file.
10631         * sysdeps/alpha/fpu/s_lrintf.c: New file.
10632         * sysdeps/alpha/fpu/s_nearbyint.c: New file.
10633         * sysdeps/alpha/fpu/s_nearbyintf.c: New file.
10635         * sysdeps/alpha/fpu/bits/mathinline.h (__floorf, __floor): Remove.
10636         (__fdimf, fdimf, __fdim, fdim): Remove.
10637         (__signbitf, __signbit, __signbitl): Use gcc builtin if available.
10638         (__isnanf, __isnan, __isnanl): New.
10640 2007-03-13  Richard Henderson  <rth@redhat.com>
10642         * sysdeps/ieee754/ldbl-128/Makefile: New file.
10644 2007-03-13  Richard Henderson  <rth@redhat.com>
10646         * sysdeps/alpha/Makefile (sysdep-CFLAGS): Force dynamic rounding.
10647         * sysdeps/alpha/fpu/bits/mathinline.h (__signbitl): New.
10648         * sysdeps/alpha/fpu/libm-test-ulps: Regenerate.
10649         * sysdeps/unix/sysv/linux/alpha/alphaev6/fpu/Implies: New file.
10650         * sysdeps/unix/sysv/linux/alpha/alphaev67/fpu/Implies: New file.
10651         * sysdeps/unix/sysv/linux/alpha/fpu/Implies: New file.
10653 2007-03-13  Richard Henderson  <rth@redhat.com>
10655         * elf/dl-support.c (_dl_aux_init): Honor DL_PLATFORM_AUXV.
10656         * sysdeps/unix/sysv/linux/alpha/dl-auxv.h: New file.
10657         * sysdeps/unix/sysv/linux/alpha/dl-support.c: New file.
10658         * sysdeps/unix/sysv/linux/alpha/dl-sysdep.c (__libc_alpha_cache_shape):
10659         Move to dl-auxv.h; initialize instead of extern weak.
10660         (DL_PLATFORM_AUXV): Move to dl-auxv.h; don't test for undef
10661         weak symbol.
10662         * sysdeps/unix/sysv/linux/alpha/sysconf.c (__libc_alpha_cache_shape):
10663         Extern instead of initialized.
10665 2007-03-13  Richard Henderson  <rth@redhat.com>
10667         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S: Add support for
10668         __sigsuspend_nocancel.
10670 2007-03-06  Ulrich Drepper  <drepper@redhat.com>
10672         * sysdeps/posix/getaddrinfo.c (get_scope): Correct test for
10673         172.16/12 address range.
10675 2007-03-02  Jakub Jelinek  <jakub@redhat.com>
10677         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Retry with
10678         a new netlink socket if NLMSG_ERR -EBUSY is seen after some MSG_TRUNC
10679         message.
10681 2007-03-01  Jakub Jelinek  <jakub@redhat.com>
10683         [BZ #4069]
10684         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Check for NaN
10685         earlier.
10686         * math/libm-test.inc (pow_test): Add more tests involving NaNs.
10688         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Avoid invalid exception
10689         for x qNaN and y either +-inf or non-integer value.
10690         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Likewise.
10691         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
10692         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
10694 2007-02-10  Mike Frysinger  <vapier@gentoo.org>
10696         * sysdeps/unix/sysv/linux/sh/Makefile: Remove sys/io.h
10697         from sysdep_headers.
10699 2007-02-28  Jakub Jelinek  <jakub@redhat.com>
10701         * time/tzfile.c (find_transition): Instead of a linear search try to
10702         guess the transition index, use a linear search if the result is at
10703         most 10 transitions away from the guess or binary search otherwise.
10705 2007-02-27  Jakub Jelinek  <jakub@redhat.com>
10707         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Fix
10708         memory reallocation.
10710 2007-02-21  Ulrich Drepper  <drepper@redhat.com>
10712         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Add branch predictions
10713         and fix some typos.
10714         Optimize use of TOLOWER.
10716         [BZ #3325]
10717         * sysdeps/i386/fpu/e_fmodf.S: Revert last changes, keep using fprem.
10718         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
10719         * sysdeps/i386/fpu/e_fmod.S: Likewise.
10721         [BZ #3458]
10722         * sysdeps/unix/sysv/linux/posix_madvise.c: New file.
10723         * sysdeps/unix/sysv/linux/syscalls.list: Remove posix_madvise entry.
10725         [BZ #4076]
10726         * io/ftw.c (ftw_startup): Handle special case of FTW_CHDIR in /.
10727         (open_dir_stream): Likewise.
10728         * io/Makefile (tests): Add bug-ftw5.
10729         * io/bug-ftw5.c: New file.
10731         * nscd/hstcache.c (cache_addhst): Remove unnecessary conditional.
10732         * nscd/servicescache.c (cache_addserv): Likewise.
10734         * nscd/grpcache.c (cache_addgr): In case a record changed on
10735         refresh, adjust key_copy.
10737         [BZ #4074]
10738         * nscd/pwdcache.c (cache_addpw): In case a record changed on
10739         refresh, adjust key_copy.
10741         [BZ #4070]
10742         * stdio-common/printf_fp.c (___printf_fp): Handle a few more
10743         special cases.
10744         * stdio-common/tfformat.c (sprint_doubles): Some more tests.
10746 2007-02-19  Ulrich Drepper  <drepper@redhat.com>
10748         * stdio-common/printf_fp.c (___printf_fp): Cleanups and minor
10749         optimization.
10751         * stdio-common/vfscanf.c: Small cleanups throughout.
10753 2007-02-18  Ulrich Drepper  <drepper@redhat.com>
10755         [BZ #3325]
10756         * sysdeps/i386/fpu/e_fmodf.S: Use fprem1 instead of fprem.
10757         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
10758         * sysdeps/i386/fpu/e_fmod.S: Likewise.
10759         Patch by Jared Casper <jaredcasper@gmail.com>.
10761         * sysdeps/unix/closedir.c: Outside libc don't use locking.
10762         * sysdeps/unix/opendir.c: Likewise.
10763         * sysdeps/unix/readdir.c: Likewise.
10765         [BZ #2211]
10766         * stdio-common/vfscanf.c: Handle localized digits etc for floating
10767         point numbers.
10768         Patch mostly by Hamed Malek <hamed@farsiweb.info>.
10770         * stdio-common/vfscanf.c: Fix problems in width accounting.
10771         * stdio-common/tst-sscanf.c (double_tests): New tests.
10772         (main): Hook them up.
10774         * stdio-common/vfscanf.c: Remove unused WIDTH handling.
10775         More simplifications of floating-point reader.
10777         * stdio-common/Makefile (tests): Add tst-swscanf.
10778         * stdio-common/tst-sscanf.c: Make tests usable for swscanf
10779         testing.
10780         * stdio-common/tst-swscanf.c: New file.
10782 2007-02-17  Ulrich Drepper  <drepper@redhat.com>
10784         [BZ #2633]
10785         * libio/stdio.h: Define struct _IO_FILE in global namespace.
10786         * setjmp/setjmp.h: Define __jmp_buf_tag in global namespace.
10787         Remove using for __jmp_buf_tag.
10788         * locale/locale.h (struct lconv): Also define in std namespace.
10789         * wcsmbs/wchar.h: Move using declaration for tm out of namespace.
10791         [BZ #3842]
10792         * sysdeps/posix/euidaccess.c [_LIBC] (euidaccess): Remove shortcut
10793         using __libc_enable_secure.
10795         [BZ #3818]
10796         * sysdeps/unix/sysv/linux/sys/acct.h (struct acct_v3): Define.
10798         [BZ #3745]
10799         * locale/programs/ld-collate.c (handle_ellipsis): Fix generation
10800         of names for ellipsises.
10802         [BZ #3348]
10803         * malloc/memusage.sh: Cleanups.
10804         * debug/xtrace.sh: Quoting and trap changes.
10806 2007-02-16  Ulrich Drepper  <drepper@redhat.com>
10808         * locale/iso-3166.def: Add Jersey, Guernsey, and Isle Of Man entries.
10810         * locale/iso-3166.def: Update entry for Serbia.
10811         * locale/iso-4217.def: Define RSD, remove CSD.
10813         * sysdeps/x86_64/bits/atomic.h: One more change, this time for 16-
10814         and 64-bit operations.
10816         [BZ #4040]
10817         * sysdeps/i386/i486/bits/atomic.h: One more change, this time for
10818         16-bit operations.
10820         * nscd/nscd.c (parse_opt): One more conversion to use send instead
10821         of writev.
10823 2007-02-15  Ulrich Drepper  <drepper@redhat.com>
10825         [BZ #3991]
10826         * assert/assert.h (assert): Simplify.
10827         (assert_perror): Likewise.
10828         Patch by Israel G. Lugo <ilugo@bridonsecurity.com>.
10830         * nscd/nscd_helper.c (open_socket): Don't send padding bytes from
10831         reqdata.
10833         * sysdeps/unix/sysv/linux/x86_64/send.c (__libc_send): Cosmetic
10834         change: don't pass NULL in place of an integer.
10836 2007-02-02  Bruno Haible  <bruno@clisp.org>
10838         [BZ #3954]
10839         * iconvdata/ksc5601.c (__ksc5601_sym_to_ucs, __ksc5601_sym_from_ucs):
10840         Add mapping for U+327E.
10841         * iconvdata/ksc5601.h (KSC5601_SYMBOL): Increment.
10842         * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
10843         mapping of 0xD9 0xE8.
10844         * iconvdata/uhc.c (BODY for FROM_LOOP, BODY for TO_LOOP): Disable
10845         mapping of U+327E.
10846         Reported by Jungshik Shin <jungshik@google.com>.
10848         [BZ #3955]
10849         * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
10850         mapping of 0xD9 0xE6 and of 0xD9 0xE7.
10851         Reported by Jungshik Shin <jungshik@google.com>.
10853 2007-02-14  Ulrich Drepper  <drepper@redhat.com>
10855         * sysdeps/x86_64/bits/atomic;h: Fix asm parameters for some
10856         byte variants.
10858         [BZ #4040]
10859         * sysdeps/i386/i486/bits/atomic.h: Fix asm parameters for some
10860         byte variants.  Patch mostly be tom@tommay.net.
10862 2007-02-14  Jakub Jelinek  <jakub@redhat.com>
10864         [BZ #3996]
10865         * posix/glob.c (attribute_hidden): Define if not defined.
10866         (glob): Unescape dirname, filename or username when needed and not
10867         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
10868         is NULL.  Handle unescaped [ in pattern without closing ].
10869         Don't pass GLOB_CHECK down to recursive glob for directories.
10870         (__glob_pattern_type): New function.
10871         (__glob_pattern_p): Implement using __glob_pattern_type.
10872         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
10873         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
10874         Remove unreachable code.
10875         * posix/globtest.sh: Add a couple of new tests.
10877 2007-02-13  Ulrich Drepper  <drepper@redhat.com>
10879         * po/ru.po: Update from translation team.
10881 2007-02-12  Jakub Jelinek  <jakub@redhat.com>
10883         * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __amdfam10__
10884         to the list of i486+ CPUs.
10885         * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
10887 2007-02-12  Ulrich Drepper  <drepper@redhat.com>
10889         * elf/rtld.c (RESOLVE_MAP): Always return bootstrap_map reference.
10890         * elf/Makefile ($(objpfx)ld.so): Check that ld.so has no undefined
10891         references.
10893 2007-02-09  Ulrich Drepper  <drepper@redhat.com>
10895         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Remove incorrect comment.
10897         * resolv/res_init.c (res_setoptions): Recognize edns0 option.
10898         * resolv/res_mkquery.c: Define __res_nopt.
10899         * resolv/res_query.c (__libc_res_nquery): If RES_USE_EDNS0 is set
10900         try adding EDNS0 record.
10901         * resolv/res_send.c (send_dg): If request failed with FORMERR and
10902         EDNS0 record was send make sure we don't try it again.
10903         * resolv/resolv.h: Define RES_F_EDNS0ERR and RES_USE_EDNS0.
10904         * include/resolv.h: Declare __res_nopt.
10906 2007-02-08  Jakub Jelinek  <jakub@redhat.com>
10908         [BZ #3944]
10909         * time/strptime_l.c (__strptime_internal): Set have_mon for
10910         %b/%B/%h.  Set have_mon and have_mday if tm_mon and tm_mday
10911         have been computed from tm_yday and tm_year.  Don't crash
10912         in day_of_the_week or day_of_the_year if not have_mon
10913         and tm_mon contains bogus value.
10914         * time/Makefile (tests): Add tst-strptime3.
10915         * time/tst-strptime3.c: New test.
10917 2007-02-05  Jakub Jelinek  <jakub@redhat.com>
10919         [BZ #3957]
10920         * posix/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
10921         bit for RE_HAT_LISTS_NOT_NEWLINE.
10922         (build_charclass_op): Remove bogus comment.
10923         * posix/Makefile (tests): Add bug-regex27 and bug-regex28.
10924         * posix/bug-regex27.c: New test.
10925         * posix/bug-regex28.c: New test.
10927 2007-02-03  Ulrich Drepper  <drepper@redhat.com>
10929         * po/sv.po: Update from translation team.
10931 2007-02-02  Ulrich Drepper  <drepper@redhat.com>
10933         * nscd/nscd_helper.c (open_socket): Minor size optimization.
10935 2007-02-02  Jakub Jelinek  <jakub@redhat.com>
10937         * include/locale.h (__uselocale): Add libc_hidden_proto.
10938         * locale/uselocale.c (__uselocale): Add libc_hidden_def.
10940         * nscd/nscd_helper.c (open_socket): Use __gettimeofday instead of
10941         gettimeofday.
10943 2007-02-01  Ulrich Drepper  <drepper@redhat.com>
10945         * sysdeps/unix/sysv/linux/i386/sysdep.h (PTR_MANGLE): Roll value before
10946         returning.
10947         (PTR_DEMANGLE): Real definition now that it's not the same as
10948         PRT_MANGLE anymore.
10949         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
10951         * string/strerror_l.c: New file.
10952         * string/Makefile (routines): Add strerror_l.
10953         * string/string.h: Declare strerror_l.
10954         * string/Versions: Export strerror_l for GLIBC_2.6.
10956 2007-01-31  Ulrich Drepper  <drepper@redhat.com>
10958         * nscd/nscd_helper.c (open_socket): Now takes request type and key
10959         as parameter.  Construct request record.  Try sending request
10960         before the first poll use, it usually succeeds.  Adjust all
10961         callers.
10962         * nscd/nscd-client.h: Define MAXKEYLEN.
10963         * nscd/connections.c (nscd_run): Don't define MAXKEYLEN here.
10965 2007-01-31  Jakub Jelinek  <jakub@redhat.com>
10967         * nscd/nscd-client.h (__nscd_cache_search): Remove const qualifier
10968         from return value.
10969         * nscd/nscd_helper.c: Include string.h.
10970         (__nscd_cache_search): Remove const qualifier from return value.
10971         On strict alignment architectures check hash entry and data head
10972         alignment.
10973         * nscd/nscd_getpw_r.c (nscd_getpw_r): Don't crash or fail because
10974         mmapped data during GC cycle contains garbage.  If
10975         __nscd_drop_map_ref fails, decrement mapped->counter when returning
10976         error or if retrying with NO_MAPPING, only __nscd_unmap if counter
10977         dropped to 0.
10978         * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
10979         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
10980         * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
10981         * nscd/nscd_getai.c (__nscd_getai): Likewise.
10982         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
10984 2007-01-30  Ulrich Drepper  <drepper@redhat.com>
10986         * misc/hsearch_r.c (hdestroy_r): Remove unnecessary test.
10988 2007-01-26  Ulrich Drepper  <drepper@redhat.com>
10990         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Use register
10991         names not numbers in cfi_*.
10993 2007-01-26  Andreas Jaeger  <aj@suse.de>
10995         * sysdeps/unix/sysv/linux/sys/personality.h (ADDR_NO_RANDOMIZE,
10996         ADDR_LIMIT_3GB, PER_LINUX_32BIT, PER_LINUX32_3GB): Add.
10997         Correct values of PER_HPUX and PER_OSF4.
10999 2007-01-24  Ulrich Drepper  <drepper@redhat.com>
11001         * elf/dl-minimal.c: Undefine _itoa first.
11002         * stdio-common/_itoa.h: Define _itoa and _fitoa for 64-bit platforms.
11003         * malloc/mtrace.c: Revert last change.
11004         * posix/wordexp.c: Likewise.
11006 2007-01-24  Jakub Jelinek  <jakub@redhat.com>
11008         * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __nocona__, __core2__
11009         and __geode__ to the list of i486+ CPUs.
11010         * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
11012 2007-01-23  Ulrich Drepper  <drepper@redhat.com>
11014         * stdio-common/_itoa.c: Include <limits.h>.
11015         * stdio-common/_itowa.c: Likewise.
11017 2007-01-22  Ulrich Drepper  <drepper@redhat.com>
11019         * stdio-common/_itowa.c: Don't compile _itowa for 64-bit
11020         platforms.
11021         * stdio-common/_itoa.c: Don't compile in _itoa and _fitoa for
11022         64-bit platforms.
11023         * malloc/mtrace.c (tr_where): Use _fitoa_word instead of _fitoa if
11024         possible.
11025         * posix/wordexp.c (parse_arith): Use _itoa_word instead of _itoa
11026         if possible.
11028         [BZ #3902]
11029         * stdio-common/_itoa.c (_itoa): Make sure at least a zero is emitted.
11030         * stdio-common/Makefile (tests): Add bug17.
11031         * stdio-common/bug17.c: New file.
11033 2007-01-19  Ulrich Drepper  <drepper@redhat.com>
11035         * iconvdata/brf.c: New file.
11036         * iconvdata/testdata/BRF: New file.
11037         * iconvdata/testdata/BRF..UTF8: New file.
11038         Contributed by Samuel Thibault <samuel.thibault@ens-lyon.org>.
11039         * iconvdata/Makefile: Add rules to build BRF.
11040         * iconvdata/TESTS: Add BRF entry.
11041         * iconvdata/gconv-modules: Likewise.
11042         * iconvdata/tst-tables.sh: Likewise.
11044 2007-01-18  Anton Nikishaev  <anton.nik@gmail.com>
11046         * wcsmbs/wchar.h (wcstoll): Fix comment, function returns value of
11047         type `long long int', not `long int'.
11048         (wcstoq): Likewise.
11050 2007-01-18  Ulrich Drepper  <drepper@redhat.com>
11052         * scripts/gen-as-const.awk: Add cast to long to avoid int promotion
11053         of values on 64-bit platforms which are too large.
11055 2007-01-12  Steven Munroe  <sjmunroe@us.ibm.com>
11056             Joe Kerian  <jkerian@us.us.ibm.com>
11058         [BZ #2749]
11059         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Include
11060         <math_ldbl_opt.h>.  Remove weak_alias.  Use long_double_symbol macro.
11061         (__copysignl): Use signbit() for comparison.
11062         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Correct parms for
11063         SET_LDOUBLE_WORDS64.
11065         [BZ #2423, #2749]
11066         * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Don't include <fenv_libc.h>.
11067         (__ceill): Remove calls to fegetround(), fesetround().
11068         * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
11069         * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
11070         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
11072 2007-01-17  Jakub Jelinek  <jakub@redhat.com>
11074         * nscd/nscd_getserv_r.c (nscd_getserv_r): Fix pastos.
11076         * sysdeps/unix/sysv/linux/getdents.c (offsetof): Remove.
11078 2007-01-17  Ulrich Drepper  <drepper@redhat.com>
11080         * sysdeps/unix/sysv/linux/fatal-prepare.h: Use PTHFCT_CALL to
11081         demangle pointer.
11082         * csu/libc-start.c: Likewise.
11084 2007-01-16  Ulrich Drepper  <drepper@redhat.com>
11086         * sysdeps/posix/system.c: Remove NO_WAITPID support, it cannot
11087         really work anyway.
11089 2007-01-15  Ulrich Drepper  <drepper@redhat.com>
11091         * nscd/connections.c (servinfo): Renamed to reqinfo.  Change all
11092         users.
11093         (handle_request): Remove unnecessary tests.
11095         * nscd/cache.c (cache_add): Record the failure to add to the cache.
11097 2007-01-15  Jakub Jelinek  <jakub@redhat.com>
11099         * soft-fp/op-common.h (FP_TRUNC): When truncating a NaN, clear
11100         workbits in semi-raw fraction.
11102         * math/test-misc.c: Add new tests.
11104 2007-01-14  Steven Munroe  <sjmunroe@us.ibm.com>
11106         * math/basic-test.c: Include test-skeleton.c.
11107         (TEST_TRUNC): Define.
11108         (truncdfsf_test, trunctfsf_test, trunctfdf_test): New.
11109         (main): Rename to ...
11110         (do_test): ...this.  Run new tests.
11111         (TEST_FUNCTION): Define.
11113 2006-10-05  Steven Munroe  <sjmunroe@us.ibm.com>
11114             Joe Kerian  <jkerian@us.us.ibm.com>
11116         [BZ #2749]
11117         * soft-fp/op-4.h (__FP_FRAC_SUB_3, __FP_FRAC_SUB_4): Correct borrow
11118         handling for high words.
11119         * soft-fp/op-common.h (_FP_OVERFLOW_SEMIRAW): Always set inexact
11120         and overflow for infinity.
11122 2007-01-15  Ulrich Drepper  <drepper@redhat.com>
11124         * nscd/connections.c (handle_request): Add a __builtin_expect.
11126         * nscd/connections.c (serv2db): Change type into structure which
11127         also says whether this is a request for data.  Renamed to
11128         servinfo.  All users changed.
11129         (handle_request): Much simpler test whether we should search the cache.
11131         * nscd/connections.c (handle_request): Fix thinko in selinux test
11132         invocation.
11134         * sysdeps/generic/ldsodefs.h: Define DL_LOOKUP_SCOPE_LOCK.
11135         * elf/dl-lookup.c (add_dependency): If scope map is locked, unlock
11136         it before getting dl_load_lock and then relock.
11137         (_dl_lookup_symbol_x): Pass flags to add_dependency.
11138         When rerunning _dl_lookup_symbol_x, compute symbol_scope again in
11139         case we unlocked the scope.
11140         * elf/dl-runtime.c (_dl_fixup): Pass DL_LOOKUP_SCOPE_LOCK to
11141         _dl_lookup_symbol_x in case we locked the scope.
11142         (_dl_profile_fixup): Likewise.
11143         * elf/dl-sym.c (do_sym): In flags passed to call_dl_lookup, also
11144         set DL_LOOKUP_SCOPE_LOCK.
11146 2007-01-13  Ulrich Drepper  <drepper@redhat.com>
11148         * inet/Makefile: Define CFLAGS-getsrvbynm_r.c and
11149         CFLAGS-getsrvbynpt_r.c.
11150         * nscd/getsrvbynm_r.c: New file.
11151         * nscd/getsrvbypt_r.c: New file.
11152         * nscd/nscd_getserv_r.c: New file.
11153         * nscd/servicescache.c: New file.
11154         * nscd/Makefile (routines): Add nscd_getserv_r.
11155         (nscd-modules): Add getsrvbynm_r, getsrvbypt_r, and servicescache.
11156         Define CFLAGS-servicescache.c, CFLAGS-getsrvbynm_r.c, and
11157         CFLAGS-getsrvbypt_r.c.
11158         * nscd/cache.c (prune_cache): Rewrite to get re-add function from
11159         table.  Add entries for services database.
11160         * nscd/connections.c (serv2str): Mark as const.  Add entries for
11161         services database.
11162         (dbs): Add .reset_res and servdb initialization.
11163         (serv2db): Add entries for services database.
11164         (verify_persistent_db): Accept dbnr == servdb.
11165         (invalidate_cache): Rewrite database name recognition to use a table.
11166         Call res_init() if .reset_res is set for database.
11167         (handle_request): Add code to handle services database.
11168         * nscd/gai.c: Don't define __getservbyname_r.
11169         * nscd/nscd-client.h (request_type): Remove LASTDBREQ, add
11170         GETSERVBYNAME, GETSERVBYPORT, GETFDSERV.
11171         (serv_response_header): Define.
11172         (struct datahead): Add serv_response_header member.
11173         * nscd/nscd.c (parse_opt): Rewrite parsing of -i parameter value
11174         using table.
11175         * nscd/nscd.conf: Add entries for services database.
11176         * nscd/nscd.h: Adjust declaration of dbnames and serv2str.
11177         Declare serv_iov_disabled.
11178         Declare addservbyname, readdservbyname, addservbyport, and
11179         readdservbyport.
11180         * nscd/nscd_conf.c (dbnames): Mark as const.  Add services entry.
11181         (find_db): Fix error message.
11182         * nscd/nscd_proto.h: Declare __nss_not_use_nscd_services,
11183         __nscd_getservbyname_r, and __nscd_getservbyport_r.
11184         * nscd/selinux.c (perms): Add entries for services database.
11185         * nss/Versions: Export __nss_services_lookup with GLIBC_PRIVATE.
11186         * nss/nsswitch.c (__nss_disable_nscd): Also disable services database.
11188         * nscd/grpcache.c: Remove obsolete code.  Cleanups.
11189         * nscd/hstcache.c: Likewise.
11190         * nscd/pwdcache.c: Likewise.
11192         * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r): Correct
11193         computation of keylen.
11195         * include/string.h: Only redefine strndupa if this is really for
11196         libc code.
11198 2007-01-12  Ulrich Drepper  <drepper@redhat.com>
11200         * nscd/nscd_gethst_r.c: Minor cleanups.
11202         * nscd/connections.c (handle_request): Check selinux permissions
11203         for all non-admin commands.
11205         * sysdeps/i386/i486/bits/atomic.h: Define
11206         atomic_compare_and_exchange_val_acq,
11207         atomic_compare_and_exchange_bool_acq, and atomic_exchange_and_add
11208         using __sync_* built-ins for gcc >= 4.1.
11209         * sysdeps/x86_64/bits/atomic.h: Likewise.
11211         [BZ #3840]
11212         * scripts/check-local-headers.sh: Restrict to testing .o.d, .os.d,
11213         and .oS.d files.
11215 2007-01-05  Steven Munroe  <sjmunroe@us.ibm.com>
11217         * stdlib/tst-makecontext.c: Include errno.h.  Change main()
11218         to do_test().  Define TEST_FUNCTION. Include test-skeleton.c.
11219         (do_test): Check errno and exit(0) if ENOSYS.
11221 2007-01-11  Jakub Jelinek  <jakub@redhat.com>
11223         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix handling of multi-byte
11224         thousands separators.
11225         * stdlib/Makefile: Add rules to build and run tst-strtod4.
11226         * stdlib/tst-strtod4.c: New test.
11228         [BZ #3855]
11229         * stdlib/strtod_l.c (____STRTOF_INTERNAL): 0x. not followed by
11230         hexadecimal digit should accept just the initial 0.
11231         * stdlib/tst-strtod2.c (tests): New variable.
11232         (do_test): Run several tests rather than just one.
11234 2007-01-11  Jakub Jelinek  <jakub@redhat.com>
11236         * sysdeps/i386/soft-fp/sfp-machine.h: Remove.
11237         * sysdeps/x86_64/soft-fp/sfp-machine.h: Likewise.
11239 2007-01-10  Ulrich Drepper  <drepper@redhat.com>
11241         * io/fts.c: Make sure fts_cur is always valid after return from
11242         fts_read.
11243         Patch by Miloslav Trmac <mitr@redhat.com>.
11245 2006-10-27  Richard Sandiford  <richard@codesourcery.com>
11247         * elf/elf.h (R_MIPS_GLOB_DAT): Define.
11248         (R_MIPS_NUM): Bump by 1.
11250 2007-01-03  Jakub Jelinek  <jakub@redhat.com>
11252         * posix/execvp.c: Include alloca.h.
11253         (allocate_scripts_argv): Renamed to...
11254         (scripts_argv): ... this.  Don't allocate buffer here nor count
11255         arguments.
11256         (execvp): Use alloca if possible.
11257         * posix/Makefile: Add rules to build and run tst-vfork3 test.
11258         * posix/tst-vfork3.c: New test.
11260 2007-01-03  Ulrich Drepper  <drepper@redhat.com>
11262         * string/Makefile (tst-strxfrm2-ENV): Define.
11263         * stdlib/Makefile (tst-strtod3-ENV): Define.
11265 2007-01-02  Ulrich Drepper  <drepper@redhat.com>
11267         * posix/getconf.c: Update copyright year.
11268         * nss/getent.c: Likewise.
11269         * iconv/iconvconfig.c: Likewise.
11270         * iconv/iconv_prog.c: Likewise.
11271         * elf/ldconfig.c: Likewise.
11272         * catgets/gencat.c: Likewise.
11273         * csu/version.c: Likewise.
11274         * elf/ldd.bash.in: Likewise.
11275         * elf/sprof.c (print_version): Likewise.
11276         * locale/programs/locale.c: Likewise.
11277         * locale/programs/localedef.c: Likewise.
11278         * nscd/nscd.c (print_version): Likewise.
11279         * debug/xtrace.sh: Likewise.
11280         * malloc/memusage.sh: Likewise.
11281         * malloc/mtrace.pl: Likewise.
11282         * debug/catchsegv.sh: Likewise.
11284 2006-12-24  Ulrich Drepper  <drepper@redhat.com>
11286         * malloc/malloc.c (sYSMALLOc): Remove some unnecessary alignment
11287         attempts.
11289 2006-12-23  Ulrich Drepper  <drepper@redhat.com>
11291         * posix/wordexp.c: Remove some unnecessary tests.
11293 2006-12-22  Gavin Romig-Koch  <gavin@redhat.com>
11295         * nis/nss_compat/compat-grp.c (internal_getgrgid_r): Don't
11296         blacklist the group till after we look it up.
11298 2006-12-21  Ulrich Drepper  <drepper@redhat.com>
11300         * include/atomic.h (atomic_forced_read): New macro.
11302 2006-12-20  SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
11304         * sysdeps/unix/sysv/linux/sh/bits/shm.h: New file.
11306 2006-12-19  Jakub Jelinek  <jakub@redhat.com>
11308         * nss/getXXbyYY_r.c: Include atomic.h.
11309         (INTERNAL (REENTRANT_NAME)): Write startp after start_fct,
11310         add atomic_write_barrier () in between.
11312         * stdlib/Makefile (tests): Add tst-makecontext.
11313         * stdlib/tst-makecontext.c: New test.
11315         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
11316         (__makecontext): Don't realign uc_mcontext.uc_regs.
11318 2006-11-28  Jakub Jelinek  <jakub@redhat.com>
11320         * elf/dl-support.c: Include dl-procinfo.h.
11321         * sysdeps/powerpc/dl-procinfo.h (PPC_PLATFORM_POWER4,
11322         PPC_PLATFORM_PPC970, PPC_PLATFORM_POWER5, PPC_PLATFORM_POWER5_PLUS,
11323         PPC_PLATFORM_POWER6, PPC_PLATFORM_CELL_BE, PPC_PLATFORM_POWER6X):
11324         Define.
11325         (_dl_string_platform): Use PPC_PLATFORM_* macros instead of
11326         hardcoded constants.
11327         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platform): Use
11328         PPC_PLATFORM_* macros for array designators.
11330 2006-11-11  Steven Munroe  <sjmunroe@us.ibm.com>
11332         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 3 new cap
11333         names to the beginning.
11334         (_dl_powerpc_platforms): Add "power6x".
11335         * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
11336         (HWCAP_IMPORTANT): Add PPC_FEATURE_HAS_DFP.
11337         (_DL_PLATFORMS_COUNT): Increase.
11338         (_dl_string_platform): Handle power6x case.
11339         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_PA6T, PPC_FEATURE_HAS_DFP,
11340         PPC_FEATURE_POWER6_EXT): Define.
11341         (PPC_FEATURE_POWER5, PPC_FEATURE_POWER5_PLUS): Correct Comment.
11343 2006-12-18  Jakub Jelinek  <jakub@redhat.com>
11345         [BZ #3747]
11346         * stdlib/jrand48_r.c (__jrand48_r): Make sure result is in the
11347         [-2^31 .. 2^31) range.
11348         * stdlib/tst-rand48.c (main): Fix expected values for 64-bit
11349         targets.
11350         * stdlib/tst-rand48-2.c: New test.
11351         * stdlib/Makefile (tests): Add tst-rand48-2.
11353 2006-12-14  Jakub Jelinek  <jakub@redhat.com>
11355         * misc/tst-pselect.c (do_test): Fix sigblock argument.
11357 2006-12-14  Ulrich Drepper  <drepper@redhat.com>
11359         * misc/tst-pselect.c (do_test): Make sure the helper process is
11360         terminating when the test is aborted.
11362 2006-12-13  Ulrich Drepper  <drepper@redhat.com>
11364         * sysdeps/unix/sysv/linux/bits/statvfs.h: Define ST_RELATIME.
11365         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
11366         Handle relatime mount option.
11368         [BZ #2337]
11369         * libio/Makefile (tests): Add tst-setvbuf1.
11370         * libio/tst-setvbuf1.c: New file.
11372 2006-12-08  Jakub Jelinek  <jakub@redhat.com>
11374         [BZ #2337]
11375         * libio/genops.c (__uflow): Fix a typo.
11376         * libio/wfiledoalloc.c (_IO_wfile_doallocate): Don't stat
11377         nor set _IO_LINE_BUF bit here.  Size the wide buffer based on
11378         the narrow buffer size.
11380 2006-11-24  Jakub Jelinek  <jakub@redhat.com>
11382         [BZ #2337]
11383         * libio/libio.h (_IO_FLAGS2_USER_WBUF): Define.
11384         * libio/wgenops.c (_IO_wsetb, _IO_wdefault_finish): Test and set
11385         _IO_FLAGS2_USER_WBUF bit in _flags2 instead of _IO_USER_BUF bit
11386         in _flags.
11387         * libio/wstrops.c (_IO_wstr_overflow, enlarge_userbuf,
11388         _IO_wstr_finish): Likewise.
11389         * libio/wmemstream.c (open_wmemstream): Likewise.
11390         * libio/fileops.c (_IO_new_file_close_it): Call _IO_set[bgp]
11391         even for wide streams.
11393 2006-12-13  Jakub Jelinek  <jakub@redhat.com>
11395         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Include
11396         kernel-features.h.
11398 2006-12-11  Ulrich Drepper  <drepper@redhat.com>
11400         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Parse thousand
11401         separators also if no non-zero digits found.
11402         * stdlib/Makefile (tests): Add tst-strtod3.
11404 2006-12-09  Ulrich Drepper  <drepper@redhat.com>
11406         [BZ #3632]
11407         * include/features.h: Fix comment about default value for
11408         _POSIX_C_SOURCE.
11410         [BZ #3664]
11411         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix test to recognize
11412         empty parsed strings.
11413         * stdlib/Makefile (tests): Add tst-strtod2.
11414         * stdlib/tst-strtod2.c: New file.
11416         [BZ #3673]
11417         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix exp_limit
11418         computation.
11419         * stdlib/Makefile (tests): Add tst-atof2.
11420         * stdlib/tst-atof2.c: New file.
11422         [BZ #3674]
11423         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Adjust exponent value
11424         correctly if removing trailing zero of hex-float.
11425         * stdlib/Makefile (tests): Add tst-atof1.
11426         * stdlib/tst-atof1.c: New file.
11428 2006-12-09  Jakub Jelinek  <jakub@redhat.com>
11430         * misc/mntent_r.c (__hasmntopt): Check p[optlen] even when p == rest.
11431         Start searching for next comma at p rather than rest.
11432         * misc/Makefile (tests): Add tst-mntent2.
11433         * misc/tst-mntent2.c: New test.
11435         * misc/getusershell.c (initshells): Check for integer overflows.
11436         Make strings buffer one bigger as fgets always succeeds when second
11437         argument is 1.  Don't use calloc for shells array.  Disallow
11438         / as shell.
11440 2006-12-08  Ulrich Drepper  <drepper@redhat.com>
11442         * malloc/memusage.c: Handle realloc with new size of zero and
11443         non-NULL pointer correctly.
11444         (me): Really write first record twice.
11445         (struct entry): Make format bi-arch safe.
11446         (dest): Write out more realloc statistics.
11447         * malloc/memusagestat.c (struct entry): Make format bi-arch safe.
11449 2006-12-05  Jakub Jelinek  <jakub@redhat.com>
11451         * nis/nis_subr.c (nis_getnames): Revert last change.
11453 2006-12-04  Jakub Jelinek  <jakub@redhat.com>
11455         * sysdeps/unix/sysv/linux/ttyname.c: Include termios.h.
11456         (ttyname): Use tcgetattr instead of isatty, don't set errno to ENOTTY.
11457         * sysdeps/unix/sysv/linux/ttyname_r.c: Include termios.h.
11458         (__ttyname_r): Use tcgetattr instead of isatty, don't set errno to
11459         ENOTTY.
11460         * io/Makefile: Add rules to build and run tst-ttyname_r test.
11461         * io/tst-ttyname_r.c: New test.
11463 2006-12-03  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
11465         * sysdeps/unix/sysv/linux/sh/sys/io.h: Removed.
11467 2006-11-30  H.J. Lu  <hongjiu.lu@intel.com>
11469         * sysdeps/i386/i686/memcmp.S: Use jump table as the base of
11470         jump table entries.
11472 2006-11-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
11474         * sysdeps/unix/sysv/linux/i386/clone.S: Provide CFI for the outermost
11475         `clone' function to ensure proper unwinding stop of gdb.
11476         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
11478 2006-12-01  Ulrich Drepper  <drepper@redhat.com>
11480         * nscd/nscd.init: Remove obsolete and commented-out -S option
11481         handling.
11483 2006-11-23  Jakub Jelinek  <jakub@redhat.com>
11485         [BZ #3514]
11486         * manual/string.texi (strncmp): Fix pastos from wcscmp description.
11488         [BZ #3515]
11489         * manual/string.texi (strtok): Remove duplicate paragraph.
11491 2006-12-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
11493         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Fix compatibility with
11494         libgcc not supporting `rflags' unwinding (register # >= 17).
11496 2006-11-30  Jakub Jelinek  <jakub@redhat.com>
11498         * sunrpc/svc_run.c (svc_run): Set my_pollfd to new_pollfd if realloc
11499         succeeded.
11501 2006-11-29  Daniel Jacobowitz  <dan@codesourcery.com>
11502             Jakub Jelinek  <jakub@redhat.com>
11503             Jan Kratochvil  <jan.kratochvil@redhat.com>
11505         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (restore_rt): Add correct
11506         unwind information.
11507         * sysdeps/unix/sysv/linux/x86_64/Makefile: Provide symbols for
11508         'restore_rt' even in the 'signal' directory.
11509         * sysdeps/unix/sysv/linux/x86_64/ucontext_i.sym: Extend the regs list.
11511 2006-11-27  Jakub Jelinek  <jakub@redhat.com>
11513         [BZ #3559]
11514         * sunrpc/svc_run.c (svc_run): Fail instead of segfaulting if
11515         malloc crashed.  Don't allocate memory unnecessarily in each
11516         loop.
11518 2006-10-21  Jakub Jelinek  <jakub@redhat.com>
11520         * resolv/mapv4v6addr.h (map_v4v6_address): Fix last change.
11522 2006-11-20  Ulrich Drepper  <drepper@redhat.com>
11524         * resolv/mapv4v6addr.h (map_v4v6_address): Optimize a bit.
11526 2006-11-18  Bruno Haible  <bruno@clisp.org>
11528         * sysdeps/unix/sysv/linux/i386/getgroups.c (__getgroups): Invoke
11529         __sysconf only after having tried to call getgroups32.
11531 2006-11-19  Ulrich Drepper  <drepper@redhat.com>
11533         * nss/nss_files/files-hosts.c (LINE_PARSER): Support IPv6-style
11534         addresses for IPv4 queries if they can be mapped.
11536 2006-11-16  Jakub Jelinek  <jakub@redhat.com>
11538         * sysdeps/x86_64/fpu/s_copysignf.S (__copysignf): Switch to .text.
11539         * sysdeps/x86_64/fpu/s_copysign.S (__copysign): Likewise.
11540         (signmask): Add .size directive.
11541         (othermask): Add .type directive.
11543 2006-11-14  Ulrich Drepper  <drepper@redhat.com>
11545         * po/nl.po: Update from translation team.
11547         * timezone/zdump.c: Redo fix for BZ #3137.
11549 2006-11-14  Jakub Jelinek  <jakub@redhat.com>
11551         * nss/nss_files/files-alias.c (get_next_alias): Set line back
11552         to first_unused after parsing :include: file.
11554 2006-11-10  Ulrich Drepper  <drepper@redhat.com>
11556         * timezone/africa: Update from tzdata2006o.
11557         * timezone/antarctica: Likewise.
11558         * timezone/asia: Likewise.
11559         * timezone/australasia: Likewise.
11560         * timezone/backward: Likewise.
11561         * timezone/europe: Likewise.
11562         * timezone/iso3166.tab: Likewise.
11563         * timezone/northamerica: Likewise.
11564         * timezone/southamerica: Likewise.
11565         * timezone/zone.tab: Likewise.
11567         * time/tzfile.c (__tzfile_read): Extend to handle new file format
11568         on machines with 64-bit time_t.
11570         * timezone/checktab.awk: Update from tzcode2006o.
11571         * timezone/ialloc.c: Likewise.
11572         * timezone/private.h: Likewise.
11573         * timezone/scheck.c: Likewise.
11574         * timezone/tzfile.h: Likewise.
11575         * timezone/tzselect.ksh: Likewise.
11576         * timezone/zdump.c: Likewise.
11577         * timezone/zic.c: Likewise.
11579         [BZ #3483]
11580         * elf/ldconfig.c (main): Call setlocale and textdomain.
11581         Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
11583         [BZ #3480]
11584         * manual/argp.texi: Fix typos.
11585         * manual/charset.texi: Likewise.
11586         * manual/errno.texi: Likewise.
11587         * manual/filesys.texi: Likewise.
11588         * manual/lang.texi: Likewise.
11589         * manual/maint.texi: Likewise.
11590         * manual/memory.texi: Likewise.
11591         * manual/message.texi: Likewise.
11592         * manual/resource.texi: Likewise.
11593         * manual/search.texi: Likewise.
11594         * manual/signal.texi: Likewise.
11595         * manual/startup.texi: Likewise.
11596         * manual/stdio.texi: Likewise.
11597         * manual/sysinfo.texi: Likewise.
11598         * manual/syslog.texi: Likewise.
11599         * manual/time.texi: Likewise.
11600         Patch by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
11602         [BZ #3465]
11603         * sunrpc/clnt_raw.c: Minimal message improvements.
11604         * sunrpc/pm_getmaps.c: Likewise.
11605         * nis/nss_nisplus/nisplus-publickey.c: Likewise.
11606         * nis/nis_print_group_entry.c: Likewise.
11607         * locale/programs/repertoire.c: Likewise.
11608         * locale/programs/charmap.c: Likewise.
11609         * malloc/memusage.sh: Likewise.
11610         * elf/dl-deps.c: Likewise.
11611         * locale/programs/ld-collate.c: Likewise.
11612         * libio/vswprintf.c: Likewise.
11613         * malloc/memusagestat.c: Likewise.
11614         * sunrpc/auth_unix.c: Likewise.
11615         * sunrpc/rpc_main.c: Likewise.
11616         * nscd/cache.c: Likewise.
11617         * locale/programs/repertoire.c: Unify output messages.
11618         * locale/programs/charmap.c: Likewise.
11619         * locale/programs/ld-ctype.c: Likewise.
11620         * locale/programs/ld-monetary.c: Likewise.
11621         * locale/programs/ld-numeric.c: Likewise.
11622         * locale/programs/ld-time.c: Likewise.
11623         * elf/ldconfig.c: Likewise.
11624         * nscd/selinux.c: Likewise.
11625         * elf/cache.c: Likewise.
11626         Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
11628         [BZ #3451]
11629         * sysdeps/i386/fpu/bits/mathinline.h (floor): Make rounding mode
11630         change atomic.
11631         (ceil): Likewise.
11633 2006-11-10  Jakub Jelinek  <jakub@redhat.com>
11635         * string/strxfrm_l.c (STRXFRM): Fix trailing \1 optimization
11636         if N is one bigger than return value.
11637         * string/tst-strxfrm2.c (do_test): Also test strxfrm with l1 + 1
11638         and l1 last arguments, if buf is defined, verify the return value
11639         equals to strlen (buf) and verify no byte beyond passed length
11640         is modified.
11642 2006-11-10  Ulrich Drepper  <drepper@redhat.com>
11644         * po/sv.po: Update from translation team.
11646 2006-11-09  Ulrich Drepper  <drepper@redhat.com>
11648         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word): Add
11649         noinline attribute.
11651 2006-11-10  Jakub Jelinek  <jakub@redhat.com>
11653         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Add
11654         noinline attribute.
11656         * sysdeps/gnu/siglist.c (__old_sys_siglist, __old_sys_sigabbrev):
11657         Use __new_sys_siglist instead of _sys_siglist_internal as
11658         second macro argument.
11659         (_old_sys_siglist): Use declare_symbol_alias macro instead of
11660         strong_alias.
11662 2006-11-09  Ulrich Drepper  <drepper@redhat.com>
11664         [BZ #3493]
11665         * posix/unistd.h (sysconf): Remove const attribute.
11667         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix test for
11668         temporary or deprecated addresses.
11669         Patch by Sridhar Samudrala <sri@us.ibm.com>.
11671         * string/Makefile (tests): Add tst-strxfrm2.
11672         * string/tst-strxfrm2.c: New file.
11674 2006-10-09  Jakub Jelinek  <jakub@redhat.com>
11676         * elf/dl-debug.c (_dl_debug_initialize): Check r->r_map for 0
11677         rather than r->r_brk.
11679 2006-11-08  Jakub Jelinek  <jakub@redhat.com>
11681         * string/strxfrm_l.c (STRXFRM): Do the trailing \1 removal
11682         optimization even if needed > n.
11684         * elf/dl-load.c (decompose_rpath): Return bool rather than void.
11685         If l->l_name is on inhibit_rpath list, set sps->dirs to -1 and
11686         return false, otherwise return true.
11687         (cache_rpath): Return decompose_rpath return value.
11689 2006-11-07  Jakub Jelinek  <jakub@redhat.com>
11691         * include/libc-symbols.h (declare_symbol): Rename to...
11692         (declare_symbol_alias): ... this.  Add ORIGINAL argument, imply
11693         strong_alias (ORIGINAL, SYMBOL) in asm to make sure it preceedes
11694         .size directive.
11695         * sysdeps/gnu/errlist-compat.awk: Adjust for declare_symbol_alias
11696         changes.
11697         * sysdeps/gnu/siglist.c: Likewise.
11699 2006-11-03  Steven Munroe  <sjmunroe@us.ibm.com>
11701         * sysdeps/powerpc/fpu/bits/mathinline.h
11702         [__LIBC_INTERNAL_MATH_INLINES]: Moved to ...
11703         * sysdeps/powerpc/fpu/math_private.h: ...here.  New file.
11705 2006-11-05  Ulrich Drepper  <drepper@redhat.com>
11707         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
11708         Update handling of cache descriptor 0x49 for new models.
11709         * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word):
11710         Likewise.
11712 2006-11-02  Jakub Jelinek  <jakub@redhat.com>
11714         * malloc/memusage.c (dest): Reset not_me back to false after
11715         printing statistics.
11717 2006-11-02  Ulrich Drepper  <drepper@redhat.com>
11719         * configure.in: Work around ld --help change and avoid -z relro
11720         test completely if the architecture doesn't care about security.
11722 2006-11-01  Ulrich Drepper  <drepper@redhat.com>
11724         * po/sv.po: Update from translation team.
11726 2006-10-31  Ulrich Drepper  <drepper@redhat.com>
11728         * stdlib/atexit.c (atexit): Don't mark as hidden when used to
11729         generate compatibility version.
11731 2006-10-29  Ulrich Drepper  <drepper@redhat.com>
11733         * configure.in: Relax -z relro requirement a bit.
11735         * po/sv.po: Update from translation team.
11737 2006-10-29  Jakub Jelinek  <jakub@redhat.com>
11739         * elf/dl-sym.c (do_sym): Use RTLD_SINGLE_THREAD_P.
11740         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
11741         * elf/dl-close.c (_dl_close_worker): Likewise.
11742         * elf/dl-open.c (_dl_open_worker): Likewise.
11743         * sysdeps/generic/sysdep-cancel.h (RTLD_SINGLE_THREAD_P): Define.
11745 2006-10-27  Ulrich Drepper  <drepper@redhat.com>
11747         * configure.in: Require assembler support for visibility, compiler
11748         support for visibility and aliases, linker support for various -z
11749         options.
11750         * Makeconfig: Remove conditional code which now is unnecessary.
11751         * config.h.in: Likewise.
11752         * config.make.in: Likewise.
11753         * dlfcn/Makefile: Likewise.
11754         * elf/Makefile: Likewise.
11755         * elf/dl-load.c: Likewise.
11756         * elf/rtld.c: Likewise.
11757         * include/libc-symbols.h: Likewise.
11758         * include/stdio.h: Likewise.
11759         * io/Makefile: Likewise.
11760         * io/fstat.c: Likewise.
11761         * io/fstat64.c: Likewise.
11762         * io/fstatat.c: Likewise.
11763         * io/fstatat64.c: Likewise.
11764         * io/lstat.c: Likewise.
11765         * io/lstat64.c: Likewise.
11766         * io/mknod.c: Likewise.
11767         * io/mknodat.c: Likewise.
11768         * io/stat.c: Likewise.
11769         * io/stat64.c: Likewise.
11770         * libio/stdio.c: Likewise.
11771         * nscd/Makefile: Likewise.
11772         * stdlib/Makefile: Likewise.
11773         * stdlib/atexit.c: Likewise.
11774         * sysdeps/generic/ldsodefs.h: Likewise.
11775         * sysdeps/i386/dl-machine.h: Likewise.
11776         * sysdeps/i386/sysdep.h: Likewise.
11777         * sysdeps/i386/i686/memcmp.S: Likewise.
11778         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
11779         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
11780         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
11782         * Makerules: USE_TLS support is now default.
11783         * tls.make.c: Likewise.
11784         * csu/Versions: Likewise.
11785         * csu/libc-start.c: Likewise.
11786         * csu/libc-tls.c: Likewise.
11787         * csu/version.c: Likewise.
11788         * dlfcn/dlinfo.c: Likewise.
11789         * elf/dl-addr.c: Likewise.
11790         * elf/dl-cache.c: Likewise.
11791         * elf/dl-close.c: Likewise.
11792         * elf/dl-iteratephdr.c: Likewise.
11793         * elf/dl-load.c: Likewise.
11794         * elf/dl-lookup.c: Likewise.
11795         * elf/dl-object.c: Likewise.
11796         * elf/dl-open.c: Likewise.
11797         * elf/dl-reloc.c: Likewise.
11798         * elf/dl-support.c: Likewise.
11799         * elf/dl-sym.c: Likewise.
11800         * elf/dl-sysdep.c: Likewise.
11801         * elf/dl-tls.c: Likewise.
11802         * elf/ldconfig.c: Likewise.
11803         * elf/rtld.c: Likewise.
11804         * elf/tst-tls-dlinfo.c: Likewise.
11805         * elf/tst-tls1.c: Likewise.
11806         * elf/tst-tls10.h: Likewise.
11807         * elf/tst-tls14.c: Likewise.
11808         * elf/tst-tls2.c: Likewise.
11809         * elf/tst-tls3.c: Likewise.
11810         * elf/tst-tls4.c: Likewise.
11811         * elf/tst-tls5.c: Likewise.
11812         * elf/tst-tls6.c: Likewise.
11813         * elf/tst-tls7.c: Likewise.
11814         * elf/tst-tls8.c: Likewise.
11815         * elf/tst-tls9.c: Likewise.
11816         * elf/tst-tlsmod1.c: Likewise.
11817         * elf/tst-tlsmod13.c: Likewise.
11818         * elf/tst-tlsmod13a.c: Likewise.
11819         * elf/tst-tlsmod14a.c: Likewise.
11820         * elf/tst-tlsmod2.c: Likewise.
11821         * elf/tst-tlsmod3.c: Likewise.
11822         * elf/tst-tlsmod4.c: Likewise.
11823         * elf/tst-tlsmod5.c: Likewise.
11824         * elf/tst-tlsmod6.c: Likewise.
11825         * include/errno.h: Likewise.
11826         * include/link.h: Likewise.
11827         * include/tls.h: Likewise.
11828         * locale/global-locale.c: Likewise.
11829         * locale/localeinfo.h: Likewise.
11830         * malloc/arena.c: Likewise.
11831         * malloc/hooks.c: Likewise.
11832         * malloc/malloc.c: Likewise.
11833         * resolv/Versions: Likewise.
11834         * sysdeps/alpha/dl-machine.h: Likewise.
11835         * sysdeps/alpha/libc-tls.c: Likewise.
11836         * sysdeps/generic/ldsodefs.h: Likewise.
11837         * sysdeps/generic/tls.h: Likewise.
11838         * sysdeps/i386/dl-machine.h: Likewise.
11839         * sysdeps/ia64/dl-machine.h: Likewise.
11840         * sysdeps/ia64/libc-tls.c: Likewise.
11841         * sysdeps/mach/hurd/fork.c: Likewise.
11842         * sysdeps/mach/hurd/i386/tls.h: Likewise.
11843         * sysdeps/powerpc/powerpc32/dl-machine.c: Likwise.
11844         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
11845         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
11846         * sysdeps/s390/libc-tls.c: Likewise.
11847         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
11848         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
11849         * sysdeps/sh/dl-machine.h: Likewise.
11850         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
11851         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
11852         * sysdeps/x86_64/dl-machine.h: Likewise.
11854         * elf/dl-close.c (_dl_close_worker): Renamed from _dl_close and
11855         split out locking and parameter checking.
11856         (_dl_close): Call _dl_close_worker after locking and checking.
11857         * elf/dl-open.c (_dl_open): Call _dl_close_worker instead of
11858         _dl_close.
11859         * elf/Makefile: Add rules to build and run tst-thrlock.
11860         * elf/tst-thrlock.c:  New file.
11862         [BZ #3426]
11863         * stdlib/stdlib.h: Adjust comment for canonicalize_file_name to
11864         reality.
11866         [BZ #3429]
11867         * elf/dl-open.c (dl_open_worker): Keep holding dl_load_lock until
11868         we are sure we do not need it anymore for _dl_close.  Also move
11869         the asserts inside the lock region.
11870         Patch mostly by Suzuki <suzuki@in.ibm.com>.
11872 2006-10-27  Jakub Jelinek  <jakub@redhat.com>
11874         * elf/dl-lookup.c (_dl_debug_bindings): Remove unused symbol_scope
11875         argument.
11876         (_dl_lookup_symbol_x): Adjust caller.
11878         * sysdeps/generic/ldsodefs.h (struct link_namespaces): Remove
11879         _ns_global_scope.
11880         * elf/rtld.c (dl_main): Don't initialize _ns_global_scope.
11882         * elf/dl-libc.c: Revert l_scope name changes.
11883         * elf/dl-load.c: Likewise.
11884         * elf/dl-object.c: Likewise.
11885         * elf/rtld.c: Likewise.
11886         * elf/dl-close.c (_dl_close): Likewise.
11887         * elf/dl-open.c (dl_open_worker): Likewise.  If not SINGLE_THREAD_P,
11888         always use __rtld_mrlock_{change,done}.  Always free old scope list
11889         here if not l_scope_mem.
11890         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Revert l_scope name
11891         change.  Never free scope list here.  Just __rtld_mrlock_lock before
11892         the lookup and __rtld_mrlock_unlock it after the lookup.
11893         * elf/dl-sym.c: Likewise.
11894         * include/link.h (struct r_scoperec): Remove.
11895         (struct link_map): Replace l_scoperec with l_scope, l_scoperec_mem
11896         with l_scope_mem and l_scoperec_lock with l_scope_lock.
11898 2006-10-25  Ulrich Drepper  <drepper@redhat.com>
11900         * sysdeps/gnu/netinet/tcp.h: Define TCP_CONGESTION.
11902 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
11904         * configure.in: Disable building profile libraries by default.
11906 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
11908         * sunrpc/xdr_mem.c (xdrmem_setpos): Don't compare addresses
11909         as signed longs, check for x_base + pos overflow.
11910         * sunrpc/Makefile (tests): Add tst-xdrmem2.
11911         * sunrpc/tst-xdrmem2.c: New test.
11913 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
11915         * elf/dl-lookup.c (_dl_lookup_symbol_x): Add warning to
11916         _dl_lookup_symbol_x code.
11918 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
11920         * elf/dl-runtime.c: Include sysdep-cancel.h.
11921         (_dl_fixup, _dl_profile_fixup): Use __rtld_mrlock_* and
11922         scoperec->nusers only if !SINGLE_THREAD_P.  Use atomic_*
11923         instead of catomic_* macros.
11924         * elf/dl-sym.c: Include sysdep-cancel.h.
11925         (do_sym): Use __rtld_mrlock_* and scoperec->nusers only
11926         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
11927         * elf/dl-close.c: Include sysdep-cancel.h.
11928         (_dl_close): Use __rtld_mrlock_* and scoperec->nusers only
11929         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
11930         * elf/dl-open.c: Include sysdep-cancel.h.
11931         (dl_open_worker): Use __rtld_mrlock_* and scoperec->nusers only
11932         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
11934 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
11936         [BZ #3313]
11937         * malloc/malloc.c (malloc_consolidate): Set maxfb to address of last
11938         fastbin rather than end of fastbin array.
11940 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
11942         * sysdeps/i386/i486/bits/atomic.h (catomic_decrement): Use correct
11943         body macro.
11944         * sysdeps/x86_64/bits/atomic.h
11945         (__arch_c_compare_and_exchange_val_64_acq): Add missing casts.
11946         (catomic_decrement): Use correct body macro.
11948 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
11950         * include/atomic.h: Add a unique prefix to all local variables
11951         in macros.
11952         * csu/tst-atomic.c (do_test): Test also catomic_* macros.
11954 2006-10-16  Ulrich Drepper  <drepper@redhat.com>
11956         [BZ #3369]
11957         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Fix typos in rules 4
11958         and 7.
11960 2006-10-14  Ulrich Drepper  <drepper@redhat.com>
11962         * resolv/arpa/nameser.h: Document that ns_t_a6 is deprecated.
11964 2006-10-13  Ulrich Drepper  <drepper@redhat.com>
11966         [BZ #3313]
11967         * malloc/malloc.c (malloc_consolidate): Don't use get_fast_max to
11968         determine highest fast bin to consolidate, always look into all of
11969         them.
11970         (do_check_malloc_state): Only require for empty bins for large
11971         sizes in main arena.
11973         * libio/stdio.h: Add more __wur attributes.
11975         * elf/dl-minimal.c (realloc): Optimize last patch.
11977 2006-10-12  Richard Sandiford  <richard@codesourcery.com>
11979         [BZ #3352]
11980         * elf/dl-minimal.c (realloc): Let malloc() return a new pointer,
11981         and use memcpy() if it does.
11983 2006-11-12  Andreas Jaeger  <aj@suse.de>
11985         [BZ #2510]
11986         * manual/search.texi (Hash Search Function): Clarify.
11987         (Array Search Function): Clarify.
11989 2006-11-12  Joseph Myers  <joseph@codesourcery.com>
11991         [BZ #2830]
11992         * math/atest-exp.c (main): Cast hex value to mp_limb_t before
11993         shifting.
11994         * math/atest-exp2.c (read_mpn_hex): Likewise.
11995         * math/atest-sincos.c (main): Likewise.
11997 2006-10-11  Ulrich Drepper  <drepper@redhat.com>
11999         * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_pwait.
12000         * sysdeps/unix/sysv/linux/sys/epoll.h: Declare epoll_pwait.
12001         * sysdeps/unix/sysv/linux/Versions (libc): Add epoll_pwait for
12002         version GLIBC_2.6.
12003         * Versions.def: Add GLIBC_2.6 for libc.
12005         * sysdeps/unix/sysv/linux/i386/sysdep.h (DOARGS_6): Fix offset.
12007         * sysdeps/i386/i486/bits/atomic.h: Add catomic_* support.
12009 2006-10-11  Jakub Jelinek  <jakub@redhat.com>
12011         * malloc/malloc.c (_int_malloc): Remove unused any_larger variable.
12013         * nis/nis_defaults.c (__nis_default_access): Don't call getenv twice.
12015         * nis/nis_subr.c (nis_getnames): Use __secure_getenv instead of getenv.
12016         * sysdeps/generic/unsecvars.h: Add NIS_PATH.
12018 2006-10-11  Ulrich Drepper  <drepper@redhat.com>
12020         * include/atomic.c: Define catomic_* operations.
12021         * sysdeps/x86_64/bits/atomic.h: Likewise.  Fix a few minor problems.
12022         * stdlib/cxa_finalize.c: Use catomic_* operations instead of atomic_*.
12023         * malloc/memusage.c: Likewise.
12024         * gmon/mcount.c: Likewise.
12025         * elf/dl-close.c: Likewise.
12026         * elf/dl-open.c: Likewise.
12027         * elf/dl-profile.c: Likewise.
12028         * elf/dl-sym.c: Likewise.
12029         * elf/dl-runtime.c: Likewise.
12030         * elf/dl-fptr.c: Likewise.
12031         * resolv/res_libc.c: Likewise.
12033 2006-10-10  Ulrich Drepper  <drepper@redhat.com>
12035         * nis/nis_subr.c (nis_getnames): Add trailing dot to NIS_PATH
12036         components which lack them.
12038         * nis/nis_subr.c (nis_getnames): Make sure that we always return
12039         at least one entry consisting of the parameter concatenated with
12040         the domain.
12042 2006-10-10  Roland McGrath  <roland@frob.com>
12044         * sysdeps/mach/hurd/utimes.c: Use a union to avoid an improper cast.
12045         * sysdeps/mach/hurd/futimes.c: Likewise.
12046         * sysdeps/mach/hurd/lutimes.c: Likewise.
12048 2006-10-09  Ulrich Drepper  <drepper@redhat.com>
12049             Jakub Jelinek  <jakub@redhat.com>
12051         Implement reference counting of scope records.
12052         * elf/dl-close.c (_dl_close): Remove all scopes from removed objects
12053         from the list in objects which remain.  Always allocate new scope
12054         record.
12055         * elf/dl-open.c (dl_open_worker): When growing array for scopes,
12056         don't resize, allocate a new one.
12057         * elf/dl-runtime.c: Update reference counters before using a scope
12058         array.
12059         * elf/dl-sym.c: Likewise.
12060         * elf/dl-libc.c: Adjust for l_scope name change.
12061         * elf/dl-load.c: Likewise.
12062         * elf/dl-object.c: Likewise.
12063         * elf/rtld.c: Likewise.
12064         * include/link.h: Include <rtld-lowlevel.h>.  Define struct
12065         r_scoperec.  Replace r_scope with pointer to r_scoperec structure.
12066         Add l_scoperec_lock.
12067         * sysdeps/generic/ldsodefs.h: Include <rtld-lowlevel.h>.
12068         * sysdeps/generic/rtld-lowlevel.h: New file.
12070         * include/atomic.h: Rename atomic_and to atomic_and_val and
12071         atomic_or to atomic_or_val.  Define new macros atomic_and and
12072         atomic_or which do not return values.
12073         * sysdeps/x86_64/bits/atomic.h: Define atomic_and and atomic_or.
12074         Various cleanups.
12075         * sysdeps/i386/i486/bits/atomic.h: Likewise.
12077         * po/sv.po: Update from translation team.
12079 2006-10-07  Ulrich Drepper  <drepper@redhat.com>
12081         * Versions.def: Add GLIBC_2.6 to libpthread.
12083         * include/shlib-compat.h (SHLIB_COMPAT): Expand parameters before use.
12084         (versioned_symbol): Likewise.
12085         (compat_symbol): Likewise.
12087         * po/tr.po: Update from translation team.
12089 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
12091         * nis/Banner: Removed.  It's been integral part forever and the
12092         author info is incomplete anyway.
12093         * libio/Banner: Likewise.
12095         * nis/nis_table.c (nis_list): If __follow_path fails in the new
12096         code, make sure the nis_freeresult call doesn't crash and that the
12097         result is reported correctly.
12099 2006-09-27  Jakub Jelinek  <jakub@redhat.com>
12101         * nis/nis_table.c (nis_list): Handle FOLLOW_PATH | ALL_RESULTS
12102         when callback is NULL.
12104         * nis/Versions (libnss_nisplus): Add
12105         _nss_nisplus_initgroups_dyn@@GLIBC_PRIVATE.
12106         * nis/Makefile (libnss_nisplus-routines): Add nisplus-initgroups.
12107         * nis/nss_nisplus/nisplus-grp.c (tablename_val, tablename_len,
12108         _nss_create_tablename): Rename to...
12109         (grp_tablename_val, grp_tablename_len, _nss_grp_create_tablename):
12110         ... these.  No longer static.
12111         (internal_setgrent): Adjust users.
12112         (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
12113         Don't use locking around _nss_grp_create_tablename call.
12114         * nis/nss_nisplus/nisplus-initgroups.c: New file.
12116 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
12118         * version.h (VERSION): Bump to 2.5.90 for new development tree.
12120 2006-10-06  Andreas Jaeger  <aj@suse.de>
12122         * include/features.h (__GLIBC_MINOR__): It's glibc 2.5 now.
12124 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
12126         * po/pl.po: Update from translation team.
12128         * nscd/nscd.c (main): Fix typo in message.
12129         Patch by Jakub Bogsz <qboosh@pld-linux.org>.
12131 2006-10-02  Jakub Jelinek  <jakub@redhat.com>
12133         [BZ #3291]
12134         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Include
12135         errno.h, signal.h, unistd.h and sysdep-cancel.h.
12136         (__sigprocmask): Define.
12138 2006-10-02  Ulrich Drepper  <drepper@redhat.com>
12140         * elf/rtld.c (dl_main): Don't use prelinking if LD_DYNAMIC_WEAK is
12141         used.
12143 2006-10-02  Jakub Jelinek  <jakub@redhat.com>
12145         * nscd/mem.c (mempool_alloc): Round array size to 16 bytes
12146         in oldtotal and newtotal calculation.
12147         * nscd/nscd-client.h (struct mapped_database): Add datasize
12148         field.
12149         * nscd/nscd_helper.c (get_mapping): Initialize datasize field.
12150         (__nscd_get_map_ref): Get a new mapping even if mapping's data_size
12151         increased.
12152         (__nscd_cache_search): Add checks to make sure we never reference
12153         data beyond the current mapping.
12155 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
12157         * sysdeps/posix/getaddrinfo.c (match_prefix): Make mask and val
12158         variables const to avoid compiler warnings.
12160         * io/fts.c (fts_close): Remove redundant checks.
12161         (fts_build): Likewise.
12162         (fts_palloc): Likewise.
12164         * manual/message.texi (Advanced gettext functions,
12165         Using gettextized software): Fix typos.
12167 2006-09-30  Ulrich Drepper  <drepper@redhat.com>
12169         * posix/glob.c (glob_in_dir): Add some comments and asserts to
12170         explain why there are no leaks.
12172 2006-09-29  Ulrich Drepper  <drepper@redhat.com>
12174         * libio/wmemstream.c: Include <wchar.h>.
12175         * libio/bug-wmemstream1.c: Likewise.
12176         * libio/tst-wmemstream1.c: Likewise.
12177         * libio/tst-wmemstream2.c: Likewise.
12179         * version.h (RELEASE): Bump to 2.5.
12180         * README: Regenerated.
12182         * locale/iso-3166.def: Add Aaland Islands and Montenegro.
12184         [BZ #3273]
12185         * nscd/nscd_initgroups.c (__nscd_getgrouplist): It is OK to have
12186         found no group members.
12187         Patch by Petr Baudis.
12189 2006-09-29  Jakub Jelinek  <jakub@redhat.com>
12191         * elf/rtld.c (_dl_start_final): If not USE___THREAD, don't
12192         assert bootstrap_map.l_tls_modid is zero.
12193         (_dl_start): Initialize bootstrap_map.l_tls_modid to 0
12194         if USE___THREAD.
12196 2006-09-27  Ulrich Drepper  <drepper@redhat.com>
12198         * libio/stdio.h: Move open_wmemstream prototype to ...
12199         * wcsmbs/wchar.h: ... here.
12201 2006-09-25  Jakub Jelinek  <jakub@redhat.com>
12203         [BZ #3252]
12204         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Handle only
12205         fchownat syscall and __ASSUME_LCHOWN_SYSCALL case inline, call
12206         __{,l}chown to handle the rest.
12207         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Handle only
12208         fchownat syscall and __ASSUME_32BITUIDS case inline, call
12209         __{,l}chown to handle the rest.
12210         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Include
12211         i386/fchownat.c.
12212         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Likewise.
12213         * sysdeps/unix/sysv/linux/sh/fchownat.c: Likewise.
12215         [BZ #3253]
12216         * posix/glob.c (glob_in_dir): Don't alloca one struct globlink at a
12217         time, rather allocate increasingly bigger arrays of pointers, if
12218         possible with alloca, if too large with malloc.
12220 2006-09-24  Jakub Jelinek  <jakub@redhat.com>
12222         * sysdeps/powerpc/fpu/libm-test-ulps: Updated.
12224         * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Fix 2 typos.
12226 2006-09-24  Ulrich Drepper  <drepper@redhat.com>
12228         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Implement rule 4,
12229         home addresses.
12230         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Recognize
12231         IFA_F_HOMEADDRESS flag for interfaces.
12232         * include/ifaddrs.h (struct in6addrinfo): Define
12233         in6ai_homeaddress.
12235 2006-09-21  Jakub Jelinek  <jakub@redhat.com>
12237         [BZ #3225]
12238         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (PTR_MANGLE3,
12239         PTR_DEMANGLE3): Define.
12240         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h (PTR_MANGLE3,
12241         PTR_DEMANGLE3): Likewise.
12242         * sysdeps/powerpc/powerpc32/__longjmp-common.S (__longjmp): Use them.
12243         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
12244         Likewise.
12245         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
12247 2006-09-20  Jakub Jelinek  <jakub@redhat.com>
12249         * po/libc.pot: Regenerated.
12250         * po/be.po: Updated.
12251         * po/ca.po: Likewise.
12252         * po/cs.po: Likewise.
12253         * po/da.po: Likewise.
12254         * po/de.po: Likewise.
12255         * po/el.po: Likewise.
12256         * po/en_GB.po: Likewise.
12257         * po/es.po: Likewise.
12258         * po/fi.po: Likewise.
12259         * po/fr.po: Likewise.
12260         * po/gl.po: Likewise.
12261         * po/hr.po: Likewise.
12262         * po/hu.po: Likewise.
12263         * po/ja.po: Likewise.
12264         * po/ko.po: Likewise.
12265         * po/nb.po: Likewise.
12266         * po/nl.po: Likewise.
12267         * po/pl.po: Likewise.
12268         * po/pt_BR.po: Likewise.
12269         * po/ru.po: Likewise.
12270         * po/rw.po: Likewise.
12271         * po/sk.po: Likewise.
12272         * po/sv.po: Likewise.
12273         * po/tr.po: Likewise.
12274         * po/zh_CN.po: Likewise.
12275         * po/zh_TW.po: Likewise.
12277         [BZ #3137]
12278         * iconv/iconv_prog.c (main): Fix spelling in error message.
12279         * iconv/iconvconfig.c (main): Likewise.
12280         * locale/programs/ld-collate.c (handle_ellipsis): Likewise.
12281         * locale/programs/ld-ctype.c (charclass_symbolic_ellipsis): Likewise.
12282         * locale/programs/localedef.c (main): Likewise.
12283         * locale/programs/repertoire.c (repertoire_read): Likewise.
12284         * timezone/zdump.c (main): Likewise.
12285         * nscd/connections.c (handle_request): Fix spelling in log message.
12286         Patch by Malcolm Parsons <malcolm.parsons@gmail.com>.
12288 2006-09-20  Ulrich Drepper  <drepper@redhat.com>
12290         * inet/inet6_option.c: Also emit linker warnings for the RFC 2292
12291         interfaces.
12293 2006-09-20  Andreas Jaeger  <aj@suse.de>
12295         * math/libm-test.inc (lrint_test_upward): Fix typo.
12297 2006-06-17  Joseph S. Myers  <joseph@codesourcery.com>
12299         [BZ #2592]
12300         * math/libm-test.inc (lrint_test_tonearest): New function.
12301         (lrint_test_towardzero): New function.
12302         (lrint_test_downward): New function.
12303         (lrint_test_upward): New function.
12304         (main): Run these new tests.
12305         * sysdeps/ieee754/dbl-64/s_llrint.c (__llrint): Correct rounding
12306         of values near to 0.
12307         (two52): Use double not long double.
12308         * sysdeps/ieee754/dbl-64/s_lrint.c (__lrint): Likewise.
12309         * sysdeps/ieee754/flt-32/s_llrintf.c (__llrintf): Likewise.
12310         (two23): Use float not double.
12311         * sysdeps/ieee754/flt-32/s_lrintf.c (__lrintf): Likewise.
12312         (two23): Use float not double.
12313         * sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Likewise.
12314         * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Likewise.
12315         * sysdeps/ieee754/ldbl-96/s_llrintl.c (__llrintl): Likewise.
12316         * sysdeps/ieee754/ldbl-96/s_lrintl.c (__lrintl): Likewise.
12318 2006-09-20  Martin Schwidefsky  <schwidefsky@de.ibm.com>
12320         * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c (__makecontext):
12321         Cast sp to unsigned long to avoid compiler warning.
12322         Use __makecontext_ret function instead of a trampoline on the stack.
12323         (__makecontext_ret): New function.
12324         * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Likewise.
12326 2006-09-19  Jakub Jelinek  <jakub@redhat.com>
12328         * elf/dl-cache.c (HWCAP_CHECK): If _DL_PLATFORMS_COUNT, but
12329         platform == -1, reject any libs with non-zero _DL_HWCAP_PLATFORM
12330         bits.
12332 2006-09-19  Ulrich Drepper  <drepper@redhat.com>
12334         * elf/dl-close.c (_dl_close): If dependency is not unloaded make
12335         sure no reference to the unloaded map's search list remains in the
12336         dependency's scope.
12338 2006-09-16  Jakub Jelinek  <jakub@redhat.com>
12340         * elf/Makefile: Add rules to build and run unload7 test.
12341         * elf/unload7.c: New test.
12342         * elf/unload7mod1.c: New file.
12343         * elf/unload7mod2.c: New file.
12345 2006-09-18  Jakub Jelinek  <jakub@redhat.com>
12347         * sysdeps/unix/sysv/linux/sys/ptrace.h (PT_GETEVENTMSG): Fix pasto.
12348         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_SETOPTIONS,
12349         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
12350         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_SETOPTIONS,
12351         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
12352         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_SETOPTIONS,
12353         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
12354         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h (PTRACE_SETOPTIONS,
12355         PTRACE_GETEVENTMSG): Likewise.
12356         (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Change to the arch independent
12357         values.
12359 2006-09-17  Mike Frysinger  <vapier@gentoo.org>
12361         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_SETOPTIONS,
12362         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
12363         * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Check PTRACE_SETOPTIONS,
12364         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO and PTRACE_SETSIGINFO.
12366 2006-09-16  Jakub Jelinek  <jakub@redhat.com>
12368         * sysdeps/powerpc/powerpc32/register-dump.h (register_dump): Don't
12369         write '\0' to the fd.
12370         * sysdeps/mach/hurd/powerpc/register-dump.h (register_dump): Likewise.
12371         * sysdeps/powerpc/powerpc64/register-dump.h (register_dump): Likewise.
12372         Change regs to unsigned long pointer from unsigned int, fix fscr
12373         offset.
12375 2006-09-14  Jakub Jelinek  <jakub@redhat.com>
12377         * io/Makefile (CFLAGS-fstatat.c): Set.
12378         (CFLAGS-fstatat64.c): Likewise.
12379         (CFLAGS-mknodat.c): Likewise.
12381         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Comment fixes.
12382         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
12383         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Rewritten.
12384         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Rewritten.
12386 2006-09-14  Jakub Jelinek  <jakub@redhat.com>
12387             Steven Munroe  <sjmunroe@us.ibm.com>
12389         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 4 new cap
12390         names to the beginning.  Rename "cell" to "cellbe".
12391         (_dl_powerpc_platforms): New.
12392         * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
12393         (HWCAP_IMPORTANT): Remove power{4,5,5+} and cell.
12394         (_DL_PLATFORMS_COUNT, _DL_FIRST_PLATFORM): Define.
12395         (_DL_HWCAP_PLATFORM): Define to new mask.
12396         (_dl_platform_string, _dl_string_platform): New functions.
12397         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_BOOKE, PPC_FEATURE_SMT,
12398         PPC_FEATURE_ICACHE_SNOOP, PPC_FEATURE_ARCH_2_05): Define.
12400 2006-09-12  Jakub Jelinek  <jakub@redhat.com>
12402         [BZ #2526]
12403         * README.libm: Fix a thinko in sqrt algorithm description.
12405         [BZ #3143]
12406         * manual/string.texi (argz_delete): Fix prototype.
12407         Patch by <alpt@freaknet.org>.
12409 2006-08-26  Joseph Myers  <joseph@codesourcery.com>
12411         [BZ #3138]
12412         * io/test-lfs.c (do_prepare): Give name_len type size_t.
12413         * io/tst-fcntl.c (do_prepare): Likewise.
12414         * posix/tst-exec.c (do_prepare): Likewise.
12415         * posix/tst-preadwrite.c (do_prepare): Likewise.
12416         * posix/tst-spawn.c (do_prepare): Likewise.
12417         * posix/tst-truncate.c (do_prepare): Likewise.
12418         * rt/tst-aio.c (do_prepare): Likewise.
12419         * rt/tst-aio64.c (do_prepare): Likewise.
12420         * stdlib/test-canon2.c (do_prepare): Give test_dir_len type
12421         size_t.
12423 2006-09-09  Ulrich Drepper  <drepper@redhat.com>
12425         [BZ #2821]
12426         * time/mktime.c (guess_time_tm): Fix overflow detection.
12427         * time/Makefile (tests): Add bug-mktime1.
12428         * time/bug-mktime1.c: New file.
12430         [BZ #3189, #3188]
12431         * misc/sys/mman.h (remap_file_pages): Make available for _GNU_SOURCE.
12432         (mremap): Likewise.
12434 2006-09-07  Jakub Jelinek  <jakub@redhat.com>
12436         [BZ #1006]
12437         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
12438         Ensure relocation doesn't clobber any bits outside of the
12439         immediate field for R_SPARC_TLS_LE_HIX22, R_SPARC_WDISP30,
12440         R_SPARC_HI22 and R_SPARC_H44.
12442         [BZ #2775]
12443         * malloc/malloc.c (sYSMALLOc): Only call grow_heap if
12444         (long) (MINSIZE + nb - old_size) is positive.
12446         * malloc/arena.c (grow_heap): When growing bail even if new_size
12447         is negative.
12449         [BZ #3155]
12450         * sysdeps/powerpc/powerpc32/fpu/s_lrint.S (__lrint): Don't access
12451         stack below r1.
12453 2006-09-06  Jakub Jelinek  <jakub@redhat.com>
12455         * posix/regex_internal.c (re_string_reconstruct): Handle
12456         offset < pstr->valid_raw_len && pstr->offsets_needed case.
12457         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
12458         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
12459         re_string_context_at.
12460         * posix/Makefile: Add rules to build and run bug-regex26 test.
12461         * posix/bug-regex26.c: New test.
12463         * locale/programs/ld-collate.c (collate_read): Goto sym_equiv_free
12464         rather than col_sym_free.  Move seqp declaration earlier.
12466         * resolv/gai_suspend.c (gai_suspend): Make sure result is initialized.
12468 2006-09-05  Jakub Jelinek  <jakub@redhat.com>
12470         * nscd/initgrcache.c (addinitgroupsX): Move any_success
12471         decl before first goto out.
12473 2006-09-04  Jakub Jelinek  <jakub@redhat.com>
12475         * Makerules (shlib.lds): If have-hash-style, put .hash section
12476         at the end of the RO segment.
12478 2006-09-04  Ulrich Drepper  <drepper@redhat.com>
12480         * elf/do-lookup.h (do_lookup_x): Initialize symidx in case the new
12481         style hash table format is used.
12483 2006-09-04  Jakub Jelinek  <jakub@redhat.com>
12485         * resolv/res_mkquery.c (res_nmkquery): Set hp->id to statp->id after
12486         randomization rather than before.
12487         * resolv/res_init.c (res_randomid): Don't call gettimeofday here.
12489 2006-08-31  Jakub Jelinek  <jakub@redhat.com>
12491         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Add ld.so.
12493         * malloc/malloc.c (_int_malloc): Use full list insert and not
12494         shortcut which assumes the list is empty for large requests
12495         too.
12497         * elf/tst-addr1.c (do_test): Allow i.dli_sname "_IO_printf".
12499 2006-08-30  Jakub Jelinek  <jakub@redhat.com>
12501         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (splice): Add offin
12502         and offout arguments to the prototype.
12503         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (splice): Likewise.
12504         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (splice): Likewise.
12505         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (splice): Likewise.
12506         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (splice): Likewise.
12507         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (splice): Likewise.
12508         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (splice): Likewise.
12509         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (splice): Likewise.
12510         * sysdeps/unix/sysv/linux/syscalls.list (splice): Adjust args string.
12512 2006-08-28  Ulrich Drepper  <drepper@redhat.com>
12514         * elf/dl-load.c (_dl_init_paths): Expand DSTs.
12516         * elf/dl-open.c (dl_open_worker): Allow $LIB and $PLATFORM in
12517         dlopen parameters.
12519 2006-08-28  Jakub Jelinek  <jakub@redhat.com>
12521         * inet/getnameinfo.c (getnameinfo): For AF_INET, check errno
12522         only if herrno is NETDB_INTERNAL.  Handle errors other than
12523         ERANGE outside of the loops, handle TRY_AGAIN.
12525         * locale/programs/ld-ctype.c (translit_flatten): Issue error
12526         if other's ctype category was missing.
12527         * locale/programs/ld-collate.c (collate_read): Return if
12528         copy_locale's collate category is missing.
12530 2006-08-27  Ulrich Drepper  <drepper@redhat.com>
12532         [BZ #2684]
12533         * malloc/malloc.c (public_rEALLOc): Try harder by using other
12534         arenas if allocation failed.
12535         Patch mostly by Jan Edler <jan.edler@indexengines.com>.
12537 2006-08-26  Ulrich Drepper  <drepper@redhat.com>
12539         * malloc/malloc.c (bin_at): Rewrite to be more clear and to not
12540         waste bins[0..1].
12541         (malloc_state): Reduce bins size by 2.
12542         (_int_malloc): Fix test for large enough buffer for early termination.
12543         When no unsorted block matches perfectly and an exiting block has
12544         to be split, use full list insert and not shortcut which assumes
12545         the list is empty.
12547         * locale/programs/ld-ctype.c (ctype_read): Better patch for read
12548         failure.
12550 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
12552         * locale/programs/ld-ctype.c (ctype_read): If CTYPE is NULL, don't
12553         do anything.
12555         * sysdeps/generic/ldsodefs.h (DL_ADDR_SYM_MATCH): For undefined
12556         symbol require exact match (these are PLTs).
12557         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
12558         (_dl_ppc64_addr_sym_match): Likewise.
12560         [BZ #2683]
12561         * elf/dl-addr.c (_dl_addr): Don't ignore all undefined symbols.
12562         If symbol has a value use it.
12563         * elf/tst-dladdr1.c: New file.
12564         * elf/Makefile: Add rules to build and run tst-addr1.
12566 2006-08-24  Jakub Jelinek  <jakub@redhat.com>
12568         * malloc/malloc.c (sYSMALLOc): Avoid infinite loop if MMAP
12569         keeps failing and heap growth or new heap creation isn't
12570         successful either.
12571         * malloc/tst-malloc.c (main): Add new tests.
12573 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
12575         [BZ #2734]
12576         * sysdeps/i386/bits/byteswap.h (__bswap_32): Use same conditions
12577         as in the x86-64 code to use bswap.
12579 2006-05-21  Joseph S. Myers  <joseph@codesourcery.com>
12581         [BZ #2680]
12582         * posix/unistd.h (getlogin_r): Condition on __USE_POSIX199506, not
12583         __USE_UNIX98.
12584         * posix/bits/unistd.h: Likewise.
12586 2006-05-15  Mike Frysinger  <vapier@gentoo.org>
12588         [BZ #2751]
12589         * string/strchr.c: Add cast to avoid warning.
12591 2006-08-21  Ulrich Drepper  <drepper@redhat.com>
12593         * malloc/malloc.c (DEFAULT_MMAP_THRESHOLD_MAX): For 32-bit
12594         platforms define as 512K.  For 64-bit platforms as 32MB.  The lower
12595         limit is needed to avoid the exploding of the address space
12596         requirement for secondary heaps.
12597         * malloc/arena.c (HEAP_MAX_SIZE): Define using
12598         DEFAULT_MMAP_THRESHOLD_MAX if it is defined.
12600 2006-07-30  Joseph S. Myers  <joseph@codesourcery.com>
12602         [BZ #3018]
12603         * Makerules (depfiles): Handle extra-test-objs the same as
12604         extra-objs.
12605         (common-mostlyclean): Likewise.
12606         * dlfcn/Makefile (extra-objs): Add modules to extra-test-objs
12607         instead.
12608         * elf/Makefile (extra-objs): Likewise.
12609         * stdlib/Makefile (extra-objs): Likewise.
12611 2006-08-14  Eric Blake  <ebb9@byu.net>
12613         [BZ #3044]
12614         * misc/error.h: Assume C89 or better.
12615         * misc/error.c: Likewise.
12617 2006-08-21  Ulrich Drepper  <drepper@redhat.com>
12619         [BZ #3040]
12620         * sysdeps/unix/sysv/linux/openat.c: Fix compilation if
12621         __ASSUME_ATFCTS is defined.
12623 2006-08-19  Ulrich Drepper  <drepper@redhat.com>
12625         * malloc/malloc.c (_int_malloc): Limit number of unsorted blocks
12626         to sort in each call.
12628         * nis/nss_nis/nis-service.c (internal_nis_getservent_r): . If map
12629         is empty simply return and use next service.
12630         * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r): Likewise.
12632         * locale/programs/charmap.c (charmap_read): Add new parameter.  It
12633         tells us when not finding a charmap file is an error.
12634         * locale/programs/charmap.h: Adjust charmap_read prototype.
12635         * iconv/iconv_prog.c (main): Tell charmap_read it's no error if we
12636         cannot find a charmap.
12637         * locale/programs/localedef.c (main): Adjust charmap_read call.
12639 2006-08-15  Jakub Jelinek  <jakub@redhat.com>
12641         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Use
12642         sysdeps/posix/pause.c implementation instead.
12644 2006-08-09  Jakub Jelinek  <jakub@redhat.com>
12646         * sysdeps/unix/nice.c (nice): Transform EACCES errno from setpriority
12647         to EPERM.
12649 2006-08-13  Andreas Schwab  <schwab@suse.de>
12651         * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve):
12652         Don't clobber caller's LRSAVE.
12653         (_dl_prof_resolve): Likewise.
12655 2006-08-14  Ulrich Drepper  <drepper@redhat.com>
12657         [BZ #1996]
12658         * libio/memstream.c (open_memstream): Allocate initial buffer with
12659         calloc.
12660         * libio/wmemstream.c (open_wmemstream): Likewise.
12661         * libio/strops.c: Pretty printing.
12662         (_IO_str_overflow): Clear uninitialized part of the new buffer.
12663         (enlarge_userbuf): New function.
12664         (_IO_str_seekoff): Call it if seek position is larger than current
12665         buffer.
12666         * libio/wstrops.c: Likewise.
12667         * libio/vasprintf.c: Add comment as to why we do not have to use
12668         calloc instead of malloc to allocate initial buffer.
12669         * libio/Makefile (tests): Add bug-memstream1 and bug-wmemstream1.
12670         * libio/bug-memstream1.c: New file.
12671         * libio/bug-wmemstream1.c: New file.
12673 2006-08-13  Ulrich Drepper  <drepper@redhat.com>
12675         * libio/wstrops.c: Remove dead macro definitions and comments.
12676         * libio/strops.c: Likewise.
12678         [BZ #2764]
12679         * login/utmpname.c (__utmpname): Remove unnecessary test.
12681 2006-06-08  Joseph Myers  <jsm28@gcc.gnu.org>
12683         [BZ #2832]
12684         * math/gen-libm-test.pl (clean_up_number): Do not remove trailing
12685         0s from integers.
12687 2006-08-13  Ulrich Drepper  <drepper@redhat.com>
12689         [BZ #2987]
12690         * sysdeps/unix/sysv/linux/clock_settime.c: Add code to use syscall
12691         for CPU clocks.
12692         * sysdeps/unix/clock_settime.c: Add support for platform-specific
12693         setting of CPU clocks.
12695 2006-06-23  Paul Eggert  <eggert@cs.ucla.edu>
12697         [BZ #2841]
12698         * sysdeps/generic/stdint.h (UINT8_C, UINT16_C): Don't append 'U',
12699         since C99 requires the result to promote to 'int' when uint_least8_t
12700         and uint_least16_t promote to 'int'.
12702 2006-08-12  Ulrich Drepper  <drepper@redhat.com>
12704         [BZ #3013]
12705         * locale/programs/ld-ctype.c (ctype_output): Adjust alignments, fix
12706         lenght of one output field, correct bitmask creation.
12707         * locale/programs/ld-time.c: Add alignment.
12709         [BZ #2997]
12710         * misc/error.c: Add space between program name and message if file
12711         name is missing.
12713 2006-08-03  Eric Blake  <ebb9@byu.net>
12715         [BZ #2998]
12716         * misc/error.c (error_tail) [_LIBC]: Avoid invalid free.
12718 2006-08-09  Ulrich Drepper  <drepper@redhat.com>
12720         * malloc/memusagestat.c: Silence warnings.
12722         * malloc/malloc.c: Dynamically size mmap treshold if the program
12723         frees mmaped blocks.
12724         Patch by Valerie Henson and Arjan van de Ven.
12726 2006-08-08  Jakub Jelinek  <jakub@redhat.com>
12728         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (O_DIRECT): Protect with
12729         __USE_GNU.
12731         * stdlib/strtol_l.c (__strtol_ul_max_tab, __strtol_ul_rem_tab,
12732         __strtol_ull_max_tab, __strtol_ull_rem_tab): Declare.
12733         (DEF): Don't put the var into .gnu.linkonce.r.* section.
12734         Only provide var definitions in strtol_l (or for *ull*
12735         in strtoll_l).
12737         * stdio-common/bug16.c (tests): New array.
12738         (do_tests): Allow the first hexadecimal digit
12739         to be 1, 2, 4 or 8.  Do 3 additional tests.
12741         * sysdeps/s390/fpu/libm-test-ulps: Update.
12743         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c (fchownat): Use
12744         fchownat syscall if available.
12745         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
12746         * sysdeps/unix/sysv/linux/sh/fchownat.c (fchownat): Likewise.
12747         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
12749 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
12751         * nis/nis_xdr.c: Avoid some function calls.
12753 2006-08-07  Jakub Jelinek  <jakub@redhat.com>
12754             Ulrich Drepper  <drepper@redhat.com>
12756         * nis/nis_call.c (rec_dirsearch) [case LOWER_NAME]: Don't take
12757         short cut if only one name component is stripped away.
12759 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
12761         * nis/nis_call.c: Minor cleanups throughout.
12762         (rec_dirsearch) [case HIGHER_NAME]: Correctly size ndomain array.
12763         (first_shoot): Add search_parent_first parameter.  Only if it is set
12764         search parent server first.
12765         If directory for table found through cold start cache is not the same
12766         as referenced in the cache, don't use it.
12767         (__nisfind_server): Take additional parameter.  Pass it on to
12768         first_shoot.
12769         (__prepare_niscall): Adjust __nisfind_server call.
12770         * nis/rpcsvc/nislib.h: Adjust __nisfind_server prototype.
12771         * nis/nis_table.c: Adjust __nisfind_server call.
12772         * nis/nis_lookup.c: Likewise.
12773         (nis_lookup): Don't loop endlessly if name is reduced to ".".
12775 2006-08-03  Ulrich Drepper  <drepper@redhat.com>
12777         [BZ #2182]
12778         * math/s_cacosh.c: Return values from positive branch.
12779         * math/s_cacoshf.c: Likewise.
12780         * math/s_cacoshl.c: Likewise.
12782         [BZ #2883]
12783         * sysvipc/sys/msg.h: Change return value to ssize_t.
12784         * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
12785         * sysvipc/msgrcv.c: Likewise.
12786         * include/sys/msg.h: Likewise.
12788         * grp/initgroups.c (internal_getgrouplist): Remove unnecessary
12789         test introduced in patch for bz #661.
12790         (getgrouplist): Simplify code a bit.  Don't allocate one additional
12791         element for NEWGROUPS.
12793         [BZ #2908]
12794         * stdio-common/printf_fphex.c (__printf_fphex): When rounding up
12795         'f', use '1' as leading digit not '\1'.
12796         * stdio-common/Makefile (tests): Add bug16.
12797         * stdio-common/bug16.c: New file.
12799         [BZ #2914]
12800         * sysdeps/unix/sysv/linux/gethostid.c: Don't define OLD_HOSTIDFILE
12801         and don't try to open it.  The patch introducing the macro
12802         contained a bug and used the same file name as the new file
12803         instead of using /var/adm/hostid.  Nobody complaint so I'm taking
12804         this out completely.
12806         [BZ #2926]
12807         * assert/assert.h: Move cast to void inside ?: to quiet gcc.
12808         Patch by Jerry James <Jerry.James@usu.edu>.
12810         * rt/Makefile (tests): Add tst-clock2.
12811         * rt/tst-clock2.c: New file.
12813         [BZ #2978]
12814         * resolv/gai_notify.c (__gai_notify_only): Copy memory for thread
12815         function and its parameters and pass it to new thread.
12816         (__gai_notify): Add support for alternative waiting for completion.
12817         * resolv/gai_suspend.c (gai_suspend): Add support for alternative
12818         waiting for completion.
12819         * resolv/getaddrinfo_a.c: Likewise.
12820         * resolv/gai_misc.h (struct waitlist): Don't add cond if alternative
12821         waiting for completion is used.
12822         * resolv/gai_misc.c: Allow overwriting code to start helper thread.
12823         * resolv/gai_cancel.c: Include <gai_misc.h> not "gai_misc.h".
12824         * resolv/gai_error.c: Likewise.
12825         * resolv/gai_sigqueue.c: Likewise.
12827 2006-08-02  Thomas Schwinge  <tschwinge@gnu.org>
12829         * hurd/getdport.c (__getdport): Don't return EBADF; instead set
12830         errno to EBADF and return MACH_PORT_NULL.
12832 2006-06-23  Joseph Myers  <joseph@codesourcery.com>
12834         [BZ #2980]
12835         * posix/Makefile (CFLAGS-waitid.c): Add -fasynchronous-unwind-tables.
12837 2006-08-02  Ulrich Drepper  <drepper@redhat.com>
12839         * elf/dl-addr.c (_dl_addr): If GNU-style hash tables are present,
12840         walk them instead of the symbol table.
12842 2006-08-01  Ulrich Drepper  <drepper@redhat.com>
12844         [BZ #2098]
12845         * nscd/initgrcache.c (addinitgroupsX): Judge successful lookups by
12846         status of NSS calls, not the number of returned entries.
12848         * sysdeps/unix/sysv/linux/syscalls.list: Remove add_key,
12849         request_key, keyctl.
12851 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
12853         * sysdeps/unix/sysv/linux/dl-osinfo.h: Remove unnecessary include.
12855 2006-07-16  Jeff Bailey  <jbailey@ubuntu.com>
12857         * elf/tst-auditmod1.c: Fix typo in #error.
12859 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
12861         * elf/tst-auditmod1.c: Remove code for unsupported architectures.
12863         * iconvdata/run-iconv-test.sh: Run cmp in C locale.
12865 2006-07-20  Adam Nemet  <anemet@caviumnetworks.com>
12867         * stdlib/test-canon.c (do_test): Close fd before unlinking file so
12868         that the directory is empty even on non-POSIX filesystems.
12870 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
12872         * elf/dl-open.c (dl_open_worker): Add branch prediction.
12874         * nis/nss_compat/compat-grp.c: Avoid unnecessary setgrent calls into
12875         the backend NSS module.  If backend setgrent call failed, don't have
12876         internal_setgrent fail.  Just remember this until it is needed.
12877         * nis/nss_compat/compat-pwd.c: Likewise.
12878         * nis/nss_compat/compat-spwd.c: Likewise.
12880 2006-07-30  Roland McGrath  <roland@redhat.com>
12882         * sysdeps/unix/sysv/linux/ia64/sigsuspend.c: File removed.
12883         * sysdeps/unix/sysv/linux/x86_64/sigsuspend.c: File removed.
12884         * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c: File removed.
12885         * sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c: File removed.
12887         * sysdeps/unix/sysv/linux/not-cancel.h (pause_not_cancel): New macro.
12888         (nanosleep_not_cancel): New macro.
12889         (sigsuspend_not_cancel): new macro.
12890         * sysdeps/unix/sysv/linux/sigsuspend.c [__ASSUME_REALTIME_SIGNALS]
12891         (do_sigsuspend): Define as inline.
12892         (__sigsuspend): Always use do_sigsuspend.
12893         [! NO_CANCELLATION] (__sigsuspend_nocancel): New function.
12894         * include/signal.h: Declare __sigsuspend_nocancel.
12895         * sysdeps/posix/pause.c
12896         [! NO_CANCELLATION] (__pause_nocancel): New function.
12898         * include/unistd.h (__pause_nocancel): Add attribute_hidden.
12899         * include/time.h (__nanosleep_nocancel): Likewise.
12901 2006-07-30  Ulrich Drepper  <drepper@redhat.com>
12903         * locale/programs/localedef.c (add_to_readlist): Rename local
12904         variables to avoid confusion.
12906         * locale/programs/charmap.c (charmap_read): Emit error message if
12907         charmap couldn't be found or read.
12909 2006-07-28  Ulrich Drepper  <drepper@redhat.com>
12911         * sysdeps/unix/sysv/linux/kernel-features.h: Define
12912         __ASSUME_FUTEX_LOCK_PI.
12913         * include/time.h: Declare __nanosleep_nocancel.
12914         * include/unistd.h: Declare __pause_nocancel.
12916         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Use this instead of
12917         LDFLAGS.  Add -lgcc_eh and libc_nonshared (again) to make sure we
12918         get the __stack_chk_fail_local definition when it's needed.
12920 2006-07-26  Ulrich Drepper  <drepper@redhat.com>
12922         * dlfcn/Makefile: Add rules to build and run bug-atexit3.
12923         * dlfcn/bug-atexit3.c: New file.
12924         * dlfcn/bug-atexit3-lib.cc: New file.
12926         * dlfcn/dlmopen.c (dlmopen_doit): Don't allow RTLD_GLOBAL to be
12927         used when the namespace is not the base namespace.
12929 2006-07-26  Gavin Romig-Koch  <gavin@redhat.com>
12931         * stdlib/cxa_atexit.c (__new_exitfn_called): New variable.
12932         (__new_exitfn): Bump it in every successful call.
12933         * stdlib/cxa_finalize.c (__cxa_finalize): If destructor registered
12934         more exit handlers, call them right away.
12935         * stdlib/exit.h: Declare __new_exitfn_called.
12937 2006-07-25  Ulrich Drepper  <drepper@redhat.com>
12939         * stdlib/cxa_finalize.c (__cxa_finalize): Fix race condition when
12940         calling registered handler.
12942         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Fix comment.
12943         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
12944         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
12945         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
12946         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
12947         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
12948         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
12949         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
12951 2006-07-10  Ulrich Drepper  <drepper@redhat.com>
12953         * elf/dl-lookup.c (dl_new_hash): New functions.
12954         (_dl_lookup_symbol_x): Rename hash to old_hash and don't compute
12955         value here.  Compute new-style hash value.  Pass new hash value
12956         and reference to variable with the old value to do_lookup_x.
12957         (_dl_setup_hash): If DT_GNU_HASH is defined, use it and not
12958         old-style hash table.
12959         (_dl_debug_bindings): Pass new hash value and reference to variable
12960         with the old value to do_lookup_x.
12961         * elf/do-lookup.h (do_lookup_x): Accept additional parameter with
12962         new-style hash value and change old-style hash value parameter to
12963         be a reference.  Reoganize functions to determine whether
12964         new-style hash table is available.  Only fall back on old-style
12965         table.  If old-style hash value is needed, compute it here.
12966         * elf/dynamic-link.h (elf_get_dynamic_info): Relocate DT_GNU_HASH
12967         entry.
12968         * elf/elf.h: Define SHT_GNU_HASH, DT_GNU_HASH, DT_TLSDEC_PLT,
12969         DT_TLSDEC_GOT.  Adjust DT_ADDRNUM.
12970         * include/link.h (struct link_map): Add l_gnu_bitmask_idxbits,
12971         l_gnu_shift, l_gnu_bitmask, l_gnu_buckets and l_gnu_chain_zero.
12972         * Makeconfig: If linker supports --hash-style option add it to all
12973         linker command lines to build DSOs.
12974         * config.make.in: Define have-hash-style.
12975         * configure.in: Test whether linker supports --hash-style option.
12977         * elf/dl-misc.c (_dl_name_match_p): Make MAP parameter const.
12978         * sysdeps/generic/ldsodefs.h: Adjust prototype.
12980 2006-06-27  Ulrich Drepper  <drepper@redhat.com>
12982         * elf/dl-load.c (open_path): Fix test to determine whether DSO is
12983         auditing.
12985         * elf/dl-load.c (_dl_map_object): Try harder to avoid looking at
12986         RPATH of main map twice.
12988 2006-06-22  Ulrich Drepper  <drepper@redhat.com>
12990         * intl/dcigettext.c (DCIGETTEXT): If _nl_find_msg returns -1 don't
12991         look further, return original strings.
12992         (_nl_find_msg): Do not return found translation if the conversion
12993         failed.  Either signal the string is unusable or that something went
12994         wrong and the original should be used.
12996 2006-06-21  Ulrich Drepper  <drepper@redhat.com>
12998         * string/_strerror.c (__strerror_r): Add __builtin_expect.
13000 2006-06-14  Jakub Jelinek  <jakub@redhat.com>
13002         [BZ #2766]
13003         * misc/insremque.c (insque): Handle prev == NULL.
13004         * misc/Makefile (tests): Add tst-insremque.
13005         * misc/tst-insremque.c: New test.
13007 2006-06-17  Ulrich Drepper  <drepper@redhat.com>
13009         [BZ #2792]
13010         * elf/dl-deps.c (expand_dst): Rename __cnt variable to not
13011         conflict with DL_DST_REQUIRED.
13013 2006-06-16  Ulrich Drepper  <drepper@redhat.com>
13015         * nis/nis_subr.c (nis_getnames): Fix the implementation to better
13016         match what Solaris does.
13018 2006-06-04  Ulrich Drepper  <drepper@redhat.com>
13020         * sysdeps/posix/spawni.c (__spawni): Use local_seteuid and
13021         local_setegid instead of seteuid and setegid.
13022         * sysdeps/generic/local-setxid.h: New file.
13023         * sysdeps/unix/sysv/linux/local-setxid.h: New file.
13025         * sysdeps/posix/spawni.c (__spawni): Use non-cancelable interfaces.
13027         * string/Makefile (tests): Add bug-envz1.
13028         * string/bug-envz1.c: New file.
13030 2006-06-02  Jakub Jelinek  <jakub@redhat.com>
13032         * posix/regex_internal.c (re_string_skip_chars): If no character has
13033         been converted at all, set *last_wc to WEOF.  If mbrtowc failed, set wc
13034         to the byte which couldn't be converted.
13035         (re_string_reconstruct): Don't clear valid_raw_len before calling
13036         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
13037         tip_context using re_string_context_at.
13038         * posix/Makefile: Add rules to build and run bug-regex25 test.
13039         * posix/bug-regex25.c: New test.
13041 2006-06-02  Ryan S. Arnold  <rsa@us.ibm.com>
13043         [BZ #2703]
13044         * string/envz.c (envz_strip): Correct erroneously reversed src
13045         and dest parameters to memmove() invocation.
13047 2006-05-30  Jakub Jelinek  <jakub@redhat.com>
13049         * nscd/nscd.h (prune_cache): Add fd argument to prototype.
13050         * nscd/nscd.c (parse_opt): Read response from INVALIDATE request
13051         to make sure the database has been already invalidated.
13052         * nscd/cache.c (prune_cache): Add fd argument.  Write response to fd
13053         after the cache has been invalidated.  Use pthread_mutex_lock rather
13054         than pthread_mutex_trylock if fd != -1.
13055         * nscd/connections.c (invalidate_cache): Add fd argument, write
13056         response to fd if not calling prune_cache, pass fd to prune_cache.
13057         (handle_request): Adjust invalidate_cache caller.
13058         (nscd_run): Pass -1 as fd to prune_cache.
13060 2006-05-30  Ulrich Drepper  <drepper@redhat.com>
13062         * sysdeps/posix/getaddrinfo.c (gaiconf_init): Initialize bits in
13063         the correct place.
13065 2006-05-29  Ulrich Drepper  <drepper@redhat.com>
13067         * nscd/nscd.h (struct database_dyn): Add prunelock field.
13068         * nscd/cache.c (prune_cache): Take prunelock before starting the
13069         work.  Just return in case it is already taken.
13070         * nscd/connections.c (dbs): Initialize .prunelock.
13072 2006-05-25  Ulrich Drepper  <drepper@redhat.com>
13074         * nis/nis_removemember.c (nis_removemember): Avoid unnecessary
13075         copying.  No need to allocate new array for group members.  Just
13076         move the pointers and update the size.
13078         * nis/nis_addmember.c (nis_addmember): Avoid unnecessary copying.
13079         Avoid memory leak in case realloc fails.  Simplification for
13080         better code generation.
13082         Avoid deprecation warning because of libc_hidden_proto for
13083         inet6_option_alloc.
13084         * inet/inet6_option.c (option_alloc): Renamed from
13085         inet6_option_alloc.  Made static.
13086         (inet6_option_alloc): Now a simple wrapper around option_alloc.
13087         (inet6_option_append): Call option_alloc.
13088         * include/netinet/in.h: Remove libc_hidden_proto for
13089         inet6_option_alloc.
13091         * nis/nis_callback.c (__nis_create_callback): Always call xdr_free
13092         for cleanup when cb!=NULL [Coverity CID 233].
13094 2006-05-24  Ulrich Drepper  <drepper@redhat.com>
13096         [BZ #2693]
13097         * inet/Makefile (routines): Add inet6_opt and inet6_rth.
13098         * inet/Versions (libc, GLIBC_2.5): Add inet6_opt_init,
13099         inet6_opt_append, inet6_opt_finish, inet6_opt_set_val, inet6_opt_next,
13100         inet6_opt_find, inet6_opt_get_val, inet6_rth_space, inet6_rth_init,
13101         inet6_rth_add, inet6_rth_reverse, inet6_rth_segments,
13102         and inet6_rth_getaddr.
13103         * inet/netinet/ip6.h (struct ip6_rthdr0): Make ip6r0_addr a flexible
13104         array.
13105         * inet/netinet/in.h (struct ip6_mtuinfo): Define.
13106         Mark inet6_option_* interfaces as deprecated.
13107         Declare inet6_opt_init, inet6_opt_append, inet6_opt_finish,
13108         inet6_opt_set_val, inet6_opt_next, inet6_opt_find, inet6_opt_get_val,
13109         inet6_rth_space, inet6_rth_init, inet6_rth_add, inet6_rth_reverse,
13110         inet6_rth_segments, and inet6_rth_getaddr.
13111         * inet/inet6_opt.c: New file.
13112         * inet/inet6_rth.c: New file.
13114         * inet/netinet/icmp6.h: Pretty printing.
13116         [BZ #2683]
13117         * elf/dl-addr.c (_dl_addr): Don't match undefined references.
13119 2006-05-23  Ulrich Drepper  <drepper@redhat.com>
13121         * nis/nis_lookup.c (nis_lookup): Use __prepare_niscall instead of
13122         doing it all here.  When server does not know the answer do not
13123         fail immediate, try parent first.
13125         * nis/nis_domain_of_r.c (nis_domain_of_r): Add missing buffer
13126         overflow test.
13128 2006-05-20  Ulrich Drepper  <drepper@redhat.com>
13130         * nis/nis_call.c (__prepare_niscall): New function.  Split out
13131         from __do_niscall.
13132         * nis/nis_table.c (__create_ib_request): Renamed from create_ib_request
13133         and exported.
13134         (__follow_path): New function.  Split out from nis_list.
13135         * nis/nis_xdr.h: Add libnsl_hidden_proto for _xdr_ib_request and
13136         _xdr_nis_result.
13137         * nis/nis_xdr.c: Add libnsl_hidden_def for _xdr_ib_request and
13138         _xdr_nis_result.
13139         * nis/libnsl.h: Declare __prepare_niscall, __create_ib_request,
13140         and __follow_path.
13141         * nis/Versions: Export __prepare_niscall, __create_ib_request,
13142         __follow_path, __do_niscall3, _xdr_ib_request, and _xdr_nis_result
13143         from libnsl for version GLIBC_PRIVATE.
13144         * nis/nisplus-parser.h: Remove _nss_nisplus_parse_pwent_chk.
13145         Remove entry parameter from _nss_nisplus_parse_pwent and
13146         _nss_nisplus_parse_grent.
13147         * nis/nss_nisplus/nisplus-parser.c: Likewise.
13148         * nis/nss_nisplus/nisplus-pwd.c: Remove support for SETENT_BATCH_READ
13149         again.  Rewrite getpwent handling to not use nis_first_entry and
13150         nis_next_entry.  Roll out own niscall handling.
13151         * nis/nss_nisplus/nisplus-grp.c: Likewise.
13153         * sunrpc/xdr_rec.c: Fix typo in comment.
13155 2006-05-19  Ulrich Drepper  <drepper@redhat.com>
13157         * nis/nis_call.c (__do_niscall3): Avoid code duplication in error
13158         handling.
13160         * nis/nis_callback.c (internal_nis_do_callback): Don't use malloc
13161         to allocate memory for my_pollfd.  Better initialization of
13162         cb_is_running.  Use TEMP_FAILURE_RETRY.
13164         * malloc/memusage.sh (memusageso): Add quotes.
13165         (memusagestat): Likewise.
13166         * debug/xtrace.sh (pcprofileso): Likewise.
13167         (pcprofiledump): Likewise.
13168         * debug/Makefile ($(objpfx)xtrace): Use $LIB in SLIBDIR
13169         replacement.
13170         * malloc/Makefile ($(objpfx)memusage): Likewise.
13172         * nis/nis_callback.c (__nis_create_callback): Calls to
13173         svcudp_bufcreate and svctcp_create can fail.  Free ->xprt if
13174         asprintf call fails.
13176         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_sendreq): Make sure
13177         no uninitialized memory is passed to sendto.
13179 2006-05-18  Ulrich Drepper  <drepper@redhat.com>
13181         * nis/nis_callback.c (__nis_create_callback): Use asprinf instead
13182         of snprintf+strdup.  Handle OOM.
13183         * nis/nis_callback.c (__nis_create_callback): Allocate cb and
13184         cb->serv together.  Remove now obsolete free calls.
13185         (__nis_destroy_callback): Remove now obsolete free call.
13187 2006-05-18  David Woodhouse  <dwmw2@redhat.com>
13189         * sysdeps/posix/getaddrinfo.c: Add unique labels to the default
13190         RFC3484 precedence table for fec0::/10 and fc00::/7 (site-local
13191         and ULA respectively). Set precedence for IPv4 address to 10 as
13192         defined in RFC3484 for preferring IPv6.
13193         * posix/gai.conf: Update to match the new default tables.
13195 2006-05-18  Jakub Jelinek  <jakub@redhat.com>
13197         * nis/nss_compat/compat-pwd.c (internal_setpwent): If nss_set*ent
13198         returned NSS_STATUS_UNAVAIL, still return NSS_STATUS_SUCCESS.
13199         * nis/nss_compat/compat-spwd.c (internal_setspent): Likewise.
13200         * nis/nss_compat/compat-grp.c (internal_setgrent): Likewise.
13202         * nis/nss_compat/compat-initgroups.c (nss_setgrent, nss_endgrent):
13203         Removed.
13204         (init_nss_interface): Remove initialization of these variables.
13206 2006-05-18  Ulrich Drepper  <drepper@redhat.com>
13208         * nis/nis_call.c (rec_dirsearch): Little optimization: pull
13209         nis_free_directory forward to avoid duplication.
13211 2006-05-17  Ulrich Drepper  <drepper@redhat.com>
13213         * nis/nis_call.c (rec_dirsearch): Handle __nis_finddirectory and
13214         rec_dirsearch returning NULL.
13215         (first_shoot): Handle __nis_finddirectory returning NULL.
13216         (__nisfind_server): Fix leak when rec_dirsearch returns NULL.
13218         * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOSE, IN_MOVE,
13219         IN_ONLYDIR, IN_DONT_FOLLOW, and IN_MASK_ADD.
13221 2006-05-17  Jakub Jelinek  <jakub@redhat.com>
13223         * sunrpc/key_call.c (getkeyserv_handle): Call auth_destroy if
13224         pid changed.
13226 2006-05-15  Ulrich Drepper  <drepper@redhat.com>
13228         * include/rpc/pmap_prot.h: Mark all functions as hidden.
13230         * nscd/nscd_initgroups.c: Mark __gr_map_handle as hidden.
13231         * nscd/nscd_getgr_r.c: Likewise.
13233         * include/rpc/pmap_rmt.h: Mark all functions as hidden.
13235         * nscd/nscd_getai.c (__hst_map_handle): Mark as hidden.
13236         * nscd/nscd_gethst_r.c (__hst_map_handle): Likewise.
13238         * stdlib/longlong.h (__clz_tab): Mark as hidden.
13240         * iconv/gconv_int.h: Mark __gconv_lock as hidden.
13242         * include/rpc/key_prot.h: Mark all _internal functions as hidden.
13244         * include/rpc/auth.h: Mark xdr_des_block_internal and
13245         xdr_opaque_auth_internal as hidden.
13247         * sysdeps/unix/sysv/linux/getdents.c: Mark __have_no_getdents64 as
13248         hidden.
13250         * include/rpc/xdr.h: Mark all _internal functions as hidden.
13252         * misc/getusershell.c (okshells): Don't use static initializers,
13253         do it dynamically.
13255         * stdlib/fmtmsg.c (keywords): Change type of len element to
13256         uint32_t to not waste space on 64bit machines.
13258         * locale/setlocale.c: Change _nl_category_names into a string.
13259         Add new _nl_category_name_idxs.  Change all users.
13260         * locale/localeinfo.h: Adjust declaration of _nl_category_names.
13261         Declare _nl_category_name_idxs.
13262         * locale/findlocale.c: Adjust for _nl_category_names change.
13263         * locale/loadlocale.c: Likewise.
13264         * locale/newlocale.c: Likewise.
13265         * intl/dcigettext.c: Likewise.
13267         * iconv/gconv_conf.c (add_alias): Move actual alias handling to...
13268         (add_alias2): ...here.  New function.
13269         (__gconv_read_conf): Simplify builtin alias handling.
13270         (builtin_aliases): Convert to string to avoid relocations.
13271         * iconv/gconv_builtin.h: Add comment about correct formatting.
13273 2006-05-15  Jakub Jelinek  <jakub@redhat.com>
13275         * resolv/res_debug.c (loc_ntoa): Make error const.
13277 2006-05-14  Andreas Schwab  <schwab@suse.de>
13279         * math/complex.h [__LDBL_COMPAT]: Use __REDIRECT_NTH.
13281 2006-05-12  Jakub Jelinek  <jakub@redhat.com>
13283         * sysdeps/unix/sysv/linux/sched_getaffinity.c: Include sys/param.h.
13284         (__sched_getaffinity_new): Don't crash if cpusetsize is smaller than
13285         sizeof (cpu_set_t).
13287 2006-05-11  Ulrich Drepper  <drepper@redhat.com>
13289         * resolv/res_debug.c (loc_ntoa): Define error as array, not pointer.
13291         * include/arpa/nameser.h: Declare _ns_flagdata as hidden.
13293         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_master.
13294         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_master.
13296         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypbind_resp.
13297         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypbind_resp.
13299         * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_cback_data.
13300         * include/rpcsvc/nis_callback.h: Add libnsl_hidden_proto for
13301         xdr_cback_data.
13303         * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypupdate_args.
13304         * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
13305         xdr_ypupdate_args.
13307         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_order.
13308         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_order.
13310         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_maplist.
13311         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_maplist.
13313         * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_obj_p.
13314         * include/rpcsvc/nis_callback.h: New file.
13316         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_val.
13317         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_val.
13319         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
13320         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
13322         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypmaplist.
13323         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypmaplist.
13325         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
13326         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
13328         * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypdelete_args.
13329         * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
13330         xdr_ypdelete_args.
13332         * nis/nis_xdr.h: Mark all functions as hidden.  Remove
13333         __BEGIN_DECLS and __END_DECLS, the header is not installed.
13335         * nis/nis_error.c: Remove table of strings.  Use position
13336         independent mechanism.
13337         * nis/nis_error.h: New file.
13339 2006-05-11  Jakub Jelinek  <jakub@redhat.com>
13341         * locale/programs/ld-time.c (time_finish): If wide era name or
13342         format aren't provided, set both wname and wformat to L"".
13344 2006-05-10  Ulrich Drepper  <drepper@redhat.com>
13346         * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Only store
13347         results if the call was succesful.
13349         * nis/nss-nis.h: Mark __yperr2nss_tab and __yperr2nss_count as hidden.
13351         * nis/nss-nisplus.h: Mark __niserr2nss_tab and __niserr2nss_count
13352         as hidden.
13354 2006-05-10  Jakub Jelinek  <jakub@redhat.com>
13356         * misc/sys/queue.h: Remove uses of all QUEUEDEBUG_* macros.
13358 2006-05-10  Ulrich Drepper  <drepper@redhat.com>
13360         * posix/wordexp.c (parse_glob): No need to check ifs for NULL, the
13361         caller makes sure this is not the case.
13362         (wordexp): Simplify ifs_white creation.  [Coverity CID 231]
13364 2006-05-09  Ulrich Drepper  <drepper@redhat.com>
13366         * posix/wordexp.c: Remove numerous NULL pointer tests before FREE
13367         calls.
13369         * io/ftw.c (open_dir_stream): Return right away if REALLOC fails.
13370         [Coverity CID 229, 230]
13372         * argp/argp-help.c (hol_entry_help): Handle STATE==NULL in ARG and
13373         DGETTEXT calls.
13374         (hol_help): Likewise.  [Coverity CID 226, 227]
13376         * string/argz-replace.c (__argz_replace): Unconditionally call
13377         free on SRC.  [Coverity CID 225]
13379         * nis/nis_creategroup.c (nis_creategroup): No need to duplicate
13380         the return value of __nis_default_owner and __nis_default_group,
13381         it has been especially allocated.  [Coverity CID 224]
13383         * nis/nis_defaults.c (searchXYX): New functions.  Used by both
13384         searchgroup and searchowner.  Significantly simplified.
13385         (__nis_default_owner): Remove duplication.  Do not locally copy the
13386         string before duplicating it.
13387         (__nis_default_group): Likewise.
13389         * nis/nis_lookup.c (nis_lookup): After calling nis_free_directory,
13390         we must clear the variable before calling __nisfind_server.
13392         * nis/nis_lookup.c (nis_lookup): Always free memory allocated with
13393         nis_getnames.  [Coverity CID 223]
13395         * locale/programs/locfile.c (locfile_read): Use alloca instead of
13396         xmalloc to allocate local repertoire name.  [Coverity CID 222]
13398         * iconv/iconv_charmap.c (use_to_charmap): No need to dynamically
13399         allocate memory for the input to add_bytes.  [Coverity CID 221]
13401         * posix/wordexp.c (w_addword): Free word if realloc fails and it
13402         was allocated here.  [Coverity CID 219, 220]
13404         * posix/getconf.c (print_all): Free confstr data after printing.
13405         [Coverity CID 218]
13407         * sysdeps/posix/getaddrinfo.c (gaih_inet): Free canon string if
13408         list allocation fails.  [Coverity CID 215]
13410         * nss/nsswitch.c (__nss_configure_lookup): Fix loop end condition.
13411         [Coverity CID 213]
13413         * argp/argp-help.c (hol_entry_cmp): Don't call canon_doc_option if
13414         string is NULL.  [Coverity CID 212]
13415         * argp/Makefile: Add rules to build and run bug-argp1.
13416         * argp/bug-argp1.c: New file.
13418         * io/ftw.c (ftw_dir): Use __rawmemchr instead of strchr to find
13419         end of string.
13420         * stdlib/canonicalize.c (__realpath): Likewise.
13422         * locale/programs/ld-time.c (time_finish): Don't dereference NULL
13423         pointer.  [Coverity CID 206]
13425         * elf/dl-dst.h (DL_DST_REQUIRED): Be prepared for missing link map
13426         in statically linked code.
13427         * elf/dl-load.c (_dl_dst_substitute): When replacing ORIGIN in
13428         statically built code, be prepared to have no link map.
13429         [Coverity CID 205]
13431         * argp/argp-help.c (fill_in_uparams): Handle STATE==NULL in
13432         dgettext calls. [Coverity CID 204]
13434         * argp/argp-help.c (struct uparams): Remove valid member.  Change
13435         the one user.
13436         (uparam_names): Reduce size.  Avoid relative relocations.
13437         Moved to read-only segment.
13438         (fill_in_uparams): Update for new layout.
13440         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs): Parameter can be
13441         assumed to always be != NULL. [Coverity CID 202]
13443         * argp/argp-help.c (hol_entry_help): Remove some dead code
13444         [Coverity CID 200].
13446         * nis/nss_nis/nis-service.c (_nss_nis_getservbyport_r): Optimize
13447         away a few more unconditional yperr2nss calls.
13448         (_nss_nis_getservbyname_r): Likewise.
13450 2006-05-06  Ulrich Drepper  <drepper@redhat.com>
13452         * sysdeps/generic/ldsodefs.h: Remove support for non-core
13453         architectures.
13455         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Make sure
13456         that unused memory passed to sendto is nevertheless initialized.
13458         [BZ #2499]
13459         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Avoid
13460         possibly unaligned memory accesses.
13462         * include/arpa/nameser.h: Also optimize NS_PUT16 and NS_PUT32.
13463         * resolv/res_mkquery.c: Use NS_PUT16 and NS_PUT32 instead of __putshort
13464         and __putlong respectively.  Correct buffer overflow check for
13465         NS_NOTIFY_OP.
13467         * resolv/res_send.c (send_vc): Use ns_put16 instead of putshort.
13469         * resolv/res_send.c (res_queriesmatch): Fix typo in comment.
13470         (send_dg): Rewrite error handling to be more compact and avoid
13471         double recomputation of timeouts.  Pass MSG_NOSIGNAL to send.
13473         * include/arpa/nameser.h: Add optimizations for NS_GET16 and NS_GET32.
13475         * resolv/res_send.c (res_nameinquery): Use NS_GET16 directly
13476         instead of ns_get16.
13477         (res_queriesmatch): Likewise.  Minor optimization.
13479         [BZ #2499]
13480         * resolv/res_query.c (__libc_res_nquery): If answerp != NULL,
13481         __libc_res_nsend might reallocate the buffer for the answer.  In
13482         this case we have to reload the HP pointer.
13484 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
13486         * stdio-common/vfscanf.c (memory_error): Remove definition.  Add
13487         some branch prediction hints.
13489         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Define SPLICE_F_*.
13490         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
13491         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
13492         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
13493         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
13494         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
13495         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
13496         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
13498 2006-05-05  Martin Schwidefsky  <schwidefsky@de.ibm.com>
13500         * sysdeps/s390/s390-32/elf/start.S: Replace pc relative relocation
13501         by a GOT relocation to make Scrt1.o position independent.
13502         * sysdeps/s390/s390-64/elf/start.S: Likewise.
13504         * sysdeps/unix/sysv/linux/s390/s390-32/syscall.S: Add support for
13505         six system call parameters.
13506         * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
13508 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
13510         * sunrpc/svcauth_des.c (cache_init): Use calloc instead of
13511         malloc&bzero.
13513         * sunrpc/svc_udp.c (BZERO): Remove definition.
13514         (CALLOC): Define.
13515         (svc_enablecache): Use CALLOC instead of ALLOC&BZERO.
13517         * sunrpc/des_impl.c: Remove ALT_ECB support.  We never used it.
13518         (des_SPtrans): Use uint32_t type.
13519         (des_skb): Likewise.
13521         * sunrpc/xdr_ref.c (xdr_reference): Use calloc instead of malloc&bzero.
13523 2006-05-05  Jakub Jelinek  <jakub@redhat.com>
13525         [BZ #2509]
13526         * stdio-common/tst-printf.sh: Adjust for tst-printf.c change even
13527         on 32-bit arches.
13529 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
13531         * locale/programs/ld-address.c (address_finish): Fix one more
13532         place where the iso639 array might be accessed beyond the limits.
13534 2006-05-04  Ulrich Drepper  <drepper@redhat.com>
13536         * nis/nis_table.c (nis_list): Avoid clearing res twice before
13537         filling it for the first time.
13539         * nis/nis_table.c (get_tablepath): Renamed from __get_tablepath.
13540         Adjust all callers.
13541         Free res object content before returning.
13543         * sunrpc/xdr_array.c (xdr_array): Use calloc instead of malloc&bzero.
13545         * sunrpc/key_call.c (__rpc_thread_key_cleanup): Also free
13546         client->cl_auth.
13548         * sunrpc/rpc_thread.c (__rpc_thread_destroy): Don't skip entire
13549         cleanup for initial thread, just the free call on TVP.
13551         * nscd/gai.c (__getline): Define.
13554 See ChangeLog.16 for earlier changes.