1 2007-04-16 Jakub Jelinek <jakub@redhat.com>
3 * locale/programs/locarchive.c (show_archive_content): Fix sizeof
4 argument in xmalloc size computation.
6 2007-04-01 Jakub Jelinek <jakub@redhat.com>
8 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Use
9 math_opt_barrier and math_force_eval macros.
11 2007-03-27 Jakub Jelinek <jakub@redhat.com>
14 * math/math_private.h (math_opt_barrier, math_force_eval): Define.
15 * sysdeps/i386/fpu/math_private.h: New file.
16 * sysdeps/x86_64/fpu/math_private.h: New file.
17 * math/s_nexttowardf.c (__nexttowardf): Use math_opt_barrier and
18 math_force_eval macros. Use "+m" constraint on asm rather than
20 * math/s_nextafter.c (__nextafter): Likewise.
21 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward):
23 * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
24 * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward): Likewise.
25 * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
26 * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Use
27 math_opt_barrier and math_force_eval macros.
28 * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl): Likewise.
29 * sysdeps/ieee754/ldbl-96/s_nextafterl.c (__nextafterl): Likewise.
30 * sysdeps/i386/fpu/s_nexttoward.c: Include float.h.
31 (__nexttoward): Use math_opt_barrier and
32 math_force_eval macros. Use "+m" constraint on asm rather than
33 "=m" and "m". Only use asm to force double result if
35 * sysdeps/i386/fpu/s_nexttowardf.c: Include float.h.
36 (__nexttowardf): Use math_opt_barrier and
37 math_force_eval macros. Use "+m" constraint on asm rather than
38 "=m" and "m". Only use asm to force double result if
39 FLT_EVAL_METHOD is not 0.
40 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Include float.h.
41 (__nexttowardf): Use math_opt_barrier and
42 math_force_eval macros. If FLT_EVAL_METHOD is not 0, force
44 * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c: Include float.h.
45 (__nldbl_nexttowardf): Use math_opt_barrier and
46 math_force_eval macros. If FLT_EVAL_METHOD is not 0, force
48 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Include float.h.
49 (__nexttowardf): Use math_opt_barrier and math_force_eval
50 macros. If FLT_EVAL_METHOD is not 0, force x to float using asm.
51 * math/bug-nextafter.c (zero, inf): New variables.
52 (main): Add new tests.
53 * math/bug-nexttoward.c (zero, inf): New variables.
54 (main): Add new tests.
56 2007-03-22 Jakub Jelinek <jakub@redhat.com>
59 * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Clear all
60 exceptions both in SW and MXCSR.
61 * sysdeps/x86_64/fpu/feupdateenv.c: New file.
62 * sysdeps/x86_64/fpu/feenablxcpt.c (feenableexcept): Remove dead code.
63 * sysdeps/x86_64/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
64 * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
65 in MXCSR if SSE is available.
66 * sysdeps/i386/fpu/feupdateenv.c: Include unistd.h, dl-procinfo.h
68 (__feupdateenv): Query exceptions also from MXCSR if SSE is available.
70 * sysdeps/ia64/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions.
71 Return 0 rather than 1.
72 * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Fix comment typo.
73 Remove incorrect part of a comment. Fix argument to feraiseexcept.
74 * math/test-fenv.c (feholdexcept_tests): New function.
77 2007-01-05 Richard B. Kreckel <kreckel@ginac.de>
80 * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Clear all exceptions
83 2007-04-13 Jakub Jelinek <jakub@redhat.com>
86 * elf/ldconfig.c (search_dir): Fix 2 off-by-2 errors.
87 Reported by David Anderson <davea42@earthlink.net>.
89 2007-04-07 Ulrich Drepper <drepper@redhat.com>
91 * posix/sys/wait.h: Remove unnecessary forward declaration.
93 2007-04-05 Jakub Jelinek <jakub@redhat.com>
95 * nis/nis_call.c (__nisfind_server): Replace (*dir)->do_servers
96 with obj->do_servers after first_shoot.
98 2007-04-03 Ulrich Drepper <drepper@redhat.com>
100 * posix/Makefile (routines): Add sched_cpucount.
101 (tests): Add tst-cpucount.
102 * posix/sched_cpucount.c: New file.
103 * posix/tst-cpucount.c: New file.
104 * posix/Versions: Export __sched_cpucount with version GLIBC_2.6.
105 * bits/sched.h: Define __CPU_COUNT. Declare __sched_cpucount.
106 * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
107 * posix/sched.h: Define CPU_COUNT.
109 2007-03-27 Jakub Jelinek <jakub@redhat.com>
111 * posix/fnmatch.c (STRUCT): Define.
112 (fnmatch): Pass NULL as last argument to internal_fn{,w}match.
113 * posix/fnmatch_loop.c (struct STRUCT): New type.
114 (FCT): Add ends argument. If ends != NULL and normal * is
115 seen in the pattern, store current pattern and string pointers
116 and return. Adjust recursive calls.
117 (EXT): Adjust FCT callers.
118 (STRUCT): Undef at the end of the file.
119 * posix/Makefile (tests): Add tst-fnmatch2.
120 * posix/tst-fnmatch2.c: New test.
122 2007-04-01 Jakub Jelinek <jakub@redhat.com>
124 * sysdeps/ia64/fpu/fesetround.c (fesetround): Return 0 on success
127 * sysdeps/unix/sysv/linux/sync_file_range.c (sync_file_range):
128 Change last argument to unsigned int.
130 2007-03-23 Jakub Jelinek <jakub@redhat.com>
132 * scripts/check-local-headers.sh: Filter out sys/capability.h.
134 2007-03-22 Jakub Jelinek <jakub@redhat.com>
136 * config.h.in (HAVE_LIBCAP): Add.
137 * nscd/selinux.h: Include sys/capability.h rather than non-existent
139 * nscd/selinux.c (preserve_capabilities): Use cap_free instead of
140 free_caps. Cast away const from 4th cap_set_flag argument.
142 2007-03-26 Ulrich Drepper <drepper@redhat.com>
144 * sysdeps/unix/sysv/linux/Versions: Move sync_file_range to
146 * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
148 Reported by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
150 2007-03-19 Steven Munroe <sjmunroe@us.ibm.com>
152 * sysdeps/powerpc/bits/atomic.h
153 [!MUTEX_HINT_ACQ]: Define MUTEX_HINT_ACQ.
154 [!MUTEX_HINT_REL]: Define MUTEX_HINT_REL.
155 (__arch_compare_and_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
156 (__arch_compare_and_exchange_val_32_rel): Add MUTEX_HINT_REL to lwarx.
157 (__arch_atomic_exchange_val_32_acq): Add MUTEX_HINT_ACQ to lwarx.
158 (__arch_atomic_exchange_rel_32_rel): Add MUTEX_HINT_REL to lwarx.
159 * sysdeps/powerpc/powerpc32/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6X]:
160 Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
161 (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
162 (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
163 * sysdeps/powerpc/powerpc64/bits/atomic.h [_ARCH_PWR6 || _ARCH_PWR6D]:
164 Define MUTEX_HINT_ACQ as ",1" and MUTEX_HINT_REL as ",0".
165 (__arch_compare_and_exchange_bool_32_acq): Add MUTEX_HINT_ACQ to lwarx.
166 (__arch_compare_and_exchange_bool_32_rel): Add MUTEX_HINT_REL to lwarx.
167 (__arch_compare_and_exchange_bool_64_acq): Add MUTEX_HINT_ACQ to lwarx.
168 (__arch_compare_and_exchange_bool_64_rel): Add MUTEX_HINT_REL to lwarx.
169 (__arch_compare_and_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
170 (__arch_compare_and_exchange_val_64_rel): Add MUTEX_HINT_REL to lwarx.
171 (__arch_atomic_exchange_val_64_acq): Add MUTEX_HINT_ACQ to lwarx.
172 (__arch_atomic_exchange_rel_64_rel): Add MUTEX_HINT_REL to lwarx.
174 2007-03-20 Jakub Jelinek <jakub@redhat.com>
176 * sysdeps/unix/sysv/linux/powerpc/libc-start.c
177 (__cache_line_size): Define the variable here. Add
178 attribute_hidden, remove weak_extern.
179 (__libc_start_main): Set __cache_line_size
181 * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
182 (__cache_line_size): Define the variable here. Add
183 attribute_hidden, remove weak_extern.
184 (DL_PLATFORM_AUXV): Set __cache_line_size
186 * sysdeps/powerpc/powerpc32/dl-machine.c (__cache_line_size): Remove
187 weak_extern, add attribute_hidden.
188 (__elf_machine_runtime_setup): Assume __cache_line_size is always
190 * sysdeps/powerpc/powerpc32/memset.S (__cache_line_size): Remove
192 * sysdeps/powerpc/powerpc64/memset.S (__cache_line_size): Likewise.
194 2007-03-26 Jakub Jelinek <jakub@redhat.com>
197 * timezone/africa: Update from tzdata2007d.
198 * timezone/asia: Likewise.
199 * timezone/australasia: Likewise.
200 * timezone/backward: Likewise.
201 * timezone/europe: Likewise.
202 * timezone/iso3166.tab: Likewise.
203 * timezone/leapseconds: Likewise.
204 * timezone/northamerica: Likewise.
205 * timezone/southamerica: Likewise.
206 * timezone/zone.tab: Likewise.
208 * timezone/private.h: Update from tzcode2007d.
209 * timezone/zdump.c: Likewise.
210 * timezone/zic.c: Likewise.
212 2007-03-21 Jakub Jelinek <jakub@redhat.com>
214 * nis/nis_call.c: Include bits/libc-lock.h, sys/stat.h, unistd.h.
215 (nis_server_cache, nis_server_cache_lock, nis_cold_start_mtime): New
217 (nis_server_cache_search, nis_server_cache_add): New functions.
218 (__nisfind_server): Use them. Add dbp and flags argument, if
219 call __nisbind_create.
220 (__nisbind_create): Add server_used and current_ep arguments,
221 only call __nis_findfastest if server_used is ~0.
222 (__do_niscall2, __prepare_niscall): Adjust callers.
223 (ckey_cache, ckey_cache_size, ckey_cache_allocated, ckey_cache_pid,
224 ckey_cache_euid, ckey_cache_lock): New variables.
225 (get_ckey): New function.
226 (__nisbind_connect): If not dbp->use_udp, pass IPPROTO_TCP to
227 __pmap_getnisport. Save __pmap_getnisport result in
228 dbp->addr.sin_port if non-zero. Use get_ckey to create conversation
230 * nis/nis_lookup.c (nis_lookup): Likewise.
231 * nis/nis_table.c (nis_list): Likewise.
232 * nis/rpcsvc/nislib.h (__nisbind_create, __nisfind_server): Adjust
235 * nis/nss_nisplus/nisplus-pwd.c (_nss_nisplus_getpwnam_r,
236 _nss_nisplus_getpwuid_r): Pass USE_DGRAM flag to nis_list.
237 * nis/nss_nisplus/nisplus-service.c (_nss_nisplus_getservbyname_r,
238 _nss_nisplus_getservbyport_r): Likewise.
239 * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r,
240 _nss_nisplus_getnetbyaddr_r): Likewise.
241 * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_getspnam_r): Likewise.
242 * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r,
243 _nss_nisplus_getntohost_r): Likewise.
244 * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r,
245 _nss_nisplus_getrpcbynumber_r): Likewise.
247 2007-03-20 Jakub Jelinek <jakub@redhat.com>
249 * configure.in (libc_cv_gnu89_inline): Only do compile test.
250 * configure: Rebuilt.
252 * soft-fp/double.h (_FP_UNION_D): Use _FP_W_TYPE for frac
254 * soft-fp/extended.h (_FP_UNION_E): Likewise.
256 2006-06-07 Joseph Myers <joseph@codesourcery.com>
259 * soft-fp/quad.h (_FP_UNION_Q): Use _FP_W_TYPE for frac
262 2007-03-18 Jakub Jelinek <jakub@redhat.com>
264 * nscd/gai.c: Include alloca.h.
265 (__libc_use_alloca): Define.
267 2007-03-16 Jakub Jelinek <jakub@redhat.com>
269 * elf/dl-open.c (dl_open_worker): Declare l in 2 different
271 * elf/dl-dst.h (DL_DST_REQ_STATIC): Add l as macro argument.
272 (DL_DST_REQUIRED): Adjust user.
274 * include/dlfcn.h (struct link_map): New forward decl.
276 * inet/getnameinfo.c: Include stddef.h.
277 (getnameinfo): Use offsetof.
279 * time/tst-mktime2.c (do_test): Don't rely on signed wrap.
281 * stdio-common/vfprintf.c (_itoa): Undef before redefining.
283 * string/strerror_l.c: Include stdlib.h.
285 * configure.in (libc_cv_gnu89_inline): Test for -fgnu89-inline.
286 * config.make.in (gnu89-inline-CFLAGS): New variable.
287 * Makeconfig (CFLAGS): Use $(gnu89-inline-CFLAGS) together with
289 * misc/sys/cdefs.h (__extern_inline, __extern_always_inline): Define.
290 * argp/argp.h: Use it.
291 * bits/mathinline.h: Likewise.
292 * bits/sigset.h: Likewise.
293 * bits/string.h: Likewise.
294 * ctype/ctype.h: Likewise.
295 * hurd/hurd.h: Likewise.
296 * hurd/hurd/fd.h: Likewise.
297 * hurd/hurd/port.h: Likewise.
298 * hurd/hurd/signal.h: Likewise.
299 * hurd/hurd/threadvar.h: Likewise.
300 * hurd/hurd/userlink.h: Likewise.
301 * io/sys/stat.h: Likewise.
302 * libio/bits/stdio.h: Likewise.
303 * libio/bits/stdio2.h: Likewise.
304 * mach/lock-intern.h: Likewise.
305 * mach/mach/mig_support.h: Likewise.
306 * math/bits/cmathcalls.h: Likewise.
307 * posix/bits/unistd.h: Likewise.
308 * socket/bits/socket2.h: Likewise.
309 * stdlib/bits/stdlib.h: Likewise.
310 * stdlib/stdlib.h: Likewise.
311 * string/argz.h: Likewise.
312 * string/bits/string2.h: Likewise.
313 * string/bits/string3.h: Likewise.
314 * sysdeps/alpha/fpu/bits/mathinline.h: Likewise.
315 * sysdeps/generic/inttypes.h: Likewise.
316 * sysdeps/generic/machine-lock.h: Likewise.
317 * sysdeps/generic/machine-sp.h: Likewise.
318 * sysdeps/i386/fpu/bits/mathinline.h: Likewise.
319 * sysdeps/i386/i486/bits/string.h: Likewise.
320 * sysdeps/ia64/fpu/bits/mathinline.h: Likewise.
321 * sysdeps/mach/alpha/machine-lock.h: Likewise.
322 * sysdeps/mach/alpha/machine-sp.h: Likewise.
323 * sysdeps/mach/i386/machine-lock.h: Likewise.
324 * sysdeps/mach/powerpc/machine-lock.h: Likewise.
325 * sysdeps/mach/powerpc/machine-sp.h: Likewise.
326 * sysdeps/powerpc/fpu/bits/mathinline.h: Likewise.
327 * sysdeps/s390/bits/string.h: Likewise.
328 * sysdeps/s390/fpu/bits/mathinline.h: Likewise.
329 * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
330 * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Likewise.
331 * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
332 * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
333 * sysdeps/unix/sysv/linux/sys/sysmacros.h: Likewise.
334 * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
335 * wcsmbs/bits/wchar2.h: Likewise.
336 * wcsmbs/wchar.h: Likewise.
337 * stdlib/gmp.h: Likewise. Include <features.h> to get
338 __extern_inline definition.
340 2007-03-15 Jakub Jelinek <jakub@redhat.com>
342 * locale/programs/ld-ctype.c (find_translit): Return NULL if ctype is
346 * math/libm-test.inc (log_test): Test -Inf and NaN.
347 (log10_test, log1p_test, log2_test): Test -Inf.
348 * sysdeps/i386/fpu/e_log.S (__ieee754_log): Don't raise
349 FE_INVALID when argument is qNaN.
350 * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
351 * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
352 * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
353 * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Replace
354 andb $1, %ah with testb $1, %ah, don't test for parity, instead
355 testb $4, %ah and jump if non-zero.
356 * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Likewise.
357 * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Likewise.
360 * argp/argp-help.c (hol_cluster_cmp): Fix comparisons used to find
361 ancestors with the same depths.
362 Patch by Niels Moeller <nisse@lysator.liu.se>.
363 (filter_doc): Don't crash if argp is NULL.
364 * argp/Makefile (tests): Add tst-argp2.
365 * argp/tst-argp2.c: New test.
368 * login/utmp_file.c (setutent_file): Use O_LARGEFILE for
370 (updwtmp_file): Likewise.
373 * inet/inet6_opt.c (add_padding): Only insert padding if npad > 0.
374 (inet6_opt_append): Don't check extlen is big enough if extbuf
376 (inet6_opt_finish): Likewise.
377 * inet/Makefile (tests): Add test-inet6_opt.
378 * inet/test-inet6_opt.c: New test.
380 * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Never
381 reallocate the buffer, instead fail for MSG_TRUNC or for EBUSY
382 NLMSG_ERR. Instead use a page sized buffer.
383 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use page sized
386 2007-03-14 Richard Henderson <rth@redhat.com>
388 * sysdeps/alpha/fpu/s_llround.c: New file.
389 * sysdeps/alpha/fpu/s_llroundf.c: New file.
390 * sysdeps/alpha/fpu/s_lround.c: New file.
391 * sysdeps/alpha/fpu/s_lroundf.c: New file.
392 * sysdeps/alpha/fpu/s_round.c: New file.
393 * sysdeps/alpha/fpu/s_roundf.c: New file.
394 * sysdeps/alpha/fpu/s_trunc.c: New file.
395 * sysdeps/alpha/fpu/s_truncf.c: New file.
397 * sysdeps/alpha/fpu/s_ceil.c: Rewrite without branches.
398 * sysdeps/alpha/fpu/s_ceilf.c: Likewise.
399 * sysdeps/alpha/fpu/s_floor.c: Likewise.
400 * sysdeps/alpha/fpu/s_floorf.c: Likewise.
401 * sysdeps/alpha/fpu/s_rint.c: Likewise.
402 * sysdeps/alpha/fpu/s_rintf.c: Likewise.
404 * sysdeps/alpha/fpu/s_fmax.S: New file.
405 * sysdeps/alpha/fpu/s_fmaxf.S: New file.
406 * sysdeps/alpha/fpu/s_fmin.S: New file.
407 * sysdeps/alpha/fpu/s_fminf.S: New file.
408 * sysdeps/alpha/fpu/s_isnan.c: New file.
409 * sysdeps/alpha/fpu/s_isnanf.c: New file.
410 * sysdeps/alpha/fpu/s_llrint.c: New file.
411 * sysdeps/alpha/fpu/s_llrintf.c: New file.
412 * sysdeps/alpha/fpu/s_lrint.c: New file.
413 * sysdeps/alpha/fpu/s_lrintf.c: New file.
414 * sysdeps/alpha/fpu/s_nearbyint.c: New file.
415 * sysdeps/alpha/fpu/s_nearbyintf.c: New file.
417 * sysdeps/alpha/fpu/bits/mathinline.h (__floorf, __floor): Remove.
418 (__fdimf, fdimf, __fdim, fdim): Remove.
419 (__signbitf, __signbit, __signbitl): Use gcc builtin if available.
420 (__isnanf, __isnan, __isnanl): New.
422 2007-03-13 Richard Henderson <rth@redhat.com>
424 * sysdeps/ieee754/ldbl-128/Makefile: New file.
426 2007-03-13 Richard Henderson <rth@redhat.com>
428 * sysdeps/alpha/Makefile (sysdep-CFLAGS): Force dynamic rounding.
429 * sysdeps/alpha/fpu/bits/mathinline.h (__signbitl): New.
430 * sysdeps/alpha/fpu/libm-test-ulps: Regenerate.
431 * sysdeps/unix/sysv/linux/alpha/alphaev6/fpu/Implies: New file.
432 * sysdeps/unix/sysv/linux/alpha/alphaev67/fpu/Implies: New file.
433 * sysdeps/unix/sysv/linux/alpha/fpu/Implies: New file.
435 2007-03-13 Richard Henderson <rth@redhat.com>
437 * elf/dl-support.c (_dl_aux_init): Honor DL_PLATFORM_AUXV.
438 * sysdeps/unix/sysv/linux/alpha/dl-auxv.h: New file.
439 * sysdeps/unix/sysv/linux/alpha/dl-support.c: New file.
440 * sysdeps/unix/sysv/linux/alpha/dl-sysdep.c (__libc_alpha_cache_shape):
441 Move to dl-auxv.h; initialize instead of extern weak.
442 (DL_PLATFORM_AUXV): Move to dl-auxv.h; don't test for undef
444 * sysdeps/unix/sysv/linux/alpha/sysconf.c (__libc_alpha_cache_shape):
445 Extern instead of initialized.
447 2007-03-13 Richard Henderson <rth@redhat.com>
449 * sysdeps/unix/sysv/linux/alpha/sigsuspend.S: Add support for
450 __sigsuspend_nocancel.
452 2007-03-06 Ulrich Drepper <drepper@redhat.com>
454 * sysdeps/posix/getaddrinfo.c (get_scope): Correct test for
455 172.16/12 address range.
457 2007-03-02 Jakub Jelinek <jakub@redhat.com>
459 * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Retry with
460 a new netlink socket if NLMSG_ERR -EBUSY is seen after some MSG_TRUNC
463 2007-03-01 Jakub Jelinek <jakub@redhat.com>
466 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Check for NaN
468 * math/libm-test.inc (pow_test): Add more tests involving NaNs.
470 * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Avoid invalid exception
471 for x qNaN and y either +-inf or non-integer value.
472 * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Likewise.
473 * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
474 * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
476 2007-02-10 Mike Frysinger <vapier@gentoo.org>
478 * sysdeps/unix/sysv/linux/sh/Makefile: Remove sys/io.h
481 2007-02-28 Jakub Jelinek <jakub@redhat.com>
483 * time/tzfile.c (find_transition): Instead of a linear search try to
484 guess the transition index, use a linear search if the result is at
485 most 10 transitions away from the guess or binary search otherwise.
487 2007-02-27 Jakub Jelinek <jakub@redhat.com>
489 * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Fix
492 2007-02-21 Ulrich Drepper <drepper@redhat.com>
494 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Add branch predictions
496 Optimize use of TOLOWER.
499 * sysdeps/i386/fpu/e_fmodf.S: Revert last changes, keep using fprem.
500 * sysdeps/i386/fpu/e_fmodl.c: Likewise.
501 * sysdeps/i386/fpu/e_fmod.S: Likewise.
504 * sysdeps/unix/sysv/linux/posix_madvise.c: New file.
505 * sysdeps/unix/sysv/linux/syscalls.list: Remove posix_madvise entry.
508 * io/ftw.c (ftw_startup): Handle special case of FTW_CHDIR in /.
509 (open_dir_stream): Likewise.
510 * io/Makefile (tests): Add bug-ftw5.
511 io/bug-ftw5.c: New file.
513 * nscd/hstcache.c (cache_addhst): Remove unnecessary conditional.
514 * nscd/servicescache.c (cache_addserv): Likewise.
516 * nscd/grpcache.c (cache_addgr): In case a record changed on
517 refresh, adjust key_copy.
520 * nscd/pwdcache.c (cache_addpw): In case a record changed on
521 refresh, adjust key_copy.
524 * stdio-common/printf_fp.c (___printf_fp): Handle a few more
526 * stdio-common/tfformat.c (sprint_doubles): Some more tests.
528 2007-02-19 Ulrich Drepper <drepper@redhat.com>
530 * stdio-common/printf_fp.c (___printf_fp): Cleanups and minor
533 * stdio-common/vfscanf.c: Small cleanups throughout.
535 2007-02-18 Ulrich Drepper <drepper@redhat.com>
538 * sysdeps/i386/fpu/e_fmodf.S: Use fprem1 instead of fprem.
539 * sysdeps/i386/fpu/e_fmodl.c: Likewise.
540 * sysdeps/i386/fpu/e_fmod.S: Likewise.
541 Patch by Jared Casper <jaredcasper@gmail.com>.
543 * sysdeps/unix/closedir.c: Outside libc don't use locking.
544 * sysdeps/unix/opendir.c: Likewise.
545 * sysdeps/unix/readdir.c: Likewise.
548 * stdio-common/vfscanf.c: Handle localized digits etc for floating
550 Patch mostly by Hamed Malek <hamed@farsiweb.info>.
552 * stdio-common/vfscanf.c: Fix problems in width accounting.
553 * stdio-common/tst-sscanf.c (double_tests): New tests.
554 (main): Hook them up.
556 * stdio-common/vfscanf.c: Remove unused WIDTH handling.
557 More simplifications of floating-point reader.
559 * stdio-common/Makefile (tests): Add tst-swscanf.
560 * stdio-common/tst-sscanf.c: Make tests usable for swscanf
562 * stdio-common/tst-swscanf.c: New file.
564 2007-02-17 Ulrich Drepper <drepper@redhat.com>
567 * libio/stdio.h: Define struct _IO_FILE in global namespace.
568 * setjmp/setjmp.h: Define __jmp_buf_tag in global namespace.
569 Remove using for __jmp_buf_tag.
570 * locale/locale.h (struct lconv): Also define in std namespace.
571 * wcsmbs/wchar.h: Move using declaration for tm out of namespace.
574 * sysdeps/posix/euidaccess.c [_LIBC] (euidaccess): Remove shortcut
575 using __libc_enable_secure.
578 * sysdeps/unix/sysv/linux/sys/acct.h (struct acct_v3): Define.
581 * locale/programs/ld-collate.c (handle_ellipsis): Fix generation
582 of names for ellipsises.
585 * malloc/memusage.sh: Cleanups.
586 * debug/xtrace.sh: Quoting and trap changes.
588 2007-02-16 Ulrich Drepper <drepper@redhat.com>
590 * locale/iso-3166.def: Add Jersey, Guernsey, and Isle Of Man entries.
592 * locale/iso-3166.def: Update entry for Serbia.
593 * locale/iso-4217.def: Define RSD, remove CSD.
595 * sysdeps/x86_64/bits/atomic.h: One more change, this time for 16-
596 and 64-bit operations.
599 * sysdeps/i386/i486/bits/atomic.h: One more change, this time for
602 * nscd/nscd.c (parse_opt): One more conversion to use send instead
605 2007-02-15 Ulrich Drepper <drepper@redhat.com>
608 * assert/assert.h (assert): Simplify.
609 (assert_perror): Likewise.
610 Patch by Israel G. Lugo <ilugo@bridonsecurity.com>.
612 * nscd/nscd_helper.c (open_socket): Don't send padding bytes from
615 * sysdeps/unix/sysv/linux/x86_64/send.c (__libc_send): Cosmetic
616 change: don't pass NULL in place of an integer.
618 2007-02-02 Bruno Haible <bruno@clisp.org>
621 * iconvdata/ksc5601.c (__ksc5601_sym_to_ucs, __ksc5601_sym_from_ucs):
622 Add mapping for U+327E.
623 * iconvdata/ksc5601.h (KSC5601_SYMBOL): Increment.
624 * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
625 mapping of 0xD9 0xE8.
626 * iconvdata/uhc.c (BODY for FROM_LOOP, BODY for TO_LOOP): Disable
628 Reported by Jungshik Shin <jungshik@google.com>.
631 * iconvdata/johab.c (BODY for FROM_LOOP, BODY for TO_LOOP): Enable
632 mapping of 0xD9 0xE6 and of 0xD9 0xE7.
633 Reported by Jungshik Shin <jungshik@google.com>.
635 2007-02-14 Ulrich Drepper <drepper@redhat.com>
637 * sysdeps/x86_64/bits/atomic;h: Fix asm parameters for some
641 * sysdeps/i386/i486/bits/atomic.h: Fix asm parameters for some
642 byte variants. Patch mostly be tom@tommay.net.
644 2007-02-14 Jakub Jelinek <jakub@redhat.com>
647 * posix/glob.c (attribute_hidden): Define if not defined.
648 (glob): Unescape dirname, filename or username when needed and not
649 GLOB_NOESCAPE. Handle \/ correctly. Handle GLOB_MARK if filename
650 is NULL. Handle unescaped [ in pattern without closing ].
651 Don't pass GLOB_CHECK down to recursive glob for directories.
652 (__glob_pattern_type): New function.
653 (__glob_pattern_p): Implement using __glob_pattern_type.
654 (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
655 characters and backslashes if not GLOB_NOESCAPE or unterminated [.
656 Remove unreachable code.
657 * posix/globtest.sh: Add a couple of new tests.
659 2007-02-13 Ulrich Drepper <drepper@redhat.com>
661 * po/ru.po: Update from translation team.
663 2007-02-12 Jakub Jelinek <jakub@redhat.com>
665 * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __amdfam10__
666 to the list of i486+ CPUs.
667 * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
669 2007-02-12 Ulrich Drepper <drepper@redhat.com>
671 * elf/rtld.c (RESOLVE_MAP): Always return bootstrap_map reference.
672 * elf/Makefile ($(objpfx)ld.so): Check that ld.so has no undefined
675 2007-02-09 Ulrich Drepper <drepper@redhat.com>
677 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Remove incorrect comment.
679 * resolv/res_init.c (res_setoptions): Recognize edns0 option.
680 * resolv/res_mkquery.c: Define __res_nopt.
681 * resolv/res_query.c (__libc_res_nquery): If RES_USE_EDNS0 is set
682 try adding EDNS0 record.
683 * resolv/res_send.c (send_dg): If request failed with FORMERR and
684 EDNS0 record was send make sure we don't try it again.
685 * resolv/resolv.h: Define RES_F_EDNS0ERR and RES_USE_EDNS0.
686 * include/resolv.h: Declare __res_nopt.
688 2007-02-08 Jakub Jelinek <jakub@redhat.com>
691 * time/strptime_l.c (__strptime_internal): Set have_mon for
692 %b/%B/%h. Set have_mon and have_mday if tm_mon and tm_mday
693 have been computed from tm_yday and tm_year. Don't crash
694 in day_of_the_week or day_of_the_year if not have_mon
695 and tm_mon contains bogus value.
696 * time/Makefile (tests): Add tst-strptime3.
697 * time/tst-strptime3.c: New test.
699 2007-02-05 Jakub Jelinek <jakub@redhat.com>
702 * posix/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
703 bit for RE_HAT_LISTS_NOT_NEWLINE.
704 (build_charclass_op): Remove bogus comment.
705 * posix/Makefile (tests): Add bug-regex27 and bug-regex28.
706 * posix/bug-regex27.c: New test.
707 * posix/bug-regex28.c: New test.
709 2007-02-03 Ulrich Drepper <drepper@redhat.com>
711 * po/sv.po: Update from translation team.
713 2007-02-02 Ulrich Drepper <drepper@redhat.com>
715 * nscd/nscd_helper.c (open_socket): Minor size optimization.
717 2007-02-02 Jakub Jelinek <jakub@redhat.com>
719 * include/locale.h (__uselocale): Add libc_hidden_proto.
720 * locale/uselocale.c (__uselocale): Add libc_hidden_def.
722 * nscd/nscd_helper.c (open_socket): Use __gettimeofday instead of
725 2007-02-01 Ulrich Drepper <drepper@redhat.com>
727 * sysdeps/unix/sysv/linux/i386/sysdep.h (PTR_MANGLE): Roll value before
729 (PTR_DEMANGLE): Real definition now that it's not the same as
731 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
733 * string/strerror_l.c: New file.
734 * string/Makefile (routines): Add strerror_l.
735 * string/string.h: Declare strerror_l.
736 * string/Versions: Export strerror_l for GLIBC_2.6.
738 2007-01-31 Ulrich Drepper <drepper@redhat.com>
740 * nscd/nscd_helper.c (open_socket): Now takes request type and key
741 as parameter. Construct request record. Try sending request
742 before the first poll use, it usually succeeds. Adjust all
744 * nscd/nscd-client.h: Define MAXKEYLEN.
745 * nscd/connections.c (nscd_run): Don't define MAXKEYLEN here.
747 2007-01-31 Jakub Jelinek <jakub@redhat.com>
749 * nscd/nscd-client.h (__nscd_cache_search): Remove const qualifier
751 * nscd/nscd_helper.c: Include string.h.
752 (__nscd_cache_search): Remove const qualifier from return value.
753 On strict alignment architectures check hash entry and data head
755 * nscd/nscd_getpw_r.c (nscd_getpw_r): Don't crash or fail because
756 mmapped data during GC cycle contains garbage. If
757 __nscd_drop_map_ref fails, decrement mapped->counter when returning
758 error or if retrying with NO_MAPPING, only __nscd_unmap if counter
760 * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
761 * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
762 * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
763 * nscd/nscd_getai.c (__nscd_getai): Likewise.
764 * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
766 2007-01-30 Ulrich Drepper <drepper@redhat.com>
768 * misc/hsearch_r.c (hdestroy_r): Remove unnecessary test.
770 2007-01-26 Ulrich Drepper <drepper@redhat.com>
772 * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Use register
773 names not numbers in cfi_*.
775 2007-01-26 Andreas Jaeger <aj@suse.de>
777 * sysdeps/unix/sysv/linux/sys/personality.h (ADDR_NO_RANDOMIZE,
778 ADDR_LIMIT_3GB, PER_LINUX_32BIT, PER_LINUX32_3GB): Add.
779 Correct values of PER_HPUX and PER_OSF4.
781 2007-01-24 Ulrich Drepper <drepper@redhat.com>
783 * elf/dl-minimal.c: Undefine _itoa first.
784 * stdio-common/_itoa.h: Define _itoa and _fitoa for 64-bit platforms.
785 * malloc/mtrace.c: Revert last change.
786 * posix/wordexp.c: Likewise.
788 2007-01-24 Jakub Jelinek <jakub@redhat.com>
790 * sysdeps/i386/bits/byteswap.h (__bswap_32): Add __nocona__, __core2__
791 and __geode__ to the list of i486+ CPUs.
792 * sysdeps/x86_64/bits/byteswap.h (__bswap_32): Likewise.
794 2007-01-23 Ulrich Drepper <drepper@redhat.com>
796 * stdio-common/_itoa.c: Include <limits.h>.
797 * stdio-common/_itowa.c: Likewise.
799 2007-01-22 Ulrich Drepper <drepper@redhat.com>
801 * stdio-common/_itowa.c: Don't compile _itowa for 64-bit
803 * stdio-common/_itoa.c: Don't compile in _itoa and _fitoa for
805 * malloc/mtrace.c (tr_where): Use _fitoa_word instead of _fitoa if
807 * posix/wordexp.c (parse_arith): Use _itoa_word instead of _itoa
811 * stdio-common/_itoa.c (_itoa): Make sure at least a zero is emitted.
812 * stdio-common/Makefile (tests): Add bug17.
813 * stdio-common/bug17.c: New file.
815 2007-01-19 Ulrich Drepper <drepper@redhat.com>
817 * iconvdata/brf.c: New file.
818 * iconvdata/testdata/BRF: New file.
819 * iconvdata/testdata/BRF..UTF8: New file.
820 Contributed by Samuel Thibault <samuel.thibault@ens-lyon.org>.
821 * iconvdata/Makefile: Add rules to build BRF.
822 * iconvdata/TESTS: Add BRF entry.
823 * iconvdata/gconv-modules: Likewise.
824 * iconvdata/tst-tables.sh: Likewise.
826 2007-01-18 Anton Nikishaev <anton.nik@gmail.com>
828 * wcsmbs/wchar.h (wcstoll): Fix comment, function returns value of
829 type `long long int', not `long int'.
832 2007-01-18 Ulrich Drepper <drepper@redhat.com>
834 * scripts/gen-as-const.awk: Add cast to long to avoid int promotion
835 of values on 64-bit platforms which are too large.
837 2007-01-12 Steven Munroe <sjmunroe@us.ibm.com>
838 Joe Kerian <jkerian@us.us.ibm.com>
841 * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Include
842 <math_ldbl_opt.h>. Remove weak_alias. Use long_double_symbol macro.
843 (__copysignl): Use signbit() for comparison.
844 * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Correct parms for
848 * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Don't include <fenv_libc.h>.
849 (__ceill): Remove calls to fegetround(), fesetround().
850 * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
851 * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
852 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
854 2007-01-17 Jakub Jelinek <jakub@redhat.com>
856 * nscd/nscd_getserv_r.c (nscd_getserv_r): Fix pastos.
858 * sysdeps/unix/sysv/linux/getdents.c (offsetof): Remove.
860 2007-01-17 Ulrich Drepper <drepper@redhat.com>
862 * sysdeps/unix/sysv/linux/fatal-prepare.h: Use PTHFCT_CALL to
864 * csu/libc-start.c: Likewise.
866 2007-01-16 Ulrich Drepper <drepper@redhat.com>
868 * sysdeps/posix/system.c: Remove NO_WAITPID support, it cannot
871 2007-01-15 Ulrich Drepper <drepper@redhat.com>
873 * nscd/connections.c (servinfo): Renamed to reqinfo. Change all
875 (handle_request): Remove unnecessary tests.
877 * nscd/cache.c (cache_add): Record the failure to add to the cache.
879 2007-01-15 Jakub Jelinek <jakub@redhat.com>
881 * soft-fp/op-common.h (FP_TRUNC): When truncating a NaN, clear
882 workbits in semi-raw fraction.
884 * math/test-misc.c: Add new tests.
886 2007-01-14 Steven Munroe <sjmunroe@us.ibm.com>
888 * math/basic-test.c: Include test-skeleton.c.
889 (TEST_TRUNC): Define.
890 (truncdfsf_test, trunctfsf_test, trunctfdf_test): New.
891 (main): Rename to ...
892 (do_test): ...this. Run new tests.
893 (TEST_FUNCTION): Define.
895 2006-10-05 Steven Munroe <sjmunroe@us.ibm.com>
896 Joe Kerian <jkerian@us.us.ibm.com>
899 * soft-fp/op-4.h (__FP_FRAC_SUB_3, __FP_FRAC_SUB_4): Correct borrow
900 handling for high words.
901 * soft-fp/op-common.h (_FP_OVERFLOW_SEMIRAW): Always set inexact
902 and overflow for infinity.
904 2007-01-15 Ulrich Drepper <drepper@redhat.com>
906 * nscd/connections.c (handle_request): Add a __builtin_expect.
908 * nscd/connections.c (serv2db): Change type into structure which
909 also says whether this is a request for data. Renamed to
910 servinfo. All users changed.
911 (handle_request): Much simpler test whether we should search the cache.
913 * nscd/connections.c (handle_request): Fix thinko in selinux test
916 * sysdeps/generic/ldsodefs.h: Define DL_LOOKUP_SCOPE_LOCK.
917 * elf/dl-lookup.c (add_dependency): If scope map is locked, unlock
918 it before getting dl_load_lock and then relock.
919 (_dl_lookup_symbol_x): Pass flags to add_dependency.
920 When rerunning _dl_lookup_symbol_x, compute symbol_scope again in
921 case we unlocked the scope.
922 * elf/dl-runtime.c (_dl_fixup): Pass DL_LOOKUP_SCOPE_LOCK to
923 _dl_lookup_symbol_x in case we locked the scope.
924 (_dl_profile_fixup): Likewise.
925 * elf/dl-sym.c (do_sym): In flags passed to call_dl_lookup, also
926 set DL_LOOKUP_SCOPE_LOCK.
928 2007-01-13 Ulrich Drepper <drepper@redhat.com>
930 * inet/Makefile: Define CFLAGS-getsrvbynm_r.c and
931 CFLAGS-getsrvbynpt_r.c.
932 * nscd/getsrvbynm_r.c: New file.
933 * nscd/getsrvbypt_r.c: New file.
934 * nscd/nscd_getserv_r.c: New file.
935 * nscd/servicescache.c: New file.
936 * nscd/Makefile (routines): Add nscd_getserv_r.
937 (nscd-modules): Add getsrvbynm_r, getsrvbypt_r, and servicescache.
938 Define CFLAGS-servicescache.c, CFLAGS-getsrvbynm_r.c, and
939 CFLAGS-getsrvbypt_r.c.
940 * nscd/cache.c (prune_cache): Rewrite to get re-add function from
941 table. Add entries for services database.
942 * nscd/connections.c (serv2str): Mark as const. Add entries for
944 (dbs): Add .reset_res and servdb initialization.
945 (serv2db): Add entries for services database.
946 (verify_persistent_db): Accept dbnr == servdb.
947 (invalidate_cache): Rewrite database name recognition to use a table.
948 Call res_init() if .reset_res is set for database.
949 (handle_request): Add code to handle services database.
950 * nscd/gai.c: Don't define __getservbyname_r.
951 * nscd/nscd-client.h (request_type): Remove LASTDBREQ, add
952 GETSERVBYNAME, GETSERVBYPORT, GETFDSERV.
953 (serv_response_header): Define.
954 (struct datahead): Add serv_response_header member.
955 * nscd/nscd.c (parse_opt): Rewrite parsing of -i parameter value
957 * nscd/nscd.conf: Add entries for services database.
958 * nscd/nscd.h: Adjust declaration of dbnames and serv2str.
959 Declare serv_iov_disabled.
960 Declare addservbyname, readdservbyname, addservbyport, and
962 * nscd/nscd_conf.c (dbnames): Mark as const. Add services entry.
963 (find_db): Fix error message.
964 * nscd/nscd_proto.h: Declare __nss_not_use_nscd_services,
965 __nscd_getservbyname_r, and __nscd_getservbyport_r.
966 * nscd/selinux.c (perms): Add entries for services database.
967 * nss/Versions: Export __nss_services_lookup with GLIBC_PRIVATE.
968 * nss/nsswitch.c (__nss_disable_nscd): Also disable services database.
970 * nscd/grpcache.c: Remove obsolete code. Cleanups.
971 * nscd/hstcache.c: Likewise.
972 * nscd/pwdcache.c: Likewise.
974 * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r): Correct
975 computation of keylen.
977 * include/string.h: Only redefine strndupa if this is really for
980 2007-01-12 Ulrich Drepper <drepper@redhat.com>
982 * nscd/nscd_gethst_r.c: Minor cleanups.
984 * nscd/connections.c (handle_request): Check selinux permissions
985 for all non-admin commands.
987 * sysdeps/i386/i486/bits/atomic.h: Define
988 atomic_compare_and_exchange_val_acq,
989 atomic_compare_and_exchange_bool_acq, and atomic_exchange_and_add
990 using __sync_* built-ins for gcc >= 4.1.
991 * sysdeps/x86_64/bits/atomic.h: Likewise.
994 * scripts/check-local-headers.sh: Restrict to testing .o.d, .os.d,
997 2007-01-05 Steven Munroe <sjmunroe@us.ibm.com>
999 * stdlib/tst-makecontext.c: Include errno.h. Change main()
1000 to do_test(). Define TEST_FUNCTION. Include test-skeleton.c.
1001 (do_test): Check errno and exit(0) if ENOSYS.
1003 2007-01-11 Jakub Jelinek <jakub@redhat.com>
1005 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix handling of multi-byte
1006 thousands separators.
1007 * stdlib/Makefile: Add rules to build and run tst-strtod4.
1008 * stdlib/tst-strtod4.c: New test.
1011 * stdlib/strtod_l.c (____STRTOF_INTERNAL): 0x. not followed by
1012 hexadecimal digit should accept just the initial 0.
1013 * stdlib/tst-strtod2.c (tests): New variable.
1014 (do_test): Run several tests rather than just one.
1016 2007-01-11 Jakub Jelinek <jakub@redhat.com>
1018 * sysdeps/i386/soft-fp/sfp-machine.h: Remove.
1019 * sysdeps/x86_64/soft-fp/sfp-machine.h: Likewise.
1021 2007-01-10 Ulrich Drepper <drepper@redhat.com>
1023 * io/fts.c: Make sure fts_cur is always valid after return from
1025 Patch by Miloslav Trmac <mitr@redhat.com>.
1027 2006-10-27 Richard Sandiford <richard@codesourcery.com>
1029 * elf/elf.h (R_MIPS_GLOB_DAT): Define.
1030 (R_MIPS_NUM): Bump by 1.
1032 2007-01-03 Jakub Jelinek <jakub@redhat.com>
1034 * posix/execvp.c: Include alloca.h.
1035 (allocate_scripts_argv): Renamed to...
1036 (scripts_argv): ... this. Don't allocate buffer here nor count
1038 (execvp): Use alloca if possible.
1039 * posix/Makefile: Add rules to build and run tst-vfork3 test.
1040 * posix/tst-vfork3.c: New test.
1042 2007-01-03 Ulrich Drepper <drepper@redhat.com>
1044 * string/Makefile (tst-strxfrm2-ENV): Define.
1045 * stdlib/Makefile (tst-strtod3-ENV): Define.
1047 2007-01-02 Ulrich Drepper <drepper@redhat.com>
1049 * posix/getconf.c: Update copyright year.
1050 * nss/getent.c: Likewise.
1051 * iconv/iconvconfig.c: Likewise.
1052 * iconv/iconv_prog.c: Likewise.
1053 * elf/ldconfig.c: Likewise.
1054 * catgets/gencat.c: Likewise.
1055 * csu/version.c: Likewise.
1056 * elf/ldd.bash.in: Likewise.
1057 * elf/sprof.c (print_version): Likewise.
1058 * locale/programs/locale.c: Likewise.
1059 * locale/programs/localedef.c: Likewise.
1060 * nscd/nscd.c (print_version): Likewise.
1061 * debug/xtrace.sh: Likewise.
1062 * malloc/memusage.sh: Likewise.
1063 * malloc/mtrace.pl: Likewise.
1064 * debug/catchsegv.sh: Likewise.
1066 2006-12-24 Ulrich Drepper <drepper@redhat.com>
1068 * malloc/malloc.c (sYSMALLOc): Remove some unnecessary alignment
1071 2006-12-23 Ulrich Drepper <drepper@redhat.com>
1073 * posix/wordexp.c: Remove some unnecessary tests.
1075 2006-12-22 Gavin Romig-Koch <gavin@redhat.com>
1077 * nis/nss_compat/compat-grp.c (internal_getgrgid_r): Don't
1078 blacklist the group till after we look it up.
1080 2006-12-21 Ulrich Drepper <drepper@redhat.com>
1082 * include/atomic.h (atomic_forced_read): New macro.
1084 2006-12-20 SUGIOKA Toshinobu <sugioka@itonet.co.jp>
1086 * sysdeps/unix/sysv/linux/sh/bits/shm.h: New file.
1088 2006-12-19 Jakub Jelinek <jakub@redhat.com>
1090 * nss/getXXbyYY_r.c: Include atomic.h.
1091 (INTERNAL (REENTRANT_NAME)): Write startp after start_fct,
1092 add atomic_write_barrier () in between.
1094 * stdlib/Makefile (tests): Add tst-makecontext.
1095 * stdlib/tst-makecontext.c: New test.
1097 * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S
1098 (__makecontext): Don't realign uc_mcontext.uc_regs.
1100 2006-11-28 Jakub Jelinek <jakub@redhat.com>
1102 * elf/dl-support.c: Include dl-procinfo.h.
1103 * sysdeps/powerpc/dl-procinfo.h (PPC_PLATFORM_POWER4,
1104 PPC_PLATFORM_PPC970, PPC_PLATFORM_POWER5, PPC_PLATFORM_POWER5_PLUS,
1105 PPC_PLATFORM_POWER6, PPC_PLATFORM_CELL_BE, PPC_PLATFORM_POWER6X):
1107 (_dl_string_platform): Use PPC_PLATFORM_* macros instead of
1108 hardcoded constants.
1109 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platform): Use
1110 PPC_PLATFORM_* macros for array designators.
1112 2006-11-11 Steven Munroe <sjmunroe@us.ibm.com>
1114 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 3 new cap
1115 names to the beginning.
1116 (_dl_powerpc_platforms): Add "power6x".
1117 * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
1118 (HWCAP_IMPORTANT): Add PPC_FEATURE_HAS_DFP.
1119 (_DL_PLATFORMS_COUNT): Increase.
1120 (_dl_string_platform): Handle power6x case.
1121 * sysdeps/powerpc/sysdep.h (PPC_FEATURE_PA6T, PPC_FEATURE_HAS_DFP,
1122 PPC_FEATURE_POWER6_EXT): Define.
1123 (PPC_FEATURE_POWER5, PPC_FEATURE_POWER5_PLUS): Correct Comment.
1125 2006-12-18 Jakub Jelinek <jakub@redhat.com>
1128 * stdlib/jrand48_r.c (__jrand48_r): Make sure result is in the
1129 [-2^31 .. 2^31) range.
1130 * stdlib/tst-rand48.c (main): Fix expected values for 64-bit
1132 * stdlib/tst-rand48-2.c: New test.
1133 * stdlib/Makefile (tests): Add tst-rand48-2.
1135 2006-12-14 Jakub Jelinek <jakub@redhat.com>
1137 * misc/tst-pselect.c (do_test): Fix sigblock argument.
1139 2006-12-14 Ulrich Drepper <drepper@redhat.com>
1141 * misc/tst-pselect.c (do_test): Make sure the helper process is
1142 terminating when the test is aborted.
1144 2006-12-13 Ulrich Drepper <drepper@redhat.com>
1146 * sysdeps/unix/sysv/linux/bits/statvfs.h: Define ST_RELATIME.
1147 * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
1148 Handle relatime mount option.
1151 * libio/Makefile (tests): Add tst-setvbuf1.
1152 * libio/tst-setvbuf1.c: New file.
1154 2006-12-08 Jakub Jelinek <jakub@redhat.com>
1157 * libio/genops.c (__uflow): Fix a typo.
1158 * libio/wfiledoalloc.c (_IO_wfile_doallocate): Don't stat
1159 nor set _IO_LINE_BUF bit here. Size the wide buffer based on
1160 the narrow buffer size.
1162 2006-11-24 Jakub Jelinek <jakub@redhat.com>
1165 * libio/libio.h (_IO_FLAGS2_USER_WBUF): Define.
1166 * libio/wgenops.c (_IO_wsetb, _IO_wdefault_finish): Test and set
1167 _IO_FLAGS2_USER_WBUF bit in _flags2 instead of _IO_USER_BUF bit
1169 * libio/wstrops.c (_IO_wstr_overflow, enlarge_userbuf,
1170 _IO_wstr_finish): Likewise.
1171 * libio/wmemstream.c (open_wmemstream): Likewise.
1172 * libio/fileops.c (_IO_new_file_close_it): Call _IO_set[bgp]
1173 even for wide streams.
1175 2006-12-13 Jakub Jelinek <jakub@redhat.com>
1177 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Include
1180 2006-12-11 Ulrich Drepper <drepper@redhat.com>
1182 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Parse thousand
1183 separators also if no non-zero digits found.
1184 * stdlib/Makefile (tests): Add tst-strtod3.
1186 2006-12-09 Ulrich Drepper <drepper@redhat.com>
1189 * include/features.h: Fix comment about default value for
1193 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix test to recognize
1194 empty parsed strings.
1195 * stdlib/Makefile (tests): Add tst-strtod2.
1196 * stdlib/tst-strtod2.c: New file.
1199 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix exp_limit
1201 * stdlib/Makefile (tests): Add tst-atof2.
1202 * stdlib/tst-atof2.c: New file.
1205 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Adjust exponent value
1206 correctly if removing trailing zero of hex-float.
1207 * stdlib/Makefile (tests): Add tst-atof1.
1208 * stdlib/tst-atof1.c: New file.
1210 2006-12-09 Jakub Jelinek <jakub@redhat.com>
1212 * misc/mntent_r.c (__hasmntopt): Check p[optlen] even when p == rest.
1213 Start searching for next comma at p rather than rest.
1214 * misc/Makefile (tests): Add tst-mntent2.
1215 * misc/tst-mntent2.c: New test.
1217 * misc/getusershell.c (initshells): Check for integer overflows.
1218 Make strings buffer one bigger as fgets always succeeds when second
1219 argument is 1. Don't use calloc for shells array. Disallow
1222 2006-12-08 Ulrich Drepper <drepper@redhat.com>
1224 * malloc/memusage.c: Handle realloc with new size of zero and
1225 non-NULL pointer correctly.
1226 (me): Really write first record twice.
1227 (struct entry): Make format bi-arch safe.
1228 (dest): Write out more realloc statistics.
1229 * malloc/memusagestat.c (struct entry): Make format bi-arch safe.
1231 2006-12-05 Jakub Jelinek <jakub@redhat.com>
1233 * nis/nis_subr.c (nis_getnames): Revert last change.
1235 2006-12-04 Jakub Jelinek <jakub@redhat.com>
1237 * sysdeps/unix/sysv/linux/ttyname.c: Include termios.h.
1238 (ttyname): Use tcgetattr instead of isatty, don't set errno to ENOTTY.
1239 * sysdeps/unix/sysv/linux/ttyname_r.c: Include termios.h.
1240 (__ttyname_r): Use tcgetattr instead of isatty, don't set errno to
1242 * io/Makefile: Add rules to build and run tst-ttyname_r test.
1243 * io/tst-ttyname_r.c: New test.
1245 2006-12-03 Kaz Kojima <kkojima@rr.iij4u.or.jp>
1247 * sysdeps/unix/sysv/linux/sh/sys/io.h: Removed.
1249 2006-11-30 H.J. Lu <hongjiu.lu@intel.com>
1251 * sysdeps/i386/i686/memcmp.S: Use jump table as the base of
1254 2006-11-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1256 * sysdeps/unix/sysv/linux/i386/clone.S: Provide CFI for the outermost
1257 `clone' function to ensure proper unwinding stop of gdb.
1258 * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
1260 2006-12-01 Ulrich Drepper <drepper@redhat.com>
1262 * nscd/nscd.init: Remove obsolete and commented-out -S option
1265 2006-11-23 Jakub Jelinek <jakub@redhat.com>
1268 * manual/string.texi (strncmp): Fix pastos from wcscmp description.
1271 * manual/string.texi (strtok): Remove duplicate paragraph.
1273 2006-12-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1275 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Fix compatibility with
1276 libgcc not supporting `rflags' unwinding (register # >= 17).
1278 2006-11-30 Jakub Jelinek <jakub@redhat.com>
1280 * sunrpc/svc_run.c (svc_run): Set my_pollfd to new_pollfd if realloc
1283 2006-11-29 Daniel Jacobowitz <dan@codesourcery.com>
1284 Jakub Jelinek <jakub@redhat.com>
1285 Jan Kratochvil <jan.kratochvil@redhat.com>
1287 * sysdeps/unix/sysv/linux/x86_64/sigaction.c (restore_rt): Add correct
1289 * sysdeps/unix/sysv/linux/x86_64/Makefile: Provide symbols for
1290 'restore_rt' even in the 'signal' directory.
1291 * sysdeps/unix/sysv/linux/x86_64/ucontext_i.sym: Extend the regs list.
1293 2006-11-27 Jakub Jelinek <jakub@redhat.com>
1296 * sunrpc/svc_run.c (svc_run): Fail instead of segfaulting if
1297 malloc crashed. Don't allocate memory unnecessarily in each
1300 2006-10-21 Jakub Jelinek <jakub@redhat.com>
1302 * resolv/mapv4v6addr.h (map_v4v6_address): Fix last change.
1304 2006-11-20 Ulrich Drepper <drepper@redhat.com>
1306 * resolv/mapv4v6addr.h (map_v4v6_address): Optimize a bit.
1308 2006-11-18 Bruno Haible <bruno@clisp.org>
1310 * sysdeps/unix/sysv/linux/i386/getgroups.c (__getgroups): Invoke
1311 __sysconf only after having tried to call getgroups32.
1313 2006-11-19 Ulrich Drepper <drepper@redhat.com>
1315 * nss/nss_files/files-hosts.c (LINE_PARSER): Support IPv6-style
1316 addresses for IPv4 queries if they can be mapped.
1318 2006-11-16 Jakub Jelinek <jakub@redhat.com>
1320 * sysdeps/x86_64/fpu/s_copysignf.S (__copysignf): Switch to .text.
1321 * sysdeps/x86_64/fpu/s_copysign.S (__copysign): Likewise.
1322 (signmask): Add .size directive.
1323 (othermask): Add .type directive.
1325 2006-11-14 Ulrich Drepper <drepper@redhat.com>
1327 * po/nl.po: Update from translation team.
1329 * timezone/zdump.c: Redo fix for BZ #3137.
1331 2006-11-14 Jakub Jelinek <jakub@redhat.com>
1333 * nss/nss_files/files-alias.c (get_next_alias): Set line back
1334 to first_unused after parsing :include: file.
1336 2006-11-10 Ulrich Drepper <drepper@redhat.com>
1338 * timezone/africa: Update from tzdata2006o.
1339 * timezone/antarctica: Likewise.
1340 * timezone/asia: Likewise.
1341 * timezone/australasia: Likewise.
1342 * timezone/backward: Likewise.
1343 * timezone/europe: Likewise.
1344 * timezone/iso3166.tab: Likewise.
1345 * timezone/northamerica: Likewise.
1346 * timezone/southamerica: Likewise.
1347 * timezone/zone.tab: Likewise.
1349 * time/tzfile.c (__tzfile_read): Extend to handle new file format
1350 on machines with 64-bit time_t.
1352 * timezone/checktab.awk: Update from tzcode2006o.
1353 * timezone/ialloc.c: Likewise.
1354 * timezone/private.h: Likewise.
1355 * timezone/scheck.c: Likewise.
1356 * timezone/tzfile.h: Likewise.
1357 * timezone/tzselect.ksh: Likewise.
1358 * timezone/zdump.c: Likewise.
1359 * timezone/zic.c: Likewise.
1362 * elf/ldconfig.c (main): Call setlocale and textdomain.
1363 Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
1366 * manual/argp.texi: Fix typos.
1367 * manual/charset.texi: Likewise.
1368 * manual/errno.texi: Likewise.
1369 * manual/filesys.texi: Likewise.
1370 * manual/lang.texi: Likewise.
1371 * manual/maint.texi: Likewise.
1372 * manual/memory.texi: Likewise.
1373 * manual/message.texi: Likewise.
1374 * manual/resource.texi: Likewise.
1375 * manual/search.texi: Likewise.
1376 * manual/signal.texi: Likewise.
1377 * manual/startup.texi: Likewise.
1378 * manual/stdio.texi: Likewise.
1379 * manual/sysinfo.texi: Likewise.
1380 * manual/syslog.texi: Likewise.
1381 * manual/time.texi: Likewise.
1382 Patch by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
1385 * sunrpc/clnt_raw.c: Minimal message improvements.
1386 * sunrpc/pm_getmaps.c: Likewise.
1387 * nis/nss_nisplus/nisplus-publickey.c: Likewise.
1388 * nis/nis_print_group_entry.c: Likewise.
1389 * locale/programs/repertoire.c: Likewise.
1390 * locale/programs/charmap.c: Likewise.
1391 * malloc/memusage.sh: Likewise.
1392 * elf/dl-deps.c: Likewise.
1393 * locale/programs/ld-collate.c: Likewise.
1394 * libio/vswprintf.c: Likewise.
1395 * malloc/memusagestat.c: Likewise.
1396 * sunrpc/auth_unix.c: Likewise.
1397 * sunrpc/rpc_main.c: Likewise.
1398 * nscd/cache.c: Likewise.
1399 * locale/programs/repertoire.c: Unify output messages.
1400 * locale/programs/charmap.c: Likewise.
1401 * locale/programs/ld-ctype.c: Likewise.
1402 * locale/programs/ld-monetary.c: Likewise.
1403 * locale/programs/ld-numeric.c: Likewise.
1404 * locale/programs/ld-time.c: Likewise.
1405 * elf/ldconfig.c: Likewise.
1406 * nscd/selinux.c: Likewise.
1407 * elf/cache.c: Likewise.
1408 Patch mostly by Benno Schulenberg <bensberg@justemail.net>.
1411 * sysdeps/i386/fpu/bits/mathinline.h (floor): Make rounding mode
1415 2006-11-10 Jakub Jelinek <jakub@redhat.com>
1417 * string/strxfrm_l.c (STRXFRM): Fix trailing \1 optimization
1418 if N is one bigger than return value.
1419 * string/tst-strxfrm2.c (do_test): Also test strxfrm with l1 + 1
1420 and l1 last arguments, if buf is defined, verify the return value
1421 equals to strlen (buf) and verify no byte beyond passed length
1424 2006-11-10 Ulrich Drepper <drepper@redhat.com>
1426 * po/sv.po: Update from translation team.
1428 2006-11-09 Ulrich Drepper <drepper@redhat.com>
1430 * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word): Add
1433 2006-11-10 Jakub Jelinek <jakub@redhat.com>
1435 * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Add
1438 * sysdeps/gnu/siglist.c (__old_sys_siglist, __old_sys_sigabbrev):
1439 Use __new_sys_siglist instead of _sys_siglist_internal as
1440 second macro argument.
1441 (_old_sys_siglist): Use declare_symbol_alias macro instead of
1444 2006-11-09 Ulrich Drepper <drepper@redhat.com>
1447 * posix/unistd.h (sysconf): Remove const attribute.
1449 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Fix test for
1450 temporary or deprecated addresses.
1451 Patch by Sridhar Samudrala <sri@us.ibm.com>.
1453 * string/Makefile (tests): Add tst-strxfrm2.
1454 * string/tst-strxfrm2.c: New file.
1456 2006-10-09 Jakub Jelinek <jakub@redhat.com>
1458 * elf/dl-debug.c (_dl_debug_initialize): Check r->r_map for 0
1459 rather than r->r_brk.
1461 2006-11-08 Jakub Jelinek <jakub@redhat.com>
1463 * string/strxfrm_l.c (STRXFRM): Do the trailing \1 removal
1464 optimization even if needed > n.
1466 * elf/dl-load.c (decompose_rpath): Return bool rather than void.
1467 If l->l_name is on inhibit_rpath list, set sps->dirs to -1 and
1468 return false, otherwise return true.
1469 (cache_rpath): Return decompose_rpath return value.
1471 2006-11-07 Jakub Jelinek <jakub@redhat.com>
1473 * include/libc-symbols.h (declare_symbol): Rename to...
1474 (declare_symbol_alias): ... this. Add ORIGINAL argument, imply
1475 strong_alias (ORIGINAL, SYMBOL) in asm to make sure it preceedes
1477 * sysdeps/gnu/errlist-compat.awk: Adjust for declare_symbol_alias
1479 * sysdeps/gnu/siglist.c: Likewise.
1481 2006-11-03 Steven Munroe <sjmunroe@us.ibm.com>
1483 * sysdeps/powerpc/fpu/bits/mathinline.h
1484 [__LIBC_INTERNAL_MATH_INLINES]: Moved to ...
1485 * sysdeps/powerpc/fpu/math_private.h: ...here. New file.
1487 2006-11-05 Ulrich Drepper <drepper@redhat.com>
1489 * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
1490 Update handling of cache descriptor 0x49 for new models.
1491 * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word):
1494 2006-11-02 Jakub Jelinek <jakub@redhat.com>
1496 * malloc/memusage.c (dest): Reset not_me back to false after
1497 printing statistics.
1499 2006-11-02 Ulrich Drepper <drepper@redhat.com>
1501 * configure.in: Work around ld --help change and avoid -z relro
1502 test completely if the architecture doesn't care about security.
1504 2006-11-01 Ulrich Drepper <drepper@redhat.com>
1506 * po/sv.po: Update from translation team.
1508 2006-10-31 Ulrich Drepper <drepper@redhat.com>
1510 * stdlib/atexit.c (atexit): Don't mark as hidden when used to
1511 generate compatibility version.
1513 2006-10-29 Ulrich Drepper <drepper@redhat.com>
1515 * configure.in: Relax -z relro requirement a bit.
1517 * po/sv.po: Update from translation team.
1519 2006-10-29 Jakub Jelinek <jakub@redhat.com>
1521 * elf/dl-sym.c (do_sym): Use RTLD_SINGLE_THREAD_P.
1522 * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
1523 * elf/dl-close.c (_dl_close_worker): Likewise.
1524 * elf/dl-open.c (_dl_open_worker): Likewise.
1525 * sysdeps/generic/sysdep-cancel.h (RTLD_SINGLE_THREAD_P): Define.
1527 2006-10-27 Ulrich Drepper <drepper@redhat.com>
1529 * configure.in: Require assembler support for visibility, compiler
1530 support for visibility and aliases, linker support for various -z
1532 * Makeconfig: Remove conditional code which now is unnecessary.
1533 * config.h.in: Likewise.
1534 * config.make.in: Likewise.
1535 * dlfcn/Makefile: Likewise.
1536 * elf/Makefile: Likewise.
1537 * elf/dl-load.c: Likewise.
1538 * elf/rtld.c: Likewise.
1539 * include/libc-symbols.h: Likewise.
1540 * include/stdio.h: Likewise.
1541 * io/Makefile: Likewise.
1542 * io/fstat.c: Likewise.
1543 * io/fstat64.c: Likewise.
1544 * io/fstatat.c: Likewise.
1545 * io/fstatat64.c: Likewise.
1546 * io/lstat.c: Likewise.
1547 * io/lstat64.c: Likewise.
1548 * io/mknod.c: Likewise.
1549 * io/mknodat.c: Likewise.
1550 * io/stat.c: Likewise.
1551 * io/stat64.c: Likewise.
1552 * libio/stdio.c: Likewise.
1553 * nscd/Makefile: Likewise.
1554 * stdlib/Makefile: Likewise.
1555 * stdlib/atexit.c: Likewise.
1556 * sysdeps/generic/ldsodefs.h: Likewise.
1557 * sysdeps/i386/dl-machine.h: Likewise.
1558 * sysdeps/i386/sysdep.h: Likewise.
1559 * sysdeps/i386/i686/memcmp.S: Likewise.
1560 * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
1561 * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
1562 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
1564 * Makerules: USE_TLS support is now default.
1565 * tls.make.c: Likewise.
1566 * csu/Versions: Likewise.
1567 * csu/libc-start.c: Likewise.
1568 * csu/libc-tls.c: Likewise.
1569 * csu/version.c: Likewise.
1570 * dlfcn/dlinfo.c: Likewise.
1571 * elf/dl-addr.c: Likewise.
1572 * elf/dl-cache.c: Likewise.
1573 * elf/dl-close.c: Likewise.
1574 * elf/dl-iteratephdr.c: Likewise.
1575 * elf/dl-load.c: Likewise.
1576 * elf/dl-lookup.c: Likewise.
1577 * elf/dl-object.c: Likewise.
1578 * elf/dl-open.c: Likewise.
1579 * elf/dl-reloc.c: Likewise.
1580 * elf/dl-support.c: Likewise.
1581 * elf/dl-sym.c: Likewise.
1582 * elf/dl-sysdep.c: Likewise.
1583 * elf/dl-tls.c: Likewise.
1584 * elf/ldconfig.c: Likewise.
1585 * elf/rtld.c: Likewise.
1586 * elf/tst-tls-dlinfo.c: Likewise.
1587 * elf/tst-tls1.c: Likewise.
1588 * elf/tst-tls10.h: Likewise.
1589 * elf/tst-tls14.c: Likewise.
1590 * elf/tst-tls2.c: Likewise.
1591 * elf/tst-tls3.c: Likewise.
1592 * elf/tst-tls4.c: Likewise.
1593 * elf/tst-tls5.c: Likewise.
1594 * elf/tst-tls6.c: Likewise.
1595 * elf/tst-tls7.c: Likewise.
1596 * elf/tst-tls8.c: Likewise.
1597 * elf/tst-tls9.c: Likewise.
1598 * elf/tst-tlsmod1.c: Likewise.
1599 * elf/tst-tlsmod13.c: Likewise.
1600 * elf/tst-tlsmod13a.c: Likewise.
1601 * elf/tst-tlsmod14a.c: Likewise.
1602 * elf/tst-tlsmod2.c: Likewise.
1603 * elf/tst-tlsmod3.c: Likewise.
1604 * elf/tst-tlsmod4.c: Likewise.
1605 * elf/tst-tlsmod5.c: Likewise.
1606 * elf/tst-tlsmod6.c: Likewise.
1607 * include/errno.h: Likewise.
1608 * include/link.h: Likewise.
1609 * include/tls.h: Likewise.
1610 * locale/global-locale.c: Likewise.
1611 * locale/localeinfo.h: Likewise.
1612 * malloc/arena.c: Likewise.
1613 * malloc/hooks.c: Likewise.
1614 * malloc/malloc.c: Likewise.
1615 * resolv/Versions: Likewise.
1616 * sysdeps/alpha/dl-machine.h: Likewise.
1617 * sysdeps/alpha/libc-tls.c: Likewise.
1618 * sysdeps/generic/ldsodefs.h: Likewise.
1619 * sysdeps/generic/tls.h: Likewise.
1620 * sysdeps/i386/dl-machine.h: Likewise.
1621 * sysdeps/ia64/dl-machine.h: Likewise.
1622 * sysdeps/ia64/libc-tls.c: Likewise.
1623 * sysdeps/mach/hurd/fork.c: Likewise.
1624 * sysdeps/mach/hurd/i386/tls.h: Likewise.
1625 * sysdeps/powerpc/powerpc32/dl-machine.c: Likwise.
1626 * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
1627 * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
1628 * sysdeps/s390/libc-tls.c: Likewise.
1629 * sysdeps/s390/s390-32/dl-machine.h: Likewise.
1630 * sysdeps/s390/s390-64/dl-machine.h: Likewise.
1631 * sysdeps/sh/dl-machine.h: Likewise.
1632 * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
1633 * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
1634 * sysdeps/x86_64/dl-machine.h: Likewise.
1636 * elf/dl-close.c (_dl_close_worker): Renamed from _dl_close and
1637 split out locking and parameter checking.
1638 (_dl_close): Call _dl_close_worker after locking and checking.
1639 * elf/dl-open.c (_dl_open): Call _dl_close_worker instead of
1641 * elf/Makefile: Add rules to build and run tst-thrlock.
1642 * elf/tst-thrlock.c: New file.
1645 * stdlib/stdlib.h: Adjust comment for canonicalize_file_name to
1649 * elf/dl-open.c (dl_open_worker): Keep holding dl_load_lock until
1650 we are sure we do not need it anymore for _dl_close. Also move
1651 the asserts inside the lock region.
1652 Patch mostly by Suzuki <suzuki@in.ibm.com>.
1654 2006-10-27 Jakub Jelinek <jakub@redhat.com>
1656 * elf/dl-lookup.c (_dl_debug_bindings): Remove unused symbol_scope
1658 (_dl_lookup_symbol_x): Adjust caller.
1660 * sysdeps/generic/ldsodefs.h (struct link_namespaces): Remove
1662 * elf/rtld.c (dl_main): Don't initialize _ns_global_scope.
1664 * elf/dl-libc.c: Revert l_scope name changes.
1665 * elf/dl-load.c: Likewise.
1666 * elf/dl-object.c: Likewise.
1667 * elf/rtld.c: Likewise.
1668 * elf/dl-close.c (_dl_close): Likewise.
1669 * elf/dl-open.c (dl_open_worker): Likewise. If not SINGLE_THREAD_P,
1670 always use __rtld_mrlock_{change,done}. Always free old scope list
1671 here if not l_scope_mem.
1672 * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Revert l_scope name
1673 change. Never free scope list here. Just __rtld_mrlock_lock before
1674 the lookup and __rtld_mrlock_unlock it after the lookup.
1675 * elf/dl-sym.c: Likewise.
1676 * include/link.h (struct r_scoperec): Remove.
1677 (struct link_map): Replace l_scoperec with l_scope, l_scoperec_mem
1678 with l_scope_mem and l_scoperec_lock with l_scope_lock.
1680 2006-10-25 Ulrich Drepper <drepper@redhat.com>
1682 * sysdeps/gnu/netinet/tcp.h: Define TCP_CONGESTION.
1684 2006-10-18 Ulrich Drepper <drepper@redhat.com>
1686 * configure.in: Disable building profile libraries by default.
1688 2006-10-17 Jakub Jelinek <jakub@redhat.com>
1690 * sunrpc/xdr_mem.c (xdrmem_setpos): Don't compare addresses
1691 as signed longs, check for x_base + pos overflow.
1692 * sunrpc/Makefile (tests): Add tst-xdrmem2.
1693 * sunrpc/tst-xdrmem2.c: New test.
1695 2006-10-18 Ulrich Drepper <drepper@redhat.com>
1697 * elf/dl-lookup.c (_dl_lookup_symbol_x): Add warning to
1698 _dl_lookup_symbol_x code.
1700 2006-10-17 Jakub Jelinek <jakub@redhat.com>
1702 * elf/dl-runtime.c: Include sysdep-cancel.h.
1703 (_dl_fixup, _dl_profile_fixup): Use __rtld_mrlock_* and
1704 scoperec->nusers only if !SINGLE_THREAD_P. Use atomic_*
1705 instead of catomic_* macros.
1706 * elf/dl-sym.c: Include sysdep-cancel.h.
1707 (do_sym): Use __rtld_mrlock_* and scoperec->nusers only
1708 if !SINGLE_THREAD_P. Use atomic_* instead of catomic_* macros.
1709 * elf/dl-close.c: Include sysdep-cancel.h.
1710 (_dl_close): Use __rtld_mrlock_* and scoperec->nusers only
1711 if !SINGLE_THREAD_P. Use atomic_* instead of catomic_* macros.
1712 * elf/dl-open.c: Include sysdep-cancel.h.
1713 (dl_open_worker): Use __rtld_mrlock_* and scoperec->nusers only
1714 if !SINGLE_THREAD_P. Use atomic_* instead of catomic_* macros.
1716 2006-10-17 Jakub Jelinek <jakub@redhat.com>
1719 * malloc/malloc.c (malloc_consolidate): Set maxfb to address of last
1720 fastbin rather than end of fastbin array.
1722 2006-10-18 Ulrich Drepper <drepper@redhat.com>
1724 * sysdeps/i386/i486/bits/atomic.h (catomic_decrement): Use correct
1726 * sysdeps/x86_64/bits/atomic.h
1727 (__arch_c_compare_and_exchange_val_64_acq): Add missing casts.
1728 (catomic_decrement): Use correct body macro.
1730 2006-10-17 Jakub Jelinek <jakub@redhat.com>
1732 * include/atomic.h: Add a unique prefix to all local variables
1734 * csu/tst-atomic.c (do_test): Test also catomic_* macros.
1736 2006-10-16 Ulrich Drepper <drepper@redhat.com>
1739 * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Fix typos in rules 4
1742 2006-10-14 Ulrich Drepper <drepper@redhat.com>
1744 * resolv/arpa/nameser.h: Document that ns_t_a6 is deprecated.
1746 2006-10-13 Ulrich Drepper <drepper@redhat.com>
1749 * malloc/malloc.c (malloc_consolidate): Don't use get_fast_max to
1750 determine highest fast bin to consolidate, always look into all of
1752 (do_check_malloc_state): Only require for empty bins for large
1753 sizes in main arena.
1755 * libio/stdio.h: Add more __wur attributes.
1757 * elf/dl-minimal.c (realloc): Optimize last patch.
1759 2006-10-12 Richard Sandiford <richard@codesourcery.com>
1762 * elf/dl-minimal.c (realloc): Let malloc() return a new pointer,
1763 and use memcpy() if it does.
1765 2006-11-12 Andreas Jaeger <aj@suse.de>
1768 * manual/search.texi (Hash Search Function): Clarify.
1769 (Array Search Function): Clarify.
1771 2006-11-12 Joseph Myers <joseph@codesourcery.com>
1774 * math/atest-exp.c (main): Cast hex value to mp_limb_t before
1776 * math/atest-exp2.c (read_mpn_hex): Likewise.
1777 * math/atest-sincos.c (main): Likewise.
1779 2006-10-11 Ulrich Drepper <drepper@redhat.com>
1781 * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_pwait.
1782 * sysdeps/unix/sysv/linux/sys/epoll.h: Declare epoll_pwait.
1783 * sysdeps/unix/sysv/linux/Versions (libc): Add epoll_pwait for
1785 * Versions.def: Add GLIBC_2.6 for libc.
1787 * sysdeps/unix/sysv/linux/i386/sysdep.h (DOARGS_6): Fix offset.
1789 * sysdeps/i386/i486/bits/atomic.h: Add catomic_* support.
1791 2006-10-11 Jakub Jelinek <jakub@redhat.com>
1793 * malloc/malloc.c (_int_malloc): Remove unused any_larger variable.
1795 * nis/nis_defaults.c (__nis_default_access): Don't call getenv twice.
1797 * nis/nis_subr.c (nis_getnames): Use __secure_getenv instead of getenv.
1798 * sysdeps/generic/unsecvars.h: Add NIS_PATH.
1800 2006-10-11 Ulrich Drepper <drepper@redhat.com>
1802 * include/atomic.c: Define catomic_* operations.
1803 * sysdeps/x86_64/bits/atomic.h: Likewise. Fix a few minor problems.
1804 * stdlib/cxa_finalize.c: Use catomic_* operations instead of atomic_*.
1805 * malloc/memusage.c: Likewise.
1806 * gmon/mcount.c: Likewise.
1807 * elf/dl-close.c: Likewise.
1808 * elf/dl-open.c: Likewise.
1809 * elf/dl-profile.c: Likewise.
1810 * elf/dl-sym.c: Likewise.
1811 * elf/dl-runtime.c: Likewise.
1812 * elf/dl-fptr.c: Likewise.
1813 * resolv/res_libc.c: Likewise.
1815 2006-10-10 Ulrich Drepper <drepper@redhat.com>
1817 * nis/nis_subr.c (nis_getnames): Add trailing dot to NIS_PATH
1818 components which lack them.
1820 * nis/nis_subr.c (nis_getnames): Make sure that we always return
1821 at least one entry consisting of the parameter concatenated with
1824 2006-10-10 Roland McGrath <roland@frob.com>
1826 * sysdeps/mach/hurd/utimes.c: Use a union to avoid an improper cast.
1827 * sysdeps/mach/hurd/futimes.c: Likewise.
1828 * sysdeps/mach/hurd/lutimes.c: Likewise.
1830 2006-10-09 Ulrich Drepper <drepper@redhat.com>
1831 Jakub Jelinek <jakub@redhat.com>
1833 Implement reference counting of scope records.
1834 * elf/dl-close.c (_dl_close): Remove all scopes from removed objects
1835 from the list in objects which remain. Always allocate new scope
1837 * elf/dl-open.c (dl_open_worker): When growing array for scopes,
1838 don't resize, allocate a new one.
1839 * elf/dl-runtime.c: Update reference counters before using a scope
1841 * elf/dl-sym.c: Likewise.
1842 * elf/dl-libc.c: Adjust for l_scope name change.
1843 * elf/dl-load.c: Likewise.
1844 * elf/dl-object.c: Likewise.
1845 * elf/rtld.c: Likewise.
1846 * include/link.h: Include <rtld-lowlevel.h>. Define struct
1847 r_scoperec. Replace r_scope with pointer to r_scoperec structure.
1848 Add l_scoperec_lock.
1849 * sysdeps/generic/ldsodefs.h: Include <rtld-lowlevel.h>.
1850 * sysdeps/generic/rtld-lowlevel.h: New file.
1852 * include/atomic.h: Rename atomic_and to atomic_and_val and
1853 atomic_or to atomic_or_val. Define new macros atomic_and and
1854 atomic_or which do not return values.
1855 * sysdeps/x86_64/bits/atomic.h: Define atomic_and and atomic_or.
1857 * sysdeps/i386/i486/bits/atomic.h: Likewise.
1859 * po/sv.po: Update from translation team.
1861 2006-10-07 Ulrich Drepper <drepper@redhat.com>
1863 * Versions.def: Add GLIBC_2.6 to libpthread.
1865 * include/shlib-compat.h (SHLIB_COMPAT): Expand parameters before use.
1866 (versioned_symbol): Likewise.
1867 (compat_symbol): Likewise.
1869 * po/tr.po: Update from translation team.
1871 2006-10-06 Ulrich Drepper <drepper@redhat.com>
1873 * nis/Banner: Removed. It's been integral part forever and the
1874 author info is incomplete anyway.
1875 * libio/Banner: Likewise.
1877 * nis/nis_table.c (nis_list): If __follow_path fails in the new
1878 code, make sure the nis_freeresult call doesn't crash and that the
1879 result is reported correctly.
1881 2006-09-27 Jakub Jelinek <jakub@redhat.com>
1883 * nis/nis_table.c (nis_list): Handle FOLLOW_PATH | ALL_RESULTS
1884 when callback is NULL.
1886 * nis/Versions (libnss_nisplus): Add
1887 _nss_nisplus_initgroups_dyn@@GLIBC_PRIVATE.
1888 * nis/Makefile (libnss_nisplus-routines): Add nisplus-initgroups.
1889 * nis/nss_nisplus/nisplus-grp.c (tablename_val, tablename_len,
1890 _nss_create_tablename): Rename to...
1891 (grp_tablename_val, grp_tablename_len, _nss_grp_create_tablename):
1892 ... these. No longer static.
1893 (internal_setgrent): Adjust users.
1894 (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
1895 Don't use locking around _nss_grp_create_tablename call.
1896 * nis/nss_nisplus/nisplus-initgroups.c: New file.
1898 2006-10-06 Ulrich Drepper <drepper@redhat.com>
1900 * version.h (VERSION): Bump to 2.5.90 for new development tree.
1902 2006-10-06 Andreas Jaeger <aj@suse.de>
1904 * include/features.h (__GLIBC_MINOR__): It's glibc 2.5 now.
1906 2006-10-06 Ulrich Drepper <drepper@redhat.com>
1908 * po/pl.po: Update from translation team.
1910 * nscd/nscd.c (main): Fix typo in message.
1911 Patch by Jakub Bogsz <qboosh@pld-linux.org>.
1913 2006-10-02 Jakub Jelinek <jakub@redhat.com>
1916 * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Include
1917 errno.h, signal.h, unistd.h and sysdep-cancel.h.
1918 (__sigprocmask): Define.
1920 2006-10-02 Ulrich Drepper <drepper@redhat.com>
1922 * elf/rtld.c (dl_main): Don't use prelinking if LD_DYNAMIC_WEAK is
1925 2006-10-02 Jakub Jelinek <jakub@redhat.com>
1927 * nscd/mem.c (mempool_alloc): Round array size to 16 bytes
1928 in oldtotal and newtotal calculation.
1929 * nscd/nscd-client.h (struct mapped_database): Add datasize
1931 * nscd/nscd_helper.c (get_mapping): Initialize datasize field.
1932 (__nscd_get_map_ref): Get a new mapping even if mapping's data_size
1934 (__nscd_cache_search): Add checks to make sure we never reference
1935 data beyond the current mapping.
1937 2006-10-02 Dmitry V. Levin <ldv@altlinux.org>
1939 * sysdeps/posix/getaddrinfo.c (match_prefix): Make mask and val
1940 variables const to avoid compiler warnings.
1942 * io/fts.c (fts_close): Remove redundant checks.
1943 (fts_build): Likewise.
1944 (fts_palloc): Likewise.
1946 * manual/message.texi (Advanced gettext functions,
1947 Using gettextized software): Fix typos.
1949 2006-09-30 Ulrich Drepper <drepper@redhat.com>
1951 * posix/glob.c (glob_in_dir): Add some comments and asserts to
1952 explain why there are no leaks.
1954 2006-09-29 Ulrich Drepper <drepper@redhat.com>
1956 * libio/wmemstream.c: Include <wchar.h>.
1957 * libio/bug-wmemstream1.c: Likewise.
1958 * libio/tst-wmemstream1.c: Likewise.
1959 * libio/tst-wmemstream2.c: Likewise.
1961 * version.h (RELEASE): Bump to 2.5.
1962 * README: Regenerated.
1964 * locale/iso-3166.def: Add Aaland Islands and Montenegro.
1967 * nscd/nscd_initgroups.c (__nscd_getgrouplist): It is OK to have
1968 found no group members.
1969 Patch by Petr Baudis.
1971 2006-09-29 Jakub Jelinek <jakub@redhat.com>
1973 * elf/rtld.c (_dl_start_final): If not USE___THREAD, don't
1974 assert bootstrap_map.l_tls_modid is zero.
1975 (_dl_start): Initialize bootstrap_map.l_tls_modid to 0
1978 2006-09-27 Ulrich Drepper <drepper@redhat.com>
1980 * libio/stdio.h: Move open_wmemstream prototype to ...
1981 * wcsmbs/wchar.h: ... here.
1983 2006-09-25 Jakub Jelinek <jakub@redhat.com>
1986 * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Handle only
1987 fchownat syscall and __ASSUME_LCHOWN_SYSCALL case inline, call
1988 __{,l}chown to handle the rest.
1989 * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Handle only
1990 fchownat syscall and __ASSUME_32BITUIDS case inline, call
1991 __{,l}chown to handle the rest.
1992 * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Include
1994 * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Likewise.
1995 * sysdeps/unix/sysv/linux/sh/fchownat.c: Likewise.
1998 * posix/glob.c (glob_in_dir): Don't alloca one struct globlink at a
1999 time, rather allocate increasingly bigger arrays of pointers, if
2000 possible with alloca, if too large with malloc.
2002 2006-09-24 Jakub Jelinek <jakub@redhat.com>
2004 * sysdeps/powerpc/fpu/libm-test-ulps: Updated.
2006 * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Fix 2 typos.
2008 2006-09-24 Ulrich Drepper <drepper@redhat.com>
2010 * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Implement rule 4,
2012 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Recognize
2013 IFA_F_HOMEADDRESS flag for interfaces.
2014 * include/ifaddrs.h (struct in6addrinfo): Define
2017 2006-09-21 Jakub Jelinek <jakub@redhat.com>
2020 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (PTR_MANGLE3,
2021 PTR_DEMANGLE3): Define.
2022 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h (PTR_MANGLE3,
2023 PTR_DEMANGLE3): Likewise.
2024 * sysdeps/powerpc/powerpc32/__longjmp-common.S (__longjmp): Use them.
2025 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
2027 * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
2029 2006-09-20 Jakub Jelinek <jakub@redhat.com>
2031 * po/libc.pot: Regenerated.
2032 * po/be.po: Updated.
2033 * po/ca.po: Likewise.
2034 * po/cs.po: Likewise.
2035 * po/da.po: Likewise.
2036 * po/de.po: Likewise.
2037 * po/el.po: Likewise.
2038 * po/en_GB.po: Likewise.
2039 * po/es.po: Likewise.
2040 * po/fi.po: Likewise.
2041 * po/fr.po: Likewise.
2042 * po/gl.po: Likewise.
2043 * po/hr.po: Likewise.
2044 * po/hu.po: Likewise.
2045 * po/ja.po: Likewise.
2046 * po/ko.po: Likewise.
2047 * po/nb.po: Likewise.
2048 * po/nl.po: Likewise.
2049 * po/pl.po: Likewise.
2050 * po/pt_BR.po: Likewise.
2051 * po/ru.po: Likewise.
2052 * po/rw.po: Likewise.
2053 * po/sk.po: Likewise.
2054 * po/sv.po: Likewise.
2055 * po/tr.po: Likewise.
2056 * po/zh_CN.po: Likewise.
2057 * po/zh_TW.po: Likewise.
2060 * iconv/iconv_prog.c (main): Fix spelling in error message.
2061 * iconv/iconvconfig.c (main): Likewise.
2062 * locale/programs/ld-collate.c (handle_ellipsis): Likewise.
2063 * locale/programs/ld-ctype.c (charclass_symbolic_ellipsis): Likewise.
2064 * locale/programs/localedef.c (main): Likewise.
2065 * locale/programs/repertoire.c (repertoire_read): Likewise.
2066 * timezone/zdump.c (main): Likewise.
2067 * nscd/connections.c (handle_request): Fix spelling in log message.
2068 Patch by Malcolm Parsons <malcolm.parsons@gmail.com>.
2070 2006-09-20 Ulrich Drepper <drepper@redhat.com>
2072 * inet/inet6_option.c: Also emit linker warnings for the RFC 2292
2075 2006-09-20 Andreas Jaeger <aj@suse.de>
2077 * math/libm-test.inc (lrint_test_upward): Fix typo.
2079 2006-06-17 Joseph S. Myers <joseph@codesourcery.com>
2082 * math/libm-test.inc (lrint_test_tonearest): New function.
2083 (lrint_test_towardzero): New function.
2084 (lrint_test_downward): New function.
2085 (lrint_test_upward): New function.
2086 (main): Run these new tests.
2087 * sysdeps/ieee754/dbl-64/s_llrint.c (__llrint): Correct rounding
2088 of values near to 0.
2089 (two52): Use double not long double.
2090 * sysdeps/ieee754/dbl-64/s_lrint.c (__lrint): Likewise.
2091 * sysdeps/ieee754/flt-32/s_llrintf.c (__llrintf): Likewise.
2092 (two23): Use float not double.
2093 * sysdeps/ieee754/flt-32/s_lrintf.c (__lrintf): Likewise.
2094 (two23): Use float not double.
2095 * sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Likewise.
2096 * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Likewise.
2097 * sysdeps/ieee754/ldbl-96/s_llrintl.c (__llrintl): Likewise.
2098 * sysdeps/ieee754/ldbl-96/s_lrintl.c (__lrintl): Likewise.
2100 2006-09-20 Martin Schwidefsky <schwidefsky@de.ibm.com>
2102 * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c (__makecontext):
2103 Cast sp to unsigned long to avoid compiler warning.
2104 Use __makecontext_ret function instead of a trampoline on the stack.
2105 (__makecontext_ret): New function.
2106 * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Likewise.
2108 2006-09-19 Jakub Jelinek <jakub@redhat.com>
2110 * elf/dl-cache.c (HWCAP_CHECK): If _DL_PLATFORMS_COUNT, but
2111 platform == -1, reject any libs with non-zero _DL_HWCAP_PLATFORM
2114 2006-09-19 Ulrich Drepper <drepper@redhat.com>
2116 * elf/dl-close.c (_dl_close): If dependency is not unloaded make
2117 sure no reference to the unloaded map's search list remains in the
2120 2006-09-16 Jakub Jelinek <jakub@redhat.com>
2122 * elf/Makefile: Add rules to build and run unload7 test.
2123 * elf/unload7.c: New test.
2124 * elf/unload7mod1.c: New file.
2125 * elf/unload7mod2.c: New file.
2127 2006-09-18 Jakub Jelinek <jakub@redhat.com>
2129 * sysdeps/unix/sysv/linux/sys/ptrace.h (PT_GETEVENTMSG): Fix pasto.
2130 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_SETOPTIONS,
2131 PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
2132 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_SETOPTIONS,
2133 PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
2134 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_SETOPTIONS,
2135 PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
2136 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h (PTRACE_SETOPTIONS,
2137 PTRACE_GETEVENTMSG): Likewise.
2138 (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Change to the arch independent
2141 2006-09-17 Mike Frysinger <vapier@gentoo.org>
2143 * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_SETOPTIONS,
2144 PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
2145 * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Check PTRACE_SETOPTIONS,
2146 PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO and PTRACE_SETSIGINFO.
2148 2006-09-16 Jakub Jelinek <jakub@redhat.com>
2150 * sysdeps/powerpc/powerpc32/register-dump.h (register_dump): Don't
2151 write '\0' to the fd.
2152 * sysdeps/mach/hurd/powerpc/register-dump.h (register_dump): Likewise.
2153 * sysdeps/powerpc/powerpc64/register-dump.h (register_dump): Likewise.
2154 Change regs to unsigned long pointer from unsigned int, fix fscr
2157 2006-09-14 Jakub Jelinek <jakub@redhat.com>
2159 * io/Makefile (CFLAGS-fstatat.c): Set.
2160 (CFLAGS-fstatat64.c): Likewise.
2161 (CFLAGS-mknodat.c): Likewise.
2163 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Comment fixes.
2164 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
2165 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Rewritten.
2166 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Rewritten.
2168 2006-09-14 Jakub Jelinek <jakub@redhat.com>
2169 Steven Munroe <sjmunroe@us.ibm.com>
2171 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 4 new cap
2172 names to the beginning. Rename "cell" to "cellbe".
2173 (_dl_powerpc_platforms): New.
2174 * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
2175 (HWCAP_IMPORTANT): Remove power{4,5,5+} and cell.
2176 (_DL_PLATFORMS_COUNT, _DL_FIRST_PLATFORM): Define.
2177 (_DL_HWCAP_PLATFORM): Define to new mask.
2178 (_dl_platform_string, _dl_string_platform): New functions.
2179 * sysdeps/powerpc/sysdep.h (PPC_FEATURE_BOOKE, PPC_FEATURE_SMT,
2180 PPC_FEATURE_ICACHE_SNOOP, PPC_FEATURE_ARCH_2_05): Define.
2182 2006-09-12 Jakub Jelinek <jakub@redhat.com>
2185 * README.libm: Fix a thinko in sqrt algorithm description.
2188 * manual/string.texi (argz_delete): Fix prototype.
2189 Patch by <alpt@freaknet.org>.
2191 2006-08-26 Joseph Myers <joseph@codesourcery.com>
2194 * io/test-lfs.c (do_prepare): Give name_len type size_t.
2195 * io/tst-fcntl.c (do_prepare): Likewise.
2196 * posix/tst-exec.c (do_prepare): Likewise.
2197 * posix/tst-preadwrite.c (do_prepare): Likewise.
2198 * posix/tst-spawn.c (do_prepare): Likewise.
2199 * posix/tst-truncate.c (do_prepare): Likewise.
2200 * rt/tst-aio.c (do_prepare): Likewise.
2201 * rt/tst-aio64.c (do_prepare): Likewise.
2202 * stdlib/test-canon2.c (do_prepare): Give test_dir_len type
2205 2006-09-09 Ulrich Drepper <drepper@redhat.com>
2208 * time/mktime.c (guess_time_tm): Fix overflow detection.
2209 * time/Makefile (tests): Add bug-mktime1.
2210 * time/bug-mktime1.c: New file.
2213 * misc/sys/mman.h (remap_file_pages): Make available for _GNU_SOURCE.
2216 2006-09-07 Jakub Jelinek <jakub@redhat.com>
2219 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
2220 Ensure relocation doesn't clobber any bits outside of the
2221 immediate field for R_SPARC_TLS_LE_HIX22, R_SPARC_WDISP30,
2222 R_SPARC_HI22 and R_SPARC_H44.
2225 * malloc/malloc.c (sYSMALLOc): Only call grow_heap if
2226 (long) (MINSIZE + nb - old_size) is positive.
2228 * malloc/arena.c (grow_heap): When growing bail even if new_size
2232 * sysdeps/powerpc/powerpc32/fpu/s_lrint.S (__lrint): Don't access
2235 2006-09-06 Jakub Jelinek <jakub@redhat.com>
2237 * posix/regex_internal.c (re_string_reconstruct): Handle
2238 offset < pstr->valid_raw_len && pstr->offsets_needed case.
2239 Ensure no bytes read before raw_mbs array. Pass a saved copy of
2240 pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
2241 re_string_context_at.
2242 * posix/Makefile: Add rules to build and run bug-regex26 test.
2243 * posix/bug-regex26.c: New test.
2245 * locale/programs/ld-collate.c (collate_read): Goto sym_equiv_free
2246 rather than col_sym_free. Move seqp declaration earlier.
2248 * resolv/gai_suspend.c (gai_suspend): Make sure result is initialized.
2250 2006-09-05 Jakub Jelinek <jakub@redhat.com>
2252 * nscd/initgrcache.c (addinitgroupsX): Move any_success
2253 decl before first goto out.
2255 2006-09-04 Jakub Jelinek <jakub@redhat.com>
2257 * Makerules (shlib.lds): If have-hash-style, put .hash section
2258 at the end of the RO segment.
2260 2006-09-04 Ulrich Drepper <drepper@redhat.com>
2262 * elf/do-lookup.h (do_lookup_x): Initialize symidx in case the new
2263 style hash table format is used.
2265 2006-09-04 Jakub Jelinek <jakub@redhat.com>
2267 * resolv/res_mkquery.c (res_nmkquery): Set hp->id to statp->id after
2268 randomization rather than before.
2269 * resolv/res_init.c (res_randomid): Don't call gettimeofday here.
2271 2006-08-31 Jakub Jelinek <jakub@redhat.com>
2273 * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Add ld.so.
2275 * malloc/malloc.c (_int_malloc): Use full list insert and not
2276 shortcut which assumes the list is empty for large requests
2279 * elf/tst-addr1.c (do_test): Allow i.dli_sname "_IO_printf".
2281 2006-08-30 Jakub Jelinek <jakub@redhat.com>
2283 * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (splice): Add offin
2284 and offout arguments to the prototype.
2285 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (splice): Likewise.
2286 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (splice): Likewise.
2287 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (splice): Likewise.
2288 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (splice): Likewise.
2289 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (splice): Likewise.
2290 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (splice): Likewise.
2291 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (splice): Likewise.
2292 * sysdeps/unix/sysv/linux/syscalls.list (splice): Adjust args string.
2294 2006-08-28 Ulrich Drepper <drepper@redhat.com>
2296 * elf/dl-load.c (_dl_init_paths): Expand DSTs.
2298 * elf/dl-open.c (dl_open_worker): Allow $LIB and $PLATFORM in
2301 2006-08-28 Jakub Jelinek <jakub@redhat.com>
2303 * inet/getnameinfo.c (getnameinfo): For AF_INET, check errno
2304 only if herrno is NETDB_INTERNAL. Handle errors other than
2305 ERANGE outside of the loops, handle TRY_AGAIN.
2307 * locale/programs/ld-ctype.c (translit_flatten): Issue error
2308 if other's ctype category was missing.
2309 * locale/programs/ld-collate.c (collate_read): Return if
2310 copy_locale's collate category is missing.
2312 2006-08-27 Ulrich Drepper <drepper@redhat.com>
2315 * malloc/malloc.c (public_rEALLOc): Try harder by using other
2316 arenas if allocation failed.
2317 Patch mostly by Jan Edler <jan.edler@indexengines.com>.
2319 2006-08-26 Ulrich Drepper <drepper@redhat.com>
2321 * malloc/malloc.c (bin_at): Rewrite to be more clear and to not
2323 (malloc_state): Reduce bins size by 2.
2324 (_int_malloc): Fix test for large enough buffer for early termination.
2325 When no unsorted block matches perfectly and an exiting block has
2326 to be split, use full list insert and not shortcut which assumes
2329 * locale/programs/ld-ctype.c (ctype_read): Better patch for read
2332 2006-08-24 Ulrich Drepper <drepper@redhat.com>
2334 * locale/programs/ld-ctype.c (ctype_read): If CTYPE is NULL, don't
2337 * sysdeps/generic/ldsodefs.h (DL_ADDR_SYM_MATCH): For undefined
2338 symbol require exact match (these are PLTs).
2339 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
2340 (_dl_ppc64_addr_sym_match): Likewise.
2343 * elf/dl-addr.c (_dl_addr): Don't ignore all undefined symbols.
2344 If symbol has a value use it.
2345 * elf/tst-dladdr1.c: New file.
2346 * elf/Makefile: Add rules to build and run tst-addr1.
2348 2006-08-24 Jakub Jelinek <jakub@redhat.com>
2350 * malloc/malloc.c (sYSMALLOc): Avoid infinite loop if MMAP
2351 keeps failing and heap growth or new heap creation isn't
2353 * malloc/tst-malloc.c (main): Add new tests.
2355 2006-08-24 Ulrich Drepper <drepper@redhat.com>
2358 * sysdeps/i386/bits/byteswap.h (__bswap_32): Use same conditions
2359 as in the x86-64 code to use bswap.
2361 2006-05-21 Joseph S. Myers <joseph@codesourcery.com>
2364 * posix/unistd.h (getlogin_r): Condition on __USE_POSIX199506, not
2366 * posix/bits/unistd.h: Likewise.
2368 2006-05-15 Mike Frysinger <vapier@gentoo.org>
2371 * string/strchr.c: Add cast to avoid warning.
2373 2006-08-21 Ulrich Drepper <drepper@redhat.com>
2375 * malloc/malloc.c (DEFAULT_MMAP_THRESHOLD_MAX): For 32-bit
2376 platforms define as 512K. For 64-bit platforms as 32MB. The lower
2377 limit is needed to avoid the exploding of the address space
2378 requirement for secondary heaps.
2379 * malloc/arena.c (HEAP_MAX_SIZE): Define using
2380 DEFAULT_MMAP_THRESHOLD_MAX if it is defined.
2382 2006-07-30 Joseph S. Myers <joseph@codesourcery.com>
2385 * Makerules (depfiles): Handle extra-test-objs the same as
2387 (common-mostlyclean): Likewise.
2388 * dlfcn/Makefile (extra-objs): Add modules to extra-test-objs
2390 * elf/Makefile (extra-objs): Likewise.
2391 * stdlib/Makefile (extra-objs): Likewise.
2393 2006-08-14 Eric Blake <ebb9@byu.net>
2396 * misc/error.h: Assume C89 or better.
2397 * misc/error.c: Likewise.
2399 2006-08-21 Ulrich Drepper <drepper@redhat.com>
2402 * sysdeps/unix/sysv/linux/openat.c: Fix compilation if
2403 __ASSUME_ATFCTS is defined.
2405 2006-08-19 Ulrich Drepper <drepper@redhat.com>
2407 * malloc/malloc.c (_int_malloc): Limit number of unsorted blocks
2408 to sort in each call.
2410 * nis/nss_nis/nis-service.c (internal_nis_getservent_r): . If map
2411 is empty simply return and use next service.
2412 * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r): Likewise.
2414 * locale/programs/charmap.c (charmap_read): Add new parameter. It
2415 tells us when not finding a charmap file is an error.
2416 * locale/programs/charmap.h: Adjust charmap_read prototype.
2417 * iconv/iconv_prog.c (main): Tell charmap_read it's no error if we
2418 cannot find a charmap.
2419 * locale/programs/localedef.c (main): Adjust charmap_read call.
2421 2006-08-15 Jakub Jelinek <jakub@redhat.com>
2423 * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Use
2424 sysdeps/posix/pause.c implementation instead.
2426 2006-08-09 Jakub Jelinek <jakub@redhat.com>
2428 * sysdeps/unix/nice.c (nice): Transform EACCES errno from setpriority
2431 2006-08-13 Andreas Schwab <schwab@suse.de>
2433 * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve):
2434 Don't clobber caller's LRSAVE.
2435 (_dl_prof_resolve): Likewise.
2437 2006-08-14 Ulrich Drepper <drepper@redhat.com>
2440 * libio/memstream.c (open_memstream): Allocate initial buffer with
2442 * libio/wmemstream.c (open_wmemstream): Likewise.
2443 * libio/strops.c: Pretty printing.
2444 (_IO_str_overflow): Clear uninitialized part of the new buffer.
2445 (enlarge_userbuf): New function.
2446 (_IO_str_seekoff): Call it if seek position is larger than current
2448 * libio/wstrops.c: Likewise.
2449 * libio/vasprintf.c: Add comment as to why we do not have to use
2450 calloc instead of malloc to allocate initial buffer.
2451 * libio/Makefile (tests): Add bug-memstream1 and bug-wmemstream1.
2452 * libio/bug-memstream1.c: New file.
2453 * libio/bug-wmemstream1.c: New file.
2455 2006-08-13 Ulrich Drepper <drepper@redhat.com>
2457 * libio/wstrops.c: Remove dead macro definitions and comments.
2458 * libio/strops.c: Likewise.
2461 * login/utmpname.c (__utmpname): Remove unnecessary test.
2463 2006-06-08 Joseph Myers <jsm28@gcc.gnu.org>
2466 * math/gen-libm-test.pl (clean_up_number): Do not remove trailing
2469 2006-08-13 Ulrich Drepper <drepper@redhat.com>
2472 * sysdeps/unix/sysv/linux/clock_settime.c: Add code to use syscall
2474 * sysdeps/unix/clock_settime.c: Add support for platform-specific
2475 setting of CPU clocks.
2477 2006-06-23 Paul Eggert <eggert@cs.ucla.edu>
2480 * sysdeps/generic/stdint.h (UINT8_C, UINT16_C): Don't append 'U',
2481 since C99 requires the result to promote to 'int' when uint_least8_t
2482 and uint_least16_t promote to 'int'.
2484 2006-08-12 Ulrich Drepper <drepper@redhat.com>
2487 * locale/programs/ld-ctype.c (ctype_output): Adjust alignments, fix
2488 lenght of one output field, correct bitmask creation.
2489 * locale/programs/ld-time.c: Add alignment.
2492 * misc/error.c: Add space between program name and message if file
2495 2006-08-03 Eric Blake <ebb9@byu.net>
2498 * misc/error.c (error_tail) [_LIBC]: Avoid invalid free.
2500 2006-08-09 Ulrich Drepper <drepper@redhat.com>
2502 * malloc/memusagestat.c: Silence warnings.
2504 * malloc/malloc.c: Dynamically size mmap treshold if the program
2505 frees mmaped blocks.
2506 Patch by Valerie Henson and Arjan van de Ven.
2508 2006-08-08 Jakub Jelinek <jakub@redhat.com>
2510 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (O_DIRECT): Protect with
2513 * stdlib/strtol_l.c (__strtol_ul_max_tab, __strtol_ul_rem_tab,
2514 __strtol_ull_max_tab, __strtol_ull_rem_tab): Declare.
2515 (DEF): Don't put the var into .gnu.linkonce.r.* section.
2516 Only provide var definitions in strtol_l (or for *ull*
2519 * stdio-common/bug16.c (tests): New array.
2520 (do_tests): Allow the first hexadecimal digit
2521 to be 1, 2, 4 or 8. Do 3 additional tests.
2523 * sysdeps/s390/fpu/libm-test-ulps: Update.
2525 * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c (fchownat): Use
2526 fchownat syscall if available.
2527 * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
2528 * sysdeps/unix/sysv/linux/sh/fchownat.c (fchownat): Likewise.
2529 * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
2531 2006-08-07 Ulrich Drepper <drepper@redhat.com>
2533 * nis/nis_xdr.c: Avoid some function calls.
2535 2006-08-07 Jakub Jelinek <jakub@redhat.com>
2536 Ulrich Drepper <drepper@redhat.com>
2538 * nis/nis_call.c (rec_dirsearch) [case LOWER_NAME]: Don't take
2539 short cut if only one name component is stripped away.
2541 2006-08-07 Ulrich Drepper <drepper@redhat.com>
2543 * nis/nis_call.c: Minor cleanups throughout.
2544 (rec_dirsearch) [case HIGHER_NAME]: Correctly size ndomain array.
2545 (first_shoot): Add search_parent_first parameter. Only if it is set
2546 search parent server first.
2547 If directory for table found through cold start cache is not the same
2548 as referenced in the cache, don't use it.
2549 (__nisfind_server): Take additional parameter. Pass it on to
2551 (__prepare_niscall): Adjust __nisfind_server call.
2552 * nis/rpcsvc/nislib.h: Adjust __nisfind_server prototype.
2553 * nis/nis_table.c: Adjust __nisfind_server call.
2554 * nis/nis_lookup.c: Likewise.
2555 (nis_lookup): Don't loop endlessly if name is reduced to ".".
2557 2006-08-03 Ulrich Drepper <drepper@redhat.com>
2560 * math/s_cacosh.c: Return values from positive branch.
2561 * math/s_cacoshf.c: Likewise.
2562 * math/s_cacoshl.c: Likewise.
2565 * sysvipc/sys/msg.h: Change return value to ssize_t.
2566 * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
2567 * sysvipc/msgrcv.c: Likewise.
2568 * include/sys/msg.h: Likewise.
2570 * grp/initgroups.c (internal_getgrouplist): Remove unnecessary
2571 test introduced in patch for bz #661.
2572 (getgrouplist): Simplify code a bit. Don't allocate one additional
2573 element for NEWGROUPS.
2576 * stdio-common/printf_fphex.c (__printf_fphex): When rounding up
2577 'f', use '1' as leading digit not '\1'.
2578 * stdio-common/Makefile (tests): Add bug16.
2579 * stdio-common/bug16.c: New file.
2582 * sysdeps/unix/sysv/linux/gethostid.c: Don't define OLD_HOSTIDFILE
2583 and don't try to open it. The patch introducing the macro
2584 contained a bug and used the same file name as the new file
2585 instead of using /var/adm/hostid. Nobody complaint so I'm taking
2586 this out completely.
2589 * assert/assert.h: Move cast to void inside ?: to quiet gcc.
2590 Patch by Jerry James <Jerry.James@usu.edu>.
2592 * rt/Makefile (tests): Add tst-clock2.
2593 * rt/tst-clock2.c: New file.
2596 * resolv/gai_notify.c (__gai_notify_only): Copy memory for thread
2597 function and its parameters and pass it to new thread.
2598 (__gai_notify): Add support for alternative waiting for completion.
2599 * resolv/gai_suspend.c (gai_suspend): Add support for alternative
2600 waiting for completion.
2601 * resolv/getaddrinfo_a.c: Likewise.
2602 * resolv/gai_misc.h (struct waitlist): Don't add cond if alternative
2603 waiting for completion is used.
2604 * resolv/gai_misc.c: Allow overwriting code to start helper thread.
2605 * resolv/gai_cancel.c: Include <gai_misc.h> not "gai_misc.h".
2606 * resolv/gai_error.c: Likewise.
2607 * resolv/gai_sigqueue.c: Likewise.
2609 2006-08-02 Thomas Schwinge <tschwinge@gnu.org>
2611 * hurd/getdport.c (__getdport): Don't return EBADF; instead set
2612 errno to EBADF and return MACH_PORT_NULL.
2614 2006-06-23 Joseph Myers <joseph@codesourcery.com>
2617 * posix/Makefile (CFLAGS-waitid.c): Add -fasynchronous-unwind-tables.
2619 2006-08-02 Ulrich Drepper <drepper@redhat.com>
2621 * elf/dl-addr.c (_dl_addr): If GNU-style hash tables are present,
2622 walk them instead of the symbol table.
2624 2006-08-01 Ulrich Drepper <drepper@redhat.com>
2627 * nscd/initgrcache.c (addinitgroupsX): Judge successful lookups by
2628 status of NSS calls, not the number of returned entries.
2630 * sysdeps/unix/sysv/linux/syscalls.list: Remove add_key,
2631 request_key, keyctl.
2633 2006-07-31 Ulrich Drepper <drepper@redhat.com>
2635 * sysdeps/unix/sysv/linux/dl-osinfo.h: Remove unnecessary include.
2637 2006-07-16 Jeff Bailey <jbailey@ubuntu.com>
2639 * elf/tst-auditmod1.c: Fix typo in #error.
2641 2006-07-31 Ulrich Drepper <drepper@redhat.com>
2643 * elf/tst-auditmod1.c: Remove code for unsupported architectures.
2645 * iconvdata/run-iconv-test.sh: Run cmp in C locale.
2647 2006-07-20 Adam Nemet <anemet@caviumnetworks.com>
2649 * stdlib/test-canon.c (do_test): Close fd before unlinking file so
2650 that the directory is empty even on non-POSIX filesystems.
2652 2006-07-31 Ulrich Drepper <drepper@redhat.com>
2654 * elf/dl-open.c (dl_open_worker): Add branch prediction.
2656 * nis/nss_compat/compat-grp.c: Avoid unnecessary setgrent calls into
2657 the backend NSS module. If backend setgrent call failed, don't have
2658 internal_setgrent fail. Just remember this until it is needed.
2659 * nis/nss_compat/compat-pwd.c: Likewise.
2660 * nis/nss_compat/compat-spwd.c: Likewise.
2662 2006-07-30 Roland McGrath <roland@redhat.com>
2664 * sysdeps/unix/sysv/linux/ia64/sigsuspend.c: File removed.
2665 * sysdeps/unix/sysv/linux/x86_64/sigsuspend.c: File removed.
2666 * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c: File removed.
2667 * sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c: File removed.
2669 * sysdeps/unix/sysv/linux/not-cancel.h (pause_not_cancel): New macro.
2670 (nanosleep_not_cancel): New macro.
2671 (sigsuspend_not_cancel): new macro.
2672 * sysdeps/unix/sysv/linux/sigsuspend.c [__ASSUME_REALTIME_SIGNALS]
2673 (do_sigsuspend): Define as inline.
2674 (__sigsuspend): Always use do_sigsuspend.
2675 [! NO_CANCELLATION] (__sigsuspend_nocancel): New function.
2676 * include/signal.h: Declare __sigsuspend_nocancel.
2677 * sysdeps/posix/pause.c
2678 [! NO_CANCELLATION] (__pause_nocancel): New function.
2680 * include/unistd.h (__pause_nocancel): Add attribute_hidden.
2681 * include/time.h (__nanosleep_nocancel): Likewise.
2683 2006-07-30 Ulrich Drepper <drepper@redhat.com>
2685 * locale/programs/localedef.c (add_to_readlist): Rename local
2686 variables to avoid confusion.
2688 * locale/programs/charmap.c (charmap_read): Emit error message if
2689 charmap couldn't be found or read.
2691 2006-07-28 Ulrich Drepper <drepper@redhat.com>
2693 * sysdeps/unix/sysv/linux/kernel-features.h: Define
2694 __ASSUME_FUTEX_LOCK_PI.
2695 * include/time.h: Declare __nanosleep_nocancel.
2696 * include/unistd.h: Declare __pause_nocancel.
2698 * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Use this instead of
2699 LDFLAGS. Add -lgcc_eh and libc_nonshared (again) to make sure we
2700 get the __stack_chk_fail_local definition when it's needed.
2702 2006-07-26 Ulrich Drepper <drepper@redhat.com>
2704 * dlfcn/Makefile: Add rules to build and run bug-atexit3.
2705 * dlfcn/bug-atexit3.c: New file.
2706 * dlfcn/bug-atexit3-lib.cc: New file.
2708 * dlfcn/dlmopen.c (dlmopen_doit): Don't allow RTLD_GLOBAL to be
2709 used when the namespace is not the base namespace.
2711 2006-07-26 Gavin Romig-Koch <gavin@redhat.com>
2713 * stdlib/cxa_atexit.c (__new_exitfn_called): New variable.
2714 (__new_exitfn): Bump it in every successful call.
2715 * stdlib/cxa_finalize.c (__cxa_finalize): If destructor registered
2716 more exit handlers, call them right away.
2717 * stdlib/exit.h: Declare __new_exitfn_called.
2719 2006-07-25 Ulrich Drepper <drepper@redhat.com>
2721 * stdlib/cxa_finalize.c (__cxa_finalize): Fix race condition when
2722 calling registered handler.
2724 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Fix comment.
2725 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
2726 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
2727 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
2728 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
2729 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
2730 * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
2731 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
2733 2006-07-10 Ulrich Drepper <drepper@redhat.com>
2735 * elf/dl-lookup.c (dl_new_hash): New functions.
2736 (_dl_lookup_symbol_x): Rename hash to old_hash and don't compute
2737 value here. Compute new-style hash value. Pass new hash value
2738 and reference to variable with the old value to do_lookup_x.
2739 (_dl_setup_hash): If DT_GNU_HASH is defined, use it and not
2740 old-style hash table.
2741 (_dl_debug_bindings): Pass new hash value and reference to variable
2742 with the old value to do_lookup_x.
2743 * elf/do-lookup.h (do_lookup_x): Accept additional parameter with
2744 new-style hash value and change old-style hash value parameter to
2745 be a reference. Reoganize functions to determine whether
2746 new-style hash table is available. Only fall back on old-style
2747 table. If old-style hash value is needed, compute it here.
2748 * elf/dynamic-link.h (elf_get_dynamic_info): Relocate DT_GNU_HASH
2750 * elf/elf.h: Define SHT_GNU_HASH, DT_GNU_HASH, DT_TLSDEC_PLT,
2751 DT_TLSDEC_GOT. Adjust DT_ADDRNUM.
2752 * include/link.h (struct link_map): Add l_gnu_bitmask_idxbits,
2753 l_gnu_shift, l_gnu_bitmask, l_gnu_buckets and l_gnu_chain_zero.
2754 * Makeconfig: If linker supports --hash-style option add it to all
2755 linker command lines to build DSOs.
2756 * config.make.in: Define have-hash-style.
2757 * configure.in: Test whether linker supports --hash-style option.
2759 * elf/dl-misc.c (_dl_name_match_p): Make MAP parameter const.
2760 * sysdeps/generic/ldsodefs.h: Adjust prototype.
2762 2006-06-27 Ulrich Drepper <drepper@redhat.com>
2764 * elf/dl-load.c (open_path): Fix test to determine whether DSO is
2767 * elf/dl-load.c (_dl_map_object): Try harder to avoid looking at
2768 RPATH of main map twice.
2770 2006-06-22 Ulrich Drepper <drepper@redhat.com>
2772 * intl/dcigettext.c (DCIGETTEXT): If _nl_find_msg returns -1 don't
2773 look further, return original strings.
2774 (_nl_find_msg): Do not return found translation if the conversion
2775 failed. Either signal the string is unusable or that something went
2776 wrong and the original should be used.
2778 2006-06-21 Ulrich Drepper <drepper@redhat.com>
2780 * string/_strerror.c (__strerror_r): Add __builtin_expect.
2782 2006-06-14 Jakub Jelinek <jakub@redhat.com>
2785 * misc/insremque.c (insque): Handle prev == NULL.
2786 * misc/Makefile (tests): Add tst-insremque.
2787 * misc/tst-insremque.c: New test.
2789 2006-06-17 Ulrich Drepper <drepper@redhat.com>
2792 * elf/dl-deps.c (expand_dst): Rename __cnt variable to not
2793 conflict with DL_DST_REQUIRED.
2795 2006-06-16 Ulrich Drepper <drepper@redhat.com>
2797 * nis/nis_subr.c (nis_getnames): Fix the implementation to better
2798 match what Solaris does.
2800 2006-06-04 Ulrich Drepper <drepper@redhat.com>
2802 * sysdeps/posix/spawni.c (__spawni): Use local_seteuid and
2803 local_setegid instead of seteuid and setegid.
2804 * sysdeps/generic/local-setxid.h: New file.
2805 * sysdeps/unix/sysv/linux/local-setxid.h: New file.
2807 * sysdeps/posix/spawni.c (__spawni): Use non-cancelable interfaces.
2809 * string/Makefile (tests): Add bug-envz1.
2810 * string/bug-envz1.c: New file.
2812 2006-06-02 Jakub Jelinek <jakub@redhat.com>
2814 * posix/regex_internal.c (re_string_skip_chars): If no character has
2815 been converted at all, set *last_wc to WEOF. If mbrtowc failed, set wc
2816 to the byte which couldn't be converted.
2817 (re_string_reconstruct): Don't clear valid_raw_len before calling
2818 re_string_skip_chars. If wc is WEOF after re_string_skip_chars, set
2819 tip_context using re_string_context_at.
2820 * posix/Makefile: Add rules to build and run bug-regex25 test.
2821 * posix/bug-regex25.c: New test.
2823 2006-06-02 Ryan S. Arnold <rsa@us.ibm.com>
2826 * string/envz.c (envz_strip): Correct erroneously reversed src
2827 and dest parameters to memmove() invocation.
2829 2006-05-30 Jakub Jelinek <jakub@redhat.com>
2831 * nscd/nscd.h (prune_cache): Add fd argument to prototype.
2832 * nscd/nscd.c (parse_opt): Read response from INVALIDATE request
2833 to make sure the database has been already invalidated.
2834 * nscd/cache.c (prune_cache): Add fd argument. Write response to fd
2835 after the cache has been invalidated. Use pthread_mutex_lock rather
2836 than pthread_mutex_trylock if fd != -1.
2837 * nscd/connections.c (invalidate_cache): Add fd argument, write
2838 response to fd if not calling prune_cache, pass fd to prune_cache.
2839 (handle_request): Adjust invalidate_cache caller.
2840 (nscd_run): Pass -1 as fd to prune_cache.
2842 2006-05-30 Ulrich Drepper <drepper@redhat.com>
2844 * sysdeps/posix/getaddrinfo.c (gaiconf_init): Initialize bits in
2847 2006-05-29 Ulrich Drepper <drepper@redhat.com>
2849 * nscd/nscd.h (struct database_dyn): Add prunelock field.
2850 * nscd/cache.c (prune_cache): Take prunelock before starting the
2851 work. Just return in case it is already taken.
2852 * nscd/connections.c (dbs): Initialize .prunelock.
2854 2006-05-25 Ulrich Drepper <drepper@redhat.com>
2856 * nis/nis_removemember.c (nis_removemember): Avoid unnecessary
2857 copying. No need to allocate new array for group members. Just
2858 move the pointers and update the size.
2860 * nis/nis_addmember.c (nis_addmember): Avoid unnecessary copying.
2861 Avoid memory leak in case realloc fails. Simplification for
2862 better code generation.
2864 Avoid deprecation warning because of libc_hidden_proto for
2866 * inet/inet6_option.c (option_alloc): Renamed from
2867 inet6_option_alloc. Made static.
2868 (inet6_option_alloc): Now a simple wrapper around option_alloc.
2869 (inet6_option_append): Call option_alloc.
2870 * include/netinet/in.h: Remove libc_hidden_proto for
2873 * nis/nis_callback.c (__nis_create_callback): Always call xdr_free
2874 for cleanup when cb!=NULL [Coverity CID 233].
2876 2006-05-24 Ulrich Drepper <drepper@redhat.com>
2879 * inet/Makefile (routines): Add inet6_opt and inet6_rth.
2880 * inet/Versions (libc, GLIBC_2.5): Add inet6_opt_init,
2881 inet6_opt_append, inet6_opt_finish, inet6_opt_set_val, inet6_opt_next,
2882 inet6_opt_find, inet6_opt_get_val, inet6_rth_space, inet6_rth_init,
2883 inet6_rth_add, inet6_rth_reverse, inet6_rth_segments,
2884 and inet6_rth_getaddr.
2885 * inet/netinet/ip6.h (struct ip6_rthdr0): Make ip6r0_addr a flexible
2887 * inet/netinet/in.h (struct ip6_mtuinfo): Define.
2888 Mark inet6_option_* interfaces as deprecated.
2889 Declare inet6_opt_init, inet6_opt_append, inet6_opt_finish,
2890 inet6_opt_set_val, inet6_opt_next, inet6_opt_find, inet6_opt_get_val,
2891 inet6_rth_space, inet6_rth_init, inet6_rth_add, inet6_rth_reverse,
2892 inet6_rth_segments, and inet6_rth_getaddr.
2893 * inet/inet6_opt.c: New file.
2894 * inet/inet6_rth.c: New file.
2896 * inet/netinet/icmp6.h: Pretty printing.
2899 * elf/dl-addr.c (_dl_addr): Don't match undefined references.
2901 2006-05-23 Ulrich Drepper <drepper@redhat.com>
2903 * nis/nis_lookup.c (nis_lookup): Use __prepare_niscall instead of
2904 doing it all here. When server does not know the answer do not
2905 fail immediate, try parent first.
2907 * nis/nis_domain_of_r.c (nis_domain_of_r): Add missing buffer
2910 2006-05-20 Ulrich Drepper <drepper@redhat.com>
2912 * nis/nis_call.c (__prepare_niscall): New function. Split out
2914 * nis/nis_table.c (__create_ib_request): Renamed from create_ib_request
2916 (__follow_path): New function. Split out from nis_list.
2917 * nis/nis_xdr.h: Add libnsl_hidden_proto for _xdr_ib_request and
2919 * nis/nis_xdr.c: Add libnsl_hidden_def for _xdr_ib_request and
2921 * nis/libnsl.h: Declare __prepare_niscall, __create_ib_request,
2923 * nis/Versions: Export __prepare_niscall, __create_ib_request,
2924 __follow_path, __do_niscall3, _xdr_ib_request, and _xdr_nis_result
2925 from libnsl for version GLIBC_PRIVATE.
2926 * nis/nisplus-parser.h: Remove _nss_nisplus_parse_pwent_chk.
2927 Remove entry parameter from _nss_nisplus_parse_pwent and
2928 _nss_nisplus_parse_grent.
2929 * nis/nss_nisplus/nisplus-parser.c: Likewise.
2930 * nis/nss_nisplus/nisplus-pwd.c: Remove support for SETENT_BATCH_READ
2931 again. Rewrite getpwent handling to not use nis_first_entry and
2932 nis_next_entry. Roll out own niscall handling.
2933 * nis/nss_nisplus/nisplus-grp.c: Likewise.
2935 * sunrpc/xdr_rec.c: Fix typo in comment.
2937 2006-05-19 Ulrich Drepper <drepper@redhat.com>
2939 * nis/nis_call.c (__do_niscall3): Avoid code duplication in error
2942 * nis/nis_callback.c (internal_nis_do_callback): Don't use malloc
2943 to allocate memory for my_pollfd. Better initialization of
2944 cb_is_running. Use TEMP_FAILURE_RETRY.
2946 * malloc/memusage.sh (memusageso): Add quotes.
2947 (memusagestat): Likewise.
2948 * debug/xtrace.sh (pcprofileso): Likewise.
2949 (pcprofiledump): Likewise.
2950 * debug/Makefile ($(objpfx)xtrace): Use $LIB in SLIBDIR
2952 * malloc/Makefile ($(objpfx)memusage): Likewise.
2954 * nis/nis_callback.c (__nis_create_callback): Calls to
2955 svcudp_bufcreate and svctcp_create can fail. Free ->xprt if
2956 asprintf call fails.
2958 * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_sendreq): Make sure
2959 no uninitialized memory is passed to sendto.
2961 2006-05-18 Ulrich Drepper <drepper@redhat.com>
2963 * nis/nis_callback.c (__nis_create_callback): Use asprinf instead
2964 of snprintf+strdup. Handle OOM.
2965 * nis/nis_callback.c (__nis_create_callback): Allocate cb and
2966 cb->serv together. Remove now obsolete free calls.
2967 (__nis_destroy_callback): Remove now obsolete free call.
2969 2006-05-18 David Woodhouse <dwmw2@redhat.com>
2971 * sysdeps/posix/getaddrinfo.c: Add unique labels to the default
2972 RFC3484 precedence table for fec0::/10 and fc00::/7 (site-local
2973 and ULA respectively). Set precedence for IPv4 address to 10 as
2974 defined in RFC3484 for preferring IPv6.
2975 * posix/gai.conf: Update to match the new default tables.
2977 2006-05-18 Jakub Jelinek <jakub@redhat.com>
2979 * nis/nss_compat/compat-pwd.c (internal_setpwent): If nss_set*ent
2980 returned NSS_STATUS_UNAVAIL, still return NSS_STATUS_SUCCESS.
2981 * nis/nss_compat/compat-spwd.c (internal_setspent): Likewise.
2982 * nis/nss_compat/compat-grp.c (internal_setgrent): Likewise.
2984 * nis/nss_compat/compat-initgroups.c (nss_setgrent, nss_endgrent):
2986 (init_nss_interface): Remove initialization of these variables.
2988 2006-05-18 Ulrich Drepper <drepper@redhat.com>
2990 * nis/nis_call.c (rec_dirsearch): Little optimization: pull
2991 nis_free_directory forward to avoid duplication.
2993 2006-05-17 Ulrich Drepper <drepper@redhat.com>
2995 * nis/nis_call.c (rec_dirsearch): Handle __nis_finddirectory and
2996 rec_dirsearch returning NULL.
2997 (first_shoot): Handle __nis_finddirectory returning NULL.
2998 (__nisfind_server): Fix leak when rec_dirsearch returns NULL.
3000 * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOSE, IN_MOVE,
3001 IN_ONLYDIR, IN_DONT_FOLLOW, and IN_MASK_ADD.
3003 2006-05-17 Jakub Jelinek <jakub@redhat.com>
3005 * sunrpc/key_call.c (getkeyserv_handle): Call auth_destroy if
3008 2006-05-15 Ulrich Drepper <drepper@redhat.com>
3010 * include/rpc/pmap_prot.h: Mark all functions as hidden.
3012 * nscd/nscd_initgroups.c: Mark __gr_map_handle as hidden.
3013 * nscd/nscd_getgr_r.c: Likewise.
3015 * include/rpc/pmap_rmt.h: Mark all functions as hidden.
3017 * nscd/nscd_getai.c (__hst_map_handle): Mark as hidden.
3018 * nscd/nscd_gethst_r.c (__hst_map_handle): Likewise.
3020 * stdlib/longlong.h (__clz_tab): Mark as hidden.
3022 * iconv/gconv_int.h: Mark __gconv_lock as hidden.
3024 * include/rpc/key_prot.h: Mark all _internal functions as hidden.
3026 * include/rpc/auth.h: Mark xdr_des_block_internal and
3027 xdr_opaque_auth_internal as hidden.
3029 * sysdeps/unix/sysv/linux/getdents.c: Mark __have_no_getdents64 as
3032 * include/rpc/xdr.h: Mark all _internal functions as hidden.
3034 * misc/getusershell.c (okshells): Don't use static initializers,
3037 * stdlib/fmtmsg.c (keywords): Change type of len element to
3038 uint32_t to not waste space on 64bit machines.
3040 * locale/setlocale.c: Change _nl_category_names into a string.
3041 Add new _nl_category_name_idxs. Change all users.
3042 * locale/localeinfo.h: Adjust declaration of _nl_category_names.
3043 Declare _nl_category_name_idxs.
3044 * locale/findlocale.c: Adjust for _nl_category_names change.
3045 * locale/loadlocale.c: Likewise.
3046 * locale/newlocale.c: Likewise.
3047 * intl/dcigettext.c: Likewise.
3049 * iconv/gconv_conf.c (add_alias): Move actual alias handling to...
3050 (add_alias2): ...here. New function.
3051 (__gconv_read_conf): Simplify builtin alias handling.
3052 (builtin_aliases): Convert to string to avoid relocations.
3053 * iconv/gconv_builtin.h: Add comment about correct formatting.
3055 2006-05-15 Jakub Jelinek <jakub@redhat.com>
3057 * resolv/res_debug.c (loc_ntoa): Make error const.
3059 2006-05-14 Andreas Schwab <schwab@suse.de>
3061 * math/complex.h [__LDBL_COMPAT]: Use __REDIRECT_NTH.
3063 2006-05-12 Jakub Jelinek <jakub@redhat.com>
3065 * sysdeps/unix/sysv/linux/sched_getaffinity.c: Include sys/param.h.
3066 (__sched_getaffinity_new): Don't crash if cpusetsize is smaller than
3069 2006-05-11 Ulrich Drepper <drepper@redhat.com>
3071 * resolv/res_debug.c (loc_ntoa): Define error as array, not pointer.
3073 * include/arpa/nameser.h: Declare _ns_flagdata as hidden.
3075 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_master.
3076 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_master.
3078 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypbind_resp.
3079 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypbind_resp.
3081 * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_cback_data.
3082 * include/rpcsvc/nis_callback.h: Add libnsl_hidden_proto for
3085 * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypupdate_args.
3086 * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
3089 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_order.
3090 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_order.
3092 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_maplist.
3093 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_maplist.
3095 * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_obj_p.
3096 * include/rpcsvc/nis_callback.h: New file.
3098 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_val.
3099 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_val.
3101 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
3102 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
3104 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypmaplist.
3105 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypmaplist.
3107 * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
3108 * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
3110 * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypdelete_args.
3111 * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
3114 * nis/nis_xdr.h: Mark all functions as hidden. Remove
3115 __BEGIN_DECLS and __END_DECLS, the header is not installed.
3117 * nis/nis_error.c: Remove table of strings. Use position
3118 independent mechanism.
3119 * nis/nis_error.h: New file.
3121 2006-05-11 Jakub Jelinek <jakub@redhat.com>
3123 * locale/programs/ld-time.c (time_finish): If wide era name or
3124 format aren't provided, set both wname and wformat to L"".
3126 2006-05-10 Ulrich Drepper <drepper@redhat.com>
3128 * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Only store
3129 results if the call was succesful.
3131 * nis/nss-nis.h: Mark __yperr2nss_tab and __yperr2nss_count as hidden.
3133 * nis/nss-nisplus.h: Mark __niserr2nss_tab and __niserr2nss_count
3136 2006-05-10 Jakub Jelinek <jakub@redhat.com>
3138 * misc/sys/queue.h: Remove uses of all QUEUEDEBUG_* macros.
3140 2006-05-10 Ulrich Drepper <drepper@redhat.com>
3142 * posix/wordexp.c (parse_glob): No need to check ifs for NULL, the
3143 caller makes sure this is not the case.
3144 (wordexp): Simplify ifs_white creation. [Coverity CID 231]
3146 2006-05-09 Ulrich Drepper <drepper@redhat.com>
3148 * posix/wordexp.c: Remove numerous NULL pointer tests before FREE
3151 * io/ftw.c (open_dir_stream): Return right away if REALLOC fails.
3152 [Coverity CID 229, 230]
3154 * argp/argp-help.c (hol_entry_help): Handle STATE==NULL in ARG and
3156 (hol_help): Likewise. [Coverity CID 226, 227]
3158 * string/argz-replace.c (__argz_replace): Unconditionally call
3159 free on SRC. [Coverity CID 225]
3161 * nis/nis_creategroup.c (nis_creategroup): No need to duplicate
3162 the return value of __nis_default_owner and __nis_default_group,
3163 it has been especially allocated. [Coverity CID 224]
3165 * nis/nis_defaults.c (searchXYX): New functions. Used by both
3166 searchgroup and searchowner. Significantly simplified.
3167 (__nis_default_owner): Remove duplication. Do not locally copy the
3168 string before duplicating it.
3169 (__nis_default_group): Likewise.
3171 * nis/nis_lookup.c (nis_lookup): After calling nis_free_directory,
3172 we must clear the variable before calling __nisfind_server.
3174 * nis/nis_lookup.c (nis_lookup): Always free memory allocated with
3175 nis_getnames. [Coverity CID 223]
3177 * locale/programs/locfile.c (locfile_read): Use alloca instead of
3178 xmalloc to allocate local repertoire name. [Coverity CID 222]
3180 * iconv/iconv_charmap.c (use_to_charmap): No need to dynamically
3181 allocate memory for the input to add_bytes. [Coverity CID 221]
3183 * posix/wordexp.c (w_addword): Free word if realloc fails and it
3184 was allocated here. [Coverity CID 219, 220]
3186 * posix/getconf.c (print_all): Free confstr data after printing.
3189 * sysdeps/posix/getaddrinfo.c (gaih_inet): Free canon string if
3190 list allocation fails. [Coverity CID 215]
3192 * nss/nsswitch.c (__nss_configure_lookup): Fix loop end condition.
3195 * argp/argp-help.c (hol_entry_cmp): Don't call canon_doc_option if
3196 string is NULL. [Coverity CID 212]
3197 * argp/Makefile: Add rules to build and run bug-argp1.
3198 * argp/bug-argp1.c: New file.
3200 * io/ftw.c (ftw_dir): Use __rawmemchr instead of strchr to find
3202 * stdlib/canonicalize.c (__realpath): Likewise.
3204 * locale/programs/ld-time.c (time_finish): Don't dereference NULL
3205 pointer. [Coverity CID 206]
3207 * elf/dl-dst.h (DL_DST_REQUIRED): Be prepared for missing link map
3208 in statically linked code.
3209 * elf/dl-load.c (_dl_dst_substitute): When replacing ORIGIN in
3210 statically built code, be prepared to have no link map.
3213 * argp/argp-help.c (fill_in_uparams): Handle STATE==NULL in
3214 dgettext calls. [Coverity CID 204]
3216 * argp/argp-help.c (struct uparams): Remove valid member. Change
3218 (uparam_names): Reduce size. Avoid relative relocations.
3219 Moved to read-only segment.
3220 (fill_in_uparams): Update for new layout.
3222 * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs): Parameter can be
3223 assumed to always be != NULL. [Coverity CID 202]
3225 * argp/argp-help.c (hol_entry_help): Remove some dead code
3228 * nis/nss_nis/nis-service.c (_nss_nis_getservbyport_r): Optimize
3229 away a few more unconditional yperr2nss calls.
3230 (_nss_nis_getservbyname_r): Likewise.
3232 2006-05-06 Ulrich Drepper <drepper@redhat.com>
3234 * sysdeps/generic/ldsodefs.h: Remove support for non-core
3237 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Make sure
3238 that unused memory passed to sendto is nevertheless initialized.
3241 * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Avoid
3242 possibly unaligned memory accesses.
3244 * include/arpa/nameser.h: Also optimize NS_PUT16 and NS_PUT32.
3245 * resolv/res_mkquery.c: Use NS_PUT16 and NS_PUT32 instead of __putshort
3246 and __putlong respectively. Correct buffer overflow check for
3249 * resolv/res_send.c (send_vc): Use ns_put16 instead of putshort.
3251 * resolv/res_send.c (res_queriesmatch): Fix typo in comment.
3252 (send_dg): Rewrite error handling to be more compact and avoid
3253 double recomputation of timeouts. Pass MSG_NOSIGNAL to send.
3255 * include/arpa/nameser.h: Add optimizations for NS_GET16 and NS_GET32.
3257 * resolv/res_send.c (res_nameinquery): Use NS_GET16 directly
3258 instead of ns_get16.
3259 (res_queriesmatch): Likewise. Minor optimization.
3262 * resolv/res_query.c (__libc_res_nquery): If answerp != NULL,
3263 __libc_res_nsend might reallocate the buffer for the answer. In
3264 this case we have to reload the HP pointer.
3266 2006-05-05 Ulrich Drepper <drepper@redhat.com>
3268 * stdio-common/vfscanf.c (memory_error): Remove definition. Add
3269 some branch prediction hints.
3271 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Define SPLICE_F_*.
3272 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
3273 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
3274 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
3275 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
3276 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
3277 * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
3278 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
3280 2006-05-05 Martin Schwidefsky <schwidefsky@de.ibm.com>
3282 * sysdeps/s390/s390-32/elf/start.S: Replace pc relative relocation
3283 by a GOT relocation to make Scrt1.o position independent.
3284 * sysdeps/s390/s390-64/elf/start.S: Likewise.
3286 * sysdeps/unix/sysv/linux/s390/s390-32/syscall.S: Add support for
3287 six system call parameters.
3288 * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
3290 2006-05-05 Ulrich Drepper <drepper@redhat.com>
3292 * sunrpc/svcauth_des.c (cache_init): Use calloc instead of
3295 * sunrpc/svc_udp.c (BZERO): Remove definition.
3297 (svc_enablecache): Use CALLOC instead of ALLOC&BZERO.
3299 * sunrpc/des_impl.c: Remove ALT_ECB support. We never used it.
3300 (des_SPtrans): Use uint32_t type.
3301 (des_skb): Likewise.
3303 * sunrpc/xdr_ref.c (xdr_reference): Use calloc instead of malloc&bzero.
3305 2006-05-05 Jakub Jelinek <jakub@redhat.com>
3308 * stdio-common/tst-printf.sh: Adjust for tst-printf.c change even
3311 2006-05-05 Ulrich Drepper <drepper@redhat.com>
3313 * locale/programs/ld-address.c (address_finish): Fix one more
3314 place where the iso639 array might be accessed beyond the limits.
3316 2006-05-04 Ulrich Drepper <drepper@redhat.com>
3318 * nis/nis_table.c (nis_list): Avoid clearing res twice before
3319 filling it for the first time.
3321 * nis/nis_table.c (get_tablepath): Renamed from __get_tablepath.
3323 Free res object content before returning.
3325 * sunrpc/xdr_array.c (xdr_array): Use calloc instead of malloc&bzero.
3327 * sunrpc/key_call.c (__rpc_thread_key_cleanup): Also free
3330 * sunrpc/rpc_thread.c (__rpc_thread_destroy): Don't skip entire
3331 cleanup for initial thread, just the free call on TVP.
3333 * nscd/gai.c (__getline): Define.
3336 See ChangeLog.16 for earlier changes.